summaryrefslogtreecommitdiffstats
path: root/printer/pycups
diff options
context:
space:
mode:
authorLadislav Hagara2011-01-16 02:47:52 +0100
committerLadislav Hagara2011-01-16 02:47:52 +0100
commit8d8b0aaf39e47c955b4b269fb2e1f474ee111a4b (patch)
tree5aa92aad30756a1fe158112703dacd1e62ed743f /printer/pycups
parent3f923201ace5cbce7e6a0b717eb2587a4bffd8ba (diff)
pycups 1.9.53
Diffstat (limited to 'printer/pycups')
-rwxr-xr-xprinter/pycups/DETAILS2
-rw-r--r--printer/pycups/HISTORY4
-rwxr-xr-xprinter/pycups/PRE_BUILD3
-rw-r--r--printer/pycups/python2.5.patch33
4 files changed, 5 insertions, 37 deletions
diff --git a/printer/pycups/DETAILS b/printer/pycups/DETAILS
index 2ccc6ffc6b..cc660810fe 100755
--- a/printer/pycups/DETAILS
+++ b/printer/pycups/DETAILS
@@ -1,5 +1,5 @@
SPELL=pycups
- VERSION=1.9.49
+ VERSION=1.9.53
# SOURCE_HASH=sha512:
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
diff --git a/printer/pycups/HISTORY b/printer/pycups/HISTORY
index 8a36ea3539..c342ad968b 100644
--- a/printer/pycups/HISTORY
+++ b/printer/pycups/HISTORY
@@ -1,3 +1,7 @@
+2011-01-16 Ladislav Hagara <hgr@vabo.cz>
+ * DETAILS: 1.9.53
+ * PRE_BUILD, python2.5.patch: removed
+
2010-04-28 Eric Sandall <sandalle@sourcemage.org>
* PRE_BUILD: Apply python2.5.patch (Fixes Bug #15656)
* python2.5.patch: Based on
diff --git a/printer/pycups/PRE_BUILD b/printer/pycups/PRE_BUILD
deleted file mode 100755
index 1ffd20b0a2..0000000000
--- a/printer/pycups/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-patch -p1 < $SCRIPT_DIRECTORY/python2.5.patch
diff --git a/printer/pycups/python2.5.patch b/printer/pycups/python2.5.patch
deleted file mode 100644
index ed7fc48464..0000000000
--- a/printer/pycups/python2.5.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Based on
-# http://git.fedorahosted.org/git/?p=pycups.git;a=commit;h=fefe4d6b50c5f1c0bcafa40da60170f42217de82
-# https://fedorahosted.org/pycups/ticket/14
-#
-diff -Naur pycups-1.9.49.orig/Makefile pycups-1.9.49/Makefile
---- pycups-1.9.49.orig/Makefile 2010-04-28 12:25:05.016799280 -0700
-+++ pycups-1.9.49/Makefile 2010-04-28 12:34:20.275799057 -0700
-@@ -1,5 +1,4 @@
- NAME=pycups
--VERSION=1.9.49
-
- SOURCES=cupsmodule.c cupsconnection.c cupsppd.c cupsipp.c setup.py \
- cupsppd.h cupsipp.h cupsconnection.h cupsmodule.h
-@@ -9,7 +8,7 @@
- COPYING NEWS README TODO ChangeLog
-
- cups.so: $(SOURCES)
-- CFLAGS=-DVERSION=\\\"$(VERSION)\\\" python setup.py build
-+ python setup.py build
- mv build/lib*/$@ .
-
- doc: cups.so
-diff -Naur pycups-1.9.49.orig/setup.py pycups-1.9.49/setup.py
---- pycups-1.9.49.orig/setup.py 2010-04-28 12:25:05.016799280 -0700
-+++ pycups-1.9.49/setup.py 2010-04-28 12:35:39.438674099 -0700
-@@ -3,4 +3,5 @@
- ext_modules=[Extension("cups",
- ["cupsmodule.c", "cupsconnection.c",
- "cupsppd.c", "cupsipp.c"],
-- libraries=["cups"])])
-+ libraries=["cups"],
-+ define_macros=[("VERSION", '"1.9.49"')])])