[arch-commits] Commit in gnutls/repos/extra-x86_64 (5 files)

2011-08-21 Thread andyrtr
Date: Sunday, August 21, 2011 @ 04:10:46
  Author: andyrtr
Revision: 135996

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/PKGBUILD
(from rev 135995, gnutls/trunk/PKGBUILD)
  gnutls/repos/extra-x86_64/gnutls.install
(from rev 135995, gnutls/trunk/gnutls.install)
Deleted:
  gnutls/repos/extra-x86_64/PKGBUILD
  gnutls/repos/extra-x86_64/align.patch
  gnutls/repos/extra-x86_64/gnutls.install

+
 PKGBUILD   |   84 ++-
 align.patch|   64 -
 gnutls.install |   40 +-
 3 files changed, 61 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-21 08:10:10 UTC (rev 135995)
+++ PKGBUILD2011-08-21 08:10:46 UTC (rev 135996)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnutls
-pkgver=3.0.0
-pkgrel=2
-pkgdesc=A library which provides a secure layer over a reliable transport 
layer
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
-url=http://www.gnu.org/software/gnutls/;
-install=gnutls.install
-options=('!libtool' '!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle=2.2')
-source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz
-   align.patch)
-md5sums=('0677a7f48810ff8df8335a9a9f9b'
- 'bce979498addb45d0fa8d6951f93fab3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # fix AES-NI for i686
-  patch -Np1 -i ${srcdir}/align.patch
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile \
-   --without-p11-kit
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check # passes all  || /bin/true
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
-  find $pkgdir/usr/share/man -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-x86_64/PKGBUILD (from rev 135995, 
gnutls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-21 08:10:46 UTC (rev 135996)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnutls
+pkgver=3.0.1
+pkgrel=1
+pkgdesc=A library which provides a secure layer over a reliable transport 
layer
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url=http://www.gnu.org/software/gnutls/;
+install=gnutls.install
+options=('!libtool' '!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle=2.2')
+makedepends=('valgrind')
+source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz)
+md5sums=('23d86dbb3ef9985ce7d2b8dc37fa17a3')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile \
+   --without-p11-kit \
+   --disable-valgrind-tests # breaks make check. errors have been reported 
upstream
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check # passes all  || /bin/true
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find $pkgdir/usr/share/info -name '*.info*' -exec gzip -9 {} \;
+  find $pkgdir/usr/share/man -exec gzip -9 {} \;
+}

Deleted: align.patch
===
--- align.patch 2011-08-21 08:10:10 UTC (rev 135995)
+++ align.patch 2011-08-21 08:10:46 UTC (rev 135996)
@@ -1,64 +0,0 @@
-diff --git a/lib/accelerated/intel/aes-x86.c b/lib/accelerated/intel/aes-x86.c
-index 6801e7e..ff5b714 100644
 a/lib/accelerated/intel/aes-x86.c
