[arch-commits] Commit in cpuburn/repos (8 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Tue Jul 1 10:26:12 UTC 2014


    Date: Tuesday, July 1, 2014 @ 12:26:12
  Author: spupykin
Revision: 113955

archrelease: copy trunk to community-i686, community-x86_64

Added:
  cpuburn/repos/community-i686/PKGBUILD
    (from rev 113954, cpuburn/trunk/PKGBUILD)
  cpuburn/repos/community-i686/cpuburn.patch
    (from rev 113954, cpuburn/trunk/cpuburn.patch)
  cpuburn/repos/community-x86_64/PKGBUILD
    (from rev 113954, cpuburn/trunk/PKGBUILD)
  cpuburn/repos/community-x86_64/cpuburn.patch
    (from rev 113954, cpuburn/trunk/cpuburn.patch)
Deleted:
  cpuburn/repos/community-i686/PKGBUILD
  cpuburn/repos/community-i686/cpuburn.patch
  cpuburn/repos/community-x86_64/PKGBUILD
  cpuburn/repos/community-x86_64/cpuburn.patch

--------------------------------+
 /PKGBUILD                      |   62 +++++++++++++++++++++++++++++
 /cpuburn.patch                 |   82 +++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD        |   30 --------------
 community-i686/cpuburn.patch   |   41 -------------------
 community-x86_64/PKGBUILD      |   30 --------------
 community-x86_64/cpuburn.patch |   41 -------------------
 6 files changed, 144 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-07-01 10:25:59 UTC (rev 113954)
+++ community-i686/PKGBUILD	2014-07-01 10:26:12 UTC (rev 113955)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Filip Wojciechowski, filip at loka dot pl
-
-pkgname=cpuburn
-pkgver=1.4a
-pkgrel=3
-pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/ubuntu/+source/cpuburn/"
-license=('GPL')
-depends=()
-source=(https://launchpad.net/ubuntu/+archive/primary/+files/cpuburn_$pkgver.orig.tar.gz
-	cpuburn.patch)
-md5sums=('a9e1df40c660324eb08e91847cbc41b9'
-         'f3c77db7592ac02ee83958f07ceb8986')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i ../cpuburn.patch
-  make
-  install -Dm755 burnBX $pkgdir/usr/bin/burnBX
-  install -Dm755 burnK6 $pkgdir/usr/bin/burnK6
-  install -Dm755 burnK7 $pkgdir/usr/bin/burnK7
-  install -Dm755 burnMMX $pkgdir/usr/bin/burnMMX
-  install -Dm755 burnP5 $pkgdir/usr/bin/burnP5
-  install -Dm755 burnP6 $pkgdir/usr/bin/burnP6
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -Dm644 Design $pkgdir/usr/share/doc/$pkgname/Design
-}

Copied: cpuburn/repos/community-i686/PKGBUILD (from rev 113954, cpuburn/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-07-01 10:26:12 UTC (rev 113955)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=cpuburn
+pkgver=1.4a
+pkgrel=4
+pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/ubuntu/+source/cpuburn/"
+license=('GPL')
+depends=()
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/cpuburn_$pkgver.orig.tar.gz
+	cpuburn.patch)
+md5sums=('a9e1df40c660324eb08e91847cbc41b9'
+         'f3c77db7592ac02ee83958f07ceb8986')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../cpuburn.patch
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  for i in burn{BX,K6,K7,MMX,P5,P6}; do
+    install -Dm755 $i $pkgdir/usr/bin/$i
+  done
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -Dm644 Design $pkgdir/usr/share/doc/$pkgname/Design
+}

Deleted: community-i686/cpuburn.patch
===================================================================
--- community-i686/cpuburn.patch	2014-07-01 10:25:59 UTC (rev 113954)
+++ community-i686/cpuburn.patch	2014-07-01 10:26:12 UTC (rev 113955)
@@ -1,41 +0,0 @@
---- cpuburn-1.4.orig/burnP6.S
-+++ cpuburn-1.4/burnP6.S
-@@ -69,6 +69,7 @@
- 	push	%eax		# *BSD syscall
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
---- cpuburn-1.4.orig/burnK6.S
-+++ cpuburn-1.4/burnK6.S
-@@ -68,6 +68,7 @@
- 	push	%eax
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
---- cpuburn-1.4.orig/Makefile
-+++ cpuburn-1.4/Makefile
-@@ -1,3 +1,3 @@
- all : burnP5 burnP6 burnK6 burnK7 burnBX burnMMX
- .S:
--	gcc -s -nostdlib -o $@ $<
-+	gcc -m32 -s -nostdlib -o $@ $<
---- cpuburn-1.4.orig/burnK7.S
-+++ cpuburn-1.4/burnK7.S
-@@ -74,10 +74,9 @@
- 	push	%eax
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- 	.fill 64
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
- rt:	.long 0xffffffff,0x3fefffff
--
--

