From bc638d470483797b7c0c2c0ded439af47e730cf5 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 29 Dec 2019 09:51:21 +0100 Subject: dev-libs/libpreludedb: Remove old Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert --- dev-libs/libpreludedb/Manifest | 2 - dev-libs/libpreludedb/libpreludedb-3.0.0-r1.ebuild | 74 ---------------------- dev-libs/libpreludedb/libpreludedb-3.1.0-r1.ebuild | 72 --------------------- 3 files changed, 148 deletions(-) delete mode 100644 dev-libs/libpreludedb/libpreludedb-3.0.0-r1.ebuild delete mode 100644 dev-libs/libpreludedb/libpreludedb-3.1.0-r1.ebuild (limited to 'dev-libs/libpreludedb') diff --git a/dev-libs/libpreludedb/Manifest b/dev-libs/libpreludedb/Manifest index 5310cde2e2fc..fb2212e28bd1 100644 --- a/dev-libs/libpreludedb/Manifest +++ b/dev-libs/libpreludedb/Manifest @@ -1,5 +1,3 @@ -DIST libpreludedb-3.0.0.tar.gz 1269937 BLAKE2B 6f6bad7b9529b88bd03b224c1ea4066b9e806ff82960d1c2e336ebc5c345353a3b63224e0ea84407f159443b6ec53c1cb6bba8009d48dfb53a26bab96960467e SHA512 9d80e01be8cf028b8a843e68e45eeb84c561ff37e688fe5b8156e717f337b1db4d3de983f37a0544bf018238bec07580dce0c7208df005113efbba0aab34b981 -DIST libpreludedb-3.1.0.tar.gz 1291186 BLAKE2B 90b3b6264f0042b14e54abfc3068071419646076fc6cfa3dd84ba6c14797fb0ea88885edef47b8a5d0dc455468e6daaa8e795b621a4f9001d19d8edc33630a88 SHA512 dcb98eff2521979c2956bdd6f3b661c346c0f6748ef820a75d77c948e426a996de26c7fc6b6c2abddc93277db3820eb2f44b61c87feb86483e720cf9b0e0124c DIST libpreludedb-4.0.0.tar.gz 1325812 BLAKE2B 7a506f7cd7b51898e26201f2cc640b1f34227f9cf7c5c6e2385480f1fc0ad854b6d747293ab502b641cc65f1ee9ae4a8f225e6a1d4489bcaa59901c6342f1279 SHA512 13f5dbcfa6af965f2075d60c645ebb19cbd6b18807b26f4f13a7a05f1cf552996f9846e856728a4e1dc621efda693016e82623d4a3cbf74849b3e7114f19faca DIST libpreludedb-4.1.0.tar.gz 1333638 BLAKE2B 380a6d4ef8836555510f9f9882b6100417f2567520c421355fb7eec8d2cd7e2f3942c4cb90ea21fa1557327026edd5c1e35e338a79e06a21cfb2bd6813a289c2 SHA512 de1fa5106d7f34edb5a23e726c968de84bb8b10257587b6ee36276ed75ddc54f4f9539aecb7836e114eb3bfa90104dd3b5e097be0c3d12347dcbded94f293dc4 DIST libpreludedb-5.1.0.tar.gz 1374511 BLAKE2B 569324a5ae484b1d13ac729f25a2f7f8924a8dced923859cdc393289acf0c0cf098ae6e0f9f572a707c85aa9af4a27bbaa0927e20d610b423e2aae86718d232b SHA512 9e45e0f7a945eef254f8e59c0c7212c6afca897584ea8f2c88e16478fde448abdeeb991828cc2482373d2c735e1229f1a11fe9780e40da1a8aed867fe158f481 diff --git a/dev-libs/libpreludedb/libpreludedb-3.0.0-r1.ebuild b/dev-libs/libpreludedb/libpreludedb-3.0.0-r1.ebuild deleted file mode 100644 index 4e7679606af1..000000000000 --- a/dev-libs/libpreludedb/libpreludedb-3.0.0-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_5} ) - -inherit autotools eutils python-r1 - -DESCRIPTION="Framework to easy access to the Prelude database" -HOMEPAGE="https://www.prelude-siem.org" -SRC_URI="https://www.prelude-siem.org/pkg/src/3.0.0/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc python mysql postgres sqlite" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="dev-libs/libgcrypt:0= - net-libs/gnutls - dev-libs/libprelude - python? ( ${PYTHON_DEPS} ) - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:* ) - sqlite? ( dev-db/sqlite:3 )" - -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc ) - sys-devel/flex - virtual/yacc - >=dev-lang/swig-3.0.7 - virtual/pkgconfig" - -src_prepare() { - default_src_prepare - - mv "${S}/configure.in" "${S}/configure.ac" || die "mv failed" - - eautoreconf -} - -src_configure() { - local python2_configure=--without-python2 - local python3_configure=--without-python3 - - chk_python() { - if [[ ${EPYTHON} == python2* ]]; then - python2_configure=--with-python2 - elif [[ ${EPYTHON} == python3* ]]; then - python3_configure=--with-python3 - fi - } - - if use python; then - python_foreach_impl chk_python - fi - - econf \ - --enable-easy-bindings \ - --with-swig \ - $(use_enable doc gtk-doc) \ - ${python2_configure} \ - ${python3_configure} \ - $(use_with mysql) \ - $(use_with postgres postgresql) \ - $(use_with sqlite sqlite3) -} - -src_install() { - default_src_install - prune_libtool_files --modules -} diff --git a/dev-libs/libpreludedb/libpreludedb-3.1.0-r1.ebuild b/dev-libs/libpreludedb/libpreludedb-3.1.0-r1.ebuild deleted file mode 100644 index 2fedf289e705..000000000000 --- a/dev-libs/libpreludedb/libpreludedb-3.1.0-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_5} ) - -inherit autotools python-r1 - -DESCRIPTION="Framework to easy access to the Prelude database" -HOMEPAGE="https://www.prelude-siem.org" -SRC_URI="https://www.prelude-siem.org/pkg/src/${PV}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc python mysql postgres sqlite" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="dev-libs/libgcrypt:0= - net-libs/gnutls:= - ~dev-libs/libprelude-${PV} - python? ( ${PYTHON_DEPS} ) - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:* ) - sqlite? ( dev-db/sqlite:3 )" - -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc ) - sys-devel/flex - virtual/yacc - >=dev-lang/swig-3.0.7 - virtual/pkgconfig" - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - local python2_configure=--without-python2 - local python3_configure=--without-python3 - - chk_python() { - if [[ ${EPYTHON} == python2* ]]; then - python2_configure=--with-python2 - elif [[ ${EPYTHON} == python3* ]]; then - python3_configure=--with-python3 - fi - } - - if use python; then - python_foreach_impl chk_python - fi - - econf \ - --enable-easy-bindings \ - --with-swig \ - $(use_enable doc gtk-doc) \ - ${python2_configure} \ - ${python3_configure} \ - $(use_with mysql) \ - $(use_with postgres postgresql) \ - $(use_with sqlite sqlite3) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} -- cgit v1.2.3-65-gdbad