Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gimps/
Date: Thu, 15 Feb 2018 14:27:47
Message-Id: 1518704839.1353f4a9eb41842424aaf4f6dcfe89c58eb87bf9.monsieurp@gentoo
1 commit: 1353f4a9eb41842424aaf4f6dcfe89c58eb87bf9
2 Author: PPed72 <paolo.pedroni <AT> iol <DOT> it>
3 AuthorDate: Mon Feb 12 10:40:43 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 15 14:27:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1353f4a9
7
8 sci-mathematics/gimps: version bump to 29.4 build 8.
9
10 Closes: https://bugs.gentoo.org/647404
11 Closes: https://github.com/gentoo/gentoo/pull/7163
12
13 sci-mathematics/gimps/Manifest | 1 +
14 sci-mathematics/gimps/gimps-29.4.8.ebuild | 68 +++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/sci-mathematics/gimps/Manifest b/sci-mathematics/gimps/Manifest
18 index 38024671cd6..a967e36314e 100644
19 --- a/sci-mathematics/gimps/Manifest
20 +++ b/sci-mathematics/gimps/Manifest
21 @@ -4,3 +4,4 @@ DIST p95v294b5.linux32.tar.gz 5455113 BLAKE2B a615ff15a77eaeebd6a1324f59e6b780d8
22 DIST p95v294b5.linux64.tar.gz 6244650 BLAKE2B c81623f70c66ec9443c1f4858851525b9064bcfd948bb831f63774e6a09ee2e86eb2e295db4d849ac40e55f1d5166a470e248b5eac0a4b2a4322b7041f1032a9 SHA512 e315ea226649df2135895a1206e5845fd05587ad190b676228e5e1cfca04a11b698f1a7d5b8e7c96b0cd174ce3dbeb6000240b67a3f0f90572f3bf15166020e5
23 DIST p95v294b7.linux32.tar.gz 5455201 BLAKE2B 2d542c06fb490f6619884be3cd510fb77e130184d2b7d3bb44fd375fcd7c95e38ef4cf80ed01079c9f395d6e8a526930a07357f20e14277beba4e232f4e2ca27 SHA512 21ee6a8f0a4482bdb22d80093b24a8b9d7e091577628dc797ad01d3a0ab98e946814c70a6313e2624fffa6658454707f88d24608e107048fc6361d15aa5a7fbe
24 DIST p95v294b7.linux64.tar.gz 6244730 BLAKE2B ca5d0aad96e9bd5fb1bcb232435a26b7d8c2b9d869a6dc638d883fb892013df7a823abb0dae4545c2191b5f39b9cd29ee83400f452fbe63255f2dca899ad6bce SHA512 0579ea9ca1977884c8c50f8c8655b0fef1d5e2b456adca23d6d93542734727f265dc8f784c27fc9510c89afeec7386d4a9a9e9b5d691a97fed8189bef5577b3d
25 +DIST p95v294b8.linux64.tar.gz 6244091 BLAKE2B ec02f582296f8959765f97526646f2f4a679a2b61d3c8e8efc971bf765c7f3b5cd4a9e2667661bcc6b0a3a088d095671af9b1f371f0e671de495935d582bf8e7 SHA512 bec8ce2081e9e349317441bbaa724e5d21ddfa1e328ccb6a17af796d41b201d96b2835fc2afcd68e350b22213225812cafdfca7973a7cd2071c1460188b3245d
26
27 diff --git a/sci-mathematics/gimps/gimps-29.4.8.ebuild b/sci-mathematics/gimps/gimps-29.4.8.ebuild
28 new file mode 100644
29 index 00000000000..c6c82e67d5b
30 --- /dev/null
31 +++ b/sci-mathematics/gimps/gimps-29.4.8.ebuild
32 @@ -0,0 +1,68 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit pax-utils systemd readme.gentoo-r1 versionator
39 +
40 +DESCRIPTION="The Great Internet Mersenne Prime Search"
41 +HOMEPAGE="http://mersenne.org/"
42 +
43 +# The author has finally caved in to the pressure of putting the build
44 +# number in the package name. Some dark magic necessary to get to the
45 +# package name
46 +
47 +MY_PV=$(replace_version_separator 2 'b' )
48 +
49 +SRC_URI="
50 + amd64? ( ftp://mersenne.org/gimps/p95v${MY_PV/./}.linux64.tar.gz )"
51 +
52 +SLOT="0"
53 +LICENSE="GIMPS"
54 +KEYWORDS="-* ~amd64"
55 +
56 +# Since there are no statically linked binaries for this version of mprime,
57 +# and no static binaries for amd64 in general, we use the dynamically linked
58 +# ones and try to cover the .so deps with the packages listed in RDEPEND.
59 +# libgmp.so.10.3.2 is bundled within the .tar.gz, but we use the system one.
60 +
61 +DEPEND=""
62 +RDEPEND="net-misc/curl
63 + >=dev-libs/gmp-6.1.2"
64 +
65 +S="${WORKDIR}"
66 +I="/opt/gimps"
67 +
68 +QA_PREBUILT="opt/gimps/mprime"
69 +
70 +DOCS=( license.txt readme.txt stress.txt whatsnew.txt undoc.txt )
71 +
72 +src_install() {
73 + dodir ${I} /var/lib/gimps
74 + pax-mark m mprime
75 + cp mprime "${D}/${I}" || die
76 + fperms a-w "${I}/mprime"
77 + fowners root:0 "${I}"
78 + fowners root:0 "${I}/mprime"
79 +
80 + einstalldocs
81 +
82 + readme.gentoo_create_doc
83 +
84 + newinitd "${FILESDIR}/${PN}-28.9-init.d" gimps
85 + newconfd "${FILESDIR}/${PN}-25.6-conf.d" gimps
86 +
87 + systemd_dounit "${FILESDIR}/${PN}.service"
88 + systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles" "${PN}.conf"
89 +}
90 +
91 +pkg_postinst() {
92 + readme.gentoo_print_elog
93 +}
94 +
95 +pkg_postrm() {
96 + echo
97 + einfo "GIMPS data files were not removed."
98 + einfo "Remove them manually from /var/lib/gimps/"
99 + echo
100 +}