From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1382770-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7399C15808B for <garchives@archives.gentoo.org>; Tue, 5 Apr 2022 08:55:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79A95E07EE; Tue, 5 Apr 2022 08:55:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41FBEE07EE for <gentoo-commits@lists.gentoo.org>; Tue, 5 Apr 2022 08:55:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A1013414C4 for <gentoo-commits@lists.gentoo.org>; Tue, 5 Apr 2022 08:54:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAE7B287 for <gentoo-commits@lists.gentoo.org>; Tue, 5 Apr 2022 08:54:57 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" <soap@gentoo.org> Message-ID: <1649148886.26d3b8443847994cdd70b040bba85d9de8512f7e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/hplip-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild X-VCS-Directories: net-print/hplip-plugin/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 26d3b8443847994cdd70b040bba85d9de8512f7e X-VCS-Branch: master Date: Tue, 5 Apr 2022 08:54:57 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7cce64d1-102c-4905-b253-606737d4d603 X-Archives-Hash: b10210b1af2887abcc86b87f38a7a806 commit: 26d3b8443847994cdd70b040bba85d9de8512f7e Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Tue Apr 5 08:54:46 2022 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Tue Apr 5 08:54:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d3b844 net-print/hplip-plugin: canonical variable order Signed-off-by: David Seifert <soap <AT> gentoo.org> net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild b/net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild index 354cee23d950..54c789992915 100644 --- a/net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild +++ b/net-print/hplip-plugin/hplip-plugin-3.22.2.ebuild @@ -8,10 +8,14 @@ inherit unpacker DESCRIPTION="Proprietary plugins and firmware for HPLIP" HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing/plugins" SRC_URI="https://developers.hp.com/sites/default/files/hplip-${PV}-plugin.run" +S="${WORKDIR}" + LICENSE="hplip-plugin" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="orblite" +# License does not allow us to redistribute the "source" package +RESTRICT="mirror" RDEPEND=" ~net-print/hplip-${PV} @@ -22,20 +26,14 @@ RDEPEND=" virtual/libusb:0 ) " -DEPEND="" - -S=${WORKDIR} HPLIP_HOME=/usr/share/hplip # Binary prebuilt package QA_PREBUILT="${HPLIP_HOME}/*.so" -# License does not allow us to redistribute the "source" package -RESTRICT="mirror" - src_install() { - local hplip_arch + local hplip_arch plugin case "${ARCH}" in amd64) hplip_arch="x86_64" ;; arm) hplip_arch="arm32" ;;