-+++ b/lib/accelerated/intel/aes-x86.c
-@@ -40,6 +40,10 @@ struct aes_ctx
-   uint8_t iv[16];
- };
- 
-+#define AESNI_MIN_ALIGN 16
-+#define AESNI_ALIGN(x) \
-+((void *)(((size_t)(x)+AESNI_MIN_ALIGN-1)~(AESNI_MIN_ALIGN-1)))
-+
- static int
- aes_cipher_init (gnutls_cipher_algorithm_t algorithm, void **_ctx)
- {
-@@ -69,11 +73,11 @@ aes_cipher_setkey (void *_ctx, const void *userkey, size_t 
keysize)
-   struct aes_ctx *ctx = _ctx;
-   int ret;
- 
--  ret = aesni_set_encrypt_key (userkey, keysize * 8, ctx-expanded_key);
-+  ret = aesni_set_encrypt_key (userkey, keysize * 8, 
AESNI_ALIGN(ctx-expanded_key));
-   if (ret != 0)
- return gnutls_assert_val (GNUTLS_E_ENCRYPTION_FAILED);
- 
--  ret = aesni_set_decrypt_key (userkey, keysize * 8, ctx-expanded_key_dec);
-+  ret = aesni_set_decrypt_key (userkey, keysize * 8, 

[arch-commits] Commit in gnutls/repos (extra-x86_64 testing-x86_64)

2011-07-20 Thread andyrtr
Date: Wednesday, July 20, 2011 @ 15:30:19
  Author: andyrtr
Revision: 132142

db-move: moved gnutls from [testing] to [extra] (x86_64)

Added:
  gnutls/repos/extra-x86_64/
Deleted:
  gnutls/repos/testing-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-07-20 Thread andyrtr
Date: Wednesday, July 20, 2011 @ 15:30:18
  Author: andyrtr
Revision: 132141

db-move: gnutls removed by andyrtr for move to [extra] (x86_64)

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-06-24 Thread andyrtr
Date: Friday, June 24, 2011 @ 03:05:36
  Author: andyrtr
Revision: 128507

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-06-24 Thread andyrtr
Date: Friday, June 24, 2011 @ 03:05:58
  Author: andyrtr
Revision: 128508

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-06-05 Thread andyrtr
Date: Sunday, June 5, 2011 @ 09:12:16
  Author: andyrtr
Revision: 126450

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-06-05 Thread andyrtr
Date: Sunday, June 5, 2011 @ 09:12:33
  Author: andyrtr
Revision: 126451

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-05-14 Thread andyrtr
Date: Saturday, May 14, 2011 @ 11:30:30
  Author: andyrtr
Revision: 123953

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-05-14 Thread andyrtr
Date: Saturday, May 14, 2011 @ 11:30:50
  Author: andyrtr
Revision: 123954

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-05-07 Thread andyrtr
Date: Saturday, May 7, 2011 @ 12:08:02
  Author: andyrtr
Revision: 123034

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-05-07 Thread andyrtr
Date: Saturday, May 7, 2011 @ 12:08:21
  Author: andyrtr
Revision: 123035

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-04-24 Thread andyrtr
Date: Sunday, April 24, 2011 @ 09:20:13
  Author: andyrtr
Revision: 120492

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-04-24 Thread andyrtr
Date: Sunday, April 24, 2011 @ 09:20:36
  Author: andyrtr
Revision: 120493

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-04-09 Thread andyrtr
Date: Saturday, April 9, 2011 @ 04:06:58
  Author: andyrtr
Revision: 118878

db-move: gnutls removed by andyrtr for move to [extra] (x86_64)

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64 testing-x86_64)

2011-04-09 Thread andyrtr
Date: Saturday, April 9, 2011 @ 04:06:59
  Author: andyrtr
Revision: 118879

db-move: moved gnutls from [testing] to [extra] (x86_64)

Added:
  gnutls/repos/extra-x86_64/
Deleted:
  gnutls/repos/testing-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-04-09 Thread andyrtr
Date: Saturday, April 9, 2011 @ 05:01:42
  Author: andyrtr
Revision: 118883

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-04-09 Thread andyrtr
Date: Saturday, April 9, 2011 @ 05:01:59
  Author: andyrtr
Revision: 118884

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-03-13 Thread andyrtr
Date: Sunday, March 13, 2011 @ 05:55:43
  Author: andyrtr
Revision: 114399

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2011-03-13 Thread andyrtr
Date: Sunday, March 13, 2011 @ 05:56:00
  Author: andyrtr
Revision: 114400

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2010-12-18 Thread andyrtr
Date: Saturday, December 18, 2010 @ 10:36:22
  Author: andyrtr
Revision: 103374

db-move: gnutls removed by andyrtr for move to [extra] (x86_64)

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64 testing-x86_64)

2010-12-18 Thread andyrtr
Date: Saturday, December 18, 2010 @ 10:36:23
  Author: andyrtr
Revision: 103375

db-move: moved gnutls from [testing] to [extra] (x86_64)

Added:
  gnutls/repos/extra-x86_64/
Deleted:
  gnutls/repos/testing-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2010-03-21 Thread Jan de Groot
Date: Sunday, March 21, 2010 @ 13:04:49
  Author: jgc
Revision: 72989

archrelease: remove extra-x86_64

Deleted:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64)

2010-03-21 Thread Jan de Groot
Date: Sunday, March 21, 2010 @ 13:04:55
  Author: jgc
Revision: 72990

archrelease: copy trunk to extra-x86_64

Added:
  gnutls/repos/extra-x86_64/



[arch-commits] Commit in gnutls/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2009-10-31 Thread Jan de Groot
Date: Saturday, October 31, 2009 @ 16:40:21
  Author: jgc
Revision: 57540

Merged revisions 57539 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gnutls/trunk


  r57539 | jgc | 2009-10-31 21:40:06 +0100 (Sat, 31 Oct 2009) | 2 lines
  
  upgpkg: gnutls 2.8.4-1
  Update to 2.8.4


Modified:
  gnutls/repos/extra-x86_64/(properties)
  gnutls/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)


Property changes on: gnutls/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /gnutls/trunk:1-50421
   + /gnutls/trunk:1-57539

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2009-10-31 20:40:06 UTC (rev 57539)
+++ extra-x86_64/PKGBUILD   2009-10-31 20:40:21 UTC (rev 57540)
@@ -5,7 +5,7 @@
 # When building a new major version, build, install, build again.
 #
 pkgname=gnutls
-pkgver=2.8.3
+pkgver=2.8.4
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
 arch=(i686 x86_64)
@@ -13,14 +13,13 @@
 url=http://www.gnu.org/software/gnutls/;
 install=gnutls.install
 options=('libtool')
-depends=('gcc-libs=4.4' 'libtasn1=2.2' 'readline=6.0' 'zlib' 
'libgcrypt=1.4.4' 'texinfo')
+depends=('gcc-libs=4.4.2' 'libtasn1=2.2' 'readline=6.0' 'zlib' 
'libgcrypt=1.4.4' 'texinfo')
 source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('72b77092c5d1ae01306cd14c0f22d6e4')
+md5sums=('aafba37c0993595ba2ab98587b57a3de')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --with-zlib --disable-guile || return 1
   make || return 1
   make DESTDIR=${pkgdir} install || return 1
-  rm -f ${pkgdir}/usr/share/info/dir
 }