[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-12-12 Thread Jan Steffens via arch-commits
Date: Saturday, December 12, 2020 @ 13:07:03
  Author: heftig
Revision: 404094

0.23.22-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-12 12:46:13 UTC (rev 404093)
+++ PKGBUILD2020-12-12 13:07:03 UTC (rev 404094)
@@ -3,7 +3,7 @@
 
 pkgbase=p11-kit
 pkgname=(p11-kit libp11-kit)
-pkgver=0.23.21
+pkgver=0.23.22
 pkgrel=1
 pkgdesc="Loads and enumerates PKCS#11 modules"
 url="https://p11-glue.freedesktop.org;
@@ -47,7 +47,7 @@
   install=p11-kit.install
 
   DESTDIR="$pkgdir" meson install -C build
-  ln -sr "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 
   # Split libp11-kit
   _pick lib "$pkgdir"/usr/include


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-08-18 Thread Jan Steffens via arch-commits
Date: Tuesday, August 18, 2020 @ 15:53:18
  Author: heftig
Revision: 394370

0.23.21-1

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-18 12:49:04 UTC (rev 394369)
+++ PKGBUILD2020-08-18 15:53:18 UTC (rev 394370)
@@ -1,15 +1,15 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
 pkgbase=p11-kit
 pkgname=(p11-kit libp11-kit)
-pkgver=0.23.20
-pkgrel=5
+pkgver=0.23.21
+pkgrel=1
 pkgdesc="Loads and enumerates PKCS#11 modules"
 url="https://p11-glue.freedesktop.org;
 arch=(x86_64)
 license=(BSD)
-makedepends=(gtk-doc git meson libtasn1 libffi systemd)
+makedepends=(gtk-doc git meson libtasn1 libffi systemd bash-completion)
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;)
 sha256sums=('SKIP')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF'  # Stef Walter
@@ -25,7 +25,7 @@
 -D gtk_doc=true \
 -D man=true \
 -D 
trust_paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
-  ninja -C build
+  meson compile -C build
 }
 
 check() {


[arch-commits] Commit in p11-kit/trunk (PKGBUILD p11-kit.install)

2020-05-02 Thread Jan Steffens via arch-commits
Date: Saturday, May 2, 2020 @ 12:25:21
  Author: heftig
Revision: 382144

0.23.20-5: FS#66276 replace use of systemctl

Modified:
  p11-kit/trunk/PKGBUILD
  p11-kit/trunk/p11-kit.install

-+
 PKGBUILD|4 ++--
 p11-kit.install |   25 +
 2 files changed, 19 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-02 11:20:18 UTC (rev 382143)
+++ PKGBUILD2020-05-02 12:25:21 UTC (rev 382144)
@@ -4,7 +4,7 @@
 pkgbase=p11-kit
 pkgname=(p11-kit libp11-kit)
 pkgver=0.23.20
-pkgrel=4
+pkgrel=5
 pkgdesc="Loads and enumerates PKCS#11 modules"
 url="https://p11-glue.freedesktop.org;
 arch=(x86_64)
@@ -43,7 +43,7 @@
 }
 
 package_p11-kit() {
-  depends=("libp11-kit=$pkgver-$pkgrel" systemd libp11-kit.so libsystemd.so)
+  depends=("libp11-kit=$pkgver-$pkgrel" coreutils libp11-kit.so libsystemd.so)
   install=p11-kit.install
 
   DESTDIR="$pkgdir" meson install -C build

Modified: p11-kit.install
===
--- p11-kit.install 2020-05-02 11:20:18 UTC (rev 382143)
+++ p11-kit.install 2020-05-02 12:25:21 UTC (rev 382144)
@@ -1,14 +1,23 @@
+_global_units() {
+local unit=p11-kit-server.socket dir=/etc/systemd/user/sockets.target.wants
+
+case $1 in
+enable)
+mkdir -p $dir
+ln -sf /usr/lib/systemd/user/$unit $dir/$unit
+;;
+disable)
+rm -f $dir/$unit
+rmdir -p --ignore-fail-on-non-empty $dir
+;;
+esac
+}
+
 post_install() {
   # Enable socket by default
-  systemctl --global enable p11-kit-server.socket
+  _global_units enable
 }
 
-post_upgrade() {
-  if (( $(vercmp $2 0.23.13-1) < 0)); then
-systemctl --global enable p11-kit-server.socket
-  fi
-}
-
 pre_remove() {
-  systemctl --global disable p11-kit-server.socket
+  _global_units disable
 }


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-04-08 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 8, 2020 @ 14:59:44
  Author: foutrelis
Revision: 379837

libffi 3.3 rebuild

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-08 14:52:21 UTC (rev 379836)
+++ PKGBUILD2020-04-08 14:59:44 UTC (rev 379837)
@@ -4,7 +4,7 @@
 pkgbase=p11-kit
 pkgname=(p11-kit libp11-kit)
 pkgver=0.23.20
-pkgrel=3
+pkgrel=4
 pkgdesc="Loads and enumerates PKCS#11 modules"
 url="https://p11-glue.freedesktop.org;
 arch=(x86_64)


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-03-10 Thread Jan Steffens via arch-commits
Date: Tuesday, March 10, 2020 @ 16:19:03
  Author: heftig
