Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/calc/
Date: Sun, 03 Jun 2018 02:59:16
Message-Id: 1527994716.5f03faa49d75f9355b2220f64de1226046c8f624.bman@gentoo
1 commit: 5f03faa49d75f9355b2220f64de1226046c8f624
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:06:12 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f03faa4
7
8 sci-mathematics/calc: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sci-mathematics/calc/Manifest | 1 -
13 sci-mathematics/calc/calc-2.12.2.2.ebuild | 53 -------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/sci-mathematics/calc/Manifest b/sci-mathematics/calc/Manifest
17 index bc73ca8c03e..86457bd7db8 100644
18 --- a/sci-mathematics/calc/Manifest
19 +++ b/sci-mathematics/calc/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST calc-2.12.2.2.tar.bz2 864687 BLAKE2B 0ef36c1ff24537d3c713dff7e7dad4729d4ecbf7b7d38ac80bc98924957158eb1b22dbdb49bf26e0542d69b64c5ea7832bd467025efff07923cd263ca119dd01 SHA512 701e8414366f112aa0aba2359a0d76037994fa647d14beb216a23a05e328665b2e0218b902b5e2a447ccf6277795baef4c68e278e12dfc40b1ee95f23858b9f4
22 DIST calc-2.12.4.13.tar.bz2 970778 BLAKE2B 0e34df7d445a84de89e2c662ea7e8da4a350eaeef984b5027befe5947bf8e863180dd07bbe525c4bc04a6e3aa53bfbb2f3d719c8bfff3c238b16941b701d4b4d SHA512 7b7136c793917652ce2f2b3866b2db16a69dbead729d8a72b8c1359ebb8a4e1d4e7a3a8b214f8e85b9ccf41193ba6ffcb49926cc68f494e2b6cdff58559f2534
23 DIST calc-2.12.5.4.tar.bz2 956258 BLAKE2B 47c2ab46c47baf0d1f1d202a36e0d42cf0b25f7eecf61815814081b2f76aa65dc8cc4e970078a5176266ce1332751169424d1c6d2c16ff148a1b014986b56d47 SHA512 07c89059d4718b29e649a5198e0bb6c6a6d9c6705a0050ad744146f1649c65d0fb1277a68eb45daca907b08ef9336de2002808a5f9b2312e413eb3afb74d491f
24
25 diff --git a/sci-mathematics/calc/calc-2.12.2.2.ebuild b/sci-mathematics/calc/calc-2.12.2.2.ebuild
26 deleted file mode 100644
27 index a153e579b9f..00000000000
28 --- a/sci-mathematics/calc/calc-2.12.2.2.ebuild
29 +++ /dev/null
30 @@ -1,53 +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 eutils multilib
37 -
38 -DESCRIPTION="An arbitrary precision C-like arithmetic system"
39 -HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
41 -
42 -SLOT="0"
43 -LICENSE="LGPL-2"
44 -KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~x86"
45 -
46 -IUSE=""
47 -
48 -DEPEND=">=sys-libs/ncurses-5.2
49 - >=sys-libs/readline-4.2"
50 -
51 -RDEPEND="${DEPEND}
52 - >=sys-apps/less-348"
53 -
54 -src_unpack() {
55 - unpack ${A}
56 - cd "${S}"
57 - epatch "${FILESDIR}"/${P}-libdir-fix.patch
58 -
59 - sed -e "s:LIBDIR= /usr/lib:LIBDIR= /usr/$(get_libdir):" \
60 - -i Makefile || die "Failed to fix multilib in makefile"
61 -}
62 -
63 -src_compile() {
64 - # bug #299224
65 - emake -j1 \
66 - T="${D}" \
67 - DEBUG="${CFLAGS}" \
68 - CALCPAGER=less \
69 - USE_READLINE="-DUSE_READLINE" \
70 - READLINE_LIB="-lreadline -lhistory -lncurses" \
71 - all \
72 - || die
73 - if echo "${LD_PRELOAD}" | grep -q "sandbox"; then
74 - ewarn "Can't run check when running in sandbox - see bug #59676"
75 - else
76 - make chk || die "Check failed"
77 - fi
78 -}
79 -
80 -src_install() {
81 - make T="${D}" install || die
82 - dodoc BUGS CHANGES LIBRARY README
83 -}