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