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

Gaetan Bisson bisson at archlinux.org
Fri May 6 23:46:45 UTC 2016


    Date: Saturday, May 7, 2016 @ 01:46:44
  Author: bisson
Revision: 267076

db-move: moved pinentry from [testing] to [core] (i686, x86_64)

Added:
  pinentry/repos/core-i686/PKGBUILD
    (from rev 267075, pinentry/repos/testing-i686/PKGBUILD)
  pinentry/repos/core-x86_64/PKGBUILD
    (from rev 267075, pinentry/repos/testing-x86_64/PKGBUILD)
Deleted:
  pinentry/repos/core-i686/PKGBUILD
  pinentry/repos/core-i686/install
  pinentry/repos/core-x86_64/PKGBUILD
  pinentry/repos/core-x86_64/install
  pinentry/repos/testing-i686/
  pinentry/repos/testing-x86_64/

----------------------+
 /PKGBUILD            |   78 +++++++++++++++++++++++++++++++++++++++++++++++++
 core-i686/PKGBUILD   |   41 -------------------------
 core-i686/install    |   20 ------------
 core-x86_64/PKGBUILD |   41 -------------------------
 core-x86_64/install  |   20 ------------
 5 files changed, 78 insertions(+), 122 deletions(-)

Deleted: core-i686/PKGBUILD
===================================================================
--- core-i686/PKGBUILD	2016-05-06 23:46:43 UTC (rev 267075)
+++ core-i686/PKGBUILD	2016-05-06 23:46:44 UTC (rev 267076)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-
-pkgname=pinentry
-pkgver=0.9.7
-pkgrel=1
-pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol'
-url='http://gnupg.org/related_software/pinentry/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'libcap' 'libassuan')
-makedepends=('gtk2' 'qt5-base' 'gcr')
-optdepends=('gtk2: gtk2 backend'
-            'qt5-base: qt backend'
-            'gcr: gnome3 backend')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd' 'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
-
-install=install
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	./configure \
-		--prefix=/usr \
-		--enable-pinentry-curses \
-		--enable-fallback-curses \
-		--enable-pinentry-tty \
-		--enable-pinentry-emacs \
-		--enable-pinentry-gtk2 \
-		--enable-pinentry-gnome3 \
-		--enable-pinentry-qt \
-
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-}

Copied: pinentry/repos/core-i686/PKGBUILD (from rev 267075, pinentry/repos/testing-i686/PKGBUILD)
===================================================================
--- core-i686/PKGBUILD	                        (rev 0)
+++ core-i686/PKGBUILD	2016-05-06 23:46:44 UTC (rev 267076)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=pinentry
+pkgver=0.9.7
+pkgrel=2
+pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol'
+url='http://gnupg.org/related_software/pinentry/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'libcap' 'libassuan')
+makedepends=('gtk2' 'qt5-base' 'gcr')
+optdepends=('gtk2: gtk2 backend'
+            'qt5-base: qt backend'
+            'gcr: gnome3 backend')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd' 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--enable-pinentry-curses \
+		--enable-fallback-curses \
+		--enable-pinentry-tty \
+		--enable-pinentry-emacs \
+		--enable-pinentry-gtk2 \
+		--enable-pinentry-gnome3 \
+		--enable-pinentry-qt \
+
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+}

Deleted: core-i686/install
===================================================================
--- core-i686/install	2016-05-06 23:46:43 UTC (rev 267075)
+++ core-i686/install	2016-05-06 23:46:44 UTC (rev 267076)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(pinentry.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2016-05-06 23:46:43 UTC (rev 267075)
+++ core-x86_64/PKGBUILD	2016-05-06 23:46:44 UTC (rev 267076)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-
-pkgname=pinentry
-pkgver=0.9.7
-pkgrel=1
-pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol'
-url='http://gnupg.org/related_software/pinentry/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'libcap' 'libassuan')
-makedepends=('gtk2' 'qt5-base' 'gcr')
-optdepends=('gtk2: gtk2 backend'
-            'qt5-base: qt backend'
-            'gcr: gnome3 backend')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd' 'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
-
-install=install
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	./configure \
-		--prefix=/usr \
-		--enable-pinentry-curses \
-		--enable-fallback-curses \
-		--enable-pinentry-tty \
-		--enable-pinentry-emacs \
-		--enable-pinentry-gtk2 \
-		--enable-pinentry-gnome3 \
-		--enable-pinentry-qt \
-
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-}

Copied: pinentry/repos/core-x86_64/PKGBUILD (from rev 267075, pinentry/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2016-05-06 23:46:44 UTC (rev 267076)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=pinentry
+pkgver=0.9.7
+pkgrel=2
+pkgdesc='Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol'
+url='http://gnupg.org/related_software/pinentry/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'libcap' 'libassuan')
+makedepends=('gtk2' 'qt5-base' 'gcr')
+optdepends=('gtk2: gtk2 backend'
+            'qt5-base: qt backend'
+            'gcr: gnome3 backend')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('9bdcf5f4096aa8b26956afb0ecdd3d7849ffa0cd' 'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--enable-pinentry-curses \
+		--enable-fallback-curses \
+		--enable-pinentry-tty \
+		--enable-pinentry-emacs \
+		--enable-pinentry-gtk2 \
+		--enable-pinentry-gnome3 \
+		--enable-pinentry-qt \
+
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+}

Deleted: core-x86_64/install
===================================================================
--- core-x86_64/install	2016-05-06 23:46:43 UTC (rev 267075)
+++ core-x86_64/install	2016-05-06 23:46:44 UTC (rev 267076)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(pinentry.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}



More information about the arch-commits mailing list