From 18fcd4bd01d9f190d7591081e89dac38cfd08186 Mon Sep 17 00:00:00 2001 From: Conrad Kostecki Date: Fri, 26 Mar 2021 20:07:39 +0100 Subject: dev-libs/libucl: drop old version Dropping old version, which does not support slotted lua Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Conrad Kostecki --- dev-libs/libucl/libucl-0.8.1-r1.ebuild | 62 ---------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 dev-libs/libucl/libucl-0.8.1-r1.ebuild (limited to 'dev-libs/libucl') diff --git a/dev-libs/libucl/libucl-0.8.1-r1.ebuild b/dev-libs/libucl/libucl-0.8.1-r1.ebuild deleted file mode 100644 index 8c59554dfc50..000000000000 --- a/dev-libs/libucl/libucl-0.8.1-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Universal configuration library parser" -HOMEPAGE="https://github.com/vstakhov/libucl" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/vstakhov/libucl.git" -else - SRC_URI="https://github.com/vstakhov/libucl/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="BSD-2" -SLOT="0" - -IUSE="lua +regex sign urls +utils static-libs" - -DEPEND="!!dev-libs/ucl - lua? ( >=dev-lang/lua-5.1:0= ) - urls? ( net-misc/curl ) - sign? ( dev-libs/openssl:0 ) -" -BDEPEND="${DEPEND} - virtual/pkgconfig -" -RDEPEND="${DEPEND}" - -DOCS=( README.md doc/api.md ) - -src_prepare() { - default - rm tests/schema/{definitions,ref{,Remote}}.json || die - - eautoreconf -} - -src_configure() { - local myeconfargs=( - "$(use_enable lua)" - "$(use_enable regex)" - "$(use_enable sign signatures)" - "$(use_enable urls)" - "$(use_enable utils)" - ) - econf "${myeconfargs}" -} - -src_install() { - default - DOCS+=( $(usex lua "doc/lua_api.md" "") ) - einstalldocs - if ! use static-libs; then - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || \ - die "error while deleting static library" - fi -} -- cgit v1.2.3-65-gdbad