Copied: cpuburn/repos/community-i686/cpuburn.patch (from rev 113954, cpuburn/trunk/cpuburn.patch)
===================================================================
--- community-i686/cpuburn.patch	                        (rev 0)
+++ community-i686/cpuburn.patch	2014-07-01 10:26:12 UTC (rev 113955)
@@ -0,0 +1,41 @@
+--- cpuburn-1.4.orig/burnP6.S
++++ cpuburn-1.4/burnP6.S
+@@ -69,6 +69,7 @@
+ 	push	%eax		# *BSD syscall
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+--- cpuburn-1.4.orig/burnK6.S
++++ cpuburn-1.4/burnK6.S
+@@ -68,6 +68,7 @@
+ 	push	%eax
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+--- cpuburn-1.4.orig/Makefile
++++ cpuburn-1.4/Makefile
+@@ -1,3 +1,3 @@
+ all : burnP5 burnP6 burnK6 burnK7 burnBX burnMMX
+ .S:
+-	gcc -s -nostdlib -o $@ $<
++	gcc -m32 -s -nostdlib -o $@ $<
+--- cpuburn-1.4.orig/burnK7.S
++++ cpuburn-1.4/burnK7.S
+@@ -74,10 +74,9 @@
+ 	push	%eax
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ 	.fill 64
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+ rt:	.long 0xffffffff,0x3fefffff
+-
+-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-07-01 10:25:59 UTC (rev 113954)
+++ community-x86_64/PKGBUILD	2014-07-01 10:26:12 UTC (rev 113955)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Filip Wojciechowski, filip at loka dot pl
-
-pkgname=cpuburn
-pkgver=1.4a
-pkgrel=3
-pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/ubuntu/+source/cpuburn/"
-license=('GPL')
-depends=()
-source=(https://launchpad.net/ubuntu/+archive/primary/+files/cpuburn_$pkgver.orig.tar.gz
-	cpuburn.patch)
-md5sums=('a9e1df40c660324eb08e91847cbc41b9'
-         'f3c77db7592ac02ee83958f07ceb8986')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i ../cpuburn.patch
-  make
-  install -Dm755 burnBX $pkgdir/usr/bin/burnBX
-  install -Dm755 burnK6 $pkgdir/usr/bin/burnK6
-  install -Dm755 burnK7 $pkgdir/usr/bin/burnK7
-  install -Dm755 burnMMX $pkgdir/usr/bin/burnMMX
-  install -Dm755 burnP5 $pkgdir/usr/bin/burnP5
-  install -Dm755 burnP6 $pkgdir/usr/bin/burnP6
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -Dm644 Design $pkgdir/usr/share/doc/$pkgname/Design
-}

Copied: cpuburn/repos/community-x86_64/PKGBUILD (from rev 113954, cpuburn/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-07-01 10:26:12 UTC (rev 113955)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=cpuburn
+pkgver=1.4a
+pkgrel=4
+pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/ubuntu/+source/cpuburn/"
+license=('GPL')
+depends=()
+source=(https://launchpad.net/ubuntu/+archive/primary/+files/cpuburn_$pkgver.orig.tar.gz
+	cpuburn.patch)
+md5sums=('a9e1df40c660324eb08e91847cbc41b9'
+         'f3c77db7592ac02ee83958f07ceb8986')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../cpuburn.patch
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  for i in burn{BX,K6,K7,MMX,P5,P6}; do
+    install -Dm755 $i $pkgdir/usr/bin/$i
+  done
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -Dm644 Design $pkgdir/usr/share/doc/$pkgname/Design
+}

Deleted: community-x86_64/cpuburn.patch
===================================================================
--- community-x86_64/cpuburn.patch	2014-07-01 10:25:59 UTC (rev 113954)
+++ community-x86_64/cpuburn.patch	2014-07-01 10:26:12 UTC (rev 113955)
@@ -1,41 +0,0 @@
---- cpuburn-1.4.orig/burnP6.S
-+++ cpuburn-1.4/burnP6.S
-@@ -69,6 +69,7 @@
- 	push	%eax		# *BSD syscall
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
---- cpuburn-1.4.orig/burnK6.S
-+++ cpuburn-1.4/burnK6.S
-@@ -68,6 +68,7 @@
- 	push	%eax
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
---- cpuburn-1.4.orig/Makefile
-+++ cpuburn-1.4/Makefile
-@@ -1,3 +1,3 @@
- all : burnP5 burnP6 burnK6 burnK7 burnBX burnMMX
- .S:
--	gcc -s -nostdlib -o $@ $<
-+	gcc -m32 -s -nostdlib -o $@ $<
---- cpuburn-1.4.orig/burnK7.S
-+++ cpuburn-1.4/burnK7.S
-@@ -74,10 +74,9 @@
- 	push	%eax
- 	int	$0x80
- #endif
-+.data				# Data allocation
- .align 32,0
- 	.fill 64
- half:	.long 0x7fffffff,0
- e:	.long 0xffffffff,0x3fdfffff
- rt:	.long 0xffffffff,0x3fefffff
--
--

Copied: cpuburn/repos/community-x86_64/cpuburn.patch (from rev 113954, cpuburn/trunk/cpuburn.patch)
===================================================================
--- community-x86_64/cpuburn.patch	                        (rev 0)
+++ community-x86_64/cpuburn.patch	2014-07-01 10:26:12 UTC (rev 113955)
@@ -0,0 +1,41 @@
+--- cpuburn-1.4.orig/burnP6.S
++++ cpuburn-1.4/burnP6.S
+@@ -69,6 +69,7 @@
+ 	push	%eax		# *BSD syscall
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+--- cpuburn-1.4.orig/burnK6.S
++++ cpuburn-1.4/burnK6.S
+@@ -68,6 +68,7 @@
+ 	push	%eax
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+--- cpuburn-1.4.orig/Makefile
++++ cpuburn-1.4/Makefile
+@@ -1,3 +1,3 @@
+ all : burnP5 burnP6 burnK6 burnK7 burnBX burnMMX
+ .S:
+-	gcc -s -nostdlib -o $@ $<
++	gcc -m32 -s -nostdlib -o $@ $<
+--- cpuburn-1.4.orig/burnK7.S
++++ cpuburn-1.4/burnK7.S
+@@ -74,10 +74,9 @@
+ 	push	%eax
+ 	int	$0x80
+ #endif
++.data				# Data allocation
+ .align 32,0
+ 	.fill 64
+ half:	.long 0x7fffffff,0
+ e:	.long 0xffffffff,0x3fdfffff
+ rt:	.long 0xffffffff,0x3fefffff
+-
+-




More information about the arch-commits mailing list