Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/uudeview/files/, app-text/uudeview/
Date: Tue, 21 Jan 2020 21:51:27
Message-Id: 1579643440.8ebfeefa5b3c66d6f95eb78b0f449696d8b5864e.soap@gentoo
1 commit: 8ebfeefa5b3c66d6f95eb78b0f449696d8b5864e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 21 21:50:40 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 21 21:50:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebfeefa
7
8 app-text/uudeview: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 .../uudeview/files/uudeview-0.5.20-makefile.patch | 4 +--
14 app-text/uudeview/uudeview-0.5.20-r2.ebuild | 33 +++++++++-------------
15 2 files changed, 15 insertions(+), 22 deletions(-)
16
17 diff --git a/app-text/uudeview/files/uudeview-0.5.20-makefile.patch b/app-text/uudeview/files/uudeview-0.5.20-makefile.patch
18 index ed3cdf66374..a2366851f46 100644
19 --- a/app-text/uudeview/files/uudeview-0.5.20-makefile.patch
20 +++ b/app-text/uudeview/files/uudeview-0.5.20-makefile.patch
21 @@ -1,5 +1,5 @@
22 ---- Makefile.in.orig 2015-11-18 13:52:44.173432349 +0300
23 -+++ Makefile.in 2015-11-18 13:53:39.244429093 +0300
24 +--- a/Makefile.in
25 ++++ b/Makefile.in
26 @@ -183,22 +183,22 @@
27
28 install: $(DOINST)
29
30 diff --git a/app-text/uudeview/uudeview-0.5.20-r2.ebuild b/app-text/uudeview/uudeview-0.5.20-r2.ebuild
31 index 6331df769ce..d8c47f13408 100644
32 --- a/app-text/uudeview/uudeview-0.5.20-r2.ebuild
33 +++ b/app-text/uudeview/uudeview-0.5.20-r2.ebuild
34 @@ -1,9 +1,9 @@
35 -# Copyright 1999-2018 Gentoo Authors
36 +# Copyright 1999-2020 Gentoo Authors
37 # Distributed under the terms of the GNU General Public License v2
38
39 -EAPI="5"
40 +EAPI=7
41
42 -inherit eutils autotools
43 +inherit autotools
44
45 DESCRIPTION="uu, xx, base64, binhex decoder"
46 HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/"
47 @@ -12,28 +12,21 @@ SRC_URI="http://www.fpx.de/fp/Software/UUDeview/download/${P}.tar.gz"
48 LICENSE="GPL-2"
49 SLOT="0"
50 KEYWORDS="alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
51 -IUSE=""
52 -
53 -RDEPEND=""
54 -DEPEND=""
55 -
56 -DOCS=( HISTORY INSTALL README )
57
58 PATCHES=(
59 - "${FILESDIR}/${P}-bugfixes.patch"
60 - "${FILESDIR}/${P}-CVE-2004-2265.patch"
61 - "${FILESDIR}/${P}-CVE-2008-2266.patch"
62 - "${FILESDIR}/${P}-man.patch"
63 - "${FILESDIR}/${P}-rename.patch"
64 - "${FILESDIR}/${P}-makefile.patch"
65 + "${FILESDIR}"/${P}-bugfixes.patch
66 + "${FILESDIR}"/${P}-CVE-2004-2265.patch
67 + "${FILESDIR}"/${P}-CVE-2008-2266.patch
68 + "${FILESDIR}"/${P}-man.patch
69 + "${FILESDIR}"/${P}-rename.patch
70 + "${FILESDIR}"/${P}-makefile.patch
71 )
72
73 -src_prepare() {
74 - epatch "${PATCHES[@]}"
75 -
76 - mv configure.in configure.ac || die
77 +DOCS=( HISTORY INSTALL README )
78
79 - epatch_user
80 +src_prepare() {
81 + default
82 + mv configure.{in,ac} || die
83 eautoreconf
84 }