From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/sccache/
Date: Thu, 11 Jun 2020 02:00:18 +0000 (UTC) [thread overview]
Message-ID: <1591840801.9ffa2b34eb0ec951221636e3108295b5741a8485.gyakovlev@gentoo> (raw)
commit: 9ffa2b34eb0ec951221636e3108295b5741a8485
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 11 01:41:54 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Thu Jun 11 02:00:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ffa2b34
dev-util/sccache: add live ebuild
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
dev-util/sccache/sccache-9999.ebuild | 95 ++++++++++++++++++++++++++++++++++++
1 file changed, 95 insertions(+)
diff --git a/dev-util/sccache/sccache-9999.ebuild b/dev-util/sccache/sccache-9999.ebuild
new file mode 100644
index 00000000000..df4af3cbb8a
--- /dev/null
+++ b/dev-util/sccache/sccache-9999.ebuild
@@ -0,0 +1,95 @@
+# Copyright 2017-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# generated with cargo-ebuild 0.2.0
+# needs itoa-0.3.4 for tests
+# added bincode-1.2.0 manually
+CRATES="
+"
+
+inherit cargo eutils
+
+DESCRIPTION="ccache/distcc like tool with support for rust and cloud storage"
+HOMEPAGE="https://github.com/mozilla/sccache/"
+
+if [ ${PV} == "9999" ] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/mozilla/sccache.git"
+else
+ SRC_URI="https://github.com/mozilla/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+ $(cargo_crate_uris ${CRATES})"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 ISC MIT Unlicense ZLIB"
+SLOT="0"
+IUSE="azure dist-client dist-server gcs memcached redis s3"
+
+DEPEND="
+ dist-server? ( dev-libs/openssl:0= )
+ gcs? ( dev-libs/openssl:0= )
+"
+
+RDEPEND="${DEPEND}
+ dist-server? ( sys-apps/bubblewrap )
+"
+
+QA_FLAGS_IGNORED="usr/bin/sccache*"
+
+src_unpack() {
+ if [[ "${PV}" == *9999* ]]; then
+ git-r3_src_unpack
+ cargo_live_src_unpack
+ else
+ cargo_src_unpack
+ fi
+}
+
+src_configure() {
+ myfeatures=(
+ $(usev azure)
+ $(usev dist-client)
+ $(usev dist-server)
+ $(usev gcs)
+ $(usev memcached)
+ $(usev redis)
+ $(usev s3)
+ )
+}
+
+src_compile() {
+ cargo_src_compile ${myfeatures:+--features "${myfeatures[*]}"} --no-default-features
+}
+
+src_install() {
+ cargo_src_install ${myfeatures:+--features "${myfeatures[*]}"} --no-default-features
+
+ keepdir /etc/sccache
+
+ einstalldocs
+ dodoc -r docs/.
+
+ if use dist-server; then
+ newinitd "${FILESDIR}"/server.initd sccache-server
+ newconfd "${FILESDIR}"/server.confd sccache-server
+
+ newinitd "${FILESDIR}"/scheduler.initd sccache-scheduler
+ newconfd "${FILESDIR}"/scheduler.confd sccache-scheduler
+ fi
+}
+
+src_test() {
+ if [[ "${PV}" == *9999* ]]; then
+ ewarn "tests are always broken for ${PV} (require network), skipping"
+ else
+ cargo_src_test ${myfeatures:+--features "${myfeatures[*]}"} --no-default-features
+ fi
+}
+
+pkg_postinst() {
+ ewarn "${PN} is experimental, please use with care"
+ use memcached && optfeature "memcached backend support" net-misc/memcached
+ use redis && optfeature "redis backend support" dev-db/redis
+}
next reply other threads:[~2020-06-11 2:00 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-11 2:00 Georgy Yakovlev [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-13 8:56 [gentoo-commits] repo/gentoo:master commit in: dev-util/sccache/ Petr Vaněk
2025-03-12 12:04 Petr Vaněk
2025-03-10 3:02 Sam James
2025-03-10 3:02 Sam James
2025-03-10 3:02 Sam James
2025-01-14 4:53 Sam James
2025-01-14 4:53 Sam James
2024-12-11 2:13 Sam James
2024-11-25 0:02 Sam James
2024-11-25 0:02 Sam James
2024-11-25 0:02 Sam James
2024-11-25 0:02 Sam James
2024-03-06 3:37 Sam James
2023-06-27 16:28 Sam James
2023-06-27 7:54 Sam James
2022-09-28 2:45 Georgy Yakovlev
2022-09-27 20:52 Georgy Yakovlev
2021-07-24 6:09 Georgy Yakovlev
2021-07-24 2:45 Georgy Yakovlev
2021-02-25 23:52 Georgy Yakovlev
2021-02-25 23:48 Georgy Yakovlev
2021-02-25 23:47 Georgy Yakovlev
2020-09-23 6:33 Georgy Yakovlev
2020-09-23 6:33 Georgy Yakovlev
2020-02-29 7:46 Georgy Yakovlev
2020-02-18 6:16 Georgy Yakovlev
2019-12-30 9:39 Georgy Yakovlev
2019-08-09 8:38 Georgy Yakovlev
2019-01-26 7:41 Georgy Yakovlev
2019-01-26 7:32 Georgy Yakovlev
2019-01-26 3:50 Georgy Yakovlev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1591840801.9ffa2b34eb0ec951221636e3108295b5741a8485.gyakovlev@gentoo \
--to=gyakovlev@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox