[arch-commits] Commit in xdelta3/repos (7 files)
Alexander Rødseth
arodseth at nymeria.archlinux.org
Fri Jan 31 12:10:31 UTC 2014
Date: Friday, January 31, 2014 @ 13:10:31
Author: arodseth
Revision: 105087
archrelease: copy trunk to community-x86_64, community-i686
Added:
xdelta3/repos/community-i686/PKGBUILD
(from rev 105086, xdelta3/trunk/PKGBUILD)
xdelta3/repos/community-i686/regtest_size_t.patch
(from rev 105086, xdelta3/trunk/regtest_size_t.patch)
xdelta3/repos/community-x86_64/PKGBUILD
(from rev 105086, xdelta3/trunk/PKGBUILD)
xdelta3/repos/community-x86_64/regtest_size_t.patch
(from rev 105086, xdelta3/trunk/regtest_size_t.patch)
Deleted:
xdelta3/repos/community-i686/PKGBUILD
xdelta3/repos/community-i686/xdelta-3.0.7-regtest_size_t.patch
xdelta3/repos/community-x86_64/PKGBUILD
--------------------------------------------------+
/PKGBUILD | 88 +++++++++++++++++++++
community-i686/PKGBUILD | 38 ---------
community-i686/regtest_size_t.patch | 11 ++
community-i686/xdelta-3.0.7-regtest_size_t.patch | 11 --
community-x86_64/PKGBUILD | 31 -------
community-x86_64/regtest_size_t.patch | 11 ++
6 files changed, 110 insertions(+), 80 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2014-01-31 12:10:19 UTC (rev 105086)
+++ community-i686/PKGBUILD 2014-01-31 12:10:31 UTC (rev 105087)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: Eduard "bekks" Warkentin <eduard.warkentin at gmail.com>
-# Contributor: Henning Garus <henning.garus at gmail.com>
-
-pkgname=xdelta3
-pkgver=3.0.7
-pkgrel=1
-pkgdesc="Diff utility which works with binary files"
-arch=('i686' 'x86_64')
-url="http://xdelta.org/"
-license=('GPL')
-depends=('xz')
-source=(http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz
- xdelta-3.0.7-regtest_size_t.patch)
-md5sums=('ef6631e4f9219a80bcb9e3020962b6ec'
- '450492f0065160c2287b7e89223726e0')
-
-prepare() {
- cd $pkgname-$pkgver
- patch -Np1 -i ../xdelta-3.0.7-regtest_size_t.patch
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr
- make
-}
-
-check() {
- cd $pkgname-$pkgver
- ./xdelta3 test
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-}
Copied: xdelta3/repos/community-i686/PKGBUILD (from rev 105086, xdelta3/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-31 12:10:31 UTC (rev 105087)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Eduard "bekks" Warkentin <eduard.warkentin at gmail.com>
+# Contributor: Henning Garus <henning.garus at gmail.com>
+
+pkgname=xdelta3
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Diff utility which works with binary files'
+arch=('x86_64' 'i686')
+url='http://xdelta.org/'
+license=('GPL')
+depends=('xz')
+source=("http://${pkgname/3}.googlecode.com/files/$pkgname-$pkgver.tar.xz"
+ 'regtest_size_t.patch')
+# SHA1 sum from https://code.google.com/p/xdelta/downloads/detail?name=xdelta3-3.0.8.tar.xz&can=2&q=
+sha1sums=('62c7a029e96c0904bb47a5e2f3de08473a185539'
+ 'c2816b5d4bfb405d3adb771fa09b367a88971240')
+
+prepare() {
+ cd "$pkgname-$pkgver"
+
+ patch -Np1 -i ../regtest_size_t.patch
+}
+
+check() {
+ cd "$pkgname-$pkgver"
+
+ ./$pkgname test
+}
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:
Copied: xdelta3/repos/community-i686/regtest_size_t.patch (from rev 105086, xdelta3/trunk/regtest_size_t.patch)
===================================================================
--- community-i686/regtest_size_t.patch (rev 0)
+++ community-i686/regtest_size_t.patch 2014-01-31 12:10:31 UTC (rev 105087)
@@ -0,0 +1,11 @@
+--- a/testing/regtest.cc
++++ b/testing/regtest.cc
+@@ -12,7 +12,7 @@ public:
+ Options() : encode_srcwin_maxsz(1<<20),
+ block_size(Constants::BLOCK_SIZE),
+ size_known(false) { }
+- size_t encode_srcwin_maxsz;
++ uint64_t encode_srcwin_maxsz;
+ size_t block_size;
+ bool size_known;
+ };
Deleted: community-i686/xdelta-3.0.7-regtest_size_t.patch
===================================================================
--- community-i686/xdelta-3.0.7-regtest_size_t.patch 2014-01-31 12:10:19 UTC (rev 105086)
+++ community-i686/xdelta-3.0.7-regtest_size_t.patch 2014-01-31 12:10:31 UTC (rev 105087)
@@ -1,11 +0,0 @@
---- a/testing/regtest.cc
-+++ b/testing/regtest.cc
-@@ -12,7 +12,7 @@ public:
- Options() : encode_srcwin_maxsz(1<<20),
- block_size(Constants::BLOCK_SIZE),
- size_known(false) { }
-- size_t encode_srcwin_maxsz;
-+ uint64_t encode_srcwin_maxsz;
- size_t block_size;
- bool size_known;
- };
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2014-01-31 12:10:19 UTC (rev 105086)
+++ community-x86_64/PKGBUILD 2014-01-31 12:10:31 UTC (rev 105087)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: Eduard "bekks" Warkentin <eduard.warkentin at gmail.com>
-# Contributor: Henning Garus <henning.garus at gmail.com>
-
-pkgname=xdelta3
-pkgver=3.0.7
-pkgrel=1
-pkgdesc="Diff utility which works with binary files"
-arch=('i686' 'x86_64')
-url="http://xdelta.org/"
-license=('GPL')
-depends=('xz')
-source=(http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('ef6631e4f9219a80bcb9e3020962b6ec')
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr
- make
-}
-
-check() {
- cd $pkgname-$pkgver
- ./xdelta3 test
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-}
Copied: xdelta3/repos/community-x86_64/PKGBUILD (from rev 105086, xdelta3/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2014-01-31 12:10:31 UTC (rev 105087)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Eduard "bekks" Warkentin <eduard.warkentin at gmail.com>
+# Contributor: Henning Garus <henning.garus at gmail.com>
+
+pkgname=xdelta3
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Diff utility which works with binary files'
+arch=('x86_64' 'i686')
+url='http://xdelta.org/'
+license=('GPL')
+depends=('xz')
+source=("http://${pkgname/3}.googlecode.com/files/$pkgname-$pkgver.tar.xz"
+ 'regtest_size_t.patch')
+# SHA1 sum from https://code.google.com/p/xdelta/downloads/detail?name=xdelta3-3.0.8.tar.xz&can=2&q=
+sha1sums=('62c7a029e96c0904bb47a5e2f3de08473a185539'
+ 'c2816b5d4bfb405d3adb771fa09b367a88971240')
+
+prepare() {
+ cd "$pkgname-$pkgver"
+
+ patch -Np1 -i ../regtest_size_t.patch
+}
+
+check() {
+ cd "$pkgname-$pkgver"
+
+ ./$pkgname test
+}
+
+build() {
+ cd "$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:
Copied: xdelta3/repos/community-x86_64/regtest_size_t.patch (from rev 105086, xdelta3/trunk/regtest_size_t.patch)
===================================================================
--- community-x86_64/regtest_size_t.patch (rev 0)
+++ community-x86_64/regtest_size_t.patch 2014-01-31 12:10:31 UTC (rev 105087)
@@ -0,0 +1,11 @@
+--- a/testing/regtest.cc
++++ b/testing/regtest.cc
+@@ -12,7 +12,7 @@ public:
+ Options() : encode_srcwin_maxsz(1<<20),
+ block_size(Constants::BLOCK_SIZE),
+ size_known(false) { }
+- size_t encode_srcwin_maxsz;
++ uint64_t encode_srcwin_maxsz;
+ size_t block_size;
+ bool size_known;
+ };
More information about the arch-commits
mailing list