Bugfix update to system-config-printer-1.3.5.

This commit is contained in:
ajacoutot 2011-07-29 16:56:32 +00:00
parent f5fdba9590
commit 9f8293e921
7 changed files with 35 additions and 34 deletions

View File

@ -1,9 +1,8 @@
# $OpenBSD: Makefile,v 1.28 2011/07/20 07:20:06 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.29 2011/07/29 16:56:32 ajacoutot Exp $
COMMENT= printer (CUPS) administration tool
DISTNAME= system-config-printer-1.3.4
REVISION= 0
DISTNAME= system-config-printer-1.3.5
CATEGORIES= print sysutils
@ -29,7 +28,7 @@ RUN_DEPENDS= devel/desktop-file-utils \
devel/gettext \
devel/py-notify \
net/py-smbc>=1.0.11 \
print/py-cups>=1.9.57 \
print/py-cups>=1.9.58 \
textproc/py-xml \
x11/dbus-python \
x11/py-gtk2 \

View File

@ -1,5 +1,5 @@
MD5 (system-config-printer-1.3.4.tar.xz) = jksbH9B4wJdpcI8Jt3yz7Q==
RMD160 (system-config-printer-1.3.4.tar.xz) = Rz6kx4wt756pw8oDLQe/QoLjams=
SHA1 (system-config-printer-1.3.4.tar.xz) = JmrK88Ptza9ZYQY3cnZ7zeE/bDA=
SHA256 (system-config-printer-1.3.4.tar.xz) = vI7YIQOZQn5wcAHm1rmouByQ8HcK4oF5z/5nfx/OoLQ=
SIZE (system-config-printer-1.3.4.tar.xz) = 991824
MD5 (system-config-printer-1.3.5.tar.xz) = nYBmQ/F9xlpJKh1OimDy7A==
RMD160 (system-config-printer-1.3.5.tar.xz) = oyax3eZDQnUAvJGZXMHEaWFvLUM=
SHA1 (system-config-printer-1.3.5.tar.xz) = hKsj6SwEznF00INfFUdTd1TLucA=
SHA256 (system-config-printer-1.3.5.tar.xz) = I8eKMEBNqXkF+17HdNik4XRmwANjQHmu+3bbRrKopBk=
SIZE (system-config-printer-1.3.5.tar.xz) = 994512

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-cupshelpers_cupshelpers_py,v 1.5 2011/05/04 09:10:52 ajacoutot Exp $
--- cupshelpers/cupshelpers.py.orig Wed Mar 16 17:44:41 2011
+++ cupshelpers/cupshelpers.py Wed May 4 10:04:38 2011
@@ -699,7 +699,7 @@ def missingPackagesAndExecutables(ppd):
$OpenBSD: patch-cupshelpers_cupshelpers_py,v 1.6 2011/07/29 16:56:32 ajacoutot Exp $
--- cupshelpers/cupshelpers.py.orig Thu Jul 28 18:04:13 2011
+++ cupshelpers/cupshelpers.py Fri Jul 29 18:50:55 2011
@@ -699,7 +699,7 @@ def missingExecutables(ppd):
# First, a local function. How to check that something exists
# in a path:
@ -10,13 +10,12 @@ $OpenBSD: patch-cupshelpers_cupshelpers_py,v 1.5 2011/05/04 09:10:52 ajacoutot E
if name == "-":
# A filter of "-" means that no filter is required,
# i.e. the device accepts the given format as-is.
@@ -801,8 +801,7 @@ def missingPackagesAndExecutables(ppd):
continue
@@ -813,7 +813,7 @@ def missingExecutables(ppd):
exepath = pathcheck (exe,
- "/usr/lib/cups/filter:"
"/usr/lib/cups/filter:"
- "/usr/lib64/cups/filter")
+ "${PREFIX}/libexec/cups/filter")
+ "${LOCALBASE}/libexec/cups/filter")
if not exepath:
add_missing ("/usr/lib/cups/filter/" + exe)
if exe and not exepath:
# We didn't find a necessary executable. Complain.

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-firewall_py,v 1.1 2011/05/04 09:10:52 ajacoutot Exp $
$OpenBSD: patch-firewall_py,v 1.2 2011/07/29 16:56:32 ajacoutot Exp $
Disable firewall checks.
--- firewall.py.orig Wed Mar 16 17:44:41 2011
+++ firewall.py Wed May 4 11:01:26 2011
@@ -83,26 +83,13 @@ class Firewall:
--- firewall.py.orig Thu Jul 28 18:04:13 2011
+++ firewall.py Fri Jul 29 18:49:26 2011
@@ -88,26 +88,13 @@ class Firewall:
self._client_error_handler (exc)
def write (self):
- try:
- self._firewall.write (pickle.dumps (self._fw_data[0]))
- self._firewall.write (json.dumps (self._fw_data[0]))
- except:
- pass
+ pass

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-newprinter_py,v 1.3 2011/07/16 07:00:04 ajacoutot Exp $
--- newprinter.py.orig Tue Jul 12 14:24:03 2011
+++ newprinter.py Sat Jul 16 08:47:48 2011
@@ -1525,7 +1525,7 @@ class NewPrinterGUI(GtkGUI):
$OpenBSD: patch-newprinter_py,v 1.4 2011/07/29 16:56:32 ajacoutot Exp $
--- newprinter.py.orig Thu Jul 28 18:04:13 2011
+++ newprinter.py Fri Jul 29 18:47:58 2011
@@ -1526,7 +1526,7 @@ class NewPrinterGUI(GtkGUI):
# Try to get make and model via SNMP
if host:
os.environ["HOST"] = host
@ -10,7 +10,7 @@ $OpenBSD: patch-newprinter_py,v 1.3 2011/07/16 07:00:04 ajacoutot Exp $
debugprint (host + ": " + cmd)
stdout = None
try:
@@ -3366,7 +3366,7 @@ class NewPrinterGUI(GtkGUI):
@@ -3375,7 +3375,7 @@ class NewPrinterGUI(GtkGUI):
try:
# We want this to be in the current natural language,
# so we intentionally don't set LC_ALL=C here.

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-probe_printer_py,v 1.2 2011/07/16 07:00:04 ajacoutot Exp $
--- probe_printer.py.orig Tue Jul 12 14:24:28 2011
+++ probe_printer.py Sat Jul 16 08:47:48 2011
@@ -260,7 +260,7 @@ class PrinterFinder:
$OpenBSD: patch-probe_printer_py,v 1.3 2011/07/29 16:56:32 ajacoutot Exp $
--- probe_printer.py.orig Thu Jul 28 18:04:13 2011
+++ probe_printer.py Fri Jul 29 18:47:58 2011
@@ -268,7 +268,7 @@ class PrinterFinder:
null = file ("/dev/null", "r+")
try:
debugprint ("snmp: trying")

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.11 2011/07/16 07:00:04 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.12 2011/07/29 16:56:32 ajacoutot Exp $
bin/scp-dbus-service
bin/system-config-printer
bin/system-config-printer-applet
@ -21,6 +21,7 @@ lib/python${MODPY_VERSION}/site-packages/cupshelpers/xmldriverprefs.pyc
@man man/man1/system-config-printer-applet.1
@man man/man1/system-config-printer.1
share/applications/system-config-printer.desktop
share/dbus-1/interfaces/
share/dbus-1/interfaces/org.fedoraproject.Config.Printing.xml
share/dbus-1/services/org.fedoraproject.Config.Printing.service
share/examples/system-config-printer/
@ -72,6 +73,8 @@ share/locale/ja/LC_MESSAGES/system-config-printer.mo
share/locale/ka/LC_MESSAGES/system-config-printer.mo
share/locale/kn/LC_MESSAGES/system-config-printer.mo
share/locale/ko/LC_MESSAGES/system-config-printer.mo
share/locale/lo/
share/locale/lo/LC_MESSAGES/
share/locale/lo/LC_MESSAGES/system-config-printer.mo
share/locale/lv/LC_MESSAGES/system-config-printer.mo
share/locale/mai/LC_MESSAGES/system-config-printer.mo