summaryrefslogtreecommitdiff
path: root/security/pinentry
diff options
context:
space:
mode:
authordrochner <drochner>2011-01-11 12:10:16 +0000
committerdrochner <drochner>2011-01-11 12:10:16 +0000
commita3959aa0ce321d5f017bcf8b14ef37cf1881353b (patch)
tree0fefcf0848ca0a5fb94840a91999c16447a9813a /security/pinentry
parent412d073a7d5417e120bcd3f77c3712529dba633e (diff)
downloadpkgsrc-a3959aa0ce321d5f017bcf8b14ef37cf1881353b.tar.gz
update to 0.8.1
changes: bugfixes
Diffstat (limited to 'security/pinentry')
-rw-r--r--security/pinentry/Makefile4
-rw-r--r--security/pinentry/distinfo10
-rw-r--r--security/pinentry/patches/patch-ad13
-rw-r--r--security/pinentry/patches/patch-ae13
4 files changed, 6 insertions, 34 deletions
diff --git a/security/pinentry/Makefile b/security/pinentry/Makefile
index 018489cc684..74df7664027 100644
--- a/security/pinentry/Makefile
+++ b/security/pinentry/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2010/08/11 13:28:08 drochner Exp $
+# $NetBSD: Makefile,v 1.27 2011/01/11 12:10:16 drochner Exp $
#
-DISTNAME= pinentry-0.8.0
+DISTNAME= pinentry-0.8.1
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/pinentry/
diff --git a/security/pinentry/distinfo b/security/pinentry/distinfo
index 242eee270b9..229851b5f79 100644
--- a/security/pinentry/distinfo
+++ b/security/pinentry/distinfo
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.8 2010/08/11 13:28:08 drochner Exp $
+$NetBSD: distinfo,v 1.9 2011/01/11 12:10:16 drochner Exp $
-SHA1 (pinentry-0.8.0.tar.gz) = 381f9ee47b9f198e1be5d3ec4e043067a7e97912
-RMD160 (pinentry-0.8.0.tar.gz) = 966e830fb86c1820057979f581ca71f82a4fc9e0
-Size (pinentry-0.8.0.tar.gz) = 487629 bytes
+SHA1 (pinentry-0.8.1.tar.gz) = 84a6940175b552a8562b4014f4661dec3ff10165
+RMD160 (pinentry-0.8.1.tar.gz) = e36e34bfa2472094503c7809259f37abcc5fb2e8
+Size (pinentry-0.8.1.tar.gz) = 504101 bytes
SHA1 (patch-aa) = cd30ad4f3a3737687dc5786ebd861ef3b17c600e
-SHA1 (patch-ad) = 3e0cbe86d0b6c192e9598ec486adc48783fbc9cb
-SHA1 (patch-ae) = 0a8fb600b4f8c28c7e6f0eae69a0eacfce38f4c9
diff --git a/security/pinentry/patches/patch-ad b/security/pinentry/patches/patch-ad
deleted file mode 100644
index 58c9d1a2211..00000000000
--- a/security/pinentry/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2010/08/11 13:28:09 drochner Exp $
-
---- qt4/pinentrydialog.cpp.orig 2010-03-03 11:19:55.000000000 +0000
-+++ qt4/pinentrydialog.cpp
-@@ -83,7 +83,7 @@ QPixmap icon( QStyle::StandardPixmap whi
-
- PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name, bool modal,
- bool enable_quality_bar )
-- : QDialog( parent ), _grabbed( false )
-+ : QDialog( parent, Qt::WindowStaysOnTopHint ), _grabbed( false )
- {
- setWindowFlags( windowFlags() & ~Qt::WindowContextHelpButtonHint );
-
diff --git a/security/pinentry/patches/patch-ae b/security/pinentry/patches/patch-ae
deleted file mode 100644
index 85ac5cfc80d..00000000000
--- a/security/pinentry/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2010/08/11 13:28:09 drochner Exp $
-
---- qt/pinentrydialog.cpp.orig 2008-12-08 15:16:37.000000000 +0000
-+++ qt/pinentrydialog.cpp
-@@ -33,7 +33,7 @@
-
- PinEntryDialog::PinEntryDialog( QWidget* parent, const char* name,
- bool modal, bool enable_quality_bar )
-- : QDialog( parent, name, modal ), _grabbed( false )
-+ : QDialog( parent, name, modal, Qt::WStyle_StaysOnTop ), _grabbed( false )
- {
- QBoxLayout* top = new QVBoxLayout( this, 6 );
- QBoxLayout* upperLayout = new QHBoxLayout( top );