Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/calc: metadata.xml ChangeLog calc-2.12.4.0.ebuild calc-2.11.9.3.ebuild calc-2.11.10.1.ebuild
Date: Tue, 05 Jan 2010 21:35:30
Message-Id: E1NSH3n-0000AI-Dm@stork.gentoo.org
1 bicatali 10/01/05 21:35:27
2
3 Modified: metadata.xml ChangeLog
4 Added: calc-2.12.4.0.ebuild
5 Removed: calc-2.11.9.3.ebuild calc-2.11.10.1.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 sci-mathematics/calc/metadata.xml
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/metadata.xml?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/metadata.xml?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/metadata.xml?r1=1.2&r2=1.3
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/calc/metadata.xml,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- metadata.xml 31 Jul 2006 03:53:29 -0000 1.2
24 +++ metadata.xml 5 Jan 2010 21:35:27 -0000 1.3
25 @@ -2,4 +2,11 @@
26 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
27 <pkgmetadata>
28 <herd>sci-mathematics</herd>
29 +<longdescription lang='en'>
30 + Calc is an interactive calculator which provides for easy large
31 + numeric calculations, but which also can be easily programmed for
32 + difficult or long calculations. It can accept a command line argument,
33 + in which case it executes that single command and exits. Otherwise, it
34 + enters interactive mode.
35 +</longdescription>
36 </pkgmetadata>
37
38
39
40 1.19 sci-mathematics/calc/ChangeLog
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/ChangeLog?rev=1.19&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/ChangeLog?rev=1.19&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/ChangeLog?r1=1.18&r2=1.19
45
46 Index: ChangeLog
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/calc/ChangeLog,v
49 retrieving revision 1.18
50 retrieving revision 1.19
51 diff -u -r1.18 -r1.19
52 --- ChangeLog 1 Jan 2010 17:33:41 -0000 1.18
53 +++ ChangeLog 5 Jan 2010 21:35:27 -0000 1.19
54 @@ -1,6 +1,13 @@
55 # ChangeLog for sci-mathematics/calc
56 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
57 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/ChangeLog,v 1.18 2010/01/01 17:33:41 flameeyes Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/ChangeLog,v 1.19 2010/01/05 21:35:27 bicatali Exp $
59 +
60 +*calc-2.12.4.0 (05 Jan 2010)
61 +
62 + 05 Jan 2010; Sébastien Fabbro <bicatali@g.o>
63 + -calc-2.11.9.3.ebuild, -calc-2.11.10.1.ebuild, +calc-2.12.4.0.ebuild,
64 + metadata.xml:
65 + Version bump
66
67 01 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
68 calc-2.12.2.2.ebuild:
69
70
71
72 1.1 sci-mathematics/calc/calc-2.12.4.0.ebuild
73
74 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/calc-2.12.4.0.ebuild?rev=1.1&view=markup
75 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/calc/calc-2.12.4.0.ebuild?rev=1.1&content-type=text/plain
76
77 Index: calc-2.12.4.0.ebuild
78 ===================================================================
79 # Copyright 1999-2010 Gentoo Foundation
80 # Distributed under the terms of the GNU General Public License v2
81 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/calc/calc-2.12.4.0.ebuild,v 1.1 2010/01/05 21:35:27 bicatali Exp $
82
83 EAPI=2
84 inherit eutils
85
86 DESCRIPTION="An arbitrary precision C-like arithmetic system"
87 HOMEPAGE="http://www.isthe.com/chongo/tech/comp/calc/"
88 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
89
90 SLOT="0"
91 LICENSE="LGPL-2"
92 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
93
94 IUSE=""
95
96 DEPEND=">=sys-libs/ncurses-5.2
97 >=sys-libs/readline-4.2"
98 RDEPEND="${DEPEND}"
99
100 src_compile() {
101 # parallel compilation hard to fix. better to leave upstream.
102 emake -j1 \
103 DEBUG="${CFLAGS}" \
104 CALCPAGER=${PAGER} \
105 USE_READLINE="-DUSE_READLINE" \
106 READLINE_LIB="-lreadline -lhistory -lncurses" \
107 all || die "emake failed"
108
109 if echo "${LD_PRELOAD}" | grep -q "sandbox"; then
110 ewarn "Can't run check when running in sandbox - see bug #59676"
111 else
112 make chk || die "Check failed"
113 fi
114 }
115
116 src_install() {
117 emake T="${D}" LIBDIR="/usr/$(get_libdir)" install || die "emake install failed"
118 dodoc BUGS CHANGES LIBRARY README
119 }