--- mbw-1.2.2.orig/debian/changelog +++ mbw-1.2.2/debian/changelog @@ -0,0 +1,27 @@ +mbw (1.2.2-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/rules: Add build-{arch,indep} (Closes: #999328). + + -- Marcos Talau Thu, 03 Nov 2022 18:45:56 -0300 + +mbw (1.2.2-1) unstable; urgency=low + + * New release correcting a bug. + + -- Emmanuel QUEMENER Sun, 15 Apr 2012 08:37:55 +0200 + +mbw (1.1.1-1.2) unstable; urgency=low + + [ Emmanuel QUEMENER ] + * Modify manual page syntax error. + * Modify rules to remove deprecated reference option on dh_clean. + + -- Emmanuel QUEMENER Wed, 04 Nov 2009 07:41:56 +0100 + +mbw (1.1.1-1) unstable; urgency=low + + * Initial release (Closes: bug#510680). + + -- Emmanuel QUEMENER Thu, 01 Jan 2009 22:15:04 +0100 + --- mbw-1.2.2.orig/debian/compat +++ mbw-1.2.2/debian/compat @@ -0,0 +1 @@ +7 --- mbw-1.2.2.orig/debian/control +++ mbw-1.2.2/debian/control @@ -0,0 +1,16 @@ +Source: mbw +Section: utils +Priority: extra +Maintainer: Emmanuel QUEMENER +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.0 +Homepage: http://ahorvath.web.cern.ch/ahorvath/mbw/ + +Package: mbw +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: memory bandwidth benchmark program + MBW determines the "copy" memory bandwidth available to userspace programs. + Its simplistic approach models that of real applications. + It is not tuned to extremes and it is not aware of hardware architecture, + just like your average software package. --- mbw-1.2.2.orig/debian/copyright +++ mbw-1.2.2/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Emmanuel QUEMENER on +Thu, 01 Jan 2009 22:15:04 +0100. + +It was downloaded from http://ahorvath.web.cern.ch/ahorvath/mbw/ + + Copyright (C) 2008 Andras Horvath + +License: + +Permission to use and copy is granted subject to the terms of the +"GNU Lesser General Public License" (LGPL) as published by the +Free Software Foundation; either version 2.1 of the License, +or any later version. In addition, Julius O. Smith III requests +that a copy of any modified files be sent by email to +jos@ccrma.stanford.edu so that he may incorporate them into the +CCRMA version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + +On Debian systems, the text of the GPL is available in the file: +/usr/share/common-licenses/LGPL + +The Debian packaging is (C) 2009, Emmanuel QUEMENER +and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- mbw-1.2.2.orig/debian/dirs +++ mbw-1.2.2/debian/dirs @@ -0,0 +1 @@ +usr/bin --- mbw-1.2.2.orig/debian/rules +++ mbw-1.2.2/debian/rules @@ -0,0 +1,94 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + + +build: build-stamp + +build-stamp: + dh_testdir + + # Add here commands to compile the package. + CFLAGS="$(CFLAGS)" $(MAKE) + #docbook-to-man debian/mbw.sgml > mbw.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + #dh_clean -k + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/mbw. + # $(MAKE) DESTDIR=$(CURDIR)/debian/mbw install + cp mbw $(CURDIR)/debian/mbw/usr/bin + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman mbw.1 + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +build-arch: build +build-indep: build + +.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install configure