diff options
author | Sam James <sam@gentoo.org> | 2020-09-30 15:12:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-30 15:17:15 +0000 |
commit | 28d92a57c3d9a23517bd8187d04c48717e90818c (patch) | |
tree | f36f7856400b7a846f26ee26ec323638d0f3a52b | |
parent | net-irc/ptlink-ircd: remove last-rited package (diff) | |
download | gentoo-28d92a57c3d9a23517bd8187d04c48717e90818c.tar.gz gentoo-28d92a57c3d9a23517bd8187d04c48717e90818c.tar.bz2 gentoo-28d92a57c3d9a23517bd8187d04c48717e90818c.zip |
dev-db/sqliteodbc: remove last-rited package
Bug: https://bugs.gentoo.org/720732
Bug: https://bugs.gentoo.org/729714
Bug: https://bugs.gentoo.org/722644
Bug: https://bugs.gentoo.org/724184
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-db/sqliteodbc/Manifest | 1 | ||||
-rw-r--r-- | dev-db/sqliteodbc/files/sqliteodbc-0.93-respect_LDFLAGS.patch | 30 | ||||
-rw-r--r-- | dev-db/sqliteodbc/metadata.xml | 5 | ||||
-rw-r--r-- | dev-db/sqliteodbc/sqliteodbc-0.99.ebuild | 41 | ||||
-rw-r--r-- | profiles/package.mask | 8 |
5 files changed, 0 insertions, 85 deletions
diff --git a/dev-db/sqliteodbc/Manifest b/dev-db/sqliteodbc/Manifest deleted file mode 100644 index a5c0d5802ed7..000000000000 --- a/dev-db/sqliteodbc/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sqliteodbc-0.99.tar.gz 696992 BLAKE2B ec5f87b7719573ce533d9bc316e840def5e07f3da65dca822068e57eb0e3f5eb8f1593119d704ad007f015cdf35d85c0cc53cdea5d0688faedccf611fc4d2fae SHA512 adf213acee4ee69c299f39582887fd2adba3856ce6d298d250e3a96744d041c720cefb7fd8acd504c41461751b46b8a729c4fbfa7e56832fb6e4c5a1c537955d diff --git a/dev-db/sqliteodbc/files/sqliteodbc-0.93-respect_LDFLAGS.patch b/dev-db/sqliteodbc/files/sqliteodbc-0.93-respect_LDFLAGS.patch deleted file mode 100644 index 129ce3e65ff3..000000000000 --- a/dev-db/sqliteodbc/files/sqliteodbc-0.93-respect_LDFLAGS.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- Makefile.in.old 2012-03-24 12:57:34.533234122 +0100 -+++ Makefile.in 2012-03-24 12:58:06.908198492 +0100 -@@ -37,23 +37,23 @@ - all: @LIB_TARGETS@ - - libsqliteodbc.la: sqliteodbc.lo -- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libsqliteodbc.la \ -+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o libsqliteodbc.la \ - sqliteodbc.lo -rpath $(drvdir) $(SQLITE_LIB) \ - $(ODBC_LIB) -release $(VER_INFO) - - libsqlite3odbc.la: sqlite3odbc.lo $(SQLITE3_A10N_O) -- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libsqlite3odbc.la \ -+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o libsqlite3odbc.la \ - sqlite3odbc.lo $(SQLITE3_A10N_O) -rpath $(drvdir) \ - $(SQLITE3_LIB) $(ODBC_LIB) -release $(VER_INFO) \ - @DL_INITFINI@ - - libsqlite3_mod_blobtoxy.la: blobtoxy.lo -- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) \ -+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) \ - -o libsqlite3_mod_blobtoxy.la \ - blobtoxy.lo -rpath $(drvdir) -release $(VER_INFO) - - libsqlite3_mod_impexp.la: impexp.lo -- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) \ -+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) \ - -o libsqlite3_mod_impexp.la \ - impexp.lo -rpath $(drvdir) -release $(VER_INFO) - diff --git a/dev-db/sqliteodbc/metadata.xml b/dev-db/sqliteodbc/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/dev-db/sqliteodbc/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<!-- maintainer-needed --> -</pkgmetadata> diff --git a/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild b/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild deleted file mode 100644 index 997233a895fe..000000000000 --- a/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="ODBC driver to access local SQLite database files" -HOMEPAGE="http://www.ch-werner.de/sqliteodbc/" -SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ppc x86" -IUSE="" - -DEPEND=">=dev-db/sqlite-3.6 - || ( - >=dev-db/unixODBC-2.2 - >=dev-db/libiodbc-3.5 - )" -RDEPEND="${DEPEND}" - -pkg_setup() { - tc-export CC -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-0.93-respect_LDFLAGS.patch" -} - -src_configure() { - econf --disable-static -} - -src_install() { - dodir "/usr/$(get_libdir)" - emake DESTDIR="${D}" install - find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed" - dodoc ChangeLog README -} diff --git a/profiles/package.mask b/profiles/package.mask index b79a41e9a9a8..0b8d5a66d0d1 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -614,14 +614,6 @@ sys-cluster/pbs-python app-text/fbless # Sam James <sam@gentoo.org> (2020-08-30) -# Serious security bug, unmaintained. -# Stuck on long-obsolete EAPI 4. -# Several open bugs. -# bug 720732, bug 729714, bug 722644, -# bug 724184. -dev-db/sqliteodbc - -# Sam James <sam@gentoo.org> (2020-08-30) # Serious security vulns, outdated. # bug 699834. Removal in 30 days. www-apps/ampache |