[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-thread-isalive-removed.patch)

2020-12-09 Thread Andreas Radke via arch-commits
Date: Wednesday, December 9, 2020 @ 15:46:45
  Author: andyrtr
Revision: 403207

upgpkg: hplip 1:3.20.11-2: apply python 3.9 fix for scan/copy/fax tools / 
FS#68910

Added:
  hplip/trunk/hplip-thread-isalive-removed.patch
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   10 ++-
 hplip-thread-isalive-removed.patch |   93 +++
 2 files changed, 100 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-09 15:30:39 UTC (rev 403206)
+++ PKGBUILD2020-12-09 15:46:45 UTC (rev 403207)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.11
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -33,6 +33,7 @@
 # use the one from Fedora
 hplip-configure-python.patch
 python3.diff
+hplip-thread-isalive-removed.patch
 reproducible-gzip.patch)
 
sha512sums=('f583fb4140a29c5e21956c3e51fe3620baa65d33b40447af419d7fc61473a1148a1873216a84e89be785b155ee8e9aebd5e3eb19d2ded82b8415b1a35de1b55d'
 'SKIP'
@@ -42,6 +43,7 @@
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'089c102357ea5fd55d81ae76aaff62713f780fd84500c3b92ecd6b2bb11ccdc3a162978548e9a5f9e98a8354a5be3997e416c52daa18eda4621ed79a29d6fea8'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
+
'6cf68bbc5c2b1a03ca8528e834e9867d33b982a9fa073d28c9faa514d5057d9b71de6fb494597d3b496ee56b68a179b2e11ba14cec4d01c4fc7dec72a4a2ff0b'
 
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
@@ -60,6 +62,9 @@
  # Workaround patch for missing Python3 transition of the old
  # (pre-USB-storage) photo memory card support (pcardext) - Debian patch
  patch -Np1 -i "${srcdir}"/python3.diff
+ # python 3.9 emoved a deprecated method of threading
+ # https://bugs.archlinux.org/task/68910 / hplip-thread-isalive-removed.patch
+ patch -Np1 -i "${srcdir}"/hplip-thread-isalive-removed.patch
 
  # https://bugs.launchpad.net/hplip/+bug/1879445
  # broken scanning - https://bugs.archlinux.org/task/66704
@@ -74,7 +79,6 @@
 
 build() {
  cd "$pkgname"-$pkgver
-# export CFLAGS+=" $(python3-config --includes)" # Fix build with python 3.8
  ./configure --prefix=/usr \
  --enable-qt5 \
  --disable-qt4 \
@@ -81,7 +85,7 @@
  --enable-hpcups-install \
  --enable-cups-drv-install \
  --enable-pp-build #--help
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
 }
 

Added: hplip-thread-isalive-removed.patch
===
--- hplip-thread-isalive-removed.patch  (rev 0)
+++ hplip-thread-isalive-removed.patch  2020-12-09 15:46:45 UTC (rev 403207)
@@ -0,0 +1,93 @@
+diff --git a/copier/copier.py b/copier/copier.py
+index a595baa..7794f48 100644
+--- a/copier/copier.py
 b/copier/copier.py
+@@ -73,13 +73,13 @@ class PMLCopyDevice(device.Device):
+ 
+ def isCopyActive(self):
+ if self.copy_thread is not None:
+-return self.copy_thread.isAlive()
++return self.copy_thread.is_alive()
+ else:
+ return False
+ 
+ def waitForCopyThread(self):
+ if self.copy_thread is not None and \
+-self.copy_thread.isAlive():
++self.copy_thread.is_alive():
+ 
+ self.copy_thread.join()
+ 
+diff --git a/fax/fax.py b/fax/fax.py
+index 3d69226..0878a64 100644
+--- a/fax/fax.py
 b/fax/fax.py
+@@ -478,13 +478,13 @@ class FaxDevice(device.Device):
+ 
+ def isSendFaxActive(self):
+ if self.send_fax_thread is not None:
+-return self.send_fax_thread.isAlive()
++return self.send_fax_thread.is_alive()
+ else:
+ return False
+ 
+ def waitForSendFaxThread(self):
+ if self.send_fax_thread is not None and \
+-self.send_fax_thread.isAlive():
++self.send_fax_thread.is_alive():
+ 
+ try:
+ self.send_fax_thread.join()
+diff --git a/fax/pmlfax.py b/fax/pmlfax.py
+index b68ff6a..b1020d0 100644
+--- a/fax/pmlfax.py
 b/fax/pmlfax.py
+@@ -179,13 +179,13 @@ class PMLFaxDevice(FaxDevice):
+ 
+ def isUploadLogActive(self):
+ if self.upload_log_thread is not None:
+-return self.upload_log_thread.isAlive()
++return self.upload_log_thread.is_alive()
+ else:
+ 

[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-configure-python.patch)

2020-12-04 Thread Andreas Radke via arch-commits
Date: Friday, December 4, 2020 @ 14:05:39
  Author: andyrtr
Revision: 402864

upgpkg: hplip 1:3.20.11-1: upstream update 3.20.11; avoid overlinking

Added:
  hplip/trunk/hplip-configure-python.patch
Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++
 hplip-configure-python.patch |   52 +
 2 files changed, 60 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-04 12:29:44 UTC (rev 402863)
+++ PKGBUILD2020-12-04 14:05:39 UTC (rev 402864)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.20.9
-pkgrel=3
+pkgver=3.20.11
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -29,16 +29,18 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
-https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
+#https://launchpadlibrarian.net/480406888/hplip-configure-python.patch 
# no more available
+# use the one from Fedora
+hplip-configure-python.patch
 python3.diff
 reproducible-gzip.patch)
