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

Dave Reisner dreisner at archlinux.org
Mon Jan 16 22:52:55 UTC 2012


    Date: Monday, January 16, 2012 @ 17:52:55
  Author: dreisner
Revision: 146747

db-move: moved pinentry from [extra] to [core] (x86_64)

Added:
  pinentry/repos/core-x86_64/
  pinentry/repos/core-x86_64/PKGBUILD
    (from rev 146735, pinentry/repos/extra-x86_64/PKGBUILD)
  pinentry/repos/core-x86_64/gtk2-pinentry-segfault.patch
    (from rev 146735, pinentry/repos/extra-x86_64/gtk2-pinentry-segfault.patch)
  pinentry/repos/core-x86_64/pinentry.install
    (from rev 146735, pinentry/repos/extra-x86_64/pinentry.install)
Deleted:
  pinentry/repos/extra-x86_64/

------------------------------+
 PKGBUILD                     |   37 +++++++++++++++++++++++++++++++++++++
 gtk2-pinentry-segfault.patch |   11 +++++++++++
 pinentry.install             |   20 ++++++++++++++++++++
 3 files changed, 68 insertions(+)

Copied: pinentry/repos/core-x86_64/PKGBUILD (from rev 146735, pinentry/repos/extra-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2012-01-16 22:52:55 UTC (rev 146747)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+pkgname=pinentry
+pkgver=0.8.1
+pkgrel=3
+pkgdesc="a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnupg.org/aegypten2"
+depends=('ncurses' 'libcap>=2.16')
+makedepends=('gtk2' 'qt')
+optdepends=('gtk2: for gtk2 backend'
+            'qt: for qt4 backend')  
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.gz
+        gtk2-pinentry-segfault.patch)
+install=pinentry.install
+
+build() {
+  cd $startdir/src/$pkgname-$pkgver
+  for file in qt4/*.moc; do
+       /usr/bin/moc ${file/.moc/.h} > ${file}
+   done
+  ./configure --prefix=/usr \
+	--enable-pinentry-curses \
+        --disable-pinentry-gtk \
+        --disable-pinentry-qt \
+	--enable-pinentry-gtk2 \
+        --enable-pinentry-qt4 \
+	--enable-fallback-curses
+  make 
+  make DESTDIR=${pkgdir} install 
+  #rm ${pkgdir}/usr/share/info/dir 
+  #rm ${pkgdir}/usr/bin/pinentry 
+  #ln -s /usr/bin/pinentry-gtk-2 ${pkgdir}/usr/bin/pinentry 
+}
+md5sums=('81f99904daee5331eb6738408bb024b6'
+         'bd9888fafc56464b2c4deaad5b8edb07')

Copied: pinentry/repos/core-x86_64/gtk2-pinentry-segfault.patch (from rev 146735, pinentry/repos/extra-x86_64/gtk2-pinentry-segfault.patch)
===================================================================
--- core-x86_64/gtk2-pinentry-segfault.patch	                        (rev 0)
+++ core-x86_64/gtk2-pinentry-segfault.patch	2012-01-16 22:52:55 UTC (rev 146747)
@@ -0,0 +1,11 @@
+--- gtk+-2/pinentry-gtk-2.c.orig	2010-03-03 05:19:55.000000000 -0600
++++ gtk+-2/pinentry-gtk-2.c	2010-07-07 00:11:30.413572124 -0500
+@@ -145,7 +145,7 @@
+ {
+   gdk_keyboard_ungrab (gdk_event_get_time (event));
+   /* Unmake window transient for the root window.  */
+-  gdk_window_set_transient_for (win->window, NULL);
++  gdk_property_delete (win->window, gdk_atom_intern_static_string ("WM_TRANSIENT_FOR"));
+ }
+ 
+ 

Copied: pinentry/repos/core-x86_64/pinentry.install (from rev 146735, pinentry/repos/extra-x86_64/pinentry.install)
===================================================================
--- core-x86_64/pinentry.install	                        (rev 0)
+++ core-x86_64/pinentry.install	2012-01-16 22:52:55 UTC (rev 146747)
@@ -0,0 +1,20 @@
+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