Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/unzip/
Date: Sat, 10 Aug 2019 17:12:42
Message-Id: 1565457130.df4702681d78ae576253a6672d7f985a12f38b98.whissi@gentoo
1 commit: df4702681d78ae576253a6672d7f985a12f38b98
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 10 17:09:34 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 10 17:12:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df470268
7
8 app-arch/unzip: bump EAPI
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 app-arch/unzip/unzip-6.0_p25.ebuild | 22 +++++++++++-----------
14 1 file changed, 11 insertions(+), 11 deletions(-)
15
16 diff --git a/app-arch/unzip/unzip-6.0_p25.ebuild b/app-arch/unzip/unzip-6.0_p25.ebuild
17 index bdbcb3b4e53..dcd460f9f04 100644
18 --- a/app-arch/unzip/unzip-6.0_p25.ebuild
19 +++ b/app-arch/unzip/unzip-6.0_p25.ebuild
20 @@ -1,9 +1,9 @@
21 # Copyright 1999-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=7
26
27 -inherit eutils toolchain-funcs flag-o-matic
28 +inherit toolchain-funcs flag-o-matic
29
30 MY_PV="${PV//.}"
31 MY_PV="${MY_PV%_p*}"
32 @@ -57,14 +57,14 @@ src_prepare() {
33
34 src_configure() {
35 case ${CHOST} in
36 - i?86*-*linux*) TARGET="linux_asm" ;;
37 - *linux*) TARGET="linux_noasm" ;;
38 - i?86*-*bsd* | \
39 - i?86*-dragonfly*) TARGET="freebsd" ;; # mislabelled bsd with x86 asm
40 - *bsd* | *dragonfly*) TARGET="bsd" ;;
41 - *-darwin*) TARGET="macosx" ;;
42 - *-cygwin*) TARGET="cygwin" ;;
43 - *) die "Unknown target; please update the ebuild to handle ${CHOST} " ;;
44 + i?86*-*linux*) TARGET="linux_asm" ;;
45 + *linux*) TARGET="linux_noasm" ;;
46 + i?86*-*bsd* | \
47 + i?86*-dragonfly*) TARGET="freebsd" ;; # mislabelled bsd with x86 asm
48 + *bsd* | *dragonfly*) TARGET="bsd" ;;
49 + *-darwin*) TARGET="macosx" ;;
50 + *-cygwin*) TARGET="cygwin" ;;
51 + *) die "Unknown target; please update the ebuild to handle ${CHOST} " ;;
52 esac
53
54 [[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
55 @@ -75,7 +75,7 @@ src_configure() {
56
57 src_compile() {
58 ASFLAGS="${ASFLAGS} $(get_abi_var CFLAGS)" \
59 - emake -f unix/Makefile ${TARGET}
60 + emake -f unix/Makefile ${TARGET}
61 }
62
63 src_install() {