Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/bibutils/
Date: Thu, 17 Jan 2019 21:48:12
Message-Id: 1547761680.feba1f61af1d14a3197807e01e962f4018608bd1.dilfridge@gentoo
1 commit: feba1f61af1d14a3197807e01e962f4018608bd1
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 17 21:47:36 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 17 21:48:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feba1f61
7
8 app-text/bibutils: Remove old
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 app-text/bibutils/Manifest | 1 -
14 app-text/bibutils/bibutils-4.12.ebuild | 37 ----------------------------------
15 2 files changed, 38 deletions(-)
16
17 diff --git a/app-text/bibutils/Manifest b/app-text/bibutils/Manifest
18 index 4d522560a79..ebad9e12db7 100644
19 --- a/app-text/bibutils/Manifest
20 +++ b/app-text/bibutils/Manifest
21 @@ -1,2 +1 @@
22 -DIST bibutils_4.12_src.tgz 447566 BLAKE2B 64d185963028f29f4efb64c63ee6ddb59961744d525d4dbaf28bdd1edb28ac8ea86529082995d11245c258895f27457c9d01594564a44caa837b0ba76052b969 SHA512 04329ecb685bf4d5314c6d3a2d5bb21e67112d73bcb49f5a7808a4082f32a9aecb40add4ec4b5320be35f49cd8e101dc1e35409e7c6cad8c39238d2122f91dd0
23 DIST bibutils_6.7_src.tgz 580792 BLAKE2B 29c5863bc414ef7b2f362d95352c0e042c1bcc3275017df82b0206d96520b3f5c3fe1e12563577b84a8bd94b0677bf1ad04ecbd80dcbcc194a71037bbd6facba SHA512 08db07408eee26bce42dbd00b7e821ef41dc12c7ce847425e81145927bcfc6ea7180ff719056e089917811aa9675a09dd52e1e02b8187b8618f67647efcb1236
24
25 diff --git a/app-text/bibutils/bibutils-4.12.ebuild b/app-text/bibutils/bibutils-4.12.ebuild
26 deleted file mode 100644
27 index e81090fd06f..00000000000
28 --- a/app-text/bibutils/bibutils-4.12.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=2
35 -inherit toolchain-funcs
36 -
37 -MY_P="${PN}_${PV}"
38 -DESCRIPTION="Interconverts between various bibliography formats using common XML intermediate"
39 -HOMEPAGE="http://www.scripps.edu/~cdputnam/software/bibutils/"
40 -SRC_URI="http://www.scripps.edu/~cdputnam/software/bibutils/${MY_P}_src.tgz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~ppc ~x86"
45 -IUSE=""
46 -
47 -S=${WORKDIR}/${MY_P}
48 -
49 -src_prepare() {
50 - # The custom configure script sucks, so we'll just do its
51 - # job ourselves
52 - rm -f Makefile configure || die "Failed to purge old Makefile"
53 - sed \
54 - -e "s:REPLACE_CC:CC=\"$(tc-getCC) ${CFLAGS}\":g" \
55 - -e "s:REPLACE_RANLIB:RANLIB=\"$(tc-getRANLIB)\":g" \
56 - -e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
57 - -e 's:REPLACE_POSTFIX::g' \
58 - -e 's:make:$(MAKE):g' \
59 - Makefile_start > Makefile \
60 - || die "Failed to set up Makefile"
61 -}
62 -
63 -src_install() {
64 - dodir /usr/bin
65 - emake install || die
66 - dodoc ChangeLog || die
67 -}