[arch-commits] Commit in oath-toolkit/repos (6 files)

Christian Hesse eworm at archlinux.org
Sat Aug 1 09:39:55 UTC 2015


    Date: Saturday, August 1, 2015 @ 11:39:54
  Author: eworm
Revision: 137652

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

Added:
  oath-toolkit/repos/community-i686/PKGBUILD
    (from rev 137651, oath-toolkit/trunk/PKGBUILD)
  oath-toolkit/repos/community-x86_64/PKGBUILD
    (from rev 137651, oath-toolkit/trunk/PKGBUILD)
Deleted:
  oath-toolkit/repos/community-i686/0001-fix-make-check-on-32-bit-systems.patch
  oath-toolkit/repos/community-i686/PKGBUILD
  oath-toolkit/repos/community-x86_64/0001-fix-make-check-on-32-bit-systems.patch
  oath-toolkit/repos/community-x86_64/PKGBUILD

--------------------------------------------------------------+
 /PKGBUILD                                                    |   74 ++++++++++
 community-i686/0001-fix-make-check-on-32-bit-systems.patch   |   43 -----
 community-i686/PKGBUILD                                      |   45 ------
 community-x86_64/0001-fix-make-check-on-32-bit-systems.patch |   43 -----
 community-x86_64/PKGBUILD                                    |   45 ------
 5 files changed, 74 insertions(+), 176 deletions(-)

