Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/extract-xiso/
Date: Tue, 12 Feb 2019 10:29:50
Message-Id: 1549967376.130b49fc4045002bf97c88bf67625751e783eb6b.zlogene@gentoo
1 commit: 130b49fc4045002bf97c88bf67625751e783eb6b
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 12 10:29:36 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 12 10:29:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=130b49fc
7
8 app-cdr/extract-xiso: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-cdr/extract-xiso/Manifest | 1 -
14 app-cdr/extract-xiso/extract-xiso-2.5.ebuild | 39 ----------------------------
15 2 files changed, 40 deletions(-)
16
17 diff --git a/app-cdr/extract-xiso/Manifest b/app-cdr/extract-xiso/Manifest
18 index 7b3a70496ce..f460511db0d 100644
19 --- a/app-cdr/extract-xiso/Manifest
20 +++ b/app-cdr/extract-xiso/Manifest
21 @@ -1,2 +1 @@
22 DIST extract-xiso-2.7.1.tar.gz 207518 BLAKE2B bf99e2555e85344db318bdedf0e6dfb80b5f8cd079dc2083ba94e06c62032235d88296909a1aa887180ce94ce9d80a6b39aab25ed99b04741951aed79c2e8cdb SHA512 a7153d96fa7cfb01dfa385a0984d94dc0fa5ac14ce9f7e2d50287b7e1edbb6a4ba84b6b874aa2628b1a82f23b30687958e411699487896cc48787f48e0e012c6
23 -DIST extract-xiso_v2.5_src.tgz 207052 BLAKE2B 36363ac23bff01c28ddfee46990cae5e193841a294549b1b9f29c401f833e42e5f92e0157aa07d1cb2bfe272eb25a0f96e3e285b6a06abc3a7d06868258cf649 SHA512 ae73d5814167894f60530f9cb88485a9bcc39a60da87ed20b8b579f8e3f91542df102c2f9cb868ce61ff61c1a5add63d4bec66097f039c906353762358760dec
24
25 diff --git a/app-cdr/extract-xiso/extract-xiso-2.5.ebuild b/app-cdr/extract-xiso/extract-xiso-2.5.ebuild
26 deleted file mode 100644
27 index f9010735835..00000000000
28 --- a/app-cdr/extract-xiso/extract-xiso-2.5.ebuild
29 +++ /dev/null
30 @@ -1,39 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=0
35 -
36 -inherit toolchain-funcs
37 -
38 -MY_PV=${PV/_beta/b}
39 -
40 -DESCRIPTION="Tool for extracting and creating optimised Xbox ISO images"
41 -HOMEPAGE="https://sourceforge.net/projects/extract-xiso"
42 -SRC_URI="mirror://sourceforge/extract-xiso/${PN}_v${MY_PV}_src.tgz"
43 -
44 -LICENSE="BSD-4"
45 -SLOT="0"
46 -KEYWORDS="amd64 ppc x86"
47 -IUSE=""
48 -
49 -S=${WORKDIR}/${PN}
50 -
51 -src_unpack() {
52 - unpack ${A}
53 - cd "${S}"
54 - sed -i \
55 - -e 's:__LINUX__:__linux__:' \
56 - *.[ch] */*.[ch] || die
57 -}
58 -
59 -doit() { echo "$@"; "$@"; }
60 -
61 -src_compile() {
62 - doit $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} \
63 - extract-xiso.c libftp-*/*.c -o extract-xiso || die
64 -}
65 -
66 -src_install() {
67 - dobin extract-xiso || die
68 - dodoc README.TXT
69 -}