Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-misc/boinc-wrapper/
Date: Fri, 08 Oct 2021 18:28:54
Message-Id: 1633717720.0f6b470885579787b94868dd8274c41603b635e9.arthurzam@gentoo
1 commit: 0f6b470885579787b94868dd8274c41603b635e9
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 8 18:27:26 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 18:28:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f6b4708
7
8 sci-misc/boinc-wrapper: drop 7.16.16
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 sci-misc/boinc-wrapper/Manifest | 1 -
13 .../boinc-wrapper/boinc-wrapper-7.16.16.ebuild | 55 ----------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sci-misc/boinc-wrapper/Manifest b/sci-misc/boinc-wrapper/Manifest
17 index 909891f1b..a8d70e790 100644
18 --- a/sci-misc/boinc-wrapper/Manifest
19 +++ b/sci-misc/boinc-wrapper/Manifest
20 @@ -1,2 +1 @@
21 -DIST boinc-7.16.16.tar.gz 49599131 BLAKE2B 819ab85c19a684144711f77e669b892aa73c006b81c1d7ef7adbd9d580e1e8473ae27b52dc17953ee677c70fc78ed15df936afd740e629715f30f2b81d84ea6f SHA512 dd7042e176d6506c70de7866556ae73b2f45734df92038086d5b0414751f3da08dc571c49f0c26d747d3fb2577674d3ff8cdec7d3563861eaaaa5af9c1db0a0e
22 DIST boinc-7.16.17.tar.gz 49628624 BLAKE2B 87e266a29506ecaa41fd18a2521b08c291548a4e31f7748001e5214e6f1fada1ded8bb8b559635d4f9c7c256cd7829dcf9132c02448c559d5ceb13524ca42e0f SHA512 e9882f37ad5c83ed020155c8192228322932f83b88ed00d025dcda63bff2dca109ecdcbaf98b48c4522b841f545f32352e5c158ae0a41de0a1f2941ac8135221
23
24 diff --git a/sci-misc/boinc-wrapper/boinc-wrapper-7.16.16.ebuild b/sci-misc/boinc-wrapper/boinc-wrapper-7.16.16.ebuild
25 deleted file mode 100644
26 index e282280fd..000000000
27 --- a/sci-misc/boinc-wrapper/boinc-wrapper-7.16.16.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit toolchain-funcs
36 -
37 -MY_PN=${PN%%-*}
38 -MY_PV=$(ver_cut 1-2)
39 -DESCRIPTION="Wrapper to use non-BOINC apps with BOINC"
40 -HOMEPAGE="https://boinc.berkeley.edu/trac/wiki/WrapperApp"
41 -
42 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/client_release/${MY_PV}/${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
43 -KEYWORDS="~amd64 ~arm64 ~x86"
44 -S="${WORKDIR}/${MY_PN}-client_release-${MY_PV}-${PV}/samples/${PN#*-}"
45 -
46 -LICENSE="LGPL-3+ regexp-UofT"
47 -SLOT="0"
48 -
49 -# sci-misc/boinc doesn't have all necessary headers, so
50 -# we have to include from build root. All that said,
51 -# versions must not mismatch.
52 -RDEPEND="
53 - ~sci-misc/boinc-${PV}
54 - >=dev-libs/boinc-zip-${PV}
55 -"
56 -DEPEND="${RDEPEND}"
57 -
58 -PATCHES=( "${FILESDIR}"/${PN}-$(ver_cut 1-2)-makefile.patch )
59 -DOCS=( job.xml )
60 -
61 -src_configure() {
62 - cd ../.. || die
63 -
64 - bash ./generate_svn_version.sh || die
65 -
66 - # autotools would take an eternity to configure
67 - cat <<-EOF > "config.h"
68 - #ifndef BOINC_CONFIG_H
69 - #define BOINC_CONFIG_H
70 -
71 - #define HAVE_SYS_RESOURCE_H 1
72 - #define HAVE_SYS_TIME_H 1
73 - #define HAVE_SYS_WAIT_H 1
74 -
75 - #endif
76 - EOF
77 -
78 - tc-export CC CXX
79 -}
80 -
81 -src_install() {
82 - einstalldocs
83 - newbin wrapper boinc-wrapper
84 -}