From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/brotli/
Date: Thu, 27 Aug 2020 16:49:57 +0000 (UTC) [thread overview]
Message-ID: <1598546985.c0c1d322aae1744982fc5fa2ae6c8cc545db97f1.candrews@gentoo> (raw)
commit: c0c1d322aae1744982fc5fa2ae6c8cc545db97f1
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 27 16:49:45 2020 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Aug 27 16:49:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0c1d322
app-arch/brotli: 1.0.9 version bump
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
app-arch/brotli/Manifest | 1 +
app-arch/brotli/brotli-1.0.9.ebuild | 79 +++++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-arch/brotli/Manifest b/app-arch/brotli/Manifest
index 98f703dc332..5f839800926 100644
--- a/app-arch/brotli/Manifest
+++ b/app-arch/brotli/Manifest
@@ -1,2 +1,3 @@
DIST brotli-1.0.6.tar.gz 23827656 BLAKE2B 8d31eb1c4119de44702f2239fba9db72f1ae81801d06e51716432ff2f8aa78259c52cbd57b8fcd005c1bc14ada81b6e47a35c5d3864bb10bb02d113e30bd321b SHA512 b9847375471de3ae815ef4bb45a29653c343fad0a891a79d5132fcdee34c85caafd82289c8b413c3ef609049f2e8c4af9f9abd1736a2408ba44544c5fefc0010
DIST brotli-1.0.7.tar.gz 23827908 BLAKE2B b9fc554cd23c8387b648638b6f9bb2d29fa87035856d03cf284662f9281984f3bf8e40109e61155ece18673f4391bc0fff704f8ab800a2041d3ce1824478d2ae SHA512 a82362aa36d2f2094bca0b2808d9de0d57291fb3a4c29d7c0ca0a37e73087ec5ac4df299c8c363e61106fccf2fe7f58b5cf76eb97729e2696058ef43b1d3930a
+DIST brotli-1.0.9.tar.gz 486984 BLAKE2B 8b9939d5224396ef33b43e019250ba4bc8949903583615e8dc02c85340fc0a1e2d1632161e00b0ee7355d77f05529ac772f482e05d2089afd71a0bf71e803904 SHA512 b8e2df955e8796ac1f022eb4ebad29532cb7e3aa6a4b6aee91dbd2c7d637eee84d9a144d3e878895bb5e62800875c2c01c8f737a1261020c54feacf9f676b5f5
diff --git a/app-arch/brotli/brotli-1.0.9.ebuild b/app-arch/brotli/brotli-1.0.9.ebuild
new file mode 100644
index 00000000000..89d52f2c2ec
--- /dev/null
+++ b/app-arch/brotli/brotli-1.0.9.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+DISTUTILS_OPTIONAL="1"
+DISTUTILS_IN_SOURCE_BUILD="1"
+
+inherit cmake-multilib distutils-r1
+
+DESCRIPTION="Generic-purpose lossless compression algorithm"
+HOMEPAGE="https://github.com/google/brotli"
+
+SLOT="0/$(ver_cut 1)"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}"
+
+IUSE="python test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+LICENSE="MIT python? ( Apache-2.0 )"
+
+DOCS=( README.md CONTRIBUTING.md )
+
+if [[ ${PV} == "9999" ]] ; then
+ SRC_URI=""
+ EGIT_REPO_URI="https://github.com/google/${PN}.git"
+ inherit git-r3
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
+ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+ use python && distutils-r1_src_prepare
+ cmake-utils_src_prepare
+}
+
+multilib_src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING="$(usex test)"
+ )
+ cmake-utils_src_configure
+}
+src_configure() {
+ cmake-multilib_src_configure
+ use python && distutils-r1_src_configure
+}
+
+multilib_src_compile() {
+ cmake-utils_src_compile
+}
+src_compile() {
+ cmake-multilib_src_compile
+ use python && distutils-r1_src_compile
+}
+
+python_test() {
+ esetup.py test || die
+}
+
+multilib_src_test() {
+ cmake-utils_src_test
+}
+src_test() {
+ cmake-multilib_src_test
+ use python && distutils-r1_src_test
+}
+
+multilib_src_install() {
+ cmake-utils_src_install
+}
+multilib_src_install_all() {
+ use python && distutils-r1_src_install
+}
next reply other threads:[~2020-08-27 16:50 UTC|newest]
Thread overview: 117+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-27 16:49 Craig Andrews [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-18 19:10 [gentoo-commits] repo/gentoo:master commit in: app-arch/brotli/ Michał Górny
2023-10-26 18:37 Michał Górny
2023-10-26 18:24 Arthur Zamarin
2023-10-15 12:38 Sam James
2023-10-14 19:52 Arthur Zamarin
2023-10-14 19:52 Arthur Zamarin
2023-10-14 18:17 Arthur Zamarin
2023-10-14 18:17 Arthur Zamarin
2023-10-14 18:17 Arthur Zamarin
2023-10-14 16:52 Arthur Zamarin
2023-09-14 11:22 Michał Górny
2023-08-31 14:38 Craig Andrews
2023-08-08 16:06 Craig Andrews
2023-07-11 18:43 Matt Turner
2023-05-30 19:50 Michał Górny
2023-05-05 4:59 Michał Górny
2023-05-04 22:36 Ionen Wolkens
2023-05-04 16:11 Michał Górny
2022-10-25 10:44 Sam James
2022-10-25 10:44 Sam James
2022-10-25 8:46 Sam James
2022-10-25 8:25 Sam James
2022-10-25 8:25 Sam James
2022-10-25 8:16 Arthur Zamarin
2022-10-25 8:12 Arthur Zamarin
2022-10-25 8:12 Arthur Zamarin
2022-10-20 23:34 Sam James
2022-09-01 2:00 Sam James
2022-08-25 1:51 Sam James
2022-05-28 5:47 Sam James
2022-05-18 16:59 Michał Górny
2022-05-18 16:59 Michał Górny
2021-10-08 11:20 Craig Andrews
2021-10-07 6:37 Sam James
2021-10-03 5:18 Agostino Sarubbo
2021-10-02 15:43 Sam James
2021-10-02 15:43 Sam James
2021-10-02 7:22 Sam James
2021-10-02 7:22 Sam James
2021-10-01 23:42 Sam James
2021-10-01 23:42 Sam James
2021-08-02 8:41 Michał Górny
2021-06-16 4:42 Michał Górny
2021-05-05 13:58 Craig Andrews
2021-04-28 21:37 Craig Andrews
2021-01-06 12:52 Fabian Groffen
2020-12-13 7:23 Sam James
2020-12-13 0:23 Sam James
2020-11-06 20:39 Craig Andrews
2020-11-06 15:44 Sam James
2020-10-29 22:06 Sergei Trofimovich
2020-10-20 4:57 Sam James
2020-10-19 14:37 Craig Andrews
2020-10-07 6:54 Agostino Sarubbo
2020-10-07 6:53 Agostino Sarubbo
2020-10-07 6:50 Agostino Sarubbo
2020-10-06 3:19 Sam James
2020-09-08 16:29 Craig Andrews
2020-07-22 17:24 Craig Andrews
2020-05-07 13:18 Michał Górny
2020-04-18 3:02 Craig Andrews
2020-01-04 17:14 Andreas Sturmlechner
2019-11-27 1:08 Craig Andrews
2019-11-24 14:15 Mikle Kolyada
2019-07-29 14:39 Mikle Kolyada
2019-05-13 9:55 Mikle Kolyada
2019-05-13 1:41 Thomas Deutschmann
2019-05-12 22:03 Sergei Trofimovich
2019-05-12 21:57 Sergei Trofimovich
2019-05-12 21:48 Sergei Trofimovich
2019-05-09 20:32 Aaron Bauman
2019-05-08 19:55 Sergei Trofimovich
2019-05-08 17:05 Andreas Sturmlechner
2019-05-08 14:38 Tobias Klausmann
2019-05-08 6:25 Sergei Trofimovich
2019-01-05 17:19 Mikle Kolyada
2018-12-06 15:39 Mikle Kolyada
2018-12-02 15:09 Sergei Trofimovich
2018-11-27 20:57 Tobias Klausmann
2018-11-25 23:24 Mart Raudsepp
2018-11-25 9:31 Mikle Kolyada
2018-11-24 10:59 Sergei Trofimovich
2018-11-24 10:49 Sergei Trofimovich
2018-11-24 10:45 Sergei Trofimovich
2018-11-23 20:30 Thomas Deutschmann
2018-11-23 8:53 Sergei Trofimovich
2018-10-23 13:50 Craig Andrews
2018-09-28 15:44 Craig Andrews
2018-09-19 16:53 Craig Andrews
2018-07-25 9:05 Fabian Groffen
2018-07-17 13:00 Craig Andrews
2018-06-28 13:21 Craig Andrews
2018-06-09 19:26 Mikle Kolyada
2018-04-10 20:26 Craig Andrews
2018-04-10 20:26 Craig Andrews
2018-03-28 19:35 Matt Turner
2018-03-06 20:51 Craig Andrews
2018-03-02 20:35 Mart Raudsepp
2018-03-02 16:18 Craig Andrews
2018-03-02 16:18 Craig Andrews
2018-03-02 8:31 Michał Górny
2018-02-07 6:37 Thomas Deutschmann
2018-02-05 21:27 Markus Meier
2018-01-31 20:00 Sergei Trofimovich
2018-01-28 17:10 Sergei Trofimovich
2018-01-28 15:33 Sergei Trofimovich
2018-01-28 13:01 Mikle Kolyada
2018-01-28 11:50 Sergei Trofimovich
2018-01-19 21:59 Mart Raudsepp
2018-01-16 21:05 Markus Meier
2018-01-12 22:55 Sergei Trofimovich
2018-01-09 22:26 Sergei Trofimovich
2018-01-08 18:21 Tobias Klausmann
2018-01-06 18:29 Sergei Trofimovich
2018-01-05 23:49 Sergei Trofimovich
2018-01-02 20:07 Craig Andrews
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=1598546985.c0c1d322aae1744982fc5fa2ae6c8cc545db97f1.candrews@gentoo \
--to=candrews@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