commit:     602220d2c477042ef42fb0bcfc0740dcf7e3ffdf
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  1 00:33:38 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan  1 00:35:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=602220d2

dev-libs/libpreludedb: Remove old (py3.6)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/libpreludedb/Manifest                     |  2 -
 dev-libs/libpreludedb/libpreludedb-4.0.0-r1.ebuild | 86 ----------------------
 dev-libs/libpreludedb/libpreludedb-4.1.0-r1.ebuild | 86 ----------------------
 3 files changed, 174 deletions(-)

diff --git a/dev-libs/libpreludedb/Manifest b/dev-libs/libpreludedb/Manifest
index 7e89a2aceed..47b6710121d 100644
--- a/dev-libs/libpreludedb/Manifest
+++ b/dev-libs/libpreludedb/Manifest
@@ -1,5 +1,3 @@
-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-update_m4_postgresql.patch 20562 BLAKE2B 
5db9a213c47296b308a641942e41c82eb9642dc7817ac1134ac52c8f24e38b68e0dacc5adedc30ba0611e84c97bb51f444b75b2b98884c0f21312da58f40b6d8
 SHA512 
24881cfe0e471e934fc9b1bd64dd901303f68615e1700ce92d6bc7324b28587aef8cc05be9cc7c2545f86666064607d8113c5273381bf9306ef69f569ab9d1bf
 DIST libpreludedb-5.1.0.tar.gz 1374511 BLAKE2B 
569324a5ae484b1d13ac729f25a2f7f8924a8dced923859cdc393289acf0c0cf098ae6e0f9f572a707c85aa9af4a27bbaa0927e20d610b423e2aae86718d232b
 SHA512 
9e45e0f7a945eef254f8e59c0c7212c6afca897584ea8f2c88e16478fde448abdeeb991828cc2482373d2c735e1229f1a11fe9780e40da1a8aed867fe158f481
 DIST libpreludedb-5.2.0.tar.gz 1372810 BLAKE2B 
5a6bed23eba77591b8e97bb3c6f2b321970c94f88fb86094146a1a3fa64cc0f0c97ca1d1488b2202ab7042207ca2ca4f74029415ef1ca6ea13c84d158a23473f
 SHA512 
357e3ce69927ed405bc757774466631d34cad9b53031be6ce456238dd8aef3781471ecbb36ab4a3131468f4686a635095aaf837d23a0efc9db758322298e7744

diff --git a/dev-libs/libpreludedb/libpreludedb-4.0.0-r1.ebuild 
b/dev-libs/libpreludedb/libpreludedb-4.0.0-r1.ebuild
deleted file mode 100644
index bf8921fc1f2..00000000000
--- a/dev-libs/libpreludedb/libpreludedb-4.0.0-r1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
-DISTUTILS_OPTIONAL=1
-
-inherit autotools distutils-r1 ruby-single
-
-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="mysql postgres python sqlite"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="~dev-libs/libprelude-${PV}
-       net-libs/gnutls:=
-       mysql? ( dev-db/mysql-connector-c:= )
-       postgres? ( dev-db/postgresql:* )
-       python? ( ${PYTHON_DEPS} )
-       sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
-       >=dev-lang/swig-3.0.7
-       dev-util/gtk-doc-am
-       sys-devel/flex
-       virtual/pkgconfig
-       virtual/yacc"
-
-PATCHES=(
-       "${FILESDIR}/${P}-fix-python-bindings.patch"
-)
-
-src_prepare() {
-       default
-
-       eautoreconf
-
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_prepare
-       fi
-}
-
-src_configure() {
-       local myconf=(
-               --enable-easy-bindings
-               --with-swig
-               --without-python2
-               $(use_with mysql)
-               $(use_with postgres postgresql)
-               $(use_with sqlite sqlite3)
-       )
-
-       if use python; then
-               python_setup
-               myconf+=( --with-python3="${EPYTHON}" )
-       else
-               myconf+=( --without-python3 )
-       fi
-
-       econf "${myconf[@]}"
-}
-
-src_compile() {
-       default
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_compile
-       fi
-}
-
-src_install() {
-       default
-       find "${D}" -name '*.la' -delete || die
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_install
-       fi
-}

diff --git a/dev-libs/libpreludedb/libpreludedb-4.1.0-r1.ebuild 
b/dev-libs/libpreludedb/libpreludedb-4.1.0-r1.ebuild
deleted file mode 100644
index 2cc2fe00385..00000000000
--- a/dev-libs/libpreludedb/libpreludedb-4.1.0-r1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-DISTUTILS_OPTIONAL=1
-
-inherit autotools distutils-r1 ruby-single
-
-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="mysql postgres python sqlite"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="~dev-libs/libprelude-${PV}
-       net-libs/gnutls:=
-       mysql? ( dev-db/mysql-connector-c:= )
-       postgres? ( dev-db/postgresql:* )
-       python? ( ${PYTHON_DEPS} )
-       sqlite? ( dev-db/sqlite:3 )"
-
-DEPEND="${RDEPEND}
-       >=dev-lang/swig-3.0.11
-       dev-util/gtk-doc-am
-       sys-devel/flex
-       virtual/pkgconfig
-       virtual/yacc"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-4.0.0-fix-python-bindings.patch"
-)
-
-src_prepare() {
-       default
-
-       eautoreconf
-
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_prepare
-       fi
-}
-
-src_configure() {
-       local myconf=(
-               --enable-easy-bindings
-               --with-swig
-               --without-python2
-               $(use_with mysql)
-               $(use_with postgres postgresql)
-               $(use_with sqlite sqlite3)
-       )
-
-       if use python; then
-               python_setup
-               myconf+=( --with-python3="${EPYTHON}" )
-       else
-               myconf+=( --without-python3 )
-       fi
-
-       econf "${myconf[@]}"
-}
-
-src_compile() {
-       default
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_compile
-       fi
-}
-
-src_install() {
-       default
-       find "${D}" -name '*.la' -delete || die
-       if use python; then
-               cd bindings/python || die
-               distutils-r1_src_install
-       fi
-}

Reply via email to