summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras HORVATH <andras.horvath@gmail.com>2012-03-11 10:57:17 +0100
committerAndras HORVATH <andras.horvath@gmail.com>2012-03-11 10:57:17 +0100
commit39046228d0c79e87f6a9cd8e540f2ea5770238b6 (patch)
tree363a5ef83ab6675242c70fa75ebf6e226ecdc3ed
parent8f89f1da7b451b49fc579bdbd7fae5e2c51ff14d (diff)
Update version number and contact information
-rw-r--r--debian/changelog14
-rw-r--r--debian/compat1
-rw-r--r--debian/control16
-rw-r--r--debian/copyright28
-rw-r--r--debian/dirs1
-rwxr-xr-xdebian/rules90
-rw-r--r--mbw.12
-rw-r--r--mbw.spec7
8 files changed, 6 insertions, 153 deletions
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index 060f732..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,14 +0,0 @@
-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
deleted file mode 100644
index 7f8f011..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 598dcb0..0000000
--- a/debian/control
+++ /dev/null
@@ -1,16 +0,0 @@
-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
deleted file mode 100644
index f40c8e3..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,28 +0,0 @@
-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
deleted file mode 100644
index e772481..0000000
--- a/debian/dirs
+++ /dev/null
@@ -1 +0,0 @@
-usr/bin
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 4b638c1..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,90 +0,0 @@
-#!/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
diff --git a/mbw.1 b/mbw.1
index 33e2194..23514f8 100644
--- a/mbw.1
+++ b/mbw.1
@@ -52,4 +52,4 @@ Multiple thread support.
Better configurability, including using getopt() for parsing arguments.
.SH AUTHOR
-Andras.Horvath@cern.ch
+andras.horvath@gmail.com
diff --git a/mbw.spec b/mbw.spec
index 769b796..e3a0dd6 100644
--- a/mbw.spec
+++ b/mbw.spec
@@ -1,12 +1,12 @@
Summary: Memory bandwidth benchmark
Name: mbw
-Version: 1.1
+Version: 1.2
Release: 1
License: LGPL
Buildroot: %{_tmppath}/%{name}-buildroot
Group: System Environment/Base
Source: %{name}.tar.gz
-Packager: Andras.Horvath@cern.ch
+Packager: andras.horvath@gmail.com
%description
Test memory copy bandwidth (single thread). Switch off swap or make sure array size does not exceed available free RAM.
@@ -33,6 +33,9 @@ rm -rf %{buildroot}
%{_mandir}/man1/mbw.1.gz
%changelog
+* Sun Mar 11 2012 Andras Horvath <andras.horvath@gmail.com> 1.2-1
+- Fix MCBLOCK test: actually copy to the full buffer, not just its first $blocksize.
+
* Tue Jul 07 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.1-1
- separate array initialization from work -> faster execution
- getopt() options parsing: suppress average, specific tests only, no. runs