-sha512sums=('d2981cf51f6d893a576c51808710ac9815aa6ac5fdc617d95cc372518731a48b0aca09af721c1792e1531df6cf8fc0ebf5ebd7e9c96950602a830ceed3d441ae'
+sha512sums=('f583fb4140a29c5e21956c3e51fe3620baa65d33b40447af419d7fc61473a1148a1873216a84e89be785b155ee8e9aebd5e3eb19d2ded82b8415b1a35de1b55d'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
-
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
+
'089c102357ea5fd55d81ae76aaff62713f780fd84500c3b92ecd6b2bb11ccdc3a162978548e9a5f9e98a8354a5be3997e416c52daa18eda4621ed79a29d6fea8'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
 
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
@@ -79,6 +81,7 @@
  --enable-hpcups-install \
  --enable-cups-drv-install \
  --enable-pp-build #--help
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
 }
 

Added: hplip-configure-python.patch
===
--- hplip-configure-python.patch(rev 0)
+++ hplip-configure-python.patch2020-12-04 14:05:39 UTC (rev 402864)
@@ -0,0 +1,52 @@
+diff -up hplip-3.20.9/configure.in.configure-python hplip-3.20.9/configure.in
+--- hplip-3.20.9/configure.in.configure-python 2020-09-23 07:24:27.0 
+0200
 hplip-3.20.9/configure.in  2020-10-02 07:27:09.082331431 +0200
+@@ -604,17 +604,29 @@ if test "$class_driver" = "no" && test "
+fi
+ fi
+ 
+-SAVE_CPPFLAGS="$CPPFLAGS"
+-CFLAGS=`python-config --includes`
+-if [ $? -eq 0 ] 
+-then
+-   echo $FLAGS
+-else
+-CFLAGS=`python3-config --includes`
+-   if [ $? -eq 0 ]
+-   then
+-   echo $FLAGS
+-   fi
++AC_PATH_PROG(python3_config_path, python3-config, 
[AC_MSG_ERROR([python3-config not installed], 6)])
++
++PYTHON_INCLUDES=`$python3_config_path --includes`
++if test "X$PYTHON_INCLUDES" = "X" ; then
++  AC_MSG_ERROR([Cannot get Python includes via python3-config], 6)
++fi
++
++PYTHON_LIBS=`$python3_config_path --libs`
++if test "X$PYTHON_LIBS" = "X" ; then
++  AC_MSG_ERROR([Cannot get Python libs via python3-config], 6)
++fi
++
++SAVE_CFLAGS=$CFLAGS
++SAVE_LIBS=$LIBS
++
++CFLAGS="$CFLAGS $PYTHON_INCLUDES"
++LIBS="$LIBS $PYTHON_LIBS"
++
++AC_TRY_LINK(,[ ], AC_MSG_RESULT(yes); python_includes="ok", AC_MSG_ERROR([no: 
PYTHON DISABLED], 6))
++
++if test "X$python_includes" != "Xok" ; then
++  CFLAGS="$SAVE_CFLAGS"
++  LIBS="$SAVE_LIBS"
+ fi
+ 
+ #CFLAGS=`(python-config --includes)`
+@@ -631,7 +643,6 @@ if test "$class_driver" = "no" && test "
+AS_IF([test "x$FOUND_HEADER" != "xyes"],
+   [AC_MSG_ERROR([cannot find python-devel support], 6)])
+ fi
+-CFLAGS="$save_CFLAGS"
+ 
+ if test 

[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 19:33:37
  Author: foutrelis
Revision: 400706

upgpkg: hplip 1:3.20.9-3: Python 3.9 rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 19:23:55 UTC (rev 400705)
+++ PKGBUILD2020-11-12 19:33:37 UTC (rev 400706)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.9
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-10-27 Thread Felix Yan via arch-commits
Date: Tuesday, October 27, 2020 @ 10:12:26
  Author: felixonmars
Revision: 398852

upgpkg: hplip 1:3.20.9-2: rebuild with net-snmp 5.9

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-27 10:04:40 UTC (rev 398851)
+++ PKGBUILD2020-10-27 10:12:26 UTC (rev 398852)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.9
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')


[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-revert-plugins.patch)

2020-10-04 Thread Andreas Radke via arch-commits
Date: Sunday, October 4, 2020 @ 17:43:04
  Author: andyrtr
Revision: 397243

upgpkg: hplip 1:3.20.9-1: upstream update 3.20.9

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/hplip-revert-plugins.patch

+
 PKGBUILD   |   15 
 hplip-revert-plugins.patch | 1312 ---
 2 files changed, 5 insertions(+), 1322 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-04 11:57:03 UTC (rev 397242)
+++ PKGBUILD2020-10-04 17:43:04 UTC (rev 397243)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.20.6
-pkgrel=3
+pkgver=3.20.9
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -31,9 +31,8 @@
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
 python3.diff
-reproducible-gzip.patch
-hplip-revert-plugins.patch)
-sha512sums=('ccd82112afb5ee73f5d027819ab89ba8f52ec36a4b061d314565f95d288be24e045050c3368332eeae50c0fb170f8cb015fdd8dde4b32a08e3758f0f0f4e8e96'
+reproducible-gzip.patch)
+sha512sums=('d2981cf51f6d893a576c51808710ac9815aa6ac5fdc617d95cc372518731a48b0aca09af721c1792e1531df6cf8fc0ebf5ebd7e9c96950602a830ceed3d441ae'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
@@ -41,8 +40,7 @@
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
-
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b'
-
'0dda7afaa96746a45c4720304338aea2315c983edeb8cdde4fbb98ea18421e64209947f87a374c6333ce777ea0e9565e7c5ad4c8f4c987f17d308466d02f475b')
+
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -68,9 +66,6 @@
  # make gzip creation reproducible by removing the timestamp
  patch -Np1 -i ../reproducible-gzip.patch
 
- # why do they disable the plugins for almost all printers??? - FS#67119
- patch -Np1 -i ../hplip-revert-plugins.patch
-
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Deleted: hplip-revert-plugins.patch
===
--- hplip-revert-plugins.patch  2020-10-04 11:57:03 UTC (rev 397242)
+++ hplip-revert-plugins.patch  2020-10-04 17:43:04 UTC (rev 397243)
@@ -1,1312 +0,0 @@
-diff --git a/data/models/models.dat b/data/models/models.dat
-index 85485636e..3a430e250 100644
 a/data/models/models.dat
-+++ b/data/models/models.dat
-@@ -2131,7 +2131,7 @@ ppd-name=hp-laserjet_100_color_mfp_m175-ps.ppd
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
-+plugin=1
- plugin-reason=64
- power-settings=0
- pq-diag-type=0
-@@ -3913,8 +3913,8 @@ model1=HP LaserJet Pro 200 color MFP M276nw
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
--plugin-reason=0
-+plugin=1
-+plugin-reason=64
- power-settings=0
- ppd-name=hp-laserjet_200_colormfp_m276-ps.ppd
- family-ppd=hp-postscript-laserjet-pro.ppd
-@@ -3967,8 +3967,8 @@ model1=HP LaserJet 200 Color MFP M275s
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
--plugin-reason=0
-+plugin=1
-+plugin-reason=64
- power-settings=0
- ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
- family-ppd=hp-postscript-laserjet-pro.ppd
-@@ -4021,8 +4021,8 @@ model1=HP LaserJet 200 Color MFP M275u
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
--plugin-reason=0
-+plugin=1
-+plugin-reason=64
- power-settings=0
- ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
- family-ppd=hp-postscript-laserjet-pro.ppd
-@@ -4075,8 +4075,8 @@ model1=HP LaserJet 200 Color MFP M275t
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
--plugin-reason=0
-+plugin=1
-+plugin-reason=64
- power-settings=0
- ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
- family-ppd=hp-postscript-laserjet-pro.ppd
-@@ -4128,8 +4128,8 @@ linefeed-cal-type=0
- monitor-type=0
- panel-check-type=0
- pcard-type=0
--plugin=0
--plugin-reason=0
-+plugin=1
-+plugin-reason=64
- power-settings=0

[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-08-23 Thread Andreas Radke via arch-commits
Date: Sunday, August 23, 2020 @ 09:42:08
  Author: andyrtr
Revision: 394592

upgpkg: hplip 1:3.20.6-3: libxcrypt rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-23 09:33:35 UTC (rev 394591)
+++ PKGBUILD2020-08-23 09:42:08 UTC (rev 394592)
@@ -5,13 +5,13 @@
 
 pkgname=hplip
 pkgver=3.20.6
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="https://hplipopensource.com;
 license=('GPL2' 'custom')
-depends=('python-dbus' 'python-distro' 'ghostscript' 'net-snmp' 
'foomatic-db-engine' 'python-gobject')
+depends=('python-dbus' 'python-distro' 'ghostscript' 'net-snmp' 
'foomatic-db-engine' 'python-gobject' 'libxcrypt')
 makedepends=('python-pyqt5' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'


[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-revert-plugins.patch)

2020-06-27 Thread Andreas Radke via arch-commits
Date: Friday, June 26, 2020 @ 14:09:11
  Author: andyrtr
Revision: 390494

upgpkg: hplip 1:3.20.6-2: reenable plugins - FS#67119

Added:
  hplip/trunk/hplip-revert-plugins.patch
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   13 
 hplip-revert-plugins.patch | 1312 +++
 2 files changed, 1321 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-26 14:05:39 UTC (rev 390493)
+++ PKGBUILD2020-06-26 14:09:11 UTC (rev 390494)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.6
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -31,8 +31,9 @@
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
 python3.diff
-reproducible-gzip.patch)
-sha512sums=('6a5ce55465e3a537ecc0b6e7d198835dbe495e191522e674a507a4993e2061da3ea084a5239a74b2279c065c0775067d5b6a4aeb2a7791825106a299fb55e8f8'
+reproducible-gzip.patch
+hplip-revert-plugins.patch)
+sha512sums=('ccd82112afb5ee73f5d027819ab89ba8f52ec36a4b061d314565f95d288be24e045050c3368332eeae50c0fb170f8cb015fdd8dde4b32a08e3758f0f0f4e8e96'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
@@ -40,7 +41,8 @@
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
-
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
+
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b'
+
'0dda7afaa96746a45c4720304338aea2315c983edeb8cdde4fbb98ea18421e64209947f87a374c6333ce777ea0e9565e7c5ad4c8f4c987f17d308466d02f475b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -66,6 +68,9 @@
  # make gzip creation reproducible by removing the timestamp
  patch -Np1 -i ../reproducible-gzip.patch
 
+ # why do they disable the plugins for almost all printers??? - FS#67119
+ patch -Np1 -i ../hplip-revert-plugins.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Added: hplip-revert-plugins.patch
===
--- hplip-revert-plugins.patch  (rev 0)
+++ hplip-revert-plugins.patch  2020-06-26 14:09:11 UTC (rev 390494)
@@ -0,0 +1,1312 @@
+diff --git a/data/models/models.dat b/data/models/models.dat
+index 85485636e..3a430e250 100644
+--- a/data/models/models.dat
 b/data/models/models.dat
+@@ -2131,7 +2131,7 @@ ppd-name=hp-laserjet_100_color_mfp_m175-ps.ppd
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
++plugin=1
+ plugin-reason=64
+ power-settings=0
+ pq-diag-type=0
+@@ -3913,8 +3913,8 @@ model1=HP LaserJet Pro 200 color MFP M276nw
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
+-plugin-reason=0
++plugin=1
++plugin-reason=64
+ power-settings=0
+ ppd-name=hp-laserjet_200_colormfp_m276-ps.ppd
+ family-ppd=hp-postscript-laserjet-pro.ppd
+@@ -3967,8 +3967,8 @@ model1=HP LaserJet 200 Color MFP M275s
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
+-plugin-reason=0
++plugin=1
++plugin-reason=64
+ power-settings=0
+ ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
+ family-ppd=hp-postscript-laserjet-pro.ppd
+@@ -4021,8 +4021,8 @@ model1=HP LaserJet 200 Color MFP M275u
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
+-plugin-reason=0
++plugin=1
++plugin-reason=64
+ power-settings=0
+ ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
+ family-ppd=hp-postscript-laserjet-pro.ppd
+@@ -4075,8 +4075,8 @@ model1=HP LaserJet 200 Color MFP M275t
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
+-plugin-reason=0
++plugin=1
++plugin-reason=64
+ power-settings=0
+ ppd-name=hp-laserjet_200_colormfp_m275-ps.ppd
+ family-ppd=hp-postscript-laserjet-pro.ppd
+@@ -4128,8 +4128,8 @@ linefeed-cal-type=0
+ monitor-type=0
+ panel-check-type=0
+ pcard-type=0
+-plugin=0
+-plugin-reason=0
++plugin=1
++plugin-reason=64
+ power-settings=0
+ ppd-name=hp-laserjet_200_colormfp_m276-ps.ppd
+ 

[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-06-16 Thread Felix Yan via arch-commits
Date: Tuesday, June 16, 2020 @ 13:55:19
  Author: felixonmars
Revision: 389312

upgpkg: hplip 1:3.20.6-1

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-16 13:49:11 UTC (rev 389311)
+++ PKGBUILD2020-06-16 13:55:19 UTC (rev 389312)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.20.5
-pkgrel=3
+pkgver=3.20.6
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -32,7 +32,7 @@
 https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
 python3.diff
 reproducible-gzip.patch)
-sha512sums=('fce3c7b8a2f3b0d2875bafd2ff65a3312fae867b658cd45eea16d9f3663646b6b0b70b58e6c2b46eb24627cdeefb318b6ca9ccf5a0e9790ff19519518992da07'
+sha512sums=('6a5ce55465e3a537ecc0b6e7d198835dbe495e191522e674a507a4993e2061da3ea084a5239a74b2279c065c0775067d5b6a4aeb2a7791825106a299fb55e8f8'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD reproducible-gzip.patch)

2020-05-27 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 27, 2020 @ 14:57:54
  Author: jelle
Revision: 387726

Make hplip reproducible

Added:
  hplip/trunk/reproducible-gzip.patch
Modified:
  hplip/trunk/PKGBUILD

-+
 PKGBUILD|   11 ---
 reproducible-gzip.patch |   38 ++
 2 files changed, 46 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-27 14:43:10 UTC (rev 387725)
+++ PKGBUILD2020-05-27 14:57:54 UTC (rev 387726)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.5
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -30,7 +30,8 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
-python3.diff)
+python3.diff
+reproducible-gzip.patch)
 
sha512sums=('fce3c7b8a2f3b0d2875bafd2ff65a3312fae867b658cd45eea16d9f3663646b6b0b70b58e6c2b46eb24627cdeefb318b6ca9ccf5a0e9790ff19519518992da07'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
@@ -38,7 +39,8 @@
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
-
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82')
+
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82'
+
'7bad907228b7c2f3c43128f087a2f8e03778760b7a26179ff441c1f60127e2fca08c94dff76baea2469d3a253a8f46b285d0af0f62a6d8738926caf7a10f670b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -61,6 +63,9 @@
  # broken scanning - https://bugs.archlinux.org/task/66704
  patch -Np1 -i ../hplip-configure-python.patch
 
+ # make gzip creation reproducible by removing the timestamp
+ patch -Np1 -i ../reproducible-gzip.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Added: reproducible-gzip.patch
===
--- reproducible-gzip.patch (rev 0)
+++ reproducible-gzip.patch 2020-05-27 14:57:54 UTC (rev 387726)
@@ -0,0 +1,38 @@
+--- hplip-3.20.5/createPPD.sh  2020-05-11 15:34:06.0 +0200
 hplip-3.20.5.old/createPPD.sh  2020-05-27 12:02:44.089477299 +0200
+@@ -54,15 +54,15 @@
+   else
+   cp prnt/ps/hp-postscript*.ppd ppd/classppd/ps
+   for i in ppd/classppd/ps/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+   done
+   fi
+ #cp prnt/ps/hp-postscript*.ppd.gz ppd/classppd/ps
+   for i in ppd/classppd/hpcups/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+   done
+   #for i in ppd/classppd/ps/*.ppd; do
+-  #   gzip -c "$i" > "$i.gz"
++  #   gzip -nc "$i" > "$i.gz"
+   #done
+ 
+   cat > class_cups_drv.inc < "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+ done
+ 
+ install -d ppd/hpijs
+ ppdc -d ppd/hpijs prnt/drv/hpijs.drv
+ echo "gzip ppd files..."
+ for i in ppd/hpijs/*.ppd; do
+-  gzip -c "$i" > "$i.gz"
++  gzip -nc "$i" > "$i.gz"
+ done
+ echo "building foomatic_drv.inc..."
+ ./hpijs-drv > foomatic_drv.inc $shadow


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-05-19 Thread Andreas Radke via arch-commits
Date: Tuesday, May 19, 2020 @ 11:32:07
  Author: andyrtr
Revision: 386941

upgpkg: hplip 1:3.20.5-2: fix configure not detecting system CFLAGS breaking 
scan - FS#66704

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 11:06:58 UTC (rev 386940)
+++ PKGBUILD2020-05-19 11:32:07 UTC (rev 386941)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.5
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -29,6 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+https://launchpadlibrarian.net/480406888/hplip-configure-python.patch
 python3.diff)
 
sha512sums=('fce3c7b8a2f3b0d2875bafd2ff65a3312fae867b658cd45eea16d9f3663646b6b0b70b58e6c2b46eb24627cdeefb318b6ca9ccf5a0e9790ff19519518992da07'
 'SKIP'
@@ -36,6 +37,7 @@
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
+
'c41d5812ab9b5994e06f82acb0299c69edeaed548f5df2a3578c6c6428223e9cf7ec3b746f6e3071b6c858e2b0552417ba4695e1032ea41657bf852eb3ffc3fe'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
@@ -55,6 +57,10 @@
  # (pre-USB-storage) photo memory card support (pcardext) - Debian patch
  patch -Np1 -i "${srcdir}"/python3.diff
 
+ # https://bugs.launchpad.net/hplip/+bug/1879445
+ # broken scanning - https://bugs.archlinux.org/task/66704
+ patch -Np1 -i ../hplip-configure-python.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }
@@ -61,7 +67,7 @@
 
 build() {
  cd "$pkgname"-$pkgver
- export CFLAGS+=" $(python3-config --includes)" # Fix build with python 3.8
+# export CFLAGS+=" $(python3-config --includes)" # Fix build with python 3.8
  ./configure --prefix=/usr \
  --enable-qt5 \
  --disable-qt4 \


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-05-14 Thread Andreas Radke via arch-commits
Date: Friday, May 15, 2020 @ 04:43:20
  Author: andyrtr
Revision: 383463

upgpkg: hplip 1:3.20.5-1: upstream update 3.20.5

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 02:48:46 UTC (rev 383462)
+++ PKGBUILD2020-05-15 04:43:20 UTC (rev 383463)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.20.3
-pkgrel=2
+pkgver=3.20.5
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 python3.diff)
-sha512sums=('a397eb3896292ac956a1969b76707af62c866e47d88148fa75b68574e4639283f7414a2c77e6854c5d22daea49181d4f1bc2daf11fb3058372ff084d591696f1'
+sha512sums=('fce3c7b8a2f3b0d2875bafd2ff65a3312fae867b658cd45eea16d9f3663646b6b0b70b58e6c2b46eb24627cdeefb318b6ca9ccf5a0e9790ff19519518992da07'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-03-18 Thread Andreas Radke via arch-commits
Date: Wednesday, March 18, 2020 @ 12:25:21
  Author: andyrtr
Revision: 377856

upgpkg: hplip 1:3.20.3-2: add missing compiled python files - FS#61329

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-18 10:27:25 UTC (rev 377855)
+++ PKGBUILD2020-03-18 12:25:21 UTC (rev 377856)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.20.3
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -88,4 +88,8 @@
 
  # add mixed license file
  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 COPYING
+
+ # Compile Python bytecode:
+ python -m compileall -d /usr/share "$pkgdir/usr/share"
+ python -O -m compileall -d /usr/share "$pkgdir/usr/share"
 }


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-03-10 Thread Andreas Radke via arch-commits
Date: Tuesday, March 10, 2020 @ 19:38:27
  Author: andyrtr
Revision: 377331

upgpkg: hplip 1:3.20.3-1: upstream update 3.20.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-10 18:50:04 UTC (rev 377330)
+++ PKGBUILD2020-03-10 19:38:27 UTC (rev 377331)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.20.2
+pkgver=3.20.3
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -30,7 +30,7 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 python3.diff)
-sha512sums=('013abeb1453a2b1045618543d2795d0653ac12b1804b99043b3ca04a8f7bc48289be1a0b3d7740064df1286eacfb5b1f504b64b280c169c7d263b7d5e7a213a0'
+sha512sums=('a397eb3896292ac956a1969b76707af62c866e47d88148fa75b68574e4639283f7414a2c77e6854c5d22daea49181d4f1bc2daf11fb3058372ff084d591696f1'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2020-02-27 Thread Andreas Radke via arch-commits
Date: Friday, February 28, 2020 @ 05:55:27
  Author: andyrtr
Revision: 376376

upgpkg: hplip 1:3.20.2-1: upstream update 3.20.2

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-28 05:48:51 UTC (rev 376375)
+++ PKGBUILD2020-02-28 05:55:27 UTC (rev 376376)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.12
+pkgver=3.20.2
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -30,7 +30,7 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 python3.diff)
-sha512sums=('5552cd717ae082ee55cdb77d79e8d035d8ecb7cf23c79d659fda43468d8ed414a33c4d869eab4ab83dee836f0d1cceb74c3c4a249e26f904a5ab2350e08a5677'
+sha512sums=('013abeb1453a2b1045618543d2795d0653ac12b1804b99043b3ca04a8f7bc48289be1a0b3d7740064df1286eacfb5b1f504b64b280c169c7d263b7d5e7a213a0'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD fix-broken-printer-naming.diff)

2019-12-12 Thread Andreas Radke via arch-commits
Date: Thursday, December 12, 2019 @ 09:48:34
  Author: andyrtr
Revision: 370752

upgpkg: hplip 1:3.19.12-1: upstream update 3.19.12

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/fix-broken-printer-naming.diff

+
 PKGBUILD   |   10 +++---
 fix-broken-printer-naming.diff |   38 --
 2 files changed, 3 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-12 09:46:31 UTC (rev 370751)
+++ PKGBUILD2019-12-12 09:48:34 UTC (rev 370752)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.11
-pkgrel=7
+pkgver=3.19.12
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -29,15 +29,13 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
-fix-broken-printer-naming.diff
 python3.diff)
-sha512sums=('f419de0e18937c93c2727f4d8b4f7bf1fcc24961a6b7a0d043ce8341c65d0c0332cd354c0cd907b85bc6ccc7735d23ba5f2c918dba5bf965540291cfcbe032d5'
+sha512sums=('5552cd717ae082ee55cdb77d79e8d035d8ecb7cf23c79d659fda43468d8ed414a33c4d869eab4ab83dee836f0d1cceb74c3c4a249e26f904a5ab2350e08a5677'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
-
'450e0e77954a9d919bbde0a4b9d630920a1225679121f94d6854e16ce9b2f8ed8c4de7ddf629012b9f9d24d075a407a4077d1710ad9d023742f402b4d139a111'
 
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
@@ -53,8 +51,6 @@
  patch -Np1 -i 
"${srcdir}"/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
- # fix broken printer naming FS#64420, FS#64801
- patch -Np1 -i "${srcdir}"/fix-broken-printer-naming.diff
  # Workaround patch for missing Python3 transition of the old
  # (pre-USB-storage) photo memory card support (pcardext) - Debian patch
  patch -Np1 -i "${srcdir}"/python3.diff

Deleted: fix-broken-printer-naming.diff
===
--- fix-broken-printer-naming.diff  2019-12-12 09:46:31 UTC (rev 370751)
+++ fix-broken-printer-naming.diff  2019-12-12 09:48:34 UTC (rev 370752)
@@ -1,38 +0,0 @@
 hplip-3.19.11/data/models/models.dat   2019-11-04 11:38:24.0 
+0100
-+++ hplip-3.19.11/data/models/models.dat.new   2019-12-11 07:37:22.969133967 
+0100
-@@ -61795,7 +61795,7 @@
- usb-vid=3f0
- wifi-config=0
- 
--[hp_color_laserjet_m253-m254]
-+[hp_colorlaserjet_m253-m254]
- align-type=0
- clean-type=0
- color-cal-type=0
-@@ -61846,7 +61846,7 @@
- wifi-config=0
- 
- 
--[hp_color_laserjet_mfp_m178-m181]
-+[hp_colorlaserjet_mfp_m178-m181]
- align-type=0
- clean-type=0
- color-cal-type=0
-@@ -61896,7 +61896,7 @@
- usb-vid=3f0
- wifi-config=3
- 
--[hp_color_laserjet_mfp_m278-m281]
-+[hp_colorlaserjet_mfp_m278-m281]
- align-type=0
- clean-type=0
- color-cal-type=0
-@@ -61947,7 +61947,7 @@
- usb-vid=3f0
- wifi-config=3
- 
--[hp_color_laserjet_m153-m154]
-+[hp_colorlaserjet_m153-m154]
- align-type=0
- clean-type=0
- color-cal-type=0


[arch-commits] Commit in hplip/trunk (PKGBUILD python3.diff)

2019-12-11 Thread Andreas Radke via arch-commits
Date: Wednesday, December 11, 2019 @ 16:54:40
  Author: andyrtr
Revision: 370678

upgpkg: hplip 1:3.19.11-7: fix more python3 bugs - FS#64811

Modified:
  hplip/trunk/PKGBUILD
  hplip/trunk/python3.diff

--+
 PKGBUILD |7 +-
 python3.diff |  152 ++---
 2 files changed, 148 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-11 14:41:19 UTC (rev 370677)
+++ PKGBUILD2019-12-11 16:54:40 UTC (rev 370678)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -38,7 +38,7 @@
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
 
'450e0e77954a9d919bbde0a4b9d630920a1225679121f94d6854e16ce9b2f8ed8c4de7ddf629012b9f9d24d075a407a4077d1710ad9d023742f402b4d139a111'
-
'834cd60af0b938b1d930e63fa43ce21900a32bd4842b6a03902dfd0b8e99b295be152531873e09a46506ef4645d67f3d06b7e1339ba92c6d56373f8277ee53ea')
+
'5885b223f96706bc09a147b5c141d620846c9058563e986983ca2ab90922cabe891a651d90d5004d45549b3874c40f8a1570a8a79e067d66f182668c7e82')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -55,7 +55,8 @@
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
  # fix broken printer naming FS#64420, FS#64801
  patch -Np1 -i "${srcdir}"/fix-broken-printer-naming.diff
- # fix unsupported old python variable
+ # Workaround patch for missing Python3 transition of the old
+ # (pre-USB-storage) photo memory card support (pcardext) - Debian patch
  patch -Np1 -i "${srcdir}"/python3.diff
 
  export AUTOMAKE='automake --foreign'

Modified: python3.diff
===
--- python3.diff2019-12-11 14:41:19 UTC (rev 370677)
+++ python3.diff2019-12-11 16:54:40 UTC (rev 370678)
@@ -1,11 +1,147 @@
 hplip-3.19.11/pcard/pcardext/pcardext.c2019-11-04 11:31:08.0 
+0100
-+++ hplip-3.19.11/pcard/pcardext/pcardext.c.new2019-12-11 
12:13:20.710959557 +0100
-@@ -80,7 +80,7 @@
+From: Till Kamppeter 
+Date: Fri, 22 Jul 2016 09:33:04 +0200
+Subject: Workaround patch for missing Python3 transition of the old
+ (pre-USB-storage) photo memory card support (pcardext) as this part builds
+ in Python3 environments but with pointer-related warnings which are fatal
+ errors for Ubuntu's build servers. The patch silences the warnings but the
+ memory card support is dropped in Python3 environments. This patch is
+ supplied by the HPLIP upstream developers and will be replaced by a more
+ proper solution in the next upstream release of HPLIP (see LP: #1275353)
+
+---
+ pcard/pcardext/pcardext.c | 59 +--
+ pcard/photocard.py|  2 +-
+ unload.py |  5 
+ 3 files changed, 53 insertions(+), 13 deletions(-)
+
+diff --git a/pcard/pcardext/pcardext.c b/pcard/pcardext/pcardext.c
+index c1a8273..37d979b 100644
+--- a/pcard/pcardext/pcardext.c
 b/pcard/pcardext/pcardext.c
+@@ -20,7 +20,7 @@ pcardext - Python extension for HP photocard services
+ Requires:
+ Python 2.2+
+ 
+-Author: Don Welch
++Author: Don Welch 
+ 
+ 
\*/
+ 
+@@ -38,9 +38,37 @@ typedef int Py_ssize_t;
+ 
+ int verbose=0;
+ 
++#if PY_MAJOR_VERSION >= 3
++  #define MOD_ERROR_VAL NULL
++  #define MOD_SUCCESS_VAL(val) val
++  #define MOD_INIT(name) PyMODINIT_FUNC PyInit_##name(void)
++  #define PyInt_AS_LONG PyLong_AS_LONG
++  #define MOD_DEF(ob, name, doc, methods) \
++  static struct PyModuleDef moduledef = { \
++PyModuleDef_HEAD_INIT, name, doc, -1, methods, }; \
++  ob = PyModule_Create();
++
++
++  #define PY_String_Bytes  PyBytes_FromStringAndSize
++  #define PY_AsString_Bytes  PyBytes_AsStringAndSize
++
++#else
++  #define MOD_ERROR_VAL
++  #define MOD_SUCCESS_VAL(val)
++  #define MOD_INIT(name) void init##name(void)
++  #define MOD_DEF(ob, name, doc, methods) \
++ob = Py_InitModule3(name, methods, doc);
++
++  #define PY_String_Bytes PyString_FromStringAndSize
++  #define PY_AsString_Bytes PyString_AsStringAndSize
++  
++#endif
++
+ PyObject * readsectorFunc = NULL;
+ PyObject * writesectorFunc = NULL;
+ 
++
++
+ int ReadSector(int sector, int nsector, void *buf, int size)
+ {
+ PyObject * result;
+@@ -56,9 +84,13 @@ int ReadSector(int sector, int nsector, void *buf, int size)
+ if( result )
+ {
+ Py_ssize_t len = 0;
+-   

[arch-commits] Commit in hplip/trunk (PKGBUILD python3.diff)

2019-12-11 Thread Andreas Radke via arch-commits
Date: Wednesday, December 11, 2019 @ 11:25:46
  Author: andyrtr
Revision: 370666

upgpkg: hplip 1:3.19.11-6: fix python3 unsupported variable type - FS#64674

Added:
  hplip/trunk/python3.diff
Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   12 
 python3.diff |   11 +++
 2 files changed, 19 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-11 09:46:10 UTC (rev 370665)
+++ PKGBUILD2019-12-11 11:25:46 UTC (rev 370666)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=5
+pkgrel=6
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -29,7 +29,8 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
-fix-broken-printer-naming.diff)
+fix-broken-printer-naming.diff
+python3.diff)
 
sha512sums=('f419de0e18937c93c2727f4d8b4f7bf1fcc24961a6b7a0d043ce8341c65d0c0332cd354c0cd907b85bc6ccc7735d23ba5f2c918dba5bf965540291cfcbe032d5'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
@@ -36,12 +37,13 @@
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
 
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
-
'450e0e77954a9d919bbde0a4b9d630920a1225679121f94d6854e16ce9b2f8ed8c4de7ddf629012b9f9d24d075a407a4077d1710ad9d023742f402b4d139a111')
+
'450e0e77954a9d919bbde0a4b9d630920a1225679121f94d6854e16ce9b2f8ed8c4de7ddf629012b9f9d24d075a407a4077d1710ad9d023742f402b4d139a111'
+
'834cd60af0b938b1d930e63fa43ce21900a32bd4842b6a03902dfd0b8e99b295be152531873e09a46506ef4645d67f3d06b7e1339ba92c6d56373f8277ee53ea')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
  cd "$pkgname"-$pkgver
- 
+
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i "${srcdir}"/disable_upgrade.patch
  
@@ -53,6 +55,8 @@
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
  # fix broken printer naming FS#64420, FS#64801
  patch -Np1 -i "${srcdir}"/fix-broken-printer-naming.diff
+ # fix unsupported old python variable
+ patch -Np1 -i "${srcdir}"/python3.diff
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install

Added: python3.diff
===
--- python3.diff(rev 0)
+++ python3.diff2019-12-11 11:25:46 UTC (rev 370666)
@@ -0,0 +1,11 @@
+--- hplip-3.19.11/pcard/pcardext/pcardext.c2019-11-04 11:31:08.0 
+0100
 hplip-3.19.11/pcard/pcardext/pcardext.c.new2019-12-11 
12:13:20.710959557 +0100
+@@ -80,7 +80,7 @@
+ {
+ result = PyObject_CallFunction( writesectorFunc, "iis#", sector, 
nsector, buf, size );
+ 
+-return PyInt_AS_LONG( result );
++return PyLong_AS_LONG( result );
+ }
+ 
+ return 1;


[arch-commits] Commit in hplip/trunk (PKGBUILD fix-broken-printer-naming.diff)

2019-12-10 Thread Andreas Radke via arch-commits
Date: Wednesday, December 11, 2019 @ 06:46:34
  Author: andyrtr
Revision: 370648

upgpkg: hplip 1:3.19.11-5: fix more colorlaserjet printers not detected FS#64801

Added:
  hplip/trunk/fix-broken-printer-naming.diff
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   13 +++--
 fix-broken-printer-naming.diff |   38 ++
 2 files changed, 45 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-11 06:05:34 UTC (rev 370647)
+++ PKGBUILD2019-12-11 06:46:34 UTC (rev 370648)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=4
+pkgrel=5
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -28,13 +28,15 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
+0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+fix-broken-printer-naming.diff)
 
sha512sums=('f419de0e18937c93c2727f4d8b4f7bf1fcc24961a6b7a0d043ce8341c65d0c0332cd354c0cd907b85bc6ccc7735d23ba5f2c918dba5bf965540291cfcbe032d5'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
-
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b')
+
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
+
'450e0e77954a9d919bbde0a4b9d630920a1225679121f94d6854e16ce9b2f8ed8c4de7ddf629012b9f9d24d075a407a4077d1710ad9d023742f402b4d139a111')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -49,10 +51,9 @@
  patch -Np1 -i 
"${srcdir}"/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+ # fix broken printer naming FS#64420, FS#64801
+ patch -Np1 -i "${srcdir}"/fix-broken-printer-naming.diff
 
- # fix broken printer naming FS#64420
- sed -i 
"s/\[hp_color_laserjet_mfp_m278-m281\]/\[hp_colorlaserjet_mfp_m278-m281\]/" 
data/models/models.dat
-
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Added: fix-broken-printer-naming.diff
===
--- fix-broken-printer-naming.diff  (rev 0)
+++ fix-broken-printer-naming.diff  2019-12-11 06:46:34 UTC (rev 370648)
@@ -0,0 +1,38 @@
+--- hplip-3.19.11/data/models/models.dat   2019-11-04 11:38:24.0 
+0100
 hplip-3.19.11/data/models/models.dat.new   2019-12-11 07:37:22.969133967 
+0100
+@@ -61795,7 +61795,7 @@
+ usb-vid=3f0
+ wifi-config=0
+ 
+-[hp_color_laserjet_m253-m254]
++[hp_colorlaserjet_m253-m254]
+ align-type=0
+ clean-type=0
+ color-cal-type=0
+@@ -61846,7 +61846,7 @@
+ wifi-config=0
+ 
+ 
+-[hp_color_laserjet_mfp_m178-m181]
++[hp_colorlaserjet_mfp_m178-m181]
+ align-type=0
+ clean-type=0
+ color-cal-type=0
+@@ -61896,7 +61896,7 @@
+ usb-vid=3f0
+ wifi-config=3
+ 
+-[hp_color_laserjet_mfp_m278-m281]
++[hp_colorlaserjet_mfp_m278-m281]
+ align-type=0
+ clean-type=0
+ color-cal-type=0
+@@ -61947,7 +61947,7 @@
+ usb-vid=3f0
+ wifi-config=3
+ 
+-[hp_color_laserjet_m153-m154]
++[hp_colorlaserjet_m153-m154]
+ align-type=0
+ clean-type=0
+ color-cal-type=0


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-11-23 Thread Andreas Radke via arch-commits
Date: Saturday, November 23, 2019 @ 21:44:52
  Author: andyrtr
Revision: 369668

upgpkg: hplip 1:3.19.11-4

rename printer - FS#64420

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-23 20:46:26 UTC (rev 369667)
+++ PKGBUILD2019-11-23 21:44:52 UTC (rev 369668)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -50,6 +50,9 @@
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 
+ # fix broken printer naming FS#64420
+ sed -i 
"s/\[hp_color_laserjet_mfp_m278-m281\]/\[hp_colorlaserjet_mfp_m278-m281\]/" 
data/models/models.dat
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-11-17 Thread Andreas Radke via arch-commits
Date: Sunday, November 17, 2019 @ 17:52:28
  Author: andyrtr
Revision: 368993

upgpkg: hplip 1:3.19.11-3

add dependency on python-distro - FS#64546

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-17 17:42:15 UTC (rev 368992)
+++ PKGBUILD2019-11-17 17:52:28 UTC (rev 368993)
@@ -5,13 +5,13 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="https://hplipopensource.com;
 license=('GPL2' 'custom')
-depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine' 
'python-gobject')
+depends=('python-dbus' 'python-distro' 'ghostscript' 'net-snmp' 
'foomatic-db-engine' 'python-gobject')
 makedepends=('python-pyqt5' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-11-06 Thread Felix Yan via arch-commits
Date: Wednesday, November 6, 2019 @ 11:43:51
  Author: felixonmars
Revision: 366842

Python 3.8 rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-06 10:06:53 UTC (rev 366841)
+++ PKGBUILD2019-11-06 11:43:51 UTC (rev 366842)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.11
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-11-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 5, 2019 @ 20:02:48
  Author: arojas
Revision: 366807

Fix build with python 3.8

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-05 19:40:56 UTC (rev 366806)
+++ PKGBUILD2019-11-05 20:02:48 UTC (rev 366807)
@@ -56,6 +56,7 @@
 
 build() {
  cd "$pkgname"-$pkgver
+ export CFLAGS+=" $(python3-config --includes)" # Fix build with python 3.8
  ./configure --prefix=/usr \
  --enable-qt5 \
  --disable-qt4 \


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-11-05 Thread Andreas Radke via arch-commits
Date: Tuesday, November 5, 2019 @ 19:08:56
  Author: andyrtr
Revision: 366799

upgpkg: hplip 1:3.19.11-1

upstream update 3.19.11

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-05 17:26:32 UTC (rev 366798)
+++ PKGBUILD2019-11-05 19:08:56 UTC (rev 366799)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.10
+pkgver=3.19.11
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('2ff8bf3d866826ca4a0ffb151ebaa18449af66b0aff8b96363344bd48fdca31d7dd022c1432bec9fadbc41d5a99983a23f3b60e89297319072ecc711ccece45b'
+sha512sums=('f419de0e18937c93c2727f4d8b4f7bf1fcc24961a6b7a0d043ce8341c65d0c0332cd354c0cd907b85bc6ccc7735d23ba5f2c918dba5bf965540291cfcbe032d5'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-pillow-version.patch)

2019-11-02 Thread Andreas Radke via arch-commits
Date: Saturday, November 2, 2019 @ 11:04:14
  Author: andyrtr
Revision: 366484

upgpkg: hplip 1:3.19.10-1

upstream update 3.19.10

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/hplip-pillow-version.patch

+
 PKGBUILD   |   15 +--
 hplip-pillow-version.patch |   14 --
 2 files changed, 5 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-02 10:27:39 UTC (rev 366483)
+++ PKGBUILD2019-11-02 11:04:14 UTC (rev 366484)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.8
-pkgrel=2
+pkgver=3.19.10
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -28,15 +28,13 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
-hplip-pillow-version.patch)
-sha512sums=('99b7661c9b1d70f3c762658fcbff1ab0c170be8f8fd6cc8bbc80bb0860ccc6d69d38b662ff8be2bd38986a95385a5e5766f22003ee3e74b764dab3d46c6cb9ac'
+0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
+sha512sums=('2ff8bf3d866826ca4a0ffb151ebaa18449af66b0aff8b96363344bd48fdca31d7dd022c1432bec9fadbc41d5a99983a23f3b60e89297319072ecc711ccece45b'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
-
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
-
'db2a830d3b737c434892abd31c0f47f6a1a74011dbfa808d2027aa55f83bae21c6920b79b45c350678f8a8911d8b8644e922869890582e909234d9718ee7325b')
+
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -52,9 +50,6 @@
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 
- # fix python-pillow versioning issue - FS#64187
- patch -Np1 -i "${srcdir}"/hplip-pillow-version.patch
-
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Deleted: hplip-pillow-version.patch
===
--- hplip-pillow-version.patch  2019-11-02 10:27:39 UTC (rev 366483)
+++ hplip-pillow-version.patch  2019-11-02 11:04:14 UTC (rev 366484)
@@ -1,14 +0,0 @@
-diff --git a/dcheck.py b/dcheck.py
-index 38bb76c..3d0624e 100644
 a/installer/dcheck.py
-+++ b/installer/dcheck.py
-@@ -370,7 +370,7 @@ def get_pil_version():
- except ImportError:
- return '-'
- else:
-- return Image.VERSION
-+ return Image.PILLOW_VERSION
- 
- def get_libpthread_version():
- try:
-


[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-pillow-version.patch)

2019-10-20 Thread Andreas Radke via arch-commits
Date: Sunday, October 20, 2019 @ 13:52:03
  Author: andyrtr
Revision: 365238

upgpkg: hplip 1:3.19.8-2

fix python-pillow versioning issue - FS#64187

Added:
  hplip/trunk/hplip-pillow-version.patch
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 hplip-pillow-version.patch |   14 ++
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-20 13:30:29 UTC (rev 365237)
+++ PKGBUILD2019-10-20 13:52:03 UTC (rev 365238)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.19.8
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -28,13 +28,15 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
+0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+hplip-pillow-version.patch)
 
sha512sums=('99b7661c9b1d70f3c762658fcbff1ab0c170be8f8fd6cc8bbc80bb0860ccc6d69d38b662ff8be2bd38986a95385a5e5766f22003ee3e74b764dab3d46c6cb9ac'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
-
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b')
+
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
+
'db2a830d3b737c434892abd31c0f47f6a1a74011dbfa808d2027aa55f83bae21c6920b79b45c350678f8a8911d8b8644e922869890582e909234d9718ee7325b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -50,6 +52,9 @@
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 
+ # fix python-pillow versioning issue - FS#64187
+ patch -Np1 -i "${srcdir}"/hplip-pillow-version.patch
+
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }

Added: hplip-pillow-version.patch
===
--- hplip-pillow-version.patch  (rev 0)
+++ hplip-pillow-version.patch  2019-10-20 13:52:03 UTC (rev 365238)
@@ -0,0 +1,14 @@
+diff --git a/dcheck.py b/dcheck.py
+index 38bb76c..3d0624e 100644
+--- a/installer/dcheck.py
 b/installer/dcheck.py
+@@ -370,7 +370,7 @@ def get_pil_version():
+ except ImportError:
+ return '-'
+ else:
+- return Image.VERSION
++ return Image.PILLOW_VERSION
+ 
+ def get_libpthread_version():
+ try:
+


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-09-23 Thread Andreas Radke via arch-commits
Date: Monday, September 23, 2019 @ 19:29:59
  Author: andyrtr
Revision: 363298

fix quoting

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-23 19:27:52 UTC (rev 363297)
+++ PKGBUILD2019-09-23 19:29:59 UTC (rev 363298)
@@ -38,17 +38,17 @@
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
- cd $pkgname-$pkgver
+ cd "$pkgname"-$pkgver
  
  # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
+ patch -Np0 -i "${srcdir}"/disable_upgrade.patch
  
  # add missing 'include ' at various places
- patch -Np1 -i 
${srcdir}/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
+ patch -Np1 -i 
"${srcdir}"/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
  # fix some handling unicode file names FS#58412
- patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
+ patch -Np1 -i 
"${srcdir}"/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # remove binary blob libImageProcessor and all linking - FS#59681
- patch -Np1 -i 
${srcdir}/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+ patch -Np1 -i 
"${srcdir}"/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
@@ -55,7 +55,7 @@
 }
 
 build() {
- cd $pkgname-$pkgver
+ cd "$pkgname"-$pkgver
  ./configure --prefix=/usr \
  --enable-qt5 \
  --disable-qt4 \
@@ -66,13 +66,13 @@
 }
 
 package() {
- cd $pkgname-$pkgver
+ cd "$pkgname"-$pkgver
  make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
  
  # remove config provided by sane and autostart of hp-daemon
  rm -rf "$pkgdir"/etc/{sane.d,xdg}
- install -dm755 ${pkgdir}/etc/sane.d/dll.d
- echo hpaio > ${pkgdir}/etc/sane.d/dll.d/hpaio
+ install -dm755 "${pkgdir}"/etc/sane.d/dll.d
+ echo hpaio > "${pkgdir}"/etc/sane.d/dll.d/hpaio
  
  # remove HAL .fdi file because HAL is no longer used
  rm -vrf "$pkgdir"/usr/share/hal


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-08-28 Thread Andreas Radke via arch-commits
Date: Wednesday, August 28, 2019 @ 16:08:59
  Author: andyrtr
Revision: 361328

upgpkg: hplip 1:3.19.8-1

upstream update 3.19.8

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-28 16:03:17 UTC (rev 361327)
+++ PKGBUILD2019-08-28 16:08:59 UTC (rev 361328)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.6
+pkgver=3.19.8
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('c99448ad0cef9fc626a0a03147a0d582513cb838ecfbfe29f07c65bbf701dee5c7d0469b118ccc4e8c230c7a4b4685a72a1e67595ee01150b0472692d654'
+sha512sums=('99b7661c9b1d70f3c762658fcbff1ab0c170be8f8fd6cc8bbc80bb0860ccc6d69d38b662ff8be2bd38986a95385a5e5766f22003ee3e74b764dab3d46c6cb9ac'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-06-29 Thread Andreas Radke via arch-commits
Date: Saturday, June 29, 2019 @ 12:07:47
  Author: andyrtr
Revision: 357054

upgpkg: hplip 1:3.19.6-1

upstream update 3.19.6

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-29 11:54:10 UTC (rev 357053)
+++ PKGBUILD2019-06-29 12:07:47 UTC (rev 357054)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.5
+pkgver=3.19.6
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('bee7d64cea10020844b08b78a754ab9fa51aa699b365f2ccd98f18a9286a660e3c32ae1b5a173397c75fe2acafe801f3e6d7eabedcd95f2f064b89afe7726494'
+sha512sums=('c99448ad0cef9fc626a0a03147a0d582513cb838ecfbfe29f07c65bbf701dee5c7d0469b118ccc4e8c230c7a4b4685a72a1e67595ee01150b0472692d654'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-05-16 Thread Andreas Radke via arch-commits
Date: Thursday, May 16, 2019 @ 17:43:57
  Author: andyrtr
Revision: 353471

upgpkg: hplip 1:3.19.5-1

upstream update 3.19.5

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-16 17:33:25 UTC (rev 353470)
+++ PKGBUILD2019-05-16 17:43:57 UTC (rev 353471)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.3
+pkgver=3.19.5
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('6191974d6c9a35e58a9b0d2ff1077b3a9479e44ccb76a551f3e29ca56d420bfe0778fa6b7a4e51b18f2e55cae9ad1f5216f716e22b651122ec0fe9e730fcd29a'
+sha512sums=('bee7d64cea10020844b08b78a754ab9fa51aa699b365f2ccd98f18a9286a660e3c32ae1b5a173397c75fe2acafe801f3e6d7eabedcd95f2f064b89afe7726494'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-04-02 Thread Andreas Radke via arch-commits
Date: Tuesday, April 2, 2019 @ 19:23:11
  Author: andyrtr
Revision: 349708

upgpkg: hplip 1:3.19.3-1

upstream update 3.19.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-02 19:14:41 UTC (rev 349707)
+++ PKGBUILD2019-04-02 19:23:11 UTC (rev 349708)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.19.1
+pkgver=3.19.3
 pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
@@ -29,7 +29,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
-sha512sums=('b1d663a3538a19ab2c195bc627c765b9dded047b0431f6fc2096a8a31b4efb5cf52c88ad9665a2d78893ba66c1c47ccf79c161965f308a27eeeb11b156b446c8'
+sha512sums=('6191974d6c9a35e58a9b0d2ff1077b3a9479e44ccb76a551f3e29ca56d420bfe0778fa6b7a4e51b18f2e55cae9ad1f5216f716e22b651122ec0fe9e730fcd29a'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD python.patch)

2019-01-29 Thread Andreas Radke via arch-commits
Date: Wednesday, January 30, 2019 @ 06:53:09
  Author: andyrtr
Revision: 344934

upgpkg: hplip 1:3.19.1-1

upstream update 3.19.1

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/python.patch

--+
 PKGBUILD |   14 +-
 python.patch |   11 ---
 2 files changed, 5 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-29 21:43:33 UTC (rev 344933)
+++ PKGBUILD2019-01-30 06:53:09 UTC (rev 344934)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.12
-pkgrel=2
+pkgver=3.19.1
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -28,15 +28,13 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
-python.patch)
-sha512sums=('7197cac325cf40c03f49053a98ee0e8ac6c670d142b2a64df09c0f7afa1d7d3602216c55c825ccbf20a1fbda9c9289173b8708e9f87171a862dae5b6b4ef7635'
+0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
+sha512sums=('b1d663a3538a19ab2c195bc627c765b9dded047b0431f6fc2096a8a31b4efb5cf52c88ad9665a2d78893ba66c1c47ccf79c161965f308a27eeeb11b156b446c8'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
-
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
-
'ebcc40cac00b9fb63d378d42ac258eeaf6e0967f34fd1e204c690f34457a0a2b634ef65f1deb79a0740d8c6047f718c10fa205ee2f239b667f7e06c065590528')
+
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -51,8 +49,6 @@
  patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
${srcdir}/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
- # fix python issue - FS#59548
- patch -Np1 -i ${srcdir}/python.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install

Deleted: python.patch
===
--- python.patch2019-01-29 21:43:33 UTC (rev 344933)
+++ python.patch2019-01-30 06:53:09 UTC (rev 344934)
@@ -1,11 +0,0 @@
 hplip-3.18.7/base/utils.py 2018-07-15 22:08:37.0 +0200
-+++ hplip-3.18.7/base/utils.py.new 2018-08-08 21:46:48.721947940 +0200
-@@ -265,7 +265,7 @@
- try:
- names = os.listdir(root)
- except os.error:
--raise StopIteration
-+return
- 
- pattern = pattern or '*'
- pat_list = pattern.split(';')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-01-24 Thread Andreas Radke via arch-commits
Date: Friday, January 25, 2019 @ 06:44:08
  Author: andyrtr
Revision: 344700

use https url

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-25 06:43:37 UTC (rev 344699)
+++ PKGBUILD2019-01-25 06:44:08 UTC (rev 344700)
@@ -9,7 +9,7 @@
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
-url="http://hplipopensource.com;
+url="https://hplipopensource.com;
 license=('GPL2' 'custom')
 depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine' 
'python-gobject')
 makedepends=('python-pyqt5' 'sane' 'rpcbind' 'cups' 'libusb')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2019-01-20 Thread Andreas Radke via arch-commits
Date: Sunday, January 20, 2019 @ 19:08:45
  Author: andyrtr
Revision: 344541

upgpkg: hplip 1:3.18.12-2

make python-gobject a strict dependency - FS#59078

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-20 16:32:04 UTC (rev 344540)
+++ PKGBUILD2019-01-20 19:08:45 UTC (rev 344541)
@@ -5,14 +5,14 @@
 
 pkgname=hplip
 pkgver=3.18.12
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
 license=('GPL2' 'custom')
-depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine')
-makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
+depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine' 
'python-gobject')
+makedepends=('python-pyqt5' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'
 'xsane: sane scanner frontend'
@@ -20,7 +20,6 @@
 'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
 'python-pyqt5: for running GUI and hp-toolbox'
-'python-gobject: for running hp-toolbox'
 'libusb: for advanced usb support'
 'wget: for network support')
 # 'hplip-plugin: binary blobs for specific devices (AUR) or run hp-setup to 
download the plugin'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-12-19 Thread Andreas Radke via arch-commits
Date: Wednesday, December 19, 2018 @ 15:25:55
  Author: andyrtr
Revision: 342556

upgpkg: hplip 1:3.18.12-1

upstream update 3.18.10

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-19 08:42:56 UTC (rev 342555)
+++ PKGBUILD2018-12-19 15:25:55 UTC (rev 342556)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.10
-pkgrel=2
+pkgver=3.18.12
+pkgrel=1
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -31,7 +31,7 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
 python.patch)
-sha512sums=('8e744608f1da0e24afbeea814973363d95bbff15a7430c8471d5a53c4a9e772b141e5cd7e69ea03826d1b2e4544e9aabaedc148f2b6577339ef9b2a6d4431c96'
+sha512sums=('7197cac325cf40c03f49053a98ee0e8ac6c670d142b2a64df09c0f7afa1d7d3602216c55c825ccbf20a1fbda9c9289173b8708e9f87171a862dae5b6b4ef7635'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'


[arch-commits] Commit in hplip/trunk (PKGBUILD python.patch)

2018-11-04 Thread Andreas Radke via arch-commits
Date: Sunday, November 4, 2018 @ 18:15:16
  Author: andyrtr
Revision: 337841

upgpkg: hplip 1:3.18.10-2

readd python 3.7 patch

Added:
  hplip/trunk/python.patch
Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 python.patch |   11 +++
 2 files changed, 18 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-04 18:06:24 UTC (rev 337840)
+++ PKGBUILD2018-11-04 18:15:16 UTC (rev 337841)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.18.10
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -29,13 +29,15 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch)
+0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+python.patch)
 
sha512sums=('8e744608f1da0e24afbeea814973363d95bbff15a7430c8471d5a53c4a9e772b141e5cd7e69ea03826d1b2e4544e9aabaedc148f2b6577339ef9b2a6d4431c96'
 'SKIP'
 
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
 
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
 
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
-
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b')
+
'8710e039626878270b8b7bc1569566274d935c84652d758e25ce8fe01c0f44d911148620bb494489e1238201c01f3ba255c19f7dc5c2ff0d45a5f2a79190286b'
+
'ebcc40cac00b9fb63d378d42ac258eeaf6e0967f34fd1e204c690f34457a0a2b634ef65f1deb79a0740d8c6047f718c10fa205ee2f239b667f7e06c065590528')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -50,6 +52,8 @@
  patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # remove binary blob libImageProcessor and all linking - FS#59681
  patch -Np1 -i 
${srcdir}/0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
+ # fix python issue - FS#59548
+ patch -Np1 -i ${srcdir}/python.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install

Added: python.patch
===
--- python.patch(rev 0)
+++ python.patch2018-11-04 18:15:16 UTC (rev 337841)
@@ -0,0 +1,11 @@
+--- hplip-3.18.7/base/utils.py 2018-07-15 22:08:37.0 +0200
 hplip-3.18.7/base/utils.py.new 2018-08-08 21:46:48.721947940 +0200
+@@ -265,7 +265,7 @@
+ try:
+ names = os.listdir(root)
+ except os.error:
+-raise StopIteration
++return
+ 
+ pattern = pattern or '*'
+ pat_list = pattern.split(';')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-10-09 Thread Felix Yan via arch-commits
Date: Tuesday, October 9, 2018 @ 18:15:18
  Author: felixonmars
Revision: 336069

upgpkg: hplip 1:3.18.6-2

rebuild with net-snmp 5.8

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-09 18:11:01 UTC (rev 336068)
+++ PKGBUILD2018-10-09 18:15:18 UTC (rev 336069)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.18.6
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -31,13 +31,13 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 fix_install.patch
 python.patch)
-sha1sums=('2a7c64595099c50e6c665260f4de7a7106e0b3fc'
-  'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
-  '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'
-  '0e36f31b98faf2f14137431bc8f82b74de22705b'
-  '759de18bfef699ac2f605962dafee1431e7b5e3b'
-  '72db2c60f63c9be2a98a46ec4bcccd3a8a5b935b')
+sha512sums=('deb4e6e1c7e9ea7452967f7d7d7fd93e92eb59406b4978bb9b874db93bc5022b25aab012a7420ac3e991259032bc7cb749cd924c93a164544e29a4152962184f'
+'SKIP'
+
'ee0bd240568a7dbb4dc6ef64dba28ea84c4bedf7d688d054960c68f8f0bc4562961c40845107ef0c936e60d3e676bffb2a1ba708039690bb0520cda3a525'
+
'22aeb5b851f78bc6bc62e0bc3da99fecaf42d7604af41e2f3343f8d3666541f7b06b7d1a7d0ddf24f1731ac7b12dfe582375a98e3b94dfa323d6ce954549ca67'
+
'763949a0bc460dcc9faefc86f2a91cf342781bfce696ed0c3826758572dd03ac266bbeb7b6a4f9376ac298d7d3c9c4def42d94921a8e1d1695e39396e36d95ff'
+
'86ef78e5359b49a04b517654f44c1a89bf40ec36aed8b6034247fc327845c9f861fc937f04c11f937199be4fb59061677dfe9baf3d84a99c044f3629842cc438'
+
'ebcc40cac00b9fb63d378d42ac258eeaf6e0967f34fd1e204c690f34457a0a2b634ef65f1deb79a0740d8c6047f718c10fa205ee2f239b667f7e06c065590528')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-08-19 Thread Andreas Radke via arch-commits
Date: Sunday, August 19, 2018 @ 10:04:05
  Author: andyrtr
Revision: 332645

upgpkg: hplip 1:3.18.6-1

downgrade to 3.18.6 due to major printing issues caused by new binary blob 
libImageProcessor.so - FS#59681

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-19 10:02:46 UTC (rev 332644)
+++ PKGBUILD2018-08-19 10:04:05 UTC (rev 332645)
@@ -5,8 +5,9 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.7
-pkgrel=3
+pkgver=3.18.6
+pkgrel=1
+epoch=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
@@ -31,7 +32,7 @@
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 fix_install.patch
 python.patch)
-sha1sums=('bb40807ac77fb9b1f6d80a53d5409a22f5d2d197'
+sha1sums=('2a7c64595099c50e6c665260f4de7a7106e0b3fc'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'
@@ -51,9 +52,9 @@
  # fix some handling unicode file names FS#58412
  patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # fix installation of missing library - FS#59548
- patch -Np1 -i ${srcdir}/fix_install.patch
+# patch -Np1 -i ${srcdir}/fix_install.patch
  # fix python issue - FS#59548
- patch -Np1 -i ${srcdir}/python.patch
+# patch -Np1 -i ${srcdir}/python.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install


[arch-commits] Commit in hplip/trunk (PKGBUILD python.patch)

2018-08-08 Thread Andreas Radke via arch-commits
Date: Wednesday, August 8, 2018 @ 19:58:47
  Author: andyrtr
Revision: 331262

upgpkg: hplip 3.18.7-3

fix python error - FS#59548; add custom license file to cover all various 
licenses

Added:
  hplip/trunk/python.patch
Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   15 +++
 python.patch |   11 +++
 2 files changed, 22 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-08 19:38:50 UTC (rev 331261)
+++ PKGBUILD2018-08-08 19:58:47 UTC (rev 331262)
@@ -6,11 +6,11 @@
 
 pkgname=hplip
 pkgver=3.18.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
-license=('GPL')
+license=('GPL2' 'custom')
 depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine')
 makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
@@ -29,13 +29,15 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
-fix_install.patch)
+fix_install.patch
+python.patch)
 sha1sums=('bb40807ac77fb9b1f6d80a53d5409a22f5d2d197'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'
   '0e36f31b98faf2f14137431bc8f82b74de22705b'
-  '759de18bfef699ac2f605962dafee1431e7b5e3b')
+  '759de18bfef699ac2f605962dafee1431e7b5e3b'
+  '72db2c60f63c9be2a98a46ec4bcccd3a8a5b935b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -50,6 +52,8 @@
  patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # fix installation of missing library - FS#59548
  patch -Np1 -i ${srcdir}/fix_install.patch
+ # fix python issue - FS#59548
+ patch -Np1 -i ${srcdir}/python.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
@@ -80,4 +84,7 @@
  
  # remove rc script
  rm -vrf "$pkgdir"/etc/init.d
+
+ # add mixed license file
+ install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 COPYING
 }

Added: python.patch
===
--- python.patch(rev 0)
+++ python.patch2018-08-08 19:58:47 UTC (rev 331262)
@@ -0,0 +1,11 @@
+--- hplip-3.18.7/base/utils.py 2018-07-15 22:08:37.0 +0200
 hplip-3.18.7/base/utils.py.new 2018-08-08 21:46:48.721947940 +0200
+@@ -265,7 +265,7 @@
+ try:
+ names = os.listdir(root)
+ except os.error:
+-raise StopIteration
++return
+ 
+ pattern = pattern or '*'
+ pat_list = pattern.split(';')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-08-05 Thread Andreas Radke via arch-commits
Date: Sunday, August 5, 2018 @ 18:38:20
  Author: andyrtr
Revision: 330624

upgpkg: hplip 3.18.7-1

upstream update 3.18.7

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-05 18:31:13 UTC (rev 330623)
+++ PKGBUILD2018-08-05 18:38:20 UTC (rev 330624)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.6
-pkgrel=2
+pkgver=3.18.7
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
@@ -30,7 +30,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 hplip-colorlaserjet-mfp-m278-m281.patch)
-sha1sums=('2a7c64595099c50e6c665260f4de7a7106e0b3fc'
+sha1sums=('bb40807ac77fb9b1f6d80a53d5409a22f5d2d197'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-07-23 Thread Felix Yan via arch-commits
Date: Monday, July 23, 2018 @ 15:28:15
  Author: felixonmars
Revision: 329431

Python 3.7 rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-23 15:27:57 UTC (rev 329430)
+++ PKGBUILD2018-07-23 15:28:15 UTC (rev 329431)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.18.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-06-14 Thread Andreas Radke via arch-commits
Date: Thursday, June 14, 2018 @ 16:15:36
  Author: andyrtr
Revision: 326974

upgpkg: hplip 3.18.6-1

upstream update 3.18.6

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-14 16:12:10 UTC (rev 326973)
+++ PKGBUILD2018-06-14 16:15:36 UTC (rev 326974)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.5
+pkgver=3.18.6
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 hplip-colorlaserjet-mfp-m278-m281.patch)
-sha1sums=('19b527b0016ce65e69db872c2b519c93997cc0de'
+sha1sums=('2a7c64595099c50e6c665260f4de7a7106e0b3fc'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-06-03 Thread Andreas Radke via arch-commits
Date: Sunday, June 3, 2018 @ 11:47:17
  Author: andyrtr
Revision: 325617

upgpkg: hplip 3.18.5-1

upstream update 3.18.5 - missing models should now be included by upstream news

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-03 11:31:52 UTC (rev 325616)
+++ PKGBUILD2018-06-03 11:47:17 UTC (rev 325617)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.4
-pkgrel=2
+pkgver=3.18.5
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
@@ -30,7 +30,7 @@
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
 hplip-colorlaserjet-mfp-m278-m281.patch)
-sha1sums=('80b7c35adaa287ff51aa6938bf52046d06a32058'
+sha1sums=('19b527b0016ce65e69db872c2b519c93997cc0de'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'
@@ -49,7 +49,7 @@
  # fix some handling unicode file names FS#58412
  patch -Np1 -i 
${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
  # add support for some missing models - FS#57683
- patch -Np1 -i ${srcdir}/hplip-colorlaserjet-mfp-m278-m281.patch
+# patch -Np1 -i ${srcdir}/hplip-colorlaserjet-mfp-m278-m281.patch
 
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-04-30 Thread Andreas Radke via arch-commits
Date: Monday, April 30, 2018 @ 09:19:13
  Author: andyrtr
Revision: 323169

upgpkg: hplip 3.18.4-1

upstream update 3.18.4

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-30 08:49:57 UTC (rev 323168)
+++ PKGBUILD2018-04-30 09:19:13 UTC (rev 323169)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.18.3
-pkgrel=2
+pkgver=3.18.4
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
@@ -29,7 +29,7 @@
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 hplip-colorlaserjet-mfp-m278-m281.patch)
-sha1sums=('97a065a1eaf930ffce612e26d4ea925d94313e14'
+sha1sums=('80b7c35adaa287ff51aa6938bf52046d06a32058'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2018-03-16 Thread Andreas Radke via arch-commits
Date: Friday, March 16, 2018 @ 07:33:46
  Author: andyrtr
Revision: 319381

upgpkg: hplip 3.18.3-1

upstream update 3.18.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-16 06:16:44 UTC (rev 319380)
+++ PKGBUILD2018-03-16 07:33:46 UTC (rev 319381)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.11
+pkgver=3.18.3
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('72705f45157227907a79e326da6524317c1aaff6'
+sha1sums=('97a065a1eaf930ffce612e26d4ea925d94313e14'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-12-04 Thread Andreas Radke via arch-commits
Date: Monday, December 4, 2017 @ 20:50:02
  Author: andyrtr
Revision: 311614

upgpkg: hplip 3.17.11-1

upstream update 3.17.11 - stop shipping deprecated hpijs drivers, disable 
experimental new-hpcups option

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   23 +++
 1 file changed, 3 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-04 19:44:22 UTC (rev 311613)
+++ PKGBUILD2017-12-04 20:50:02 UTC (rev 311614)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.10
-pkgrel=2
+pkgver=3.17.11
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('x86_64')
 url="http://hplipopensource.com;
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('6d75e754a518f2377d8582aaea0504e61ed15aff'
+sha1sums=('72705f45157227907a79e326da6524317c1aaff6'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')
@@ -43,17 +43,6 @@
  # add missing 'include ' at various places
  patch -Np1 -i 
${srcdir}/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip > ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
 }
@@ -63,14 +52,8 @@
  ./configure --prefix=/usr \
  --enable-qt5 \
  --disable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
  --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
  --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
  --enable-pp-build #--help
  make
 }


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-10-30 Thread Andreas Radke
Date: Monday, October 30, 2017 @ 20:59:35
  Author: andyrtr
Revision: 308704

upgpkg: hplip 3.17.10-2

don't list AUR pkg dependency

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-30 20:26:22 UTC (rev 308703)
+++ PKGBUILD2017-10-30 20:59:35 UTC (rev 308704)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.17.10
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -21,9 +21,9 @@
 'rpcbind: for network support'
 'python-pyqt5: for running GUI and hp-toolbox'
 'python-gobject: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support'
 'wget: for network support')
+# 'hplip-plugin: binary blobs for specific devices (AUR) or run hp-setup to 
download the plugin'
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-10-30 Thread Andreas Radke
Date: Monday, October 30, 2017 @ 16:16:30
  Author: andyrtr
Revision: 308672

upgpkg: hplip 3.17.10-1

upstream update 3.17.10

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-30 16:07:26 UTC (rev 308671)
+++ PKGBUILD2017-10-30 16:16:30 UTC (rev 308672)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.9
+pkgver=3.17.10
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('97224d122eaf642f35a17cba258ddcf29a2cca8c'
+sha1sums=('6d75e754a518f2377d8582aaea0504e61ed15aff'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-10-05 Thread Andreas Radke
Date: Thursday, October 5, 2017 @ 17:46:08
  Author: andyrtr
Revision: 306849

upgpkg: hplip 3.17.9-1

upstream update 3.17.9

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-05 17:38:09 UTC (rev 306848)
+++ PKGBUILD2017-10-05 17:46:08 UTC (rev 306849)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.7
+pkgver=3.17.9
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('4857667a02ed437d87d5042077d1595b77504a53'
+sha1sums=('97224d122eaf642f35a17cba258ddcf29a2cca8c'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-08-03 Thread Andreas Radke
Date: Thursday, August 3, 2017 @ 16:12:33
  Author: andyrtr
Revision: 301563

upgpkg: hplip 3.17.7-1

upstream update 3.17.7

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-03 16:08:26 UTC (rev 301562)
+++ PKGBUILD2017-08-03 16:12:33 UTC (rev 301563)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.6
-pkgrel=2
+pkgver=3.17.7
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('2a27df05ea7b158b5ea44bf3eb7e4326ad9e2b29'
+sha1sums=('4857667a02ed437d87d5042077d1595b77504a53'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-06-25 Thread Andreas Radke
Date: Sunday, June 25, 2017 @ 16:05:34
  Author: andyrtr
Revision: 299221

upgpkg: hplip 3.17.6-2

rebuild to include missing libs; FS#54087

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-25 15:59:19 UTC (rev 299220)
+++ PKGBUILD2017-06-25 16:05:34 UTC (rev 299221)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.17.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-06-08 Thread Andreas Radke
Date: Thursday, June 8, 2017 @ 12:59:18
  Author: andyrtr
Revision: 298388

upgpkg: hplip 3.17.6-1

upstream update 3.17.6

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-08 12:45:09 UTC (rev 298387)
+++ PKGBUILD2017-06-08 12:59:18 UTC (rev 298388)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.17.4
+pkgver=3.17.6
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('c8ab39e616964c7342320a0d45f729fe7d7dd402'
+sha1sums=('2a27df05ea7b158b5ea44bf3eb7e4326ad9e2b29'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')


[arch-commits] Commit in hplip/trunk (PKGBUILD fix_tabs.patch)

2017-04-20 Thread Andreas Radke
Date: Thursday, April 20, 2017 @ 14:57:56
  Author: andyrtr
Revision: 293534

upgpkg: hplip 3.17.4-1

upstream update 3.17.4

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/fix_tabs.patch

+
 PKGBUILD   |   10 +++---
 fix_tabs.patch |   17 -
 2 files changed, 3 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-20 14:45:59 UTC (rev 293533)
+++ PKGBUILD2017-04-20 14:57:56 UTC (rev 293534)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.11
-pkgrel=3
+pkgver=3.17.4
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -27,12 +27,10 @@
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
-fix_tabs.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('177252a6c3e508b6d4f9d02663fe3556f37de71e'
+sha1sums=('c8ab39e616964c7342320a0d45f729fe7d7dd402'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
-  'bd18428ff1e378aa0a299331607eaed82021e34b'
   '2ef86972ab51c0fdcb8bfc653b9f6f69459449a5')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
@@ -42,8 +40,6 @@
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch
  
- # fix tabs breaking printing; FS#50588
- patch -Np0 -i ${srcdir}/fix_tabs.patch
  # add missing 'include ' at various places
  patch -Np1 -i 
${srcdir}/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 

Deleted: fix_tabs.patch
===
--- fix_tabs.patch  2017-04-20 14:45:59 UTC (rev 293533)
+++ fix_tabs.patch  2017-04-20 14:57:56 UTC (rev 293534)
@@ -1,17 +0,0 @@
 prnt/filters/hpps  2016-08-26 12:04:29.0 +0200
-+++ prnt/filters/hpps.new  2016-08-31 21:19:57.868640372 +0200
-@@ -191,11 +191,11 @@
- msg("Setting Pin to default")
- else:
- szKeyInitials = ['HPFIDigit', 'HPSEDigit', 'HPTHDigit', 'HPFTDigit']  
   
--  for x in szKeyInitials:
-+for x in szKeyInitials:
-try:
--  secpin += opts[x]
-+secpin += opts[x]
-except KeyError:
--  secpin += '0'
-+secpin += '0'
- 
- os.write(output_fd, to_bytes_utf8('@PJL SET HOLDKEY="%s"\x0a' % secpin))
- 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2017-03-12 Thread Andreas Radke
Date: Sunday, March 12, 2017 @ 16:43:10
  Author: andyrtr
Revision: 290682

upgpkg: hplip 3.16.11-3

openssl rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-12 14:53:24 UTC (rev 290681)
+++ PKGBUILD2017-03-12 16:43:10 UTC (rev 290682)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.16.11
-pkgrel=2
+pkgrel=3
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-12-26 Thread Bartłomiej Piotrowski
Date: Tuesday, December 27, 2016 @ 06:46:54
  Author: bpiotrowski
Revision: 284832

Python 3.6 rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-27 06:42:46 UTC (rev 284831)
+++ PKGBUILD2016-12-27 06:46:54 UTC (rev 284832)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.16.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-11-29 Thread Andreas Radke
Date: Tuesday, November 29, 2016 @ 21:07:24
  Author: andyrtr
Revision: 282343

upgpkg: hplip 3.16.11-1

upstream update 3.16.11

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-29 21:07:12 UTC (rev 282342)
+++ PKGBUILD2016-11-29 21:07:24 UTC (rev 282343)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.10
-pkgrel=2
+pkgver=3.16.11
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -29,7 +29,7 @@
 disable_upgrade.patch
 fix_tabs.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('e3bc9a0d135232eba412952ca58b63757783e22f'
+sha1sums=('177252a6c3e508b6d4f9d02663fe3556f37de71e'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   'bd18428ff1e378aa0a299331607eaed82021e34b'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-11-06 Thread Andreas Radke
Date: Sunday, November 6, 2016 @ 09:09:08
  Author: andyrtr
Revision: 279878

upgpkg: hplip 3.16.10-2

make wget an optional dep; FS#51388

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-06 05:09:22 UTC (rev 279877)
+++ PKGBUILD2016-11-06 09:09:08 UTC (rev 279878)
@@ -6,12 +6,12 @@
 
 pkgname=hplip
 pkgver=3.16.10
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
 license=('GPL')
-depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
+depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine')
 makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'
@@ -22,7 +22,8 @@
 'python-pyqt5: for running GUI and hp-toolbox'
 'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
+'libusb: for advanced usb support'
+'wget: for network support')
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:58:37
  Author: andyrtr
Revision: 279849

upgpkg: hplip 3.16.10-1

upstream update 3.16.10

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:53:22 UTC (rev 279848)
+++ PKGBUILD2016-11-04 14:58:37 UTC (rev 279849)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.9
+pkgver=3.16.10
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -24,11 +24,11 @@
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
+source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 fix_tabs.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('bf9ef2955df365c9544138aa6b7a6d5d20650792'
+sha1sums=('e3bc9a0d135232eba412952ca58b63757783e22f'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   'bd18428ff1e378aa0a299331607eaed82021e34b'


[arch-commits] Commit in hplip/trunk (PKGBUILD fix_tabs.patch)

2016-08-31 Thread Andreas Radke
Date: Wednesday, August 31, 2016 @ 19:27:03
  Author: andyrtr
Revision: 275630

upgpkg: hplip 3.16.8-2

fix tabs breaking python - FS#50588

Added:
  hplip/trunk/fix_tabs.patch
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 fix_tabs.patch |   17 +
 2 files changed, 25 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-31 19:26:56 UTC (rev 275629)
+++ PKGBUILD2016-08-31 19:27:03 UTC (rev 275630)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.16.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -25,10 +25,12 @@
 'libusb: for advanced usb support')
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
+disable_upgrade.patch
+fix_tabs.patch)
 sha1sums=('0331d810702983e15c3a3b8cfe48d262fa23aac5'
   'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
+  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
+  'bd18428ff1e378aa0a299331607eaed82021e34b')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
 
 prepare() {
@@ -37,6 +39,9 @@
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch
  
+ # fix tabs breaking printing; FS#50588
+ patch -Np0 -i ${srcdir}/fix_tabs.patch
+
  # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
  # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
  # The hpcups driver does not use foomatic-rip

Added: fix_tabs.patch
===
--- fix_tabs.patch  (rev 0)
+++ fix_tabs.patch  2016-08-31 19:27:03 UTC (rev 275630)
@@ -0,0 +1,17 @@
+--- prnt/filters/hpps  2016-08-26 12:04:29.0 +0200
 prnt/filters/hpps.new  2016-08-31 21:19:57.868640372 +0200
+@@ -191,11 +191,11 @@
+ msg("Setting Pin to default")
+ else:
+ szKeyInitials = ['HPFIDigit', 'HPSEDigit', 'HPTHDigit', 'HPFTDigit']  
   
+-  for x in szKeyInitials:
++for x in szKeyInitials:
+try:
+-  secpin += opts[x]
++secpin += opts[x]
+except KeyError:
+-  secpin += '0'
++secpin += '0'
+ 
+ os.write(output_fd, to_bytes_utf8('@PJL SET HOLDKEY="%s"\x0a' % secpin))
+ 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-08-29 Thread Andreas Radke
Date: Monday, August 29, 2016 @ 19:22:46
  Author: andyrtr
Revision: 274825

upgpkg: hplip 3.16.8-1

upstream update 3.16.8

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-29 19:16:59 UTC (rev 274824)
+++ PKGBUILD2016-08-29 19:22:46 UTC (rev 274825)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.7
+pkgver=3.16.8
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('9d2efbdf80c9df96a7933efca95fd9fa3778d4f2'
+sha1sums=('0331d810702983e15c3a3b8cfe48d262fa23aac5'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-07-22 Thread Andreas Radke
Date: Friday, July 22, 2016 @ 16:47:40
  Author: andyrtr
Revision: 272122

upgpkg: hplip 3.16.7-1

upstream update 3.16.7

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-22 16:22:15 UTC (rev 272121)
+++ PKGBUILD2016-07-22 16:47:40 UTC (rev 272122)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.5
-pkgrel=3
+pkgver=3.16.7
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -26,7 +26,7 @@
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
+sha1sums=('9d2efbdf80c9df96a7933efca95fd9fa3778d4f2'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD hplip.install)

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 17:50:56
  Author: andyrtr
Revision: 268066

upgpkg: hplip 3.16.5-3

* remove obsolete install scriptlet
* use pyqt5 gui - FS#49344

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/hplip.install

---+
 PKGBUILD  |8 
 hplip.install |   18 --
 2 files changed, 4 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 15:47:57 UTC (rev 268065)
+++ PKGBUILD2016-05-15 15:50:56 UTC (rev 268066)
@@ -6,13 +6,13 @@
 
 pkgname=hplip
 pkgver=3.16.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
 license=('GPL')
 depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
+makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'
 'xsane: sane scanner frontend'
@@ -23,7 +23,6 @@
 'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
-install=hplip.install
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
@@ -56,7 +55,8 @@
 build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr \
- --enable-qt4 \
+ --enable-qt5 \
+ --disable-qt4 \
  --disable-foomatic-rip-hplip-install \
  --enable-foomatic-ppd-install \
  --enable-hpcups-install \

Deleted: hplip.install
===
--- hplip.install   2016-05-15 15:47:57 UTC (rev 268065)
+++ hplip.install   2016-05-15 15:50:56 UTC (rev 268066)
@@ -1,18 +0,0 @@
-post_install() {
-  cat << EOF
-
-NOTE
-
-# If you want to use this driver with sane:
-#  echo "hpaio" >> /etc/sane.d/dll.conf
-
-EOF
-}
-
-post_upgrade() {
-  if [ "`vercmp $2 3.12.4-2`" -lt 0 ]; then
-# important upgrade notice
-echo "> Please remove your printer in cups, then add it"
-echo "> back and reconfigure it to make it work again!"
-  fi
-}


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 14:09:21
  Author: andyrtr
Revision: 268056

* put config files under backup control
* enable hpaio scanner driver; FS#49340

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 07:37:26 UTC (rev 268055)
+++ PKGBUILD2016-05-15 12:09:21 UTC (rev 268056)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.16.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -24,6 +24,7 @@
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 install=hplip.install
+backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
 sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
@@ -74,6 +75,8 @@
  
  # remove config provided by sane and autostart of hp-daemon
  rm -rf "$pkgdir"/etc/{sane.d,xdg}
+ install -dm755 ${pkgdir}/etc/sane.d/dll.d
+ echo hpaio > ${pkgdir}/etc/sane.d/dll.d/hpaio
  
  # remove HAL .fdi file because HAL is no longer used
  rm -vrf "$pkgdir"/usr/share/hal


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-05-07 Thread Andreas Radke
Date: Saturday, May 7, 2016 @ 14:47:54
  Author: andyrtr
Revision: 267183

upgpkg: hplip 3.16.5-1

upstream update 3.16.5

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-07 08:05:28 UTC (rev 267182)
+++ PKGBUILD2016-05-07 12:47:54 UTC (rev 267183)
@@ -5,13 +5,13 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.3
+pkgver=3.16.5
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
 license=('GPL')
-depends=('python-dbus' 'ghostscript>=8.64-6' 'net-snmp>=5.7.1' 'wget' 
'foomatic-db-engine')
+depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
 makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'
@@ -19,7 +19,7 @@
 'python-pillow: for commandline scanning support'
 'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
-'python-pyqt4: for running GUI and hp-toolbox'
+'python-pyqt5: for running GUI and hp-toolbox'
 'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('fad988c34fc070431cb3c9a73062073a7e6ba6a1'
+sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-03-19 Thread Andreas Radke
Date: Friday, March 18, 2016 @ 14:46:11
  Author: andyrtr
Revision: 262044

upgpkg: hplip 3.16.3-1

upstream update 3.16.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-18 13:40:12 UTC (rev 262043)
+++ PKGBUILD2016-03-18 13:46:11 UTC (rev 262044)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.2
-pkgrel=2
+pkgver=3.16.3
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('28efa845832c77e7015442e7934fc01cc5c4b346'
+sha1sums=('fad988c34fc070431cb3c9a73062073a7e6ba6a1'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-03-07 Thread Andreas Radke
Date: Monday, March 7, 2016 @ 17:00:06
  Author: andyrtr
Revision: 261170

upgpkg: hplip 3.16.2-2

python-dbus is a required runtime dependency; FS#48453

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-07 15:53:30 UTC (rev 261169)
+++ PKGBUILD2016-03-07 16:00:06 UTC (rev 261170)
@@ -6,15 +6,14 @@
 
 pkgname=hplip
 pkgver=3.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
 license=('GPL')
-depends=('python' 'ghostscript>=8.64-6' 'net-snmp>=5.7.1' 'wget' 
'foomatic-db-engine')
+depends=('python-dbus' 'ghostscript>=8.64-6' 'net-snmp>=5.7.1' 'wget' 
'foomatic-db-engine')
 makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
-'python-dbus: for dbus support'
 'sane: for scanner support'
 'xsane: sane scanner frontend'
 'python-pillow: for commandline scanning support'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2016-02-11 Thread Andreas Radke
Date: Thursday, February 11, 2016 @ 22:00:26
  Author: andyrtr
Revision: 259077

upgpkg: hplip 3.16.2-1

upstream update 3.16.2

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-11 20:11:49 UTC (rev 259076)
+++ PKGBUILD2016-02-11 21:00:26 UTC (rev 259077)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.15.11
-pkgrel=2
+pkgver=3.16.2
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('c28f373e85a1355c10c3112e1274138372a9c832'
+sha1sums=('28efa845832c77e7015442e7934fc01cc5c4b346'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 02:28:32
  Author: bpiotrowski
Revision: 253147

C++11 ABI rebuild

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-07 01:28:14 UTC (rev 253146)
+++ PKGBUILD2015-12-07 01:28:32 UTC (rev 253147)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.15.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-11-22 Thread Andreas Radke
Date: Sunday, November 22, 2015 @ 12:57:06
  Author: andyrtr
Revision: 251880

upgpkg: hplip 3.15.11-1

upstream update 3.15.11

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-22 11:47:11 UTC (rev 251879)
+++ PKGBUILD2015-11-22 11:57:06 UTC (rev 251880)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.15.9
-pkgrel=2
+pkgver=3.15.11
+pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('564a37d39269fee9c938b7fe9f2b31c4f9c4db06'
+sha1sums=('c28f373e85a1355c10c3112e1274138372a9c832'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-11-10 Thread Andreas Radke
Date: Tuesday, November 10, 2015 @ 19:05:12
  Author: andyrtr
Revision: 250554

add optional dependency on xsane - FS#46209

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-10 16:47:14 UTC (rev 250553)
+++ PKGBUILD2015-11-10 18:05:12 UTC (rev 250554)
@@ -16,6 +16,7 @@
 optdepends=('cups: for printing support'
 'python-dbus: for dbus support'
 'sane: for scanner support'
+'xsane: sane scanner frontend'
 'python-pillow: for commandline scanning support'
 'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:36:53
  Author: fyan
Revision: 247058

upgpkg: hplip 3.15.9-2

rebuild for python 3.5

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:25:15 UTC (rev 247057)
+++ PKGBUILD2015-09-22 04:36:53 UTC (rev 247058)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.15.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-08-04 Thread Andreas Radke
Date: Tuesday, August 4, 2015 @ 19:12:04
  Author: andyrtr
Revision: 243030

upgpkg: hplip 3.15.7-1

upstream update 3.15.7

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-04 16:54:36 UTC (rev 243029)
+++ PKGBUILD2015-08-04 17:12:04 UTC (rev 243030)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.15.6
+pkgver=3.15.7
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('dba9839d3daf1a2dc464a0d3094ba9b71fea422c'
+sha1sums=('f84e33b749ef34939c11b253767686c00ca2c30c'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
@@ -70,7 +70,7 @@
 
 package() {
  cd $pkgname-$pkgver
- make rulesdir=/usr/lib/udev/rules.d DESTDIR=$pkgdir/ install
+ make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR=$pkgdir/ install
  
  # remove config provided by sane and autostart of hp-daemon
  rm -rf $pkgdir/etc/{sane.d,xdg}


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-06-13 Thread Andreas Radke
Date: Saturday, June 13, 2015 @ 13:34:08
  Author: andyrtr
Revision: 240724

upgpkg: hplip 3.15.6-1

upstream update 3.15.6

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-13 06:54:30 UTC (rev 240723)
+++ PKGBUILD2015-06-13 11:34:08 UTC (rev 240724)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.15.4
+pkgver=3.15.6
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('6670afd4c23ef99782d2a91b5916d429b66b7947'
+sha1sums=('dba9839d3daf1a2dc464a0d3094ba9b71fea422c'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
@@ -65,12 +65,11 @@
  --enable-hpijs-install \
  --enable-foomatic-drv-install \
  --enable-pp-build #--help
- make -j1 # 3.15.4 fails parallel build
+ make
 }
 
 package() {
- #cd $pkgname-$pkgver
- cd $pkgname-${pkgver/.a/a}
+ cd $pkgname-$pkgver
  make rulesdir=/usr/lib/udev/rules.d DESTDIR=$pkgdir/ install
  
  # remove config provided by sane and autostart of hp-daemon


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-04-22 Thread Andreas Radke
Date: Wednesday, April 22, 2015 @ 19:49:26
  Author: andyrtr
Revision: 237914

upgpkg: hplip 3.15.4-1

upstream update 3.15.4

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 17:05:37 UTC (rev 237913)
+++ PKGBUILD2015-04-22 17:49:26 UTC (rev 237914)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.15.2
-pkgrel=3
+pkgver=3.15.4
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -26,7 +26,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-sha1sums=('efebad73f29ab9f77d5a866c1c5d3857cc5f1df5'
+sha1sums=('6670afd4c23ef99782d2a91b5916d429b66b7947'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
@@ -65,7 +65,7 @@
  --enable-hpijs-install \
  --enable-foomatic-drv-install \
  --enable-pp-build #--help
- make
+ make -j1 # 3.15.4 fails parallel build
 }
 
 package() {


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-02-16 Thread Andreas Radke
Date: Monday, February 16, 2015 @ 19:19:39
  Author: andyrtr
Revision: 231614

upgpkg: hplip 3.15.2-3

use python-gobject; FS#43781

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   19 +++
 1 file changed, 3 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-16 17:40:41 UTC (rev 231613)
+++ PKGBUILD2015-02-16 18:19:39 UTC (rev 231614)
@@ -6,22 +6,21 @@
 
 pkgname=hplip
 pkgver=3.15.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
 license=('GPL')
 depends=('python' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject2' 'sane' 'rpcbind' 'cups' 'libusb')
+makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'python-dbus: for dbus support'
 'sane: for scanner support'
 'python-pillow: for commandline scanning support'
-#'python2-notify: for Desktop notification support'
 'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
 'python-pyqt4: for running GUI and hp-toolbox'
-'python-gobject2: for running hp-toolbox'
+'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 install=hplip.install
@@ -35,18 +34,6 @@
 prepare() {
  cd $pkgname-$pkgver
  
-# export PYTHON=python2
- 
-# find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
-# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
-# sed -i 's|python ./print.py|python2 ./print.py|' scan.py
-# sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
-# sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
-# sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
-# sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
-# sed -i 's|/usr/bin/python|/usr/bin/python2|' 
data/rules/hplip-printer@.service
- 
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch
  


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-02-05 Thread Andreas Radke
Date: Thursday, February 5, 2015 @ 21:49:33
  Author: andyrtr
Revision: 230854

upgpkg: hplip 3.15.2-2

build with python3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-05 20:39:20 UTC (rev 230853)
+++ PKGBUILD2015-02-05 20:49:33 UTC (rev 230854)
@@ -6,22 +6,22 @@
 
 pkgname=hplip
 pkgver=3.15.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
 license=('GPL')
-depends=('python2' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
-makedepends=('python2-pyqt4' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusb')
+depends=('python' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
+makedepends=('python-pyqt4' 'python-gobject2' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
-'python2-dbus: for dbus support'
+'python-dbus: for dbus support'
 'sane: for scanner support'
-'python2-pillow: for commandline scanning support'
-'python2-notify: for Desktop notification support'
-'python2-reportlab: for pdf output in hp-scan'
+'python-pillow: for commandline scanning support'
+#'python2-notify: for Desktop notification support'
+'python-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
-'python2-pyqt4: for running GUI and hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
+'python-pyqt4: for running GUI and hp-toolbox'
+'python-gobject2: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 install=hplip.install
@@ -35,17 +35,17 @@
 prepare() {
  cd $pkgname-$pkgver
  
- export PYTHON=python2
+# export PYTHON=python2
  
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
- sed -i 's|/usr/bin/python|/usr/bin/python2|' data/rules/hplip-printer@.service
+# find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
+# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
+# sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
+# sed -i 's|python ./print.py|python2 ./print.py|' scan.py
+# sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
+# sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
+# sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
+# sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
+# sed -i 's|/usr/bin/python|/usr/bin/python2|' 
data/rules/hplip-printer@.service
  
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-02-05 Thread Andreas Radke
Date: Thursday, February 5, 2015 @ 21:39:04
  Author: andyrtr
Revision: 230852

upgpkg: hplip 3.15.2-1

upstream update 3.15.2

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-05 20:36:48 UTC (rev 230851)
+++ PKGBUILD2015-02-05 20:39:04 UTC (rev 230852)
@@ -5,8 +5,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.10
-pkgrel=2
+pkgver=3.15.2
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,9 +27,9 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('7af44ee1c4312b00d2269c1b25008f73'
- 'SKIP'
- '257c8bfe675862d90f4ce07d3dff1d9f')
+sha1sums=('efebad73f29ab9f77d5a866c1c5d3857cc5f1df5'
+  'SKIP'
+  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
 validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
 
 prepare() {
@@ -77,9 +77,7 @@
  --enable-cups-drv-install \
  --enable-hpijs-install \
  --enable-foomatic-drv-install \
- --enable-pp-build \
- --enable-udev-acl-rules #--help
-
+ --enable-pp-build #--help
  make
 }
 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2015-01-31 Thread Andreas Radke
Date: Saturday, January 31, 2015 @ 10:21:51
  Author: andyrtr
Revision: 230306

upgpkg: hplip 3.14.10-2

don't depend on all the foomatic-db drivers - hplip ships its own drivers to be 
used with foomatic-db-engine

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-31 06:23:07 UTC (rev 230305)
+++ PKGBUILD2015-01-31 09:21:51 UTC (rev 230306)
@@ -6,13 +6,12 @@
 
 pkgname=hplip
 pkgver=3.14.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
 license=('GPL')
-depends=('python2' 'ghostscript=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp=5.7.1' 'wget')
+depends=('python2' 'ghostscript=8.64-6' 'net-snmp=5.7.1' 'wget' 
'foomatic-db-engine')
 makedepends=('python2-pyqt4' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusb')
 optdepends=('cups: for printing support'
 'python2-dbus: for dbus support'


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-12-30 Thread Andreas Radke
Date: Tuesday, December 30, 2014 @ 23:25:35
  Author: andyrtr
Revision: 228201

add validpgpkeys

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-30 22:14:22 UTC (rev 228200)
+++ PKGBUILD2014-12-30 22:25:35 UTC (rev 228201)
@@ -31,6 +31,7 @@
 md5sums=('7af44ee1c4312b00d2269c1b25008f73'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
+validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) hp...@hp.com
 
 prepare() {
  cd $pkgname-$pkgver


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-10-16 Thread Andreas Radke
Date: Thursday, October 16, 2014 @ 21:13:24
  Author: andyrtr
Revision: 224640

upgpkg: hplip 3.14.10-1

upstream update 3.14.10

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-16 17:16:54 UTC (rev 224639)
+++ PKGBUILD2014-10-16 19:13:24 UTC (rev 224640)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.6
+pkgver=3.14.10
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('ec14b3bf3ac17a7c00b96e51d4c38114'
+md5sums=('7af44ee1c4312b00d2269c1b25008f73'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 


[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-06-06 Thread Andreas Radke
Date: Friday, June 6, 2014 @ 23:56:37
  Author: andyrtr
Revision: 214338

upgpkg: hplip 3.14.6-1

upstream update 3.14.6

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-06 21:48:26 UTC (rev 214337)
+++ PKGBUILD2014-06-06 21:56:37 UTC (rev 214338)
@@ -1,10 +1,11 @@
 # $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
 # Maintainer: Tom Gundersen t...@jklm.no
 # Contributor : Rémy Oudompheng r...@archlinux.org
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.4
+pkgver=3.14.6
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -27,7 +28,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('6e8d53fb2284271505d2e1706c01f6c5'
+md5sums=('ec14b3bf3ac17a7c00b96e51d4c38114'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-04-20 Thread Andreas Radke
Date: Sunday, April 20, 2014 @ 18:51:44
  Author: andyrtr
Revision: 211578

FS#39554 - python2-qt4 is needed for all gui stuff

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-20 15:31:43 UTC (rev 211577)
+++ PKGBUILD2014-04-20 16:51:44 UTC (rev 211578)
@@ -20,7 +20,7 @@
 'python2-notify: for Desktop notification support'
 'python2-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
-'python2-pyqt4: for running hp-toolbox'
+'python2-pyqt4: for running GUI and hp-toolbox'
 'python2-gobject2: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-04-09 Thread Andreas Radke
Date: Wednesday, April 9, 2014 @ 21:22:29
  Author: andyrtr
Revision: 210088

upgpkg: hplip 3.14.4-1

upstream update 3.14.4

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-09 19:14:05 UTC (rev 210087)
+++ PKGBUILD2014-04-09 19:22:29 UTC (rev 210088)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.3
-pkgrel=2
+pkgver=3.14.4
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('a0ae59a75d202b92738dc24610b98428'
+md5sums=('6e8d53fb2284271505d2e1706c01f6c5'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-03-22 Thread Andreas Radke
Date: Saturday, March 22, 2014 @ 18:39:33
  Author: andyrtr
Revision: 208337

upgpkg: hplip 3.14.3-2

fix FS#39587

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-22 17:00:18 UTC (rev 208336)
+++ PKGBUILD2014-03-22 17:39:33 UTC (rev 208337)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.14.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -44,6 +44,7 @@
  sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
  sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
  sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
+ sed -i 's|/usr/bin/python|/usr/bin/python2|' data/rules/hplip-printer@.service
  
  # disable insecure update - https://bugs.archlinux.org/task/38083
  patch -Np0 -i ${srcdir}/disable_upgrade.patch



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-03-17 Thread Andreas Radke
Date: Monday, March 17, 2014 @ 18:40:46
  Author: andyrtr
Revision: 208088

upgpkg: hplip 3.14.3-1

upstream update 3.14.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-17 17:35:29 UTC (rev 208087)
+++ PKGBUILD2014-03-17 17:40:46 UTC (rev 208088)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.14.1
-pkgrel=2
+pkgver=3.14.3
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('11eb45f3d3edf1f03887fd13afc61b51'
+md5sums=('a0ae59a75d202b92738dc24610b98428'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-03-05 Thread Andreas Radke
Date: Wednesday, March 5, 2014 @ 20:15:57
  Author: andyrtr
Revision: 206910

upgpkg: hplip 3.14.1-2

- fix deps for libusb, python2-pyqt4 FS#39128
- add note about hplip-plugin in AUR

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-05 19:14:12 UTC (rev 206909)
+++ PKGBUILD2014-03-05 19:15:57 UTC (rev 206910)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('python2' 'ghostscript=8.64-6' 'foomatic-db' 'foomatic-db-engine'
 'net-snmp=5.7.1' 'wget')
-makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusbx')
+makedepends=('python2-pyqt4' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusb')
 optdepends=('cups: for printing support'
 'python2-dbus: for dbus support'
 'sane: for scanner support'
@@ -20,10 +20,10 @@
 'python2-notify: for Desktop notification support'
 'python2-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
-'python2-pyqt: for running hp-toolbox'
+'python2-pyqt4: for running hp-toolbox'
 'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices'
-'libusbx: for advanced usb support')
+'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
+'libusb: for advanced usb support')
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2014-01-17 Thread Andreas Radke
Date: Friday, January 17, 2014 @ 10:00:06
  Author: andyrtr
Revision: 204311

upgpkg: hplip 3.14.1-1

upstream update 3.14.1

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-17 07:31:32 UTC (rev 204310)
+++ PKGBUILD2014-01-17 09:00:06 UTC (rev 204311)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.11
-pkgrel=2
+pkgver=3.14.1
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
-md5sums=('8ee362d9bc45fd4eddd3c9d9e583d728'
+md5sums=('11eb45f3d3edf1f03887fd13afc61b51'
  'SKIP'
  '257c8bfe675862d90f4ce07d3dff1d9f')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD disable_upgrade.patch)

2013-12-11 Thread Andreas Radke
Date: Wednesday, December 11, 2013 @ 17:52:25
  Author: andyrtr
Revision: 201437

upgpkg: hplip 3.13.11-2

disable internal upgrade; FS#38083

Added:
  hplip/trunk/disable_upgrade.patch
Modified:
  hplip/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 disable_upgrade.patch |   14 ++
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-11 15:31:04 UTC (rev 201436)
+++ PKGBUILD2013-12-11 16:52:25 UTC (rev 201437)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.11
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -25,9 +25,11 @@
 'hplip-plugin: binary blobs for specific devices'
 'libusbx: for advanced usb support')
 install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
+disable_upgrade.patch)
 md5sums=('8ee362d9bc45fd4eddd3c9d9e583d728'
- 'SKIP')
+ 'SKIP'
+ '257c8bfe675862d90f4ce07d3dff1d9f')
 
 prepare() {
  cd $pkgname-$pkgver
@@ -43,6 +45,9 @@
  sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
  sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
  
+ # disable insecure update - https://bugs.archlinux.org/task/38083
+ patch -Np0 -i ${srcdir}/disable_upgrade.patch
+ 
  # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
  # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
  # The hpcups driver does not use foomatic-rip

Added: disable_upgrade.patch
===
--- disable_upgrade.patch   (rev 0)
+++ disable_upgrade.patch   2013-12-11 16:52:25 UTC (rev 201437)
@@ -0,0 +1,14 @@
+--- upgrade.py.orig2013-10-31 12:46:54.0 +0100
 upgrade.py 2013-12-04 14:58:03.0 +0100
+@@ -134,6 +134,11 @@ except getopt.GetoptError, e:
+ if os.getenv(HPLIP_DEBUG):
+ log.set_level('debug')
+ 
++
++log.error(HPLIP upgrade is disabled by Archlinux for security reasons, see 
https://bugs.archlinux.org/task/38083 - if you like to upgrade HPLIP, use the 
Archlinux software package manager pacman.)
++clean_exit(1)
++
++
+ for o, a in opts:
+ if o in ('-h', '--help'):
+ usage()



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-11-09 Thread Andreas Radke
Date: Saturday, November 9, 2013 @ 20:21:00
  Author: andyrtr
Revision: 199297

upgpkg: hplip 3.13.11-1

upstream update 3.13.11

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-09 18:32:17 UTC (rev 199296)
+++ PKGBUILD2013-11-09 19:21:00 UTC (rev 199297)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.10
-pkgrel=2
+pkgver=3.13.11
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -26,7 +26,7 @@
 'libusbx: for advanced usb support')
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('ba729c514a2dc95390b99e9a9d452999'
+md5sums=('8ee362d9bc45fd4eddd3c9d9e583d728'
  'SKIP')
 
 prepare() {



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-10-18 Thread Andreas Radke
Date: Friday, October 18, 2013 @ 15:50:49
  Author: andyrtr
Revision: 196769

upgpkg: hplip 3.13.10-2

add optional dep on python2-reportlab; FS#37382

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-18 13:37:47 UTC (rev 196768)
+++ PKGBUILD2013-10-18 13:50:49 UTC (rev 196769)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -18,6 +18,7 @@
 'sane: for scanner support'
 'python2-pillow: for commandline scanning support'
 'python2-notify: for Desktop notification support'
+'python2-reportlab: for pdf output in hp-scan'
 'rpcbind: for network support'
 'python2-pyqt: for running hp-toolbox'
 'python2-gobject2: for running hp-toolbox'



[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-CVE-2013-4325.patch)

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 22:05:28
  Author: andyrtr
Revision: 196443

upgpkg: hplip 3.13.9-3

add patch for CVE-2013-4325; FS#37168

Added:
  hplip/trunk/hplip-CVE-2013-4325.patch
Modified:
  hplip/trunk/PKGBUILD

---+
 PKGBUILD  |   26 +++---
 hplip-CVE-2013-4325.patch |   22 ++
 2 files changed, 41 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:45:46 UTC (rev 196442)
+++ PKGBUILD2013-10-13 20:05:28 UTC (rev 196443)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.9
-pkgrel=2
+pkgrel=3
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -26,17 +26,22 @@
 options=('!libtool')
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-hp-mkuri.patch)
+hp-mkuri.patch
+hplip-CVE-2013-4325.patch)
 md5sums=('8fcbbd0d3a0b76550f325bd6cf46d9d9'
  'SKIP'
- '0bd7779fdbc4d7a9386df04dce2cb8d4')
+ '0bd7779fdbc4d7a9386df04dce2cb8d4'
+ '947db41ee8556c78dd027a2f107957e6')
 
-build() {
- cd $srcdir/$pkgname-$pkgver
+prepare() {
+ cd $pkgname-$pkgver
 
  # fix linking libnotify, FS#34283
  patch -Np0 -i ${srcdir}/hp-mkuri.patch
  
+ # https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4325
+ patch -Np1 -i ${srcdir}/hplip-CVE-2013-4325.patch
+ 
  export PYTHON=python2
  
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
@@ -61,7 +66,10 @@

  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
+}
 
+build() {
+ cd $pkgname-$pkgver
  ./configure --prefix=/usr \
  --enable-qt4 \
  --disable-foomatic-rip-hplip-install \
@@ -79,15 +87,19 @@
 }
 
 package() {
- #cd $srcdir/$pkgname-$pkgver
- cd $srcdir/$pkgname-${pkgver/.a/a}
+ #cd $pkgname-$pkgver
+ cd $pkgname-${pkgver/.a/a}
  make rulesdir=/usr/lib/udev/rules.d DESTDIR=$pkgdir/ install
+ 
  # remove config provided by sane and autostart of hp-daemon
  rm -rf $pkgdir/etc/{sane.d,xdg}
+ 
  # remove HAL .fdi file because HAL is no longer used
  rm -rf $pkgdir/usr/share/hal
+ 
  # log dir should not be world writeable
  chmod 775 $pkgdir/var/log/hp{,/tmp}
+ 
  # remove rc script
  rm -rf $pkgdir/etc/init.d
 }

Added: hplip-CVE-2013-4325.patch
===
--- hplip-CVE-2013-4325.patch   (rev 0)
+++ hplip-CVE-2013-4325.patch   2013-10-13 20:05:28 UTC (rev 196443)
@@ -0,0 +1,22 @@
+diff -up hplip-3.13.7/base/pkit.py.CVE-2013-4325 hplip-3.13.7/base/pkit.py
+--- hplip-3.13.7/base/pkit.py.CVE-2013-43252013-07-23 06:18:29.0 
+0100
 hplip-3.13.7/base/pkit.py  2013-09-11 10:54:13.252419283 +0100
+@@ -176,15 +176,10 @@ class PolicyKitService(dbus.service.Obje
+ /org/freedesktop/PolicyKit1/Authority,
+ org.freedesktop.PolicyKit1.Authority)
+ policy_kit = dbus.Interface(obj, 
org.freedesktop.PolicyKit1.Authority)
+-info = dbus.Interface(connection.get_object(org.freedesktop.DBus,
+-
/org/freedesktop/DBus/Bus,
+-False),
+-  org.freedesktop.DBus)
+-pid = info.GetConnectionUnixProcessID(sender)
+ 
+ subject = (
+-'unix-process',
+-{ 'pid' : dbus.UInt32(pid, variant_level = 1) }
++'system-bus-name',
++{ 'name' : dbus.String(sender, variant_level = 1) }
+ )
+ details = { '' : '' }
+ flags = dbus.UInt32(1) # AllowUserInteraction = 0x0001
+



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-09-15 Thread Andreas Radke
Date: Sunday, September 15, 2013 @ 10:00:33
  Author: andyrtr
Revision: 194375

upgpkg: hplip 3.13.9-2

PIL - python2-pillow move

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-15 07:40:13 UTC (rev 194374)
+++ PKGBUILD2013-09-15 08:00:33 UTC (rev 194375)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.9
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -16,7 +16,7 @@
 optdepends=('cups: for printing support'
 'python2-dbus: for dbus support'
 'sane: for scanner support'
-'python2-imaging: for commandline scanning support'
+'python2-pillow: for commandline scanning support'
 'python2-notify: for Desktop notification support'
 'rpcbind: for network support'
 'python2-pyqt: for running hp-toolbox'



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-09-12 Thread Andreas Radke
Date: Thursday, September 12, 2013 @ 21:55:07
  Author: andyrtr
Revision: 194276

upgpkg: hplip 3.13.9-1

upstream update 3.13.9

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-12 19:33:59 UTC (rev 194275)
+++ PKGBUILD2013-09-12 19:55:07 UTC (rev 194276)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.8
+pkgver=3.13.9
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 hp-mkuri.patch)
-md5sums=('44de6a1e4d295ae6f1f0f0ef1cdc7301'
+md5sums=('8fcbbd0d3a0b76550f325bd6cf46d9d9'
  'SKIP'
  '0bd7779fdbc4d7a9386df04dce2cb8d4')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-08-15 Thread Andreas Radke
Date: Thursday, August 15, 2013 @ 17:25:13
  Author: andyrtr
Revision: 193075

upgpkg: hplip 3.13.8-1

upstream update 3.13.8

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-15 15:18:16 UTC (rev 193074)
+++ PKGBUILD2013-08-15 15:25:13 UTC (rev 193075)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.7
+pkgver=3.13.8
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 hp-mkuri.patch)
-md5sums=('e834c8dd270f441c963f5d883d2d48f3'
+md5sums=('44de6a1e4d295ae6f1f0f0ef1cdc7301'
  'SKIP'
  '0bd7779fdbc4d7a9386df04dce2cb8d4')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-07-25 Thread Andreas Radke
Date: Thursday, July 25, 2013 @ 22:33:03
  Author: andyrtr
Revision: 191569

upgpkg: hplip 3.13.7-1

upstream update 3.13.7

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-25 20:13:15 UTC (rev 191568)
+++ PKGBUILD2013-07-25 20:33:03 UTC (rev 191569)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.6
+pkgver=3.13.7
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -27,7 +27,7 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 hp-mkuri.patch)
-md5sums=('3dd5052864052b8cd4ce013bb71f4d6c'
+md5sums=('e834c8dd270f441c963f5d883d2d48f3'
  'SKIP'
  '0bd7779fdbc4d7a9386df04dce2cb8d4')
 



[arch-commits] Commit in hplip/trunk (PKGBUILD hplip_typo.patch)

2013-05-19 Thread Andreas Radke
Date: Sunday, May 19, 2013 @ 12:16:28
  Author: andyrtr
Revision: 185808

upgpkg: hplip 3.13.5-2

fix script typo; FS#35356

Added:
  hplip/trunk/hplip_typo.patch
Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 hplip_typo.patch |   11 +++
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-19 09:46:06 UTC (rev 185807)
+++ PKGBUILD2013-05-19 10:16:28 UTC (rev 185808)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -27,11 +27,13 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 cups-1.6-buildfix.diff
-hp-mkuri.patch)
+hp-mkuri.patch
+hplip_typo.patch)
 md5sums=('f0c406f06f191a120f7d283b69ff10e8'
  'SKIP'
  'ef64578c6cb3ce252dbdcb0f1c2f4a47'
- '0bd7779fdbc4d7a9386df04dce2cb8d4')
+ '0bd7779fdbc4d7a9386df04dce2cb8d4'
+ 'b3dd33a538ed8a3774f3c22f13e0a549')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
@@ -41,6 +43,9 @@
  
  # fix linking libnotify, FS#34283
  patch -Np0 -i ${srcdir}/hp-mkuri.patch
+
+ # fix typo preventing FW to load
+ patch -Np0 -i ${srcdir}/hplip_typo.patch
  
  export PYTHON=python2
  

Added: hplip_typo.patch
===
--- hplip_typo.patch(rev 0)
+++ hplip_typo.patch2013-05-19 10:16:28 UTC (rev 185808)
@@ -0,0 +1,11 @@
+--- config_usb_printer.py  2013-05-19 02:23:17.506716304 +0300
 config_usb_printer.py.new  2013-05-19 02:23:30.140049848 +0300
+@@ -257,7 +257,7 @@
+# *** RUNNING FIRMWARE DOWNLOAD TO DEVICE 
FOR SUPPORTED PRINTER'S
+fw_download_req = mq.get('fw-download', False)
+if fw_download_req:
+-   fw_cmd = utlis.which('hp-firmware', True)
++   fw_cmd = utils.which('hp-firmware', True)
+if fw_cmd:
+ fw_cmd +=  -y3 -s %s%param
+ log.debug(fw_cmd)



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-05-18 Thread Andreas Radke
Date: Saturday, May 18, 2013 @ 16:38:33
  Author: andyrtr
Revision: 185761

upgpkg: hplip 3.13.5-1

upstream update 3.13.5

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-18 11:02:57 UTC (rev 185760)
+++ PKGBUILD2013-05-18 14:38:33 UTC (rev 185761)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.4
+pkgver=3.13.5
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 cups-1.6-buildfix.diff
 hp-mkuri.patch)
-md5sums=('e5c247161e2fd7685e0520e968393d19'
+md5sums=('f0c406f06f191a120f7d283b69ff10e8'
  'SKIP'
  'ef64578c6cb3ce252dbdcb0f1c2f4a47'
  '0bd7779fdbc4d7a9386df04dce2cb8d4')
@@ -95,7 +95,4 @@
  chmod 775 $pkgdir/var/log/hp{,/tmp}
  # remove rc script
  rm -rf $pkgdir/etc/init.d
- 
- # fix broken udev rule - FS#34282
- sed -i s:\$attrs:\$attr:g 
$pkgdir/usr/lib/udev/rules.d/56-hpmud_support.rules
 }



[arch-commits] Commit in hplip/trunk (PKGBUILD hp-mkuri.patch)

2013-04-12 Thread Andreas Radke
Date: Friday, April 12, 2013 @ 16:26:14
  Author: andyrtr
Revision: 182674

upgpkg: hplip 3.13.4-1

upstream update 3.13.4; fix linking libnotify FS#34283

Added:
  hplip/trunk/hp-mkuri.patch
Modified:
  hplip/trunk/PKGBUILD

+
 PKGBUILD   |   17 +++--
 hp-mkuri.patch |   11 +++
 2 files changed, 22 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-12 14:23:59 UTC (rev 182673)
+++ PKGBUILD2013-04-12 14:26:14 UTC (rev 182674)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.3
-pkgrel=2
+pkgver=3.13.4
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -26,10 +26,12 @@
 options=('!libtool')
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-cups-1.6-buildfix.diff)
-md5sums=('4a378cc08f7a4f131968c0966c1ceb8c'
- 'f37ad6d95a36d7547a2c60374fc4d1ec'
- 'ef64578c6cb3ce252dbdcb0f1c2f4a47')
+cups-1.6-buildfix.diff
+hp-mkuri.patch)
+md5sums=('e5c247161e2fd7685e0520e968393d19'
+ 'SKIP'
+ 'ef64578c6cb3ce252dbdcb0f1c2f4a47'
+ '0bd7779fdbc4d7a9386df04dce2cb8d4')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
@@ -37,6 +39,9 @@
  # fix build with cups 1.6 - FC hplip-ipp-accessors.patch
  patch -p1 -i ${srcdir}/cups-1.6-buildfix.diff
  
+ # fix linking libnotify, FS#34283
+ patch -Np0 -i ${srcdir}/hp-mkuri.patch
+ 
  export PYTHON=python2
  
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +

Added: hp-mkuri.patch
===
--- hp-mkuri.patch  (rev 0)
+++ hp-mkuri.patch  2013-04-12 14:26:14 UTC (rev 182674)
@@ -0,0 +1,11 @@
+--- io/hpmud/hp-mkuri.c.orig   2013-03-17 09:15:15.360624061 -0400
 io/hpmud/hp-mkuri.c2013-03-17 09:15:30.924316847 -0400
+@@ -266,7 +266,7 @@
+ 
+ /* Bypass glib build dependencies by loading libnotify manually. */  
+ 
+-if ((handle = load_library(libnotify.so.1)) == NULL)
++if ((handle = load_library(libnotify.so.4)) == NULL)
+ {
+BUG(failed to open libnotify: %m\n);
+goto bugout;



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-03-14 Thread Andreas Radke
Date: Thursday, March 14, 2013 @ 19:45:58
  Author: andyrtr
Revision: 180013

upgpkg: hplip 3.13.3-2

fix FS#34282

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-14 18:21:32 UTC (rev 180012)
+++ PKGBUILD2013-03-14 18:45:58 UTC (rev 180013)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -90,4 +90,7 @@
  chmod 775 $pkgdir/var/log/hp{,/tmp}
  # remove rc script
  rm -rf $pkgdir/etc/init.d
+ 
+ # fix broken udev rule - FS#34282
+ sed -i s:\$attrs:\$attr:g 
$pkgdir/usr/lib/udev/rules.d/56-hpmud_support.rules
 }



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-03-09 Thread Andreas Radke
Date: Saturday, March 9, 2013 @ 10:20:06
  Author: andyrtr
Revision: 179659

upgpkg: hplip 3.13.3-1

upstream update 3.13.3

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-09 09:03:22 UTC (rev 179658)
+++ PKGBUILD2013-03-09 09:20:06 UTC (rev 179659)
@@ -4,7 +4,7 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.13.2
+pkgver=3.13.3
 pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
@@ -27,6 +27,9 @@
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 cups-1.6-buildfix.diff)
+md5sums=('4a378cc08f7a4f131968c0966c1ceb8c'
+ 'f37ad6d95a36d7547a2c60374fc4d1ec'
+ 'ef64578c6cb3ce252dbdcb0f1c2f4a47')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
@@ -37,7 +40,7 @@
  export PYTHON=python2
  
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' setup.py makeuri.py 
logcapture.py base/magic.py
+ sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
  sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
  sed -i 's|python ./print.py|python2 ./print.py|' scan.py
  sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
@@ -88,6 +91,3 @@
  # remove rc script
  rm -rf $pkgdir/etc/init.d
 }
-md5sums=('cd7edef6b2df2cdb468b145cd2127e1b'
- 'cc3fc6de33ccf8bfce0bc890e30bd4e1'
- 'ef64578c6cb3ce252dbdcb0f1c2f4a47')



[arch-commits] Commit in hplip/trunk (PKGBUILD)

2013-02-16 Thread Tom Gundersen
Date: Sunday, February 17, 2013 @ 00:09:01
  Author: tomegun
Revision: 178145

upgpkg: hplip 3.13.2-1

upstream release

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-16 22:49:02 UTC (rev 178144)
+++ PKGBUILD2013-02-16 23:09:01 UTC (rev 178145)
@@ -4,8 +4,8 @@
 # Contributor: Morgan LEFIEUX com...@archlinuxfr.org
 
 pkgname=hplip
-pkgver=3.12.11
-pkgrel=2
+pkgver=3.13.2
+pkgrel=1
 pkgdesc=Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet
 arch=('i686' 'x86_64')
 url=http://hplipopensource.com;
@@ -45,9 +45,6 @@
  sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
  sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
  
- # fix rc script path - FS#31921
- sed -i 's|\/etc\/init.d\/cupsys|\/etc\/rc.d\/cupsd|g' setup.py
- 
  # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
  # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
  # The hpcups driver does not use foomatic-rip
@@ -88,7 +85,9 @@
  rm -rf $pkgdir/usr/share/hal
  # log dir should not be world writeable
  chmod 775 $pkgdir/var/log/hp{,/tmp}
+ # remove rc script
+ rm -rf $pkgdir/etc/init.d
 }
-md5sums=('6caadc4a9e49076c284b146e2dce2937'
- '835d3b854d097f229a32291338fa2320'
+md5sums=('cd7edef6b2df2cdb468b145cd2127e1b'
+ 'cc3fc6de33ccf8bfce0bc890e30bd4e1'
  'ef64578c6cb3ce252dbdcb0f1c2f4a47')



  1   2   >