Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ccache/
Date: Mon, 06 Jan 2020 23:28:04
Message-Id: 1578353275.fcbb8e513b05be3136ea3c6b1f157cc8a8009e63.slyfox@gentoo
1 commit: fcbb8e513b05be3136ea3c6b1f157cc8a8009e63
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 6 23:22:29 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 6 23:27:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcbb8e51
7
8 dev-util/ccache: bump up to 3.7.7
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-util/ccache/Manifest | 1 +
14 dev-util/ccache/ccache-3.7.7.ebuild | 88 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 89 insertions(+)
16
17 diff --git a/dev-util/ccache/Manifest b/dev-util/ccache/Manifest
18 index 4e4b2167874..f5b88ee8fb0 100644
19 --- a/dev-util/ccache/Manifest
20 +++ b/dev-util/ccache/Manifest
21 @@ -2,3 +2,4 @@ DIST ccache-3.7.2.tar.xz 351168 BLAKE2B 6e5c8847f961bd5aa2cf325e582ece9e8bfb9c01
22 DIST ccache-3.7.4.tar.xz 351576 BLAKE2B fa2a9c051ff3f9c0550c6301e8d6c9e0eb7ac68687a30a6e8c1ee794ecd6b62925fdc940d493a9fb22d9094c5f2a0f3b2788c6291430ca532661ea6ddef45456 SHA512 cc382f37f7efb30a64f6fc2b136ef7424fe51795a778dbb18dde7c9e80636515f242f51c3ef3231f74d154e65ed9e815abf8241eb1a8f4e0b4fe4f533ea27146
23 DIST ccache-3.7.5.tar.xz 352440 BLAKE2B 6761d7a1a8c8086081fa46d50db1dce719856910da6324c9863a3f3731fdb0f5153e0d93a5c575074d1993650623e4e4b02d83dd3b656a31cb9be04ad6b58efa SHA512 d66eb9d923c3e4663242a034860bd198175e08274a295b6d5d94e6cd69fe32afa3fb8c228d64d5c5dda025e6f97d0aef0586ce4dbd66e8ce3a23093331f1841f
24 DIST ccache-3.7.6.tar.xz 352692 BLAKE2B 97f6c3ea119b7f1f4fdab1dc88ac34a23bd8f893a1e399dd9f934b345ea27999b3750be6b474caf2bcaea77eb9281f99623312aa55dc5b5ffb7cf5e670b173f4 SHA512 c92a699b9761bbbde1666a9bc2718070a5beb24f7054d91226790c7903fe2e26a02d0782822bc811aaffcd88df3cd3e011a19061eb69569ed7140765cef8d6ba
25 +DIST ccache-3.7.7.tar.xz 351592 BLAKE2B 0b211cb77ceb42b7ee5dfcde98d9f53bf222cf18b8d38a7cf6fc9631c5e1c79ca82e6d0a0dbacfe2d5f61b2acefebe202e06fc3b8035f0f25a5f9954554a18cd SHA512 f93380aeb45e815964abc3b62f1963abafe22e0c6a7b61d039e710c7f935221e02678e21af65add4fd59fd5a141824ab95f4a7afc8dd557de36737c365cab816
26
27 diff --git a/dev-util/ccache/ccache-3.7.7.ebuild b/dev-util/ccache/ccache-3.7.7.ebuild
28 new file mode 100644
29 index 00000000000..ee06e436089
30 --- /dev/null
31 +++ b/dev-util/ccache/ccache-3.7.7.ebuild
32 @@ -0,0 +1,88 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit readme.gentoo-r1
39 +
40 +DESCRIPTION="fast compiler cache"
41 +HOMEPAGE="https://ccache.dev/"
42 +SRC_URI="https://github.com/ccache/ccache/releases/download/v${PV}/ccache-${PV}.tar.xz"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86"
47 +IUSE="test"
48 +
49 +DEPEND="app-arch/xz-utils
50 + sys-libs/zlib"
51 +RDEPEND="${DEPEND}
52 + dev-util/shadowman
53 + sys-apps/gentoo-functions"
54 +# clang-specific tests use it to compare objects for equality.
55 +# Let's pull in the dependency unconditionally.
56 +DEPEND+="
57 + test? ( dev-libs/elfutils )"
58 +
59 +RESTRICT="!test? ( test )"
60 +
61 +PATCHES=(
62 + "${FILESDIR}"/${PN}-3.5-nvcc-test.patch
63 +)
64 +
65 +src_prepare() {
66 + default
67 +
68 + # make sure we always use system zlib
69 + rm -rf src/zlib || die
70 + sed \
71 + -e "/^EPREFIX=/s:'':'${EPREFIX}':" \
72 + "${FILESDIR}"/ccache-config-3 > ccache-config || die
73 +}
74 +
75 +src_compile() {
76 + emake V=1
77 +}
78 +
79 +src_test() {
80 + emake check V=1
81 +}
82 +
83 +src_install() {
84 + DOCS=( doc/{AUTHORS,MANUAL,NEWS}.adoc CONTRIBUTING.md README.md )
85 + default
86 +
87 + dobin ccache-config
88 + insinto /usr/share/shadowman/tools
89 + newins - ccache <<<'/usr/lib/ccache/bin'
90 +
91 + DOC_CONTENTS="
92 +To use ccache with **non-Portage** C compiling, add
93 +'${EPREFIX}/usr/lib/ccache/bin' to the beginning of your path, before
94 +'${EPREFIX}/usr/bin'. Portage will automatically take advantage of ccache with
95 +no additional steps. If this is your first install of ccache, type
96 +something like this to set a maximum cache size of 2GB:\\n
97 +# ccache -M 2G\\n
98 +If you are upgrading from an older version than 3.x you should clear all of your caches like so:\\n
99 +# CCACHE_DIR='${CCACHE_DIR:-${PORTAGE_TMPDIR}/ccache}' ccache -C\\n
100 +ccache now supports sys-devel/clang and dev-lang/icc, too!"
101 +
102 + readme.gentoo_create_doc
103 +}
104 +
105 +pkg_prerm() {
106 + if [[ -z ${REPLACED_BY_VERSION} && ${ROOT:-/} == / ]] ; then
107 + eselect compiler-shadow remove ccache
108 + fi
109 +}
110 +
111 +pkg_postinst() {
112 + if [[ ${ROOT:-/} == / ]]; then
113 + eselect compiler-shadow update ccache
114 + fi
115 +
116 + # nuke broken symlinks from previous versions that shouldn't exist
117 + rm -rf "${EROOT}"/usr/lib/ccache.backup || die
118 +
119 + readme.gentoo_print_elog
120 +}