Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bc/
Date: Sat, 28 Oct 2017 13:10:38
Message-Id: 1509196221.883fc873f279874fcfc94739fa45fdee0107d668.whissi@gentoo
1 commit: 883fc873f279874fcfc94739fa45fdee0107d668
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 28 13:09:57 2017 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 28 13:10:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883fc873
7
8 sys-devel/bc: Drop old
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 sys-devel/bc/bc-1.07.1.ebuild | 50 -------------------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/sys-devel/bc/bc-1.07.1.ebuild b/sys-devel/bc/bc-1.07.1.ebuild
16 deleted file mode 100644
17 index 1637640c48d..00000000000
18 --- a/sys-devel/bc/bc-1.07.1.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -
26 -inherit eutils flag-o-matic toolchain-funcs
27 -
28 -DESCRIPTION="Handy console-based calculator utility"
29 -HOMEPAGE="https://www.gnu.org/software/bc/bc.html"
30 -SRC_URI="mirror://gnu-alpha/bc/${P}.tar.gz
31 - mirror://gnu/bc/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2 LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
36 -IUSE="libedit readline static"
37 -
38 -RDEPEND="!readline? ( libedit? ( dev-libs/libedit:= ) )
39 - readline? (
40 - >=sys-libs/readline-4.1:0=
41 - >=sys-libs/ncurses-5.2:=
42 - )"
43 -DEPEND="${RDEPEND}
44 - sys-apps/ed
45 - sys-devel/flex"
46 -
47 -src_configure() {
48 - local libedit
49 - if use readline ; then
50 - libedit="--without-libedit"
51 - else
52 - libedit=$(use_with libedit)
53 - fi
54 - use static && append-ldflags -static
55 - # Clobber any CONFIG_SHELL setting the user has forced on us.
56 - # We should be able to delete this w/the next release as it
57 - # should use updated autoconf.
58 - CONFIG_SHELL=/bin/bash \
59 - econf \
60 - $(use_with readline) \
61 - ${libedit}
62 -
63 - # Do not regen docs -- configure produces a small fragment that includes
64 - # the version info which causes all pages to regen (newer file). #554774
65 - touch -r doc doc/*
66 -}
67 -
68 -src_compile() {
69 - emake AR="$(tc-getAR)"
70 -}