Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/brotli/
Date: Tue, 08 Sep 2020 16:29:29
Message-Id: 1599582559.c4d9c9c3b837e64e2bc4d6998abdb7a7a5f8d509.candrews@gentoo
1 commit: c4d9c9c3b837e64e2bc4d6998abdb7a7a5f8d509
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 8 16:29:12 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 8 16:29:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d9c9c3
7
8 app-arch/brotli: Cleanup old version
9
10 Package-Manager: Portage-3.0.6, Repoman-3.0.1
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 app-arch/brotli/brotli-1.0.9.ebuild | 79 -------------------------------------
14 1 file changed, 79 deletions(-)
15
16 diff --git a/app-arch/brotli/brotli-1.0.9.ebuild b/app-arch/brotli/brotli-1.0.9.ebuild
17 deleted file mode 100644
18 index 89d52f2c2ec..00000000000
19 --- a/app-arch/brotli/brotli-1.0.9.ebuild
20 +++ /dev/null
21 @@ -1,79 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6,7,8,9} )
28 -DISTUTILS_OPTIONAL="1"
29 -DISTUTILS_IN_SOURCE_BUILD="1"
30 -
31 -inherit cmake-multilib distutils-r1
32 -
33 -DESCRIPTION="Generic-purpose lossless compression algorithm"
34 -HOMEPAGE="https://github.com/google/brotli"
35 -
36 -SLOT="0/$(ver_cut 1)"
37 -
38 -RDEPEND="python? ( ${PYTHON_DEPS} )"
39 -DEPEND="${RDEPEND}"
40 -
41 -IUSE="python test"
42 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
43 -
44 -LICENSE="MIT python? ( Apache-2.0 )"
45 -
46 -DOCS=( README.md CONTRIBUTING.md )
47 -
48 -if [[ ${PV} == "9999" ]] ; then
49 - SRC_URI=""
50 - EGIT_REPO_URI="https://github.com/google/${PN}.git"
51 - inherit git-r3
52 -else
53 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
54 - SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
55 -fi
56 -
57 -RESTRICT="!test? ( test )"
58 -
59 -src_prepare() {
60 - use python && distutils-r1_src_prepare
61 - cmake-utils_src_prepare
62 -}
63 -
64 -multilib_src_configure() {
65 - local mycmakeargs=(
66 - -DBUILD_TESTING="$(usex test)"
67 - )
68 - cmake-utils_src_configure
69 -}
70 -src_configure() {
71 - cmake-multilib_src_configure
72 - use python && distutils-r1_src_configure
73 -}
74 -
75 -multilib_src_compile() {
76 - cmake-utils_src_compile
77 -}
78 -src_compile() {
79 - cmake-multilib_src_compile
80 - use python && distutils-r1_src_compile
81 -}
82 -
83 -python_test() {
84 - esetup.py test || die
85 -}
86 -
87 -multilib_src_test() {
88 - cmake-utils_src_test
89 -}
90 -src_test() {
91 - cmake-multilib_src_test
92 - use python && distutils-r1_src_test
93 -}
94 -
95 -multilib_src_install() {
96 - cmake-utils_src_install
97 -}
98 -multilib_src_install_all() {
99 - use python && distutils-r1_src_install
100 -}