Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-windows/
Date: Wed, 16 Sep 2020 20:17:19
Message-Id: 1600287370.482e36ac9f0a2b3d6f588d960d08c07fa0d8101e.soap@gentoo
1 commit: 482e36ac9f0a2b3d6f588d960d08c07fa0d8101e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 20:16:10 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 20:16:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=482e36ac
7
8 net-print/cups-windows: Port to EAPI 7
9
10 Closes: https://bugs.gentoo.org/742164
11 Package-Manager: Portage-3.0.7, Repoman-3.0.1
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 net-print/cups-windows/cups-windows-6.0-r1.ebuild | 9 +++++----
15 1 file changed, 5 insertions(+), 4 deletions(-)
16
17 diff --git a/net-print/cups-windows/cups-windows-6.0-r1.ebuild b/net-print/cups-windows/cups-windows-6.0-r1.ebuild
18 index de0af8c1754..1fc2f1b0969 100644
19 --- a/net-print/cups-windows/cups-windows-6.0-r1.ebuild
20 +++ b/net-print/cups-windows/cups-windows-6.0-r1.ebuild
21 @@ -1,7 +1,7 @@
22 # Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 +EAPI=7
27
28 DESCRIPTION="CUPS PostScript Driver for Windows"
29 HOMEPAGE="https://www.cups.org/"
30 @@ -10,14 +10,15 @@ SRC_URI="mirror://gentoo/${P}-source.tar.bz2"
31 LICENSE="GPL-2"
32 SLOT="0"
33 KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86"
34 -IUSE=""
35
36 RDEPEND=">=net-print/cups-1.2"
37 DEPEND="${RDEPEND}"
38
39 src_install() {
40 - emake install BUILDROOT="${D}"
41 + emake BUILDROOT="${D}" install
42 dodoc README.txt
43 +
44 einfo "Copying missing cups6.ppd file"
45 - cp "${S}/i386/cups6.ppd" "${ED}/usr/share/cups/drivers/"
46 + insinto /usr/share/cups/drivers
47 + doins i386/cups6.ppd
48 }