Gentoo Archives: gentoo-commits

From: "Thomas Kahle (tomka)" <tomka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/gimps: gimps-28.3.ebuild ChangeLog
Date: Fri, 07 Feb 2014 14:38:26
Message-Id: 20140207143822.0572C2004C@flycatcher.gentoo.org
1 tomka 14/02/07 14:38:21
2
3 Modified: ChangeLog
4 Added: gimps-28.3.ebuild
5 Log:
6 bump to 28.3
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)
9
10 Revision Changes Path
11 1.62 sci-mathematics/gimps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.62&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 13 Nov 2013 20:00:34 -0000 1.61
24 +++ ChangeLog 7 Feb 2014 14:38:21 -0000 1.62
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-mathematics/gimps
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.61 2013/11/13 20:00:34 tomka Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.62 2014/02/07 14:38:21 tomka Exp $
31 +
32 +*gimps-28.3 (07 Feb 2014)
33 +
34 + 07 Feb 2014; Thomas Kahle <tomka@g.o> +gimps-28.3.ebuild:
35 + bump to 28.3
36
37 *gimps-27.9-r1 (13 Nov 2013)
38
39
40
41
42 1.1 sci-mathematics/gimps/gimps-28.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-28.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-28.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gimps-28.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/gimps-28.3.ebuild,v 1.1 2014/02/07 14:38:21 tomka Exp $
52
53 EAPI=4
54
55 inherit pax-utils
56
57 DESCRIPTION="The Great Internet Mersenne Prime Search"
58 HOMEPAGE="http://mersenne.org/"
59 SRC_URI="
60 amd64? ( ftp://mersenne.org/gimps/p95v${PV/./}.linux64.tar.gz )"
61
62 SLOT="0"
63 LICENSE="GIMPS"
64 KEYWORDS="-* ~amd64"
65 IUSE=""
66
67 # Since there are no statically linked binaries for this version of mprime,
68 # and no static binaries for amd64 in general, we use the dynamically linked
69 # ones and try to cover the .so deps with the packages listed in RDEPEND.
70 DEPEND=""
71 RDEPEND="net-misc/curl"
72
73 RESTRICT="binchecks"
74
75 S="${WORKDIR}"
76 I="/opt/gimps"
77
78 QA_PREBUILT="opt/gimps/mprime"
79
80 src_install() {
81 dodir ${I} /var/lib/gimps
82 pax-mark m mprime
83 cp mprime "${D}/${I}"
84 fperms a-w "${I}/mprime"
85 fowners root:0 "${I}"
86 fowners root:0 "${I}/mprime"
87
88 dodoc license.txt readme.txt stress.txt whatsnew.txt undoc.txt
89
90 newinitd "${FILESDIR}/${PN}-26.6-r1-init.d" gimps
91 newconfd "${FILESDIR}/${PN}-25.6-conf.d" gimps
92 }
93
94 pkg_postinst() {
95 echo
96 einfo "You can use \`/etc/init.d/gimps start\` to start a GIMPS client in the"
97 einfo "background at boot. Have a look at /etc/conf.d/gimps and check some"
98 einfo "configuration options."
99 einfo
100 einfo "If you don't want to use the init script to start gimps, remember to"
101 einfo "pass it an additional command line parameter specifying where the data"
102 einfo "files are to be stored, e.g.:"
103 einfo " ${I}/mprime -w/var/lib/gimps"
104 echo
105 }
106
107 pkg_postrm() {
108 echo
109 einfo "GIMPS data files were not removed."
110 einfo "Remove them manually from /var/lib/gimps/"
111 echo
112 }