From 255df62e9020c0f2bac57f0c290f0e29b10f8a39 Mon Sep 17 00:00:00 2001 From: dataCobra Date: Thu, 10 Nov 2022 06:56:23 +0100 Subject: [PATCH 1/2] New package: hplip-plugin-3.22.10 --- srcpkgs/hplip-plugin/template | 61 +++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 srcpkgs/hplip-plugin/template diff --git a/srcpkgs/hplip-plugin/template b/srcpkgs/hplip-plugin/template new file mode 100644 index 000000000000..a7fe4808c985 --- /dev/null +++ b/srcpkgs/hplip-plugin/template @@ -0,0 +1,61 @@ +# Template file for 'hplip-plugin' +# Must be in sync with main hplip package +pkgname=hplip-plugin +version=3.22.10 +revision=1 +archs="i686 x86_64 armv[67]l aarch64" +hostmakedepends="tar" +short_desc="Binary plugin for HPs hplip printer driver library" +maintainer="biopsin " +license="custom:proprietary" +homepage="https://developers.hp.com/hp-linux-imaging-and-printing/binary_plugin.html" +changelog="https://developers.hp.com/hp-linux-imaging-and-printing/release_notes" +distfiles="https://developers.hp.com/sites/default/files/hplip-${version}-plugin.run" +checksum=bb9648ea0626a9b3cfa29e260348d5d617f328c55b66eda346384c04f4740b1f +repository=nonfree +restricted=yes + +ignore_elf_dirs="/usr/share/hplip" + +do_extract() { + /bin/sh ${XBPS_SRCDISTDIR}/${pkgname}-${version}/hplip-${version}-plugin.run \ + --noexec --target ${wrksrc} +} + +do_install() { + vmkdir usr/share/hplip/data/firmware + vmkdir usr/share/hplip/fax/plugins + vmkdir usr/share/hplip/prnt/plugins + vmkdir usr/share/hplip/scan/plugins + vmkdir usr/share/licenses/hplip-plugin + vmkdir var/lib/hp + + case "$XBPS_TARGET_MACHINE" in + i686) _arch='x86_32' ;; + x86_64) _arch='x86_64' ;; + armv[67]l) _arch='arm32' ;; + aarch64) _arch='arm64' ;; + esac + + vcopy plugin.spec usr/share/hplip/ + vcopy hp_laserjet_*.fw.gz usr/share/hplip/data/firmware/ + vcopy fax_marvell-"$_arch".so usr/share/hplip/fax/plugins/ + vcopy hbpl1-"$_arch".so usr/share/hplip/prnt/plugins/ + vcopy lj-"$_arch".so usr/share/hplip/prnt/plugins/ + vcopy bb_*-"$_arch".so usr/share/hplip/scan/plugins/ + vlicense license.txt + + cat << EOF > hplip.state +[plugin] +installed = 1 +eula = 1 +version = ${version} +EOF + vcopy hplip.state var/lib/hp + + find "${DESTDIR}/usr/share/hplip" -type f -name "*.so" | while read f; do + lib_dir="${f%/*}" + lib_name="${f##*/}" + ln -sf "$lib_name" "$lib_dir/${lib_name%%-*}.so" + done +} From babce630aeff5a5f6a2228b0f1f89aab5d0bb927 Mon Sep 17 00:00:00 2001 From: dataCobra Date: Fri, 11 Nov 2022 09:04:00 +0100 Subject: [PATCH 2/2] hplip: update to 3.22.10. --- srcpkgs/hplip/template | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template index 063581e4e899..40321a396ede 100644 --- a/srcpkgs/hplip/template +++ b/srcpkgs/hplip/template @@ -1,11 +1,9 @@ # Template file for 'hplip' pkgname=hplip -version=3.22.6 -revision=2 +version=3.22.10 +revision=1 build_style=gnu-configure pycompile_dirs="usr/share/hplip" -# configure checks sys.version[:3] for Python versioning, so 3.10 becomes 3.1; -# until this is fixed upstream, manually define am_cv_python_version to circumvent configure_args=" --enable-gui-build --disable-qt4 @@ -20,8 +18,7 @@ configure_args=" --enable-foomatic-drv-install --enable-pp-build --disable-imageProcessor-build - --with-mimedir=/usr/share/cups/mime - am_cv_python_version=${py3_ver}" + --with-mimedir=/usr/share/cups/mime" conf_files="/etc/hp/hplip.conf" make_dirs="/var/lib/hp 0755 root root" hostmakedepends="pkg-config automake libtool python3" @@ -36,7 +33,7 @@ license="GPL-2.0-only, BSD-3-Clause, MIT" homepage="https://developers.hp.com/hp-linux-imaging-and-printing" changelog="https://developers.hp.com/hp-linux-imaging-and-printing/release_notes" distfiles="${SOURCEFORGE_SITE}/hplip/hplip/${version}/hplip-${version}.tar.gz" -checksum=27ed0d492febb0b47c656234820d3ce573b24ff5b62e3bf4b2c47f82868d6bb4 +checksum=533c3f2f6b53e4163ded4fd81d1f11ae6162a0f6451bd5e62a8382d0c1366624 conflicts="hplip-gui" CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/libusb-1.0 -I${XBPS_CROSS_BASE}/${py3_inc}"