Revision: 377320

0.23.20-3: FS#65769 split libp11-kit

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |   48 +---
 1 file changed, 37 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-10 16:12:29 UTC (rev 377319)
+++ PKGBUILD2020-03-10 16:19:03 UTC (rev 377320)
@@ -1,17 +1,15 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
-pkgname=p11-kit
+pkgbase=p11-kit
+pkgname=(p11-kit libp11-kit)
 pkgver=0.23.20
-pkgrel=2
-pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
+pkgrel=3
+pkgdesc="Loads and enumerates PKCS#11 modules"
+url="https://p11-glue.freedesktop.org;
 arch=(x86_64)
-url="https://p11-glue.freedesktop.org;
 license=(BSD)
-depends=(glibc libtasn1 libffi systemd)
-makedepends=(gtk-doc git meson)
-provides=(libp11-kit.so)
-install=p11-kit.install
+makedepends=(gtk-doc git meson libtasn1 libffi systemd)
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;)
 sha256sums=('SKIP')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF'  # Stef Walter
@@ -34,12 +32,40 @@
   meson test -C build --print-errorlogs
 }
 
-package() {
-  depends+=(libsystemd.so)
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
 
+package_p11-kit() {
+  depends=("libp11-kit=$pkgver-$pkgrel" systemd libp11-kit.so libsystemd.so)
+  install=p11-kit.install
+
   DESTDIR="$pkgdir" meson install -C build
+  ln -sr "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
+
+  # Split libp11-kit
+  _pick lib "$pkgdir"/usr/include
+  _pick lib "$pkgdir"/usr/lib/{p11-kit-proxy.so,libp11-kit.*}
+  _pick lib "$pkgdir"/usr/lib/{pkcs11,pkgconfig}
+  _pick lib "$pkgdir"/usr/share/{locale,p11-kit}
+
   install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 p11-kit/COPYING
-  ln -sr "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 }
 
+package_libp11-kit() {
+  pkgdesc+=" (library)"
+  depends=(glibc libtasn1 libffi)
+  provides=(libp11-kit.so)
+
+  mv lib/* "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 p11-kit/COPYING
+}
+
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-01-29 Thread Jan Steffens via arch-commits
Date: Wednesday, January 29, 2020 @ 19:10:30
  Author: heftig
Revision: 374256

remove unused _commit

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-29 18:26:48 UTC (rev 374255)
+++ PKGBUILD2020-01-29 19:10:30 UTC (rev 374256)
@@ -12,7 +12,6 @@
 makedepends=(gtk-doc git meson)
 provides=(libp11-kit.so)
 install=p11-kit.install
-_commit=762cdaa2cd5c5ec09cc844f9a6bdc551c7f6c8ed  # tags/0.23.20^0
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;)
 sha256sums=('SKIP')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF'  # Stef Walter


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Wednesday, January 29, 2020 @ 18:26:43
  Author: bpiotrowski
Revision: 374254

0.23.20-2

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-29 18:24:04 UTC (rev 374253)
+++ PKGBUILD2020-01-29 18:26:43 UTC (rev 374254)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.23.20
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Wednesday, January 29, 2020 @ 17:56:07
  Author: bpiotrowski
Revision: 374246

0.23.20-1

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-29 15:54:16 UTC (rev 374245)
+++ PKGBUILD2020-01-29 17:56:07 UTC (rev 374246)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.19
-pkgrel=2
+pkgver=0.23.20
+pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;
@@ -12,6 +12,7 @@
 makedepends=(gtk-doc git meson)
 provides=(libp11-kit.so)
 install=p11-kit.install
+_commit=762cdaa2cd5c5ec09cc844f9a6bdc551c7f6c8ed  # tags/0.23.20^0
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;)
 sha256sums=('SKIP')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF'  # Stef Walter


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-01-22 Thread Jan Steffens via arch-commits
Date: Wednesday, January 22, 2020 @ 09:04:34
  Author: heftig
Revision: 373779

add libprovides

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-22 09:01:24 UTC (rev 373778)
+++ PKGBUILD2020-01-22 09:04:34 UTC (rev 373779)
@@ -10,6 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi systemd)
 makedepends=(gtk-doc git meson)
+provides=(libp11-kit.so)
 install=p11-kit.install
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;
 0001-Build-and-install-libnssckbi-p11-kit.so.patch)


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2020-01-22 Thread Jan Steffens via arch-commits
Date: Wednesday, January 22, 2020 @ 09:01:24
  Author: heftig
Revision: 373778

0.23.19-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-22 08:09:34 UTC (rev 373777)
+++ PKGBUILD2020-01-22 09:01:24 UTC (rev 373778)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.18.1
-pkgrel=2
+pkgver=0.23.19
+pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2019-11-19 Thread Jan Steffens via arch-commits
Date: Tuesday, November 19, 2019 @ 15:54:22
  Author: heftig
Revision: 369436

enable debugging

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-19 15:53:17 UTC (rev 369435)
+++ PKGBUILD2019-11-19 15:54:22 UTC (rev 369436)
@@ -30,6 +30,7 @@
 
 build() {
   arch-meson p11-kit build \
+--buildtype debugoptimized \
 -D gtk_doc=true \
 -D man=true \
 -D 
trust_paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2019-11-13 Thread Felix Yan via arch-commits
Date: Wednesday, November 13, 2019 @ 17:14:22
  Author: felixonmars
Revision: 368308

[core] mass rebuild

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-13 17:13:31 UTC (rev 368307)
+++ PKGBUILD2019-11-13 17:14:22 UTC (rev 368308)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.23.18.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2019-05-23 Thread Jan Steffens via arch-commits
Date: Thursday, May 23, 2019 @ 13:05:11
  Author: heftig
Revision: 353917

0.23.16.1-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-23 11:35:19 UTC (rev 353916)
+++ PKGBUILD2019-05-23 13:05:11 UTC (rev 353917)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.15
+pkgver=0.23.16.1
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
@@ -42,14 +42,10 @@
   make
 }
 
-check() (
+check() {
   cd p11-kit
-
-  # https://github.com/p11-glue/p11-kit/issues/212
-  unset SOURCE_DATE_EPOCH
-
   make check
-)
+}
 
 package() {
   cd p11-kit


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-09-05 Thread Jan Steffens via arch-commits
Date: Wednesday, September 5, 2018 @ 11:27:11
  Author: heftig
Revision: 333430

FS#59897 add systemd depend

Modified:
  p11-kit/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-05 08:48:47 UTC (rev 333429)
+++ PKGBUILD2018-09-05 11:27:11 UTC (rev 333430)
@@ -1,4 +1,4 @@
-# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
@@ -8,7 +8,7 @@
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;
 license=(BSD)
-depends=(glibc libtasn1 libffi libsystemd)
+depends=(glibc libtasn1 libffi systemd)
 makedepends=(gtk-doc git)
 install=p11-kit.install
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;


Property changes on: p11-kit/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-08-28 Thread Jan Steffens via arch-commits
Date: Wednesday, August 29, 2018 @ 05:30:44
  Author: heftig
Revision: 333071

0.23.14-1

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-29 05:30:40 UTC (rev 333070)
+++ PKGBUILD2018-08-29 05:30:44 UTC (rev 333071)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.13
-pkgrel=2
+pkgver=0.23.14
+pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;
@@ -21,10 +21,6 @@
 prepare() {
   cd p11-kit
 
-  # Pick the reverts for the libpthread changes
-  # https://bugs.archlinux.org/task/59649
-  git cherry-pick -n a877b0eca3 56f3b93707 35b39cb2bf b9ef1c5f4d
-
   # Build and install an additional library (libnssckbi-p11-kit.so) which
   # is a copy of p11-kit-trust.so but uses the same label for root certs as
   # libnssckbi.so ("Builtin Object Token" instead of "Default Trust")


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-08-17 Thread Jan Steffens via arch-commits
Date: Friday, August 17, 2018 @ 17:14:30
  Author: heftig
Revision: 332107

0.23.13-2

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 17:09:52 UTC (rev 332106)
+++ PKGBUILD2018-08-17 17:14:30 UTC (rev 332107)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.23.13
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;
@@ -21,6 +21,10 @@
 prepare() {
   cd p11-kit
 
+  # Pick the reverts for the libpthread changes
+  # https://bugs.archlinux.org/task/59649
+  git cherry-pick -n a877b0eca3 56f3b93707 35b39cb2bf b9ef1c5f4d
+
   # Build and install an additional library (libnssckbi-p11-kit.so) which
   # is a copy of p11-kit-trust.so but uses the same label for root certs as
   # libnssckbi.so ("Builtin Object Token" instead of "Default Trust")


[arch-commits] Commit in p11-kit/trunk (PKGBUILD p11-kit.install)

2018-08-12 Thread Jan Steffens via arch-commits
Date: Sunday, August 12, 2018 @ 23:12:08
  Author: heftig
Revision: 331440

0.23.13-1

Added:
  p11-kit/trunk/p11-kit.install
Modified:
  p11-kit/trunk/PKGBUILD

-+
 PKGBUILD|   15 ---
 p11-kit.install |   14 ++
 2 files changed, 22 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-12 23:08:52 UTC (rev 331439)
+++ PKGBUILD2018-08-12 23:12:08 UTC (rev 331440)
@@ -2,14 +2,15 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.12
+pkgver=0.23.13
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
 url="https://p11-glue.freedesktop.org;
 license=(BSD)
-depends=(glibc libtasn1 libffi)
+depends=(glibc libtasn1 libffi libsystemd)
 makedepends=(gtk-doc git)
+install=p11-kit.install
 source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;
 0001-Build-and-install-libnssckbi-p11-kit.so.patch)
 sha256sums=('SKIP'
@@ -18,7 +19,7 @@
   '462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
 
 prepare() {
-  cd $pkgname
+  cd p11-kit
 
   # Build and install an additional library (libnssckbi-p11-kit.so) which
   # is a copy of p11-kit-trust.so but uses the same label for root certs as
@@ -30,7 +31,7 @@
 }
 
 build() {
-  cd $pkgname
+  cd p11-kit
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \
@@ -42,14 +43,14 @@
 }
 
 check() {
-  cd $pkgname
+  cd p11-kit
   make check
 }
 
 package() {
-  cd $pkgname
+  cd p11-kit
   make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
 
   ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 }

Added: p11-kit.install
===
--- p11-kit.install (rev 0)
+++ p11-kit.install 2018-08-12 23:12:08 UTC (rev 331440)
@@ -0,0 +1,14 @@
+post_install() {
+  # Enable socket by default
+  systemctl --global enable p11-kit-server.socket
+}
+
+post_upgrade() {
+  if (( $(vercmp $2 0.23.13-1) < 0)); then
+systemctl --global enable p11-kit-server.socket
+  fi
+}
+
+pre_remove() {
+  systemctl --global disable p11-kit-server.socket
+}


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-06-28 Thread Jan Steffens via arch-commits
Date: Friday, June 29, 2018 @ 00:50:08
  Author: heftig
Revision: 327747

Try signed git tags

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-28 21:07:03 UTC (rev 327746)
+++ PKGBUILD2018-06-29 00:50:08 UTC (rev 327747)
@@ -10,18 +10,13 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=3dd5810143e51dabdc58069e55b09a950349fa08  # tags/0.23.12^0
-source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
+source=("git+https://github.com/p11-glue/p11-kit?signed#tag=$pkgver;
 0001-Build-and-install-libnssckbi-p11-kit.so.patch)
 sha256sums=('SKIP'
 '0736f74cec5ca49d91afa47cd84f9ac0404947bf0064358e22c3e53b69e82798')
-validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
+validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF'  # Stef Walter
+  '462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
 
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
 prepare() {
   cd $pkgname
 
@@ -36,7 +31,6 @@
 
 build() {
   cd $pkgname
-
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-05-30 Thread Jan Steffens via arch-commits
Date: Wednesday, May 30, 2018 @ 22:40:37
  Author: heftig
Revision: 325251

0.23.12-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-30 22:39:53 UTC (rev 325250)
+++ PKGBUILD2018-05-30 22:40:37 UTC (rev 325251)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.11
+pkgver=0.23.12
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=e4c5d3b34941bdc433072a492a0a7fdbddba0cc2  # tags/0.23.11^0
+_commit=3dd5810143e51dabdc58069e55b09a950349fa08  # tags/0.23.12^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 0001-Build-and-install-libnssckbi-p11-kit.so.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2018-05-28 Thread Jan Steffens via arch-commits
Date: Monday, May 28, 2018 @ 12:20:39
  Author: heftig
Revision: 325083

0.23.11-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-28 11:25:55 UTC (rev 325082)
+++ PKGBUILD2018-05-28 12:20:39 UTC (rev 325083)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.10
+pkgver=0.23.11
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=f6b7a992e442218a5afdbf8ae1697c53f3f03991  # tags/0.23.10^0
+_commit=e4c5d3b34941bdc433072a492a0a7fdbddba0cc2  # tags/0.23.11^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 0001-Build-and-install-libnssckbi-p11-kit.so.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2017-10-03 Thread Jan Steffens
Date: Tuesday, October 3, 2017 @ 11:10:50
  Author: heftig
Revision: 306634

0.23.9-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-10-03 06:54:22 UTC (rev 306633)
+++ PKGBUILD2017-10-03 11:10:50 UTC (rev 306634)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.8
+pkgver=0.23.9
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=25474901cf9c1fb39ae5dc73a2f2b4dd34e81fdc  # tags/0.23.8^0
+_commit=34cb047e20af02ef3d820a295e9e29f618b83bab  # tags/0.23.9^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 libnssckbi-compat.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2017-08-20 Thread Jan Steffens
Date: Sunday, August 20, 2017 @ 18:40:55
  Author: heftig
Revision: 302931

0.23.8-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-20 17:22:14 UTC (rev 302930)
+++ PKGBUILD2017-08-20 18:40:55 UTC (rev 302931)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.7
+pkgver=0.23.8
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=bf168f00e64a0291f5a718eb451915768659c160  # tags/0.23.7^0
+_commit=25474901cf9c1fb39ae5dc73a2f2b4dd34e81fdc  # tags/0.23.8^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 libnssckbi-compat.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2017-06-03 Thread Jan Steffens
Date: Saturday, June 3, 2017 @ 10:01:25
  Author: heftig
Revision: 297736

0.23.7-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-03 03:45:45 UTC (rev 297735)
+++ PKGBUILD2017-06-03 10:01:25 UTC (rev 297736)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.6
+pkgver=0.23.7
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=9cbf590b468f9596284c5bc34be8add09f3f5bee  # tags/0.23.6^0
+_commit=bf168f00e64a0291f5a718eb451915768659c160  # tags/0.23.7^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 libnssckbi-compat.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2017-05-27 Thread Jan Steffens
Date: Saturday, May 27, 2017 @ 11:48:39
  Author: heftig
Revision: 296672

0.23.6-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-27 08:53:31 UTC (rev 296671)
+++ PKGBUILD2017-05-27 11:48:39 UTC (rev 296672)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.5
+pkgver=0.23.6
 pkgrel=1
 pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=(BSD)
 depends=(glibc libtasn1 libffi)
 makedepends=(gtk-doc git)
-_commit=817a1c67c407850ab1756fdacb1c38e4bded5509  # tags/0.23.5^0
+_commit=9cbf590b468f9596284c5bc34be8add09f3f5bee  # tags/0.23.6^0
 source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 libnssckbi-compat.patch)
 sha256sums=('SKIP'


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 20:23:22
  Author: heftig
Revision: 290103

0.23.5-1

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |   42 --
 1 file changed, 24 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 17:18:14 UTC (rev 290102)
+++ PKGBUILD2017-03-07 20:23:22 UTC (rev 290103)
@@ -1,24 +1,29 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.2
+pkgver=0.23.5
 pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules"
+pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org;
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-makedepends=('gtk-doc')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
+url="https://p11-glue.freedesktop.org;
+license=(BSD)
+depends=(glibc libtasn1 libffi)
+makedepends=(gtk-doc git)
+_commit=817a1c67c407850ab1756fdacb1c38e4bded5509  # tags/0.23.5^0
+source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit;
 libnssckbi-compat.patch)
-sha256sums=('ba726ea8303c97467a33fca50ee79b7b35212964be808ecf9b145e9042fdfaf0'
-'SKIP'
+sha256sums=('SKIP'
 '8f763cdbc6c0ca6c5a7898f9fd6f3018b7ac5b1aca36f67c6c813343c2962962')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   # Build and install an additional library (libnssckbi-p11-kit.so) which
   # is a copy of p11-kit-trust.so but uses the same label for root certs as
@@ -26,15 +31,16 @@
   # https://bugs.freedesktop.org/show_bug.cgi?id=66161
   patch -Np1 -i ../libnssckbi-compat.patch
 
-  autoreconf -vi
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
-  ./configure \
---prefix=/usr \
+  ./configure --prefix=/usr \
 --sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
 --enable-doc \
 --with-module-path=/usr/lib/pkcs11 \
 
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
@@ -42,14 +48,14 @@
 }
 
 check() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make check
 }
 
 package() {
-  cd  $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
   ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 }


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2015-12-18 Thread Jan Steffens
Date: Friday, December 18, 2015 @ 14:52:12
  Author: heftig
Revision: 256744

Use sha256sums, why not

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-18 13:50:50 UTC (rev 256743)
+++ PKGBUILD2015-12-18 13:52:12 UTC (rev 256744)
@@ -12,9 +12,9 @@
 makedepends=('gtk-doc')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
 libnssckbi-compat.patch)
-md5sums=('738af2442331fc22f440df9bee9b062a'
- 'SKIP'
- '8c3f119005908cf4a3e0ef0a0a310f14')
+sha256sums=('ba726ea8303c97467a33fca50ee79b7b35212964be808ecf9b145e9042fdfaf0'
+'SKIP'
+'8f763cdbc6c0ca6c5a7898f9fd6f3018b7ac5b1aca36f67c6c813343c2962962')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
 
 prepare() {


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2015-12-18 Thread Jan Steffens
Date: Friday, December 18, 2015 @ 14:50:50
  Author: heftig
Revision: 256743

0.23.2

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-18 13:33:45 UTC (rev 256742)
+++ PKGBUILD2015-12-18 13:50:50 UTC (rev 256743)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.1
-pkgrel=3
+pkgver=0.23.2
+pkgrel=1
 pkgdesc="Library to work with PKCS#11 modules"
 arch=(i686 x86_64)
 url="http://p11-glue.freedesktop.org;
@@ -12,7 +12,7 @@
 makedepends=('gtk-doc')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
 libnssckbi-compat.patch)
-md5sums=('96f073270c489c9a594e1c9413f42db8'
+md5sums=('738af2442331fc22f440df9bee9b062a'
  'SKIP'
  '8c3f119005908cf4a3e0ef0a0a310f14')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2015-09-23 Thread Evangelos Foutras
Date: Wednesday, September 23, 2015 @ 19:17:25
  Author: foutrelis
Revision: 247164

upgpkg: p11-kit 0.23.1-3

Enable generation of man pages (FS#42242).

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-23 17:06:29 UTC (rev 247163)
+++ PKGBUILD2015-09-23 17:17:25 UTC (rev 247164)
@@ -3,12 +3,13 @@
 
 pkgname=p11-kit
 pkgver=0.23.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Library to work with PKCS#11 modules"
 arch=(i686 x86_64)
 url="http://p11-glue.freedesktop.org;
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
+makedepends=('gtk-doc')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
 libnssckbi-compat.patch)
 md5sums=('96f073270c489c9a594e1c9413f42db8'
@@ -30,7 +31,11 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-doc \
 --with-module-path=/usr/lib/pkcs11 \
 
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make


[arch-commits] Commit in p11-kit/trunk (PKGBUILD libnssckbi-compat.patch)

2015-03-30 Thread Evangelos Foutras
Date: Monday, March 30, 2015 @ 16:39:12
  Author: foutrelis
Revision: 235275

upgpkg: p11-kit 0.23.1-2

Build and install libnssckbi-p11-kit.so; to be used with nss.

Added:
  p11-kit/trunk/libnssckbi-compat.patch
Modified:
  p11-kit/trunk/PKGBUILD

-+
 PKGBUILD|   20 +---
 libnssckbi-compat.patch |   57 ++
 2 files changed, 74 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-30 07:52:43 UTC (rev 235274)
+++ PKGBUILD2015-03-30 14:39:12 UTC (rev 235275)
@@ -3,17 +3,31 @@
 
 pkgname=p11-kit
 pkgver=0.23.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
+libnssckbi-compat.patch)
 md5sums=('96f073270c489c9a594e1c9413f42db8'
- 'SKIP')
+ 'SKIP'
+ '8c3f119005908cf4a3e0ef0a0a310f14')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Build and install an additional library (libnssckbi-p11-kit.so) which
+  # is a copy of p11-kit-trust.so but uses the same label for root certs as
+  # libnssckbi.so (Builtin Object Token instead of Default Trust)
+  # https://bugs.freedesktop.org/show_bug.cgi?id=66161
+  patch -Np1 -i ../libnssckbi-compat.patch
+
+  autoreconf -vi
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \

Added: libnssckbi-compat.patch
===
--- libnssckbi-compat.patch (rev 0)
+++ libnssckbi-compat.patch 2015-03-30 14:39:12 UTC (rev 235275)
@@ -0,0 +1,57 @@
+diff -upr p11-kit-0.23.1.orig/trust/Makefile.am 
p11-kit-0.23.1/trust/Makefile.am
+--- p11-kit-0.23.1.orig/trust/Makefile.am  2014-11-12 12:58:50.0 
+0200
 p11-kit-0.23.1/trust/Makefile.am   2015-03-30 16:43:35.275993032 +0300
+@@ -61,6 +61,20 @@ p11_kit_trust_la_LDFLAGS = \
+ 
+ p11_kit_trust_la_SOURCES = $(TRUST_SRCS)
+ 
++libnssckbi_compatdir = $(libdir)
++libnssckbi_compat_LTLIBRARIES = \
++  libnssckbi-p11-kit.la
++
++libnssckbi_p11_kit_la_CFLAGS = \
++  -DLIBNSSCKBI_COMPAT \
++  $(p11_kit_trust_la_CFLAGS)
++
++libnssckbi_p11_kit_la_LIBADD = $(p11_kit_trust_la_LIBADD)
++
++libnssckbi_p11_kit_la_LDFLAGS = $(p11_kit_trust_la_LDFLAGS)
++
++libnssckbi_p11_kit_la_SOURCES = $(p11_kit_trust_la_SOURCES)
++
+ libtrust_testable_la_LDFLAGS = \
+   -no-undefined
+ 
+diff -upr p11-kit-0.23.1.orig/trust/module.c p11-kit-0.23.1/trust/module.c
+--- p11-kit-0.23.1.orig/trust/module.c 2014-12-16 12:24:01.0 +0200
 p11-kit-0.23.1/trust/module.c  2015-03-30 16:48:41.370360130 +0300
+@@ -196,7 +196,11 @@ create_tokens_inlock (p11_array *tokens,
+   const char *label;
+   } labels[] = {
+   { ~/, User Trust },
++#ifdef LIBNSSCKBI_COMPAT
++  { DATA_DIR, Builtin Object Token },
++#else
+   { DATA_DIR, Default Trust },
++#endif
+   { SYSCONFDIR, System Trust },
+   { NULL },
+   };
+@@ -521,9 +525,15 @@ sys_C_GetSlotInfo (CK_SLOT_ID id,
+   info-flags = CKF_TOKEN_PRESENT;
+   strncpy ((char*)info-manufacturerID, MANUFACTURER_ID, 32);
+ 
+-  /* If too long, copy the first 64 characters into buffer */
+-  path = p11_token_get_path (token);
++#ifdef LIBNSSCKBI_COMPAT
++  /* Change description to match libnssckbi so HPKP works in 
Chromium */
++  if (strcmp (p11_token_get_label (token), Builtin Object Token 
) == 0)
++  path = NSS Builtin Objects;
++  else
++#endif
++  path = p11_token_get_path (token);
+   length = strlen (path);
++  /* If too long, copy the first 64 characters into buffer */
+   if (length  sizeof (info-slotDescription))
+   length = sizeof (info-slotDescription);
+   memset (info-slotDescription, ' ', sizeof 
(info-slotDescription));


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2015-03-27 Thread Jan Steffens
Date: Friday, March 27, 2015 @ 12:56:35
  Author: heftig
Revision: 235179

0.23.1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-27 11:04:43 UTC (rev 235178)
+++ PKGBUILD2015-03-27 11:56:35 UTC (rev 235179)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.22.1
-pkgrel=3
+pkgver=0.23.1
+pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -10,8 +10,9 @@
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('4e9bea1106628ffb820bdad24a819fac'
+md5sums=('96f073270c489c9a594e1c9413f42db8'
  'SKIP')
+validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:02:14
  Author: heftig
Revision: 226217

FS#41909

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:02:03 UTC (rev 226216)
+++ PKGBUILD2014-11-14 09:02:14 UTC (rev 226217)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.22.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -16,7 +16,8 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make
 }
 


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:59:30
  Author: heftig
Revision: 226224

Make `trust extract-compat` do something

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:58:06 UTC (rev 226223)
+++ PKGBUILD2014-11-14 09:59:30 UTC (rev 226224)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.22.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -30,6 +30,8 @@
   cd  $pkgname-$pkgver
   make DESTDIR=$pkgdir install
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf $pkgdir/usr/bin/update-ca-trust 
$pkgdir/usr/lib/p11-kit/trust-extract-compat
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-10-12 Thread Jan Steffens
Date: Sunday, October 12, 2014 @ 11:42:00
  Author: heftig
Revision: 224235

0.22.1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-10-12 09:39:33 UTC (rev 224234)
+++ PKGBUILD2014-10-12 09:42:00 UTC (rev 224235)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.20.7
-pkgrel=3
+pkgver=0.22.1
+pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('6648cad01a3080b685b8b3bf7372c91a'
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
  'SKIP')
 
 build() {


[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-09-26 Thread Evangelos Foutras
Date: Friday, September 26, 2014 @ 08:17:08
  Author: foutrelis
Revision: 223021

upgpkg: p11-kit 0.20.7-3

New upstream release.

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 05:58:12 UTC (rev 223020)
+++ PKGBUILD2014-09-26 06:17:08 UTC (rev 223021)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.20.7
-pkgrel=2
+pkgrel=3
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -16,8 +16,7 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+--with-module-path=/usr/lib/pkcs11
   make
 }
 



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-09-26 Thread Jan Steffens
Date: Friday, September 26, 2014 @ 08:35:30
  Author: heftig
Revision: 223027

rebuild for the test set in http://pkgbuild.com/~heftig/certs

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-26 06:34:27 UTC (rev 223026)
+++ PKGBUILD2014-09-26 06:35:30 UTC (rev 223027)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.20.7
-pkgrel=3
+pkgrel=4
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -16,7 +16,8 @@
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make
 }
 



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-09-22 Thread Jan Steffens
Date: Monday, September 22, 2014 @ 23:08:18
  Author: heftig
Revision: 222715

0.20.7

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-22 20:01:45 UTC (rev 222714)
+++ PKGBUILD2014-09-22 21:08:18 UTC (rev 222715)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.20.2
+pkgver=0.20.7
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -10,13 +10,14 @@
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('757b97ee4ac0ce598661a90cd784c4f1'
+md5sums=('6648cad01a3080b685b8b3bf7372c91a'
  'SKIP')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11
+--with-module-path=/usr/lib/pkcs11 \
+--with-trust-paths=/etc/ssl/certs/ca-certificates.crt
   make
 }
 



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-09-22 Thread Jan Steffens
Date: Tuesday, September 23, 2014 @ 01:19:25
  Author: heftig
Revision: 222720

ca-certificates, the Fedora edition

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-22 23:19:01 UTC (rev 222719)
+++ PKGBUILD2014-09-22 23:19:25 UTC (rev 222720)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.20.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -17,7 +17,7 @@
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
 --with-module-path=/usr/lib/pkcs11 \
---with-trust-paths=/etc/ssl/certs/ca-certificates.crt
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
   make
 }
 



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2014-02-15 Thread Andreas Radke
Date: Saturday, February 15, 2014 @ 13:46:54
  Author: andyrtr
Revision: 205981

upgpkg: p11-kit 0.20.2-1

upstream update 0.20.2

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-15 12:37:11 UTC (rev 205980)
+++ PKGBUILD2014-02-15 12:46:54 UTC (rev 205981)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.20.1
+pkgver=0.20.2
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=('BSD')
 depends=('glibc' 'libtasn1' 'libffi')
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('88c651137f76a167336639371eafd8cc'
+md5sums=('757b97ee4ac0ce598661a90cd784c4f1'
  'SKIP')
 
 build() {



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2013-09-16 Thread Jan de Groot
Date: Monday, September 16, 2013 @ 21:43:42
  Author: jgc
Revision: 194488

upgpkg: p11-kit 0.20.1-1

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-16 19:35:44 UTC (rev 194487)
+++ PKGBUILD2013-09-16 19:43:42 UTC (rev 194488)
@@ -2,16 +2,16 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.18.4
+pkgver=0.20.1
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
 license=('BSD')
-depends=('glibc' 'libtasn1')
+depends=('glibc' 'libtasn1' 'libffi')
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('9535c4e5b9c2ef5f5cd0755115ba098b'
+md5sums=('88c651137f76a167336639371eafd8cc'
  'SKIP')
 
 build() {
@@ -21,6 +21,11 @@
   make
 }
 
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
 package() {
   cd  $pkgname-$pkgver
   make DESTDIR=$pkgdir install



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2013-07-11 Thread Ionuț Mircea Bîru
Date: Thursday, July 11, 2013 @ 21:53:20
  Author: ioni
Revision: 189938

update to 0.18.4

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-11 19:47:41 UTC (rev 189937)
+++ PKGBUILD2013-07-11 19:53:20 UTC (rev 189938)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.18.2
+pkgver=0.18.4
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('glibc' 'libtasn1')
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('7bb1703f38fb778054bf57477c78dc8f'
+md5sums=('9535c4e5b9c2ef5f5cd0755115ba098b'
  'SKIP')
 
 build() {



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2013-05-28 Thread Ionuț Mircea Bîru
Date: Tuesday, May 28, 2013 @ 11:43:27
  Author: ioni
Revision: 186510

update to 0.18.2

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-05-28 09:36:20 UTC (rev 186509)
+++ PKGBUILD2013-05-28 09:43:27 UTC (rev 186510)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=('glibc' 'libtasn1')
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('e4ef21592dbd126b62e1a6d4ad65ce5c'
+md5sums=('7bb1703f38fb778054bf57477c78dc8f'
  'SKIP')
 
 build() {



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2013-04-22 Thread Jan Steffens
Date: Monday, April 22, 2013 @ 15:09:48
  Author: heftig
Revision: 183528

0.18.1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-22 12:29:00 UTC (rev 183527)
+++ PKGBUILD2013-04-22 13:09:48 UTC (rev 183528)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.18.0
+pkgver=0.18.1
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -10,8 +10,9 @@
 license=('BSD')
 depends=('glibc' 'libtasn1')
 options=(!libtool)
-source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('abb4683c7f193df6e48dbfad443ec9a8')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('e4ef21592dbd126b62e1a6d4ad65ce5c'
+ 'SKIP')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2013-04-09 Thread Ionuț Mircea Bîru
Date: Tuesday, April 9, 2013 @ 20:51:29
  Author: ioni
Revision: 182381

update to 0.18

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-09 18:42:44 UTC (rev 182380)
+++ PKGBUILD2013-04-09 18:51:29 UTC (rev 182381)
@@ -2,16 +2,16 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.13
+pkgver=0.18.0
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
 license=('BSD')
-depends=(glibc)
+depends=('glibc' 'libtasn1')
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('3892bc07ff54b1b391aad4628911801d')
+md5sums=('abb4683c7f193df6e48dbfad443ec9a8')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2012-08-12 Thread Ionut Biru
Date: Sunday, August 12, 2012 @ 16:40:46
  Author: ibiru
Revision: 165199

update to 0.13

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-08-12 20:15:37 UTC (rev 165198)
+++ PKGBUILD2012-08-12 20:40:46 UTC (rev 165199)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.12
+pkgver=0.13
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,17 +11,17 @@
 depends=(glibc)
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('66baf7ddde982d1b7294d3bd63be7446')
+md5sums=('3892bc07ff54b1b391aad4628911801d')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
 --with-module-path=/usr/lib/pkcs11
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd  $pkgname-$pkgver
   make DESTDIR=$pkgdir install
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2012-04-01 Thread Ionut Biru
Date: Sunday, April 1, 2012 @ 03:42:42
  Author: ibiru
Revision: 154981

update to 0.12

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-04-01 07:06:27 UTC (rev 154980)
+++ PKGBUILD2012-04-01 07:42:42 UTC (rev 154981)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.11
+pkgver=0.12
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('bd45d00c5c4d4b171791003bf5344d6f')
+md5sums=('66baf7ddde982d1b7294d3bd63be7446')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2012-02-18 Thread Ionut Biru
Date: Saturday, February 18, 2012 @ 12:25:41
  Author: ibiru
Revision: 150592

update to 0.11

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-02-18 17:18:56 UTC (rev 150591)
+++ PKGBUILD2012-02-18 17:25:41 UTC (rev 150592)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.9
+pkgver=0.11
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('029aa2a3a103e7eb81b4aa731b93539e')
+md5sums=('bd45d00c5c4d4b171791003bf5344d6f')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2011-11-18 Thread Ionut Biru
Date: Friday, November 18, 2011 @ 13:08:30
  Author: ibiru
Revision: 142937

update to 0.9

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-11-18 15:46:22 UTC (rev 142936)
+++ PKGBUILD2011-11-18 18:08:30 UTC (rev 142937)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.6
-pkgrel=2
+pkgver=0.9
+pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -11,7 +11,7 @@
 depends=(glibc)
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('c1ff3e52f172fda8bf3b426f7fb63c92')
+md5sums=('029aa2a3a103e7eb81b4aa731b93539e')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2011-09-18 Thread Jan Steffens
Date: Sunday, September 18, 2011 @ 04:52:27
  Author: heftig
Revision: 138177

0.6

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-09-18 08:48:06 UTC (rev 138176)
+++ PKGBUILD2011-09-18 08:52:27 UTC (rev 138177)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=p11-kit
-pkgver=0.5
+pkgver=0.6
 pkgrel=1
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 options=(!libtool)
 source=($url/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('1b4886ed4e6d25ab0b69e6350a804082')
+md5sums=('c1ff3e52f172fda8bf3b426f7fb63c92')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in p11-kit/trunk (PKGBUILD)

2011-09-18 Thread Jan Steffens
Date: Sunday, September 18, 2011 @ 05:14:26
  Author: heftig
Revision: 138185

work around bug in build system

Modified:
  p11-kit/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-09-18 09:04:15 UTC (rev 138184)
+++ PKGBUILD2011-09-18 09:14:26 UTC (rev 138185)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.6
-pkgrel=1
+pkgrel=2
 pkgdesc=Library to work with PKCS#11 modules
 arch=(i686 x86_64)
 url=http://p11-glue.freedesktop.org;
@@ -15,7 +15,8 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11
   make
 }