diff options
author | 2022-02-09 20:56:47 +0100 | |
---|---|---|
committer | 2022-02-09 23:55:19 +0100 | |
commit | bf1c1ce94ad7ac9648203b0cef811080c7e0aefe (patch) | |
tree | 1d9c8d360f9674ec314a711fd66ec8d7f7b1da89 | |
parent | dev-libs/concurrencykit: update EAPI 7 -> 8 (diff) | |
download | gentoo-bf1c1ce94ad7ac9648203b0cef811080c7e0aefe.tar.gz gentoo-bf1c1ce94ad7ac9648203b0cef811080c7e0aefe.tar.bz2 gentoo-bf1c1ce94ad7ac9648203b0cef811080c7e0aefe.zip |
dev-libs/concurrencykit: drop 0.7.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild b/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild deleted file mode 100644 index 110318f4711d..000000000000 --- a/dev-libs/concurrencykit/concurrencykit-0.7.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PN="ck" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A library with concurrency related algorithms and data structures in C" -HOMEPAGE="http://concurrencykit.org" -SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="Apache-2.0 BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" - -# The 'libck.so' has a name collision. -# See bug #616762 for more information. -RDEPEND="!sys-cluster/charm" - -src_configure() { - tc-export AR CC LD - - local myeconfargs=( - "--disable-static" - ) - - GZIP="" econf ${myeconfargs[@]} -} |