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/bibutils/
Date: Sun, 25 Apr 2021 11:50:34
Message-Id: 1619351392.5471a85b38582f77123090ba8bcf8f5a5e27e7f0.soap@gentoo
1 commit: 5471a85b38582f77123090ba8bcf8f5a5e27e7f0
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Apr 25 11:49:52 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 11:49:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5471a85b
7
8 app-text/bibutils: Remove old 6.7
9
10 Closes: https://bugs.gentoo.org/710530
11 Closes: https://bugs.gentoo.org/722464
12
13 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
14 Signed-off-by: David Seifert <soap <AT> gentoo.org>
15
16 app-text/bibutils/Manifest | 1 -
17 app-text/bibutils/bibutils-6.7.ebuild | 47 -----------------------------------
18 2 files changed, 48 deletions(-)
19
20 diff --git a/app-text/bibutils/Manifest b/app-text/bibutils/Manifest
21 index d5f41c15c88..c72c9c3707b 100644
22 --- a/app-text/bibutils/Manifest
23 +++ b/app-text/bibutils/Manifest
24 @@ -1,2 +1 @@
25 DIST bibutils_6.10_src.tgz 590002 BLAKE2B 91ea6c961978d381a65c1d5071c541409609dd9fdeb664cd7e66eb4871c2ecd0dfd6b06857294ae6ec049751a5939be23518782a5e1f14fdf848918849269402 SHA512 43cf107ee6d1bf6bf27a6bf46e1f4cbd83a4b78ef355730a9f37282fac399ee21d78538248730be85c0a8f724344782dcc6ab68e50f857d8ac4ea24cc4102911
26 -DIST bibutils_6.7_src.tgz 580792 BLAKE2B 29c5863bc414ef7b2f362d95352c0e042c1bcc3275017df82b0206d96520b3f5c3fe1e12563577b84a8bd94b0677bf1ad04ecbd80dcbcc194a71037bbd6facba SHA512 08db07408eee26bce42dbd00b7e821ef41dc12c7ce847425e81145927bcfc6ea7180ff719056e089917811aa9675a09dd52e1e02b8187b8618f67647efcb1236
27
28 diff --git a/app-text/bibutils/bibutils-6.7.ebuild b/app-text/bibutils/bibutils-6.7.ebuild
29 deleted file mode 100644
30 index ae30674daea..00000000000
31 --- a/app-text/bibutils/bibutils-6.7.ebuild
32 +++ /dev/null
33 @@ -1,47 +0,0 @@
34 -# Copyright 1999-2019 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -inherit toolchain-funcs
39 -
40 -MY_P="${PN}_${PV}"
41 -DESCRIPTION="Interconverts between various bibliography formats using common XML intermediate"
42 -HOMEPAGE="https://sourceforge.net/p/bibutils/home/Bibutils/"
43 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tgz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="amd64 ~ppc ~x86"
48 -IUSE=""
49 -
50 -S=${WORKDIR}/${MY_P}
51 -
52 -src_configure() {
53 - # The custom configure script still sucks several releases later, so we'll
54 - # just do its job ourselves
55 - rm -f Makefile configure || die "Failed to purge old Makefile"
56 - sed \
57 - -e "s:REPLACE_CC:$(tc-getCC):g" \
58 - -e "s:REPLACE_EXEEXT::g" \
59 - -e "s:REPLACE_LIBTARGET:libbibutils.so:g" \
60 - -e "s:REPLACE_LIBEXT:.so:g" \
61 - -e "s:REPLACE_CFLAGS:${CFLAGS}:g" \
62 - -e "s:REPLACE_CLIBFLAGS:${CFLAGS} -fPIC:g" \
63 - -e "s:REPLACE_RANLIB:$(tc-getRANLIB):g" \
64 - -e 's:REPLACE_POSTFIX::g' \
65 - -e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
66 - -e "s:REPLACE_LIBINSTALLDIR:\"${D}/usr/$(get_libdir)\":g" \
67 - -e 's:make:$(MAKE):g' \
68 - Makefile_start > Makefile \
69 - || die "Failed to set up Makefile"
70 -
71 - cp lib/Makefile.dynamic lib/Makefile || die
72 - cp bin/Makefile.dynamic bin/Makefile || die
73 - cp test/Makefile.dynamic test/Makefile || die
74 -}
75 -
76 -src_install() {
77 - dodir /usr/bin
78 - emake install
79 - dodoc ChangeLog
80 -}