Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/
Date: Tue, 09 Jan 2018 01:55:11
Message-Id: 1515446978.ae3179cd147227c09364a8a1fc22f69bb0ea4f9f.floppym@gentoo
1 commit: ae3179cd147227c09364a8a1fc22f69bb0ea4f9f
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Mon Jan 8 21:17:21 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 8 21:29:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae3179cd
7
8 dev-libs/protobuf: Version bump (3.5.1.1).
9
10 Closes: https://bugs.gentoo.org/639328
11
12 dev-libs/protobuf/Manifest | 1 +
13 dev-libs/protobuf/protobuf-3.5.1.1.ebuild | 101 ++++++++++++++++++++++++++++++
14 2 files changed, 102 insertions(+)
15
16 diff --git a/dev-libs/protobuf/Manifest b/dev-libs/protobuf/Manifest
17 index c802845d29d..d38962ac371 100644
18 --- a/dev-libs/protobuf/Manifest
19 +++ b/dev-libs/protobuf/Manifest
20 @@ -5,3 +5,4 @@ DIST protobuf-3.0.2.tar.gz 3917853 BLAKE2B 542beb7b16de0da2cdc6f7981381b6de1ff2c
21 DIST protobuf-3.1.0.tar.gz 4051503 BLAKE2B af93f125a6b7b3e0be6f50ff5eaabe0db21f62b01a694d37c0b069956ef5d658df1beef68514b00a22005a36293b4a8a18654b5656f8c614309f0a744039c2fb SHA512 8d3289a16944c255bd1cceab696e515e52467f2bfe1cc10f6b32fabdf082d5acdc248ec9cadc572223a24d04d431f75921076153109cea2f90ee533f502ab47a
22 DIST protobuf-3.3.0.tar.gz 4336596 BLAKE2B 381b2961fe1de8a86225903d0cfe4c98c238336b8782e5191c57c6fcf60cf321f39163d50864bf9c119a90bd7796269dc7e34168a158f7affa7fa295ce5deae0 SHA512 0734a55ae92f0539dfb507e174539d290fd8e93633c1edd8810e0d51c37e67254337b75fc5ba9450316f6416e1f8f8cfb59415864657b55f2a1696fbcdfe7636
23 DIST protobuf-3.4.1.tar.gz 4490100 BLAKE2B e2bc1ef2ee1a0af44830b3c65a6c9e73883fe6ec0d07f6a6136f5564f0e85306005440ca6f8c4eb834c7c70f909792c9e2457a761f10f95431981263a9acd7a3 SHA512 471e52198fa878a79183dc8fbc39d9c65239be4d9dff799e12281ee9b1af61a427584534b1baae1773bc6e4c86467f89ca2e7911a21effd86bc5f40cc7d94c34
24 +DIST protobuf-3.5.1.1.tar.gz 4584489 BLAKE2B 995ee2f06a6358e9935b488269ee50f0dccede417c1757828b0108fbe8c67034301f3a9cb87517430acd9838ae71bb677f4edd8b59b2418f99c15d8ea3d33591 SHA512 f25ecf772facc8efd196b7c06012ce9ec24152b2c0cde38ed2e29ecded8f534221b008e649f4cbd991436ad3436130cd2e31d51e75019d08240d518111fb4496
25
26 diff --git a/dev-libs/protobuf/protobuf-3.5.1.1.ebuild b/dev-libs/protobuf/protobuf-3.5.1.1.ebuild
27 new file mode 100644
28 index 00000000000..d6f72fb6d95
29 --- /dev/null
30 +++ b/dev-libs/protobuf/protobuf-3.5.1.1.ebuild
31 @@ -0,0 +1,101 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +
37 +inherit autotools elisp-common flag-o-matic multilib-minimal toolchain-funcs
38 +
39 +DESCRIPTION="Google's Protocol Buffers - Extensible mechanism for serializing structured data"
40 +HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/google/protobuf"
41 +SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0/15"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
46 +IUSE="emacs examples static-libs test zlib"
47 +
48 +RDEPEND="emacs? ( virtual/emacs )
49 + zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )"
50 +DEPEND="${RDEPEND}
51 + test? ( >=dev-cpp/gtest-1.8.0[${MULTILIB_USEDEP}] )"
52 +
53 +PATCHES=(
54 + "${FILESDIR}/${PN}-3.4.0-disable_no-warning-test.patch"
55 + "${FILESDIR}/${PN}-3.4.0-system_libraries.patch"
56 + "${FILESDIR}/${PN}-3.4.0-protoc_input_output_files.patch"
57 +)
58 +
59 +DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md)
60 +
61 +src_prepare() {
62 + append-cppflags -DGOOGLE_PROTOBUF_NO_RTTI
63 + default
64 + eautoreconf
65 +}
66 +
67 +multilib_src_configure() {
68 + local myeconfargs=(
69 + $(use_enable static-libs static)
70 + $(use_with zlib)
71 + )
72 +
73 + if tc-is-cross-compiler; then
74 + # The build system wants `protoc` when building, so we need a copy that
75 + # runs on the host. This is more hermetic than relying on the version
76 + # installed in the host being the exact same version.
77 + mkdir -p "${WORKDIR}/build" || die
78 + pushd "${WORKDIR}/build" > /dev/null || die
79 + ECONF_SOURCE="${S}" econf_build "${myeconfargs[@]}"
80 + myeconfargs+=(--with-protoc="${PWD}"/src/protoc)
81 + popd > /dev/null || die
82 + fi
83 +
84 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
85 +}
86 +
87 +src_compile() {
88 + multilib-minimal_src_compile
89 +
90 + if use emacs; then
91 + elisp-compile editors/protobuf-mode.el
92 + fi
93 +}
94 +
95 +multilib_src_compile() {
96 + if tc-is-cross-compiler; then
97 + emake -C "${WORKDIR}/build/src" protoc
98 + fi
99 +
100 + default
101 +}
102 +
103 +multilib_src_test() {
104 + emake check
105 +}
106 +
107 +multilib_src_install_all() {
108 + insinto /usr/share/vim/vimfiles/syntax
109 + doins editors/proto.vim
110 + insinto /usr/share/vim/vimfiles/ftdetect
111 + doins "${FILESDIR}/proto.vim"
112 +
113 + if use emacs; then
114 + elisp-install ${PN} editors/protobuf-mode.el*
115 + elisp-site-file-install "${FILESDIR}/70${PN}-gentoo.el"
116 + fi
117 +
118 + if use examples; then
119 + DOCS+=(examples)
120 + docompress -x /usr/share/doc/${PF}/examples
121 + fi
122 +
123 + einstalldocs
124 +}
125 +
126 +pkg_postinst() {
127 + use emacs && elisp-site-regen
128 +}
129 +
130 +pkg_postrm() {
131 + use emacs && elisp-site-regen
132 +}