From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/
Date: Wed, 9 Jun 2021 20:10:54 +0000 (UTC) [thread overview]
Message-ID: <1623269403.9ad0fbb3dc44c73e14f5f812d0b2e80cc83bc7f9.floppym@gentoo> (raw)
commit: 9ad0fbb3dc44c73e14f5f812d0b2e80cc83bc7f9
Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
AuthorDate: Wed Jun 9 00:00:00 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Jun 9 20:10:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad0fbb3
dev-libs/protobuf: Version bump (3.17.3).
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
dev-libs/protobuf/Manifest | 1 +
dev-libs/protobuf/protobuf-3.17.3.ebuild | 140 +++++++++++++++++++++++++++++++
2 files changed, 141 insertions(+)
diff --git a/dev-libs/protobuf/Manifest b/dev-libs/protobuf/Manifest
index e170628b338..87ea4747892 100644
--- a/dev-libs/protobuf/Manifest
+++ b/dev-libs/protobuf/Manifest
@@ -3,3 +3,4 @@ DIST protobuf-3.16.0.tar.gz 5299781 BLAKE2B 9ace02a6038c31b7393671fb2ccd6a4866a3
DIST protobuf-3.17.0.tar.gz 5185780 BLAKE2B a168619df72cdf097c7ddfd50aca96a2101bf73e7c1c842c020e6ee08a853db8674a86ca999b7706da3dd21d4d3d2159241c93232efc693701962f3a54a382e9 SHA512 36ed2de641849ce01531ff1207f62a0748f811519c40622a119a17a1e709864382de81481fb58f374a025948971c48416e7e6de9c00512a78633c7a8a3aa3a36
DIST protobuf-3.17.1.tar.gz 5192666 BLAKE2B 7f912db7e0835aaa42628fcf564a5666e2cbfa021bb35638a5eec53c3c457f1e747225dea54f732b7239a1520febca9bc20c824b1938f100796caa3ac2133bc1 SHA512 5a18aa3c1dab040dc6d22310a8503241081106acf7ca89079d7b416533d7c2cdd47719dc9023e6bc26969f0f1c796550260a04034a403c69752f6a3a7a651bb8
DIST protobuf-3.17.2.tar.gz 5192779 BLAKE2B 97f9561848e70b8d26ebcc7fc4fa8da51c4b8267efbe1d2d386c2785308e7ba7edc05f1b3863c274dc8838866d58b58509606d72c51a22b956d1d528584c4c95 SHA512 b3e7ad50ed772668df70a3a20ad1af13a5e82f23b109e4fecd34e6a74947bed300963c9f084907fbfafe28fc18365cde7df1975e2ff9538d2f5a3d2b458bca98
+DIST protobuf-3.17.3.tar.gz 5235236 BLAKE2B 2495e678c8f9436d4e5a30ccee8b6226125d418ac7ecf7df20b078a1a16c221cbccab7d846dcd56a90220c106617fa75c410a21b62612fedec378cd7e8571350 SHA512 b4030b4474cc5fb5a62501200725dd488e6e66e3ced4ed12ab4ee029fcfed305e92ec966adafbdd343afffd186908163849422b95eaa500e7e741ac325d01d12
diff --git a/dev-libs/protobuf/protobuf-3.17.3.ebuild b/dev-libs/protobuf/protobuf-3.17.3.ebuild
new file mode 100644
index 00000000000..6391fd499f3
--- /dev/null
+++ b/dev-libs/protobuf/protobuf-3.17.3.ebuild
@@ -0,0 +1,140 @@
+# Copyright 2008-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools elisp-common flag-o-matic multilib-minimal toolchain-funcs
+
+if [[ "${PV}" == "9999" ]]; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/protocolbuffers/protobuf"
+ EGIT_SUBMODULES=()
+fi
+
+DESCRIPTION="Google's Protocol Buffers - Extensible mechanism for serializing structured data"
+HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf"
+if [[ "${PV}" == "9999" ]]; then
+ SRC_URI=""
+else
+ SRC_URI="https://github.com/protocolbuffers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="BSD"
+SLOT="0/28"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="emacs examples static-libs test zlib"
+RESTRICT="!test? ( test )"
+
+BDEPEND="emacs? ( app-editors/emacs:* )"
+DEPEND="test? ( >=dev-cpp/gtest-1.9[${MULTILIB_USEDEP}] )
+ zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )"
+RDEPEND="emacs? ( app-editors/emacs:* )
+ zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-3.17.0-disable_no-warning-test.patch"
+ "${FILESDIR}/${PN}-3.17.0-system_libraries.patch"
+ "${FILESDIR}/${PN}-3.16.0-protoc_input_output_files.patch"
+)
+
+DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md)
+
+src_prepare() {
+ default
+
+ # https://github.com/protocolbuffers/protobuf/issues/7413
+ sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die
+
+ # https://github.com/protocolbuffers/protobuf/issues/8082
+ sed -e "/^TEST_F(IoTest, LargeOutput) {$/,/^}$/d" -i src/google/protobuf/io/zero_copy_stream_unittest.cc || die
+
+ # https://github.com/protocolbuffers/protobuf/issues/8459
+ sed \
+ -e "/^TEST(ArenaTest, BlockSizeSmallerThanAllocation) {$/a\\ if (sizeof(void*) == 4) {\n GTEST_SKIP();\n }" \
+ -e "/^TEST(ArenaTest, SpaceAllocated_and_Used) {$/a\\ if (sizeof(void*) == 4) {\n GTEST_SKIP();\n }" \
+ -i src/google/protobuf/arena_unittest.cc || die
+
+ # https://github.com/protocolbuffers/protobuf/issues/8460
+ sed -e "/^TEST(AnyTest, TestPackFromSerializationExceedsSizeLimit) {$/a\\ if (sizeof(void*) == 4) {\n GTEST_SKIP();\n }" -i src/google/protobuf/any_test.cc || die
+
+ eautoreconf
+}
+
+src_configure() {
+ append-cppflags -DGOOGLE_PROTOBUF_NO_RTTI
+
+ if tc-ld-is-gold; then
+ # https://sourceware.org/bugzilla/show_bug.cgi?id=24527
+ tc-ld-disable-gold
+ fi
+
+ multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+ local options=(
+ $(use_enable static-libs static)
+ $(use_with zlib)
+ )
+
+ if tc-is-cross-compiler; then
+ # Build system uses protoc when building, so protoc copy runnable on host is needed.
+ mkdir -p "${WORKDIR}/build" || die
+ pushd "${WORKDIR}/build" > /dev/null || die
+ ECONF_SOURCE="${S}" econf_build "${options[@]}"
+ options+=(--with-protoc="$(pwd)/src/protoc")
+ popd > /dev/null || die
+ fi
+
+ ECONF_SOURCE="${S}" econf "${options[@]}"
+}
+
+src_compile() {
+ multilib-minimal_src_compile
+
+ if use emacs; then
+ elisp-compile editors/protobuf-mode.el
+ fi
+}
+
+multilib_src_compile() {
+ if tc-is-cross-compiler; then
+ emake -C "${WORKDIR}/build/src" protoc
+ fi
+
+ default
+}
+
+multilib_src_test() {
+ emake check
+}
+
+multilib_src_install_all() {
+ find "${ED}" -name "*.la" -delete || die
+
+ insinto /usr/share/vim/vimfiles/syntax
+ doins editors/proto.vim
+ insinto /usr/share/vim/vimfiles/ftdetect
+ doins "${FILESDIR}/proto.vim"
+
+ if use emacs; then
+ elisp-install ${PN} editors/protobuf-mode.el*
+ elisp-site-file-install "${FILESDIR}/70${PN}-gentoo.el"
+ fi
+
+ if use examples; then
+ DOCS+=(examples)
+ docompress -x /usr/share/doc/${PF}/examples
+ fi
+
+ einstalldocs
+}
+
+pkg_postinst() {
+ use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+ use emacs && elisp-site-regen
+}
next reply other threads:[~2021-06-09 20:10 UTC|newest]
Thread overview: 224+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-09 20:10 Mike Gilbert [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-06 15:19 [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/ Sam James
2024-11-06 14:28 Sam James
2024-11-06 13:35 Sam James
2024-11-06 13:35 Sam James
2024-09-13 2:23 Sam James
2024-09-12 12:27 Arthur Zamarin
2024-09-09 17:26 Arthur Zamarin
2024-09-07 14:27 Sam James
2024-09-05 2:12 Sam James
2024-08-25 15:21 Fabian Groffen
2024-08-09 9:56 Arthur Zamarin
2024-06-15 8:13 Joonas Niilola
2024-06-15 7:10 Sam James
2024-06-13 4:10 Sam James
2024-06-13 4:09 Sam James
2024-06-13 1:56 Sam James
2024-06-12 17:43 Sam James
2024-06-12 5:32 Arthur Zamarin
2024-05-27 19:09 Joonas Niilola
2024-05-27 15:30 Michał Górny
2023-11-29 19:05 Arthur Zamarin
2023-10-27 2:34 Sam James
2023-10-18 15:44 Arthur Zamarin
2023-10-18 14:09 Sam James
2023-10-18 10:14 Sam James
2023-10-14 16:53 Arthur Zamarin
2023-08-22 10:22 Sam James
2023-08-21 18:22 Sam James
2023-08-21 17:31 Sam James
2023-01-05 7:58 Sam James
2023-01-05 7:58 Sam James
2023-01-05 7:58 Sam James
2023-01-05 7:58 Sam James
2022-11-18 7:50 Arthur Zamarin
2022-11-07 17:27 Arthur Zamarin
2022-11-06 9:30 Sam James
2022-11-06 7:29 Sam James
2022-11-06 7:25 Sam James
2022-10-30 22:05 Sam James
2022-10-06 6:57 Agostino Sarubbo
2022-10-06 6:56 Agostino Sarubbo
2022-10-06 6:55 Agostino Sarubbo
2022-10-06 6:54 Agostino Sarubbo
2022-10-05 18:56 Arthur Zamarin
2022-10-05 18:56 Arthur Zamarin
2022-10-05 8:01 Arthur Zamarin
2022-09-02 20:34 Sam James
2022-09-02 20:33 Sam James
2022-05-04 7:07 WANG Xuerui
2022-03-20 18:11 Arthur Zamarin
2022-03-18 11:54 Arthur Zamarin
2022-03-17 7:45 Agostino Sarubbo
2022-03-16 23:53 Sam James
2022-03-16 23:53 Sam James
2022-03-15 18:49 Jakov Smolić
2022-03-15 17:56 Jakov Smolić
2022-03-15 17:56 Jakov Smolić
2022-03-09 8:59 Jakov Smolić
2022-02-13 23:18 Jakov Smolić
2022-02-02 9:47 Sam James
2022-01-29 15:56 Sam James
2022-01-29 15:20 Yixun Lan
2022-01-29 15:20 Yixun Lan
2022-01-04 10:07 Sam James
2021-12-31 18:49 Arthur Zamarin
2021-12-17 7:33 Arthur Zamarin
2021-12-17 7:33 Arthur Zamarin
2021-12-17 3:07 Sam James
2021-12-10 4:40 Sam James
2021-12-10 0:27 Sam James
2021-11-18 22:22 Mike Gilbert
2021-11-09 11:51 Arthur Zamarin
2021-07-08 3:53 Sam James
2021-07-05 22:35 Sam James
2021-07-02 6:28 Agostino Sarubbo
2021-07-02 6:27 Agostino Sarubbo
2021-07-02 4:11 Sam James
2021-07-02 4:10 Sam James
2021-07-02 4:09 Sam James
2021-06-29 5:53 Yixun Lan
2021-06-06 17:04 Mike Gilbert
2021-06-02 16:44 Sam James
2021-06-02 10:39 Sam James
2021-06-01 15:29 Sam James
2021-05-31 23:04 Mike Gilbert
2021-05-31 23:04 Mike Gilbert
2021-05-16 23:41 Sam James
2021-05-16 19:05 Sam James
2021-05-09 13:44 Mike Gilbert
2021-05-05 12:14 Agostino Sarubbo
2021-05-03 16:55 Sam James
2021-04-05 23:51 Thomas Deutschmann
2021-04-05 19:06 Mike Gilbert
2021-03-26 14:38 Mike Gilbert
2021-01-30 16:14 Sam James
2021-01-21 7:40 Agostino Sarubbo
2021-01-18 20:38 Sam James
2021-01-07 20:15 Sam James
2021-01-07 1:10 Sam James
2021-01-06 19:34 Fabian Groffen
2020-12-13 23:23 Sam James
2020-11-25 22:38 Sergei Trofimovich
2020-11-24 11:25 Sam James
2020-11-24 11:25 Sam James
2020-11-24 7:44 Agostino Sarubbo
2020-11-24 7:42 Agostino Sarubbo
2020-11-24 7:41 Agostino Sarubbo
2020-11-22 19:32 Mike Gilbert
2020-11-22 19:32 Mike Gilbert
2020-10-09 8:40 Agostino Sarubbo
2020-10-04 23:45 Sam James
2020-10-01 23:06 Sergei Trofimovich
2020-09-30 18:13 Sergei Trofimovich
2020-09-30 18:13 Sergei Trofimovich
2020-09-29 21:25 Sergei Trofimovich
2020-09-25 21:49 Sam James
2020-09-24 14:26 Mike Gilbert
2020-09-24 6:55 Agostino Sarubbo
2020-09-20 8:43 Sergei Trofimovich
2020-09-19 2:52 Sam James
2020-09-15 18:34 Mike Gilbert
2020-09-15 18:34 Mike Gilbert
2020-09-15 18:34 Mike Gilbert
2020-06-13 18:59 Mike Gilbert
2020-06-13 18:59 Mike Gilbert
2020-04-12 10:52 Mart Raudsepp
2020-04-06 17:54 Sergei Trofimovich
2020-03-15 12:24 Mikle Kolyada
2020-03-12 16:25 Agostino Sarubbo
2020-03-10 10:33 Agostino Sarubbo
2020-03-10 8:56 Agostino Sarubbo
2020-03-10 8:55 Agostino Sarubbo
2020-03-10 8:52 Agostino Sarubbo
2020-03-09 19:29 Mike Gilbert
2020-03-09 19:29 Mike Gilbert
2020-03-09 19:29 Mike Gilbert
2020-01-01 19:43 Agostino Sarubbo
2020-01-01 17:02 Sergei Trofimovich
2019-12-31 8:19 Agostino Sarubbo
2019-12-31 8:18 Agostino Sarubbo
2019-12-31 8:15 Agostino Sarubbo
2019-12-31 1:52 Aaron Bauman
2019-12-30 16:11 Agostino Sarubbo
2019-12-30 15:30 Agostino Sarubbo
2019-12-29 19:34 Mike Gilbert
2019-12-06 20:25 Mike Gilbert
2019-12-06 20:25 Mike Gilbert
2019-09-13 17:27 Mikle Kolyada
2019-08-28 12:54 Agostino Sarubbo
2019-08-23 10:12 Agostino Sarubbo
2019-08-23 10:06 Agostino Sarubbo
2019-08-22 22:01 Agostino Sarubbo
2019-08-19 6:58 Sergei Trofimovich
2019-08-19 6:57 Sergei Trofimovich
2019-08-18 9:10 Sergei Trofimovich
2019-08-17 2:25 Aaron Bauman
2019-08-16 17:03 Mike Gilbert
2019-08-16 17:03 Mike Gilbert
2019-07-28 14:07 Mikle Kolyada
2019-07-22 17:12 Aaron Bauman
2019-06-28 18:10 Mike Gilbert
2019-06-27 12:15 Agostino Sarubbo
2019-06-22 9:38 Sergei Trofimovich
2019-06-22 9:32 Sergei Trofimovich
2019-06-22 8:26 Sergei Trofimovich
2019-06-22 8:23 Sergei Trofimovich
2019-06-21 7:28 Agostino Sarubbo
2019-06-20 18:02 Sergei Trofimovich
2019-06-18 15:59 Mike Gilbert
2019-05-17 19:35 Mike Gilbert
2019-02-25 21:25 Mike Gilbert
2018-12-30 22:18 Matt Turner
2018-12-21 20:16 Sergei Trofimovich
2018-12-11 17:48 Mike Gilbert
2018-12-08 18:04 Mikle Kolyada
2018-11-27 20:57 Tobias Klausmann
2018-11-27 19:03 Mart Raudsepp
2018-11-17 15:34 Mikle Kolyada
2018-10-28 17:25 Sergei Trofimovich
2018-10-21 8:29 Sergei Trofimovich
2018-10-20 11:46 Sergei Trofimovich
2018-10-20 11:35 Sergei Trofimovich
2018-10-19 17:39 Mike Gilbert
2018-10-02 20:08 Mike Gilbert
2018-08-22 19:01 Mike Gilbert
2018-05-17 17:17 Mikle Kolyada
2018-05-14 19:21 Tobias Klausmann
2018-05-03 22:03 Mart Raudsepp
2018-05-03 20:54 Sergei Trofimovich
2018-05-01 8:07 Sergei Trofimovich
2018-04-30 15:58 Mike Gilbert
2018-04-22 9:26 Mikle Kolyada
2018-04-14 21:45 Mart Raudsepp
2018-03-21 1:34 Matt Turner
2018-03-13 22:14 Sergei Trofimovich
2018-03-08 19:33 Mike Gilbert
2018-03-05 21:31 Tobias Klausmann
2018-02-23 22:45 Sergei Trofimovich
2018-02-22 9:49 Jason Zaman
2018-02-21 20:34 Mike Gilbert
2018-02-17 8:43 Sergei Trofimovich
2018-02-13 20:11 Thomas Deutschmann
2018-02-12 21:08 Jonas Stein
2018-01-28 16:59 Tobias Klausmann
2018-01-08 21:31 Mike Gilbert
2017-11-24 6:15 Markus Meier
2017-11-19 19:16 Sergei Trofimovich
2017-11-18 20:44 Sergei Trofimovich
2017-11-18 19:32 Sergei Trofimovich
2017-10-30 1:08 Manuel Rüger
2017-10-01 0:04 Thomas Deutschmann
2017-09-22 21:05 Mike Gilbert
2017-09-02 15:04 Michael Palimaka
2017-04-28 21:27 Michał Górny
2017-01-12 9:30 Jeroen Roovers
2016-12-08 20:37 Patrice Clement
2016-12-06 5:05 Mike Frysinger
2016-11-26 22:08 Mike Frysinger
2016-07-04 3:10 Yixun Lan
2016-06-23 15:57 Patrice Clement
2016-04-21 9:52 Ian Delaney
2016-02-04 18:47 Mike Frysinger
2015-11-18 10:31 Agostino Sarubbo
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=1623269403.9ad0fbb3dc44c73e14f5f812d0b2e80cc83bc7f9.floppym@gentoo \
--to=floppym@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