summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2010-05-07 06:55:52 +0000
committerwiz <wiz@pkgsrc.org>2010-05-07 06:55:52 +0000
commitb05784e59b2c224111da8d37ccaa70c98b351b4b (patch)
tree786b70f82c626e24f9bae56441bc735a94b3fa67 /databases
parent30a0909f9f334bf808bc21d16a79d7a5ada19f04 (diff)
downloadpkgsrc-b05784e59b2c224111da8d37ccaa70c98b351b4b.tar.gz
Remove files that were removed from distinfo during update to 3.2.1.
Diffstat (limited to 'databases')
-rw-r--r--databases/gramps3/patches/patch-ba13
-rw-r--r--databases/gramps3/patches/patch-bc20
2 files changed, 0 insertions, 33 deletions
diff --git a/databases/gramps3/patches/patch-ba b/databases/gramps3/patches/patch-ba
deleted file mode 100644
index 557d4512a08..00000000000
--- a/databases/gramps3/patches/patch-ba
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ba,v 1.1 2008/06/23 15:44:14 drochner Exp $
-
---- src/gramps.py.orig 2008-05-17 22:15:36.000000000 +0200
-+++ src/gramps.py
-@@ -94,7 +94,7 @@ gettext.install("gramps",loc,unicode=1)
- #
- #-------------------------------------------------------------------------
-
--MIN_PYTHON_VERSION = (2, 5, 0, '', 0)
-+MIN_PYTHON_VERSION = (2, 4, 0, '', 0)
- if not sys.version_info >= MIN_PYTHON_VERSION :
- print gettext.gettext("Your Python version does not meet the "
- "requirements. At least python %d.%d.%d is needed to"
diff --git a/databases/gramps3/patches/patch-bc b/databases/gramps3/patches/patch-bc
deleted file mode 100644
index ad44a627498..00000000000
--- a/databases/gramps3/patches/patch-bc
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-bc,v 1.2 2010/01/18 19:00:16 drochner Exp $
-
---- configure.orig 2009-12-06 08:46:58.000000000 +0000
-+++ configure
-@@ -6504,12 +6504,12 @@ $as_echo "$LINGUAS" >&6; }
-
- if test -n "$PYTHON"; then
- # If the user set $PYTHON, use it and don't search something else.
-- { $as_echo "$as_me:$LINENO: checking whether $PYTHON version >= 2.5" >&5
--$as_echo_n "checking whether $PYTHON version >= 2.5... " >&6; }
-+ { $as_echo "$as_me:$LINENO: checking whether $PYTHON version >= 2.4" >&5
-+$as_echo_n "checking whether $PYTHON version >= 2.4... " >&6; }
- prog="import sys, string
- # split strings by '.' and convert to numeric. Append some zeros
- # because we need at least 4 digits for the hex conversion.
--minver = map(int, string.split('2.5', '.')) + [0, 0, 0]
-+minver = map(int, string.split('2.4', '.')) + [0, 0, 0]
- minverhex = 0
- for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
- sys.exit(sys.hexversion < minverhex)"