diff options
author | Martin Väth <martin@mvath.de> | 2018-01-20 11:29:54 +0100 |
---|---|---|
committer | Martin Väth <martin@mvath.de> | 2018-01-20 11:29:54 +0100 |
commit | f5acfddbc99c4e448043d2cea6478515e0d19350 (patch) | |
tree | 062362be893e6e118b90aa08f3f98bc1be227f66 /app-arch/brotli/brotli-1.0.2.ebuild | |
parent | media-tv/sundtek-tv: Version bump (diff) | |
download | mv-f5acfddbc99c4e448043d2cea6478515e0d19350.tar.gz mv-f5acfddbc99c4e448043d2cea6478515e0d19350.tar.bz2 mv-f5acfddbc99c4e448043d2cea6478515e0d19350.zip |
app-arch/brotli: Remove since bump is now in the gentoo repository
Diffstat (limited to 'app-arch/brotli/brotli-1.0.2.ebuild')
-rw-r--r-- | app-arch/brotli/brotli-1.0.2.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/app-arch/brotli/brotli-1.0.2.ebuild b/app-arch/brotli/brotli-1.0.2.ebuild deleted file mode 100644 index 4823567b..00000000 --- a/app-arch/brotli/brotli-1.0.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -RESTRICT="mirror" - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) -DISTUTILS_OPTIONAL="1" - -inherit cmake-utils distutils-r1 flag-o-matic - -DESCRIPTION="Generic-purpose lossless compression algorithm" -HOMEPAGE="https://github.com/google/brotli" -SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -RDEPEND="python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND}" -RDEPEND+=" !<app-arch/archwrap-8" - -IUSE="doc python static-libs test" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -LICENSE="MIT python? ( Apache-2.0 )" - -DOCS=( README.md CONTRIBUTING.md ) - -PATCHES=( "${FILESDIR}"/${PN}-1.0.1-no-rpath.patch ) - -src_prepare() { - use static-libs || eapply "${FILESDIR}"/${PN}-1.0.1-no-static.patch - cmake-utils_src_prepare - use python && distutils-r1_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTING="$(usex test)" - ) - cmake-utils_src_configure - if use python ; then - filter-flags -fPIE -pie - distutils-r1_src_configure - fi -} - -src_compile() { - cmake-utils_src_compile - use python && distutils-r1_src_compile -} - -python_test(){ - esetup.py test || die -} - -src_test() { - cmake-utils_src_test - use python && distutils-r1_src_test -} - -src_install() { - cmake-utils_src_install - use python && distutils-r1_src_install - use doc && dodoc docs/*.pdf - doman docs/*.[0-9n] -} |