Deleted: community-i686/0001-fix-make-check-on-32-bit-systems.patch
===================================================================
--- community-i686/0001-fix-make-check-on-32-bit-systems.patch	2015-08-01 09:36:53 UTC (rev 137651)
+++ community-i686/0001-fix-make-check-on-32-bit-systems.patch	2015-08-01 09:39:54 UTC (rev 137652)
@@ -1,43 +0,0 @@
-From 547065646f96d8e7a3b88ebc03b0fd35294e9d11 Mon Sep 17 00:00:00 2001
-From: Christian Hesse <mail at eworm.de>
-Date: Mon, 25 May 2015 17:34:19 +0200
-Subject: [PATCH 1/1] fix make check on 32 bit systems
-
-Some tests break with time_t limited to 32 bit. The test code has
-exception, but bad values. Update the values to what we expect and make
-tests pass.
-
-Signed-off-by: Christian Hesse <mail at eworm.de>
----
- liboath/tests/tst_totp_algo.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/liboath/tests/tst_totp_algo.c b/liboath/tests/tst_totp_algo.c
-index 019efb9..f56be1f 100644
---- a/liboath/tests/tst_totp_algo.c
-+++ b/liboath/tests/tst_totp_algo.c
-@@ -131,8 +131,8 @@ main (void)
-       if (strcmp (otp, tv[i].sha256otp) != 0)
- 	{
- 	  printf ("otp[%ld] got %s expected2 %s\n", i, otp, tv[i].sha256otp);
--	  if (strcmp (otp, "82762030") == 0
--	      && strcmp (tv[i].sha256otp, "65353130") == 0)
-+	  if (strcmp (otp, "11281421") == 0
-+	      && strcmp (tv[i].sha256otp, "77737706") == 0)
- 	    printf ("Mismatch due to 32-bit time_t...\n");
- 	  else
- 	    return 1;
-@@ -153,8 +153,8 @@ main (void)
-       if (strcmp (otp, tv[i].sha512otp) != 0)
- 	{
- 	  printf ("otp[%ld] got %s expected2 %s\n", i, otp, tv[i].sha512otp);
--	  if (strcmp (otp, "82762030") == 0
--	      && strcmp (tv[i].sha512otp, "65353130") == 0)
-+	  if (strcmp (otp, "29833534") == 0
-+	      && strcmp (tv[i].sha512otp, "47863826") == 0)
- 	    printf ("Mismatch due to 32-bit time_t...\n");
- 	  else
- 	    return 1;
--- 
-2.4.1
-

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-08-01 09:36:53 UTC (rev 137651)
+++ community-i686/PKGBUILD	2015-08-01 09:39:54 UTC (rev 137652)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Maintainer: Christian Hesse <mail at eworm.de>
-# Contributor: L42y <423300 at gmail.com>
-
-pkgname=oath-toolkit
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='OATH one-time password toolkit'
-arch=('i686' 'x86_64')
-url='http://www.nongnu.org/oath-toolkit/'
-license=('GPL3')
-depends=('glibc' 'pam' 'xmlsec')
-validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
-source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
-        '0001-fix-make-check-on-32-bit-systems.patch')
-md5sums=('f19f1c47eb7d1c609b3e244876b9ce63'
-         'SKIP'
-         'd3c1a32357fb27f67a82bffd08331062')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 < "${srcdir}/0001-fix-make-check-on-32-bit-systems.patch"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # Install basic docs too
-  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
-  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: oath-toolkit/repos/community-i686/PKGBUILD (from rev 137651, oath-toolkit/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-08-01 09:39:54 UTC (rev 137652)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Christian Hesse <mail at eworm.de>
+# Contributor: Sébastien Luttringer
+# Contributor: L42y <423300 at gmail.com>
+
+pkgname=oath-toolkit
+pkgver=2.6.1
+pkgrel=1
+pkgdesc='OATH one-time password toolkit'
+arch=('i686' 'x86_64')
+url='http://www.nongnu.org/oath-toolkit/'
+license=('GPL3')
+depends=('glibc' 'pam' 'xmlsec')
+validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('9c57831907bc26eadcdf90ba1827d0bd962dd1f737362e817a1dd6d6ec036f79'
+            'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # Install basic docs too
+  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
+  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}
+

Deleted: community-x86_64/0001-fix-make-check-on-32-bit-systems.patch
===================================================================
--- community-x86_64/0001-fix-make-check-on-32-bit-systems.patch	2015-08-01 09:36:53 UTC (rev 137651)
+++ community-x86_64/0001-fix-make-check-on-32-bit-systems.patch	2015-08-01 09:39:54 UTC (rev 137652)
@@ -1,43 +0,0 @@
-From 547065646f96d8e7a3b88ebc03b0fd35294e9d11 Mon Sep 17 00:00:00 2001
-From: Christian Hesse <mail at eworm.de>
-Date: Mon, 25 May 2015 17:34:19 +0200
-Subject: [PATCH 1/1] fix make check on 32 bit systems
-
-Some tests break with time_t limited to 32 bit. The test code has
-exception, but bad values. Update the values to what we expect and make
-tests pass.
-
-Signed-off-by: Christian Hesse <mail at eworm.de>
----
- liboath/tests/tst_totp_algo.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/liboath/tests/tst_totp_algo.c b/liboath/tests/tst_totp_algo.c
-index 019efb9..f56be1f 100644
---- a/liboath/tests/tst_totp_algo.c
-+++ b/liboath/tests/tst_totp_algo.c
-@@ -131,8 +131,8 @@ main (void)
-       if (strcmp (otp, tv[i].sha256otp) != 0)
- 	{
- 	  printf ("otp[%ld] got %s expected2 %s\n", i, otp, tv[i].sha256otp);
--	  if (strcmp (otp, "82762030") == 0
--	      && strcmp (tv[i].sha256otp, "65353130") == 0)
-+	  if (strcmp (otp, "11281421") == 0
-+	      && strcmp (tv[i].sha256otp, "77737706") == 0)
- 	    printf ("Mismatch due to 32-bit time_t...\n");
- 	  else
- 	    return 1;
-@@ -153,8 +153,8 @@ main (void)
-       if (strcmp (otp, tv[i].sha512otp) != 0)
- 	{
- 	  printf ("otp[%ld] got %s expected2 %s\n", i, otp, tv[i].sha512otp);
--	  if (strcmp (otp, "82762030") == 0
--	      && strcmp (tv[i].sha512otp, "65353130") == 0)
-+	  if (strcmp (otp, "29833534") == 0
-+	      && strcmp (tv[i].sha512otp, "47863826") == 0)
- 	    printf ("Mismatch due to 32-bit time_t...\n");
- 	  else
- 	    return 1;
--- 
-2.4.1
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-08-01 09:36:53 UTC (rev 137651)
+++ community-x86_64/PKGBUILD	2015-08-01 09:39:54 UTC (rev 137652)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Maintainer: Christian Hesse <mail at eworm.de>
-# Contributor: L42y <423300 at gmail.com>
-
-pkgname=oath-toolkit
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='OATH one-time password toolkit'
-arch=('i686' 'x86_64')
-url='http://www.nongnu.org/oath-toolkit/'
-license=('GPL3')
-depends=('glibc' 'pam' 'xmlsec')
-validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
-source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
-        '0001-fix-make-check-on-32-bit-systems.patch')
-md5sums=('f19f1c47eb7d1c609b3e244876b9ce63'
-         'SKIP'
-         'd3c1a32357fb27f67a82bffd08331062')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 < "${srcdir}/0001-fix-make-check-on-32-bit-systems.patch"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # Install basic docs too
-  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
-  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: oath-toolkit/repos/community-x86_64/PKGBUILD (from rev 137651, oath-toolkit/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-08-01 09:39:54 UTC (rev 137652)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Christian Hesse <mail at eworm.de>
+# Contributor: Sébastien Luttringer
+# Contributor: L42y <423300 at gmail.com>
+
+pkgname=oath-toolkit
+pkgver=2.6.1
+pkgrel=1
+pkgdesc='OATH one-time password toolkit'
+arch=('i686' 'x86_64')
+url='http://www.nongnu.org/oath-toolkit/'
+license=('GPL3')
+depends=('glibc' 'pam' 'xmlsec')
+validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('9c57831907bc26eadcdf90ba1827d0bd962dd1f737362e817a1dd6d6ec036f79'
+            'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # Install basic docs too
+  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
+  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}
+



More information about the arch-commits mailing list