diff options
author | Andras HORVATH <andras.horvath@gmail.com> | 2012-03-06 23:14:24 +0100 |
---|---|---|
committer | Andras HORVATH <andras.horvath@gmail.com> | 2012-03-06 23:14:24 +0100 |
commit | e614955e981ea9f64deff7b44046b578c6b20e9b (patch) | |
tree | c794f72fb292461aad0188e127708398705acd44 /debian |
git import
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 28 | ||||
-rw-r--r-- | debian/dirs | 1 | ||||
-rwxr-xr-x | debian/rules | 90 |
6 files changed, 150 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..060f732 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,14 @@ +mbw (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 <emmanuel.quemener@free.fr> Wed, 04 Nov 2009 07:41:56 +0100 + +mbw (1.1.1-1) unstable; urgency=low + + * Initial release (Closes: bug#510680). + + -- Emmanuel QUEMENER <emmanuel.quemener@free.fr> Thu, 01 Jan 2009 22:15:04 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..598dcb0 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: mbw +Section: utils +Priority: extra +Maintainer: Emmanuel QUEMENER <emmanuel.quemener@free.fr> +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f40c8e3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Emmanuel QUEMENER <emmanuel.quemener@free.fr> 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 <Andras.Horvath@cern.ch> + +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 <emmanuel.quemener@free.fr> +and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..e772481 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4b638c1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,90 @@ +#!/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 +.PHONY: build clean binary-indep binary-arch binary install configure |