summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2005-07-29 23:13:46 +0000
committerDaniel Black <dragonheart@gentoo.org>2005-07-29 23:13:46 +0000
commit79941e48e0550f9ee0b2364d184507553fcbcb43 (patch)
treeffc9ad2874216a03a70d71f59ee92674adc2ab93 /app-crypt/seahorse/files
parentfix html path to use PF, fixes #99382 (diff)
downloadgentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.tar.gz
gentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.tar.bz2
gentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.zip
old version cleanout. ordered keywords properly. re-added dropped ~alpha keyword
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-crypt/seahorse/files')
-rw-r--r--app-crypt/seahorse/files/digest-seahorse-0.7.51
-rw-r--r--app-crypt/seahorse/files/digest-seahorse-0.7.71
-rw-r--r--app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch82
3 files changed, 0 insertions, 84 deletions
diff --git a/app-crypt/seahorse/files/digest-seahorse-0.7.5 b/app-crypt/seahorse/files/digest-seahorse-0.7.5
deleted file mode 100644
index 232a04b20c5c..000000000000
--- a/app-crypt/seahorse/files/digest-seahorse-0.7.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 aa113297dbc5525a4853e73bedb9af45 seahorse-0.7.5.tar.bz2 937238
diff --git a/app-crypt/seahorse/files/digest-seahorse-0.7.7 b/app-crypt/seahorse/files/digest-seahorse-0.7.7
deleted file mode 100644
index 645182a1f583..000000000000
--- a/app-crypt/seahorse/files/digest-seahorse-0.7.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e9dda6d9f4fa23da562b5edd026f8437 seahorse-0.7.7.tar.bz2 1085781
diff --git a/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch b/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch
deleted file mode 100644
index 6917a7a45644..000000000000
--- a/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch
+++ /dev/null
@@ -1,82 +0,0 @@
---- configure.in.orig 2004-11-01 03:24:04.000000000 +0930
-+++ configure.in 2004-12-19 21:11:35.832207728 +0930
-@@ -52,13 +52,17 @@
- micro=`echo $gnupg_version | \
- sed 's/^gpg (GnuPG) \([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-- if test "$micro" -ge "$req_micro"; then
-- ok="yes"
-- fi
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
-+ if test "$micro" -ge "$req_micro"; then
-+ ok="yes"
- fi
-- fi
-+ fi
-+ fi
- fi
-
- if test "$ok" = "yes"; then
-@@ -93,8 +97,12 @@
- micro=`echo $gpgme_config_version | \
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
- if test "$micro" -ge "$req_micro"; then
- ok="yes"
- fi
---- configure.orig 2004-12-19 22:17:26.301178104 +0930
-+++ configure 2004-12-19 22:17:42.260751880 +0930
-@@ -19341,13 +19341,17 @@
- micro=`echo $gnupg_version | \
- sed 's/^gpg (GnuPG) \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-- if test "$micro" -ge "$req_micro"; then
-- ok="yes"
-- fi
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
-+ if test "$micro" -ge "$req_micro"; then
-+ ok="yes"
- fi
-- fi
-+ fi
-+ fi
- fi
-
- if test "$ok" = "yes"; then
-@@ -19422,8 +19426,12 @@
- micro=`echo $gpgme_config_version | \
- sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
- if test "$micro" -ge "$req_micro"; then
- ok="yes"
- fi