summaryrefslogtreecommitdiff
path: root/dev-db
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-17 14:19:15 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-17 14:19:15 +0200
commit29ecb65037bc24a553d206cfc44b148f203f9727 (patch)
tree9c6d3624c030dbdc7bfb063a030970975ff0a775 /dev-db
parentdev-db/odbtp: Remove last-rited pkg (diff)
downloadgentoo-29ecb65037bc24a553d206cfc44b148f203f9727.tar.gz
gentoo-29ecb65037bc24a553d206cfc44b148f203f9727.tar.bz2
gentoo-29ecb65037bc24a553d206cfc44b148f203f9727.zip
dev-db/soci: Remove last-rited pkg
Closes: https://bugs.gentoo.org/694602 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r--dev-db/soci/Manifest1
-rw-r--r--dev-db/soci/metadata.xml12
-rw-r--r--dev-db/soci/soci-3.2.3-r1.ebuild50
3 files changed, 0 insertions, 63 deletions
diff --git a/dev-db/soci/Manifest b/dev-db/soci/Manifest
deleted file mode 100644
index 1f4e653a34d8..000000000000
--- a/dev-db/soci/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST soci-3.2.3.zip 508929 BLAKE2B e1a83172391508506744b18ac0b18d69bec34bfbd31d9156b2cb786cdb7cdd8a99ace21d1286a2c4432ba18e18dedc4f390075a25a30fa2e45f36d802661ddb2 SHA512 dd9b7eaf535502e3230eada4d4d019963d2c9cf59b69fff5d466b4fc00976fa08f7b0199a0e4564a0395d0d30095b97aa1d613dfbaa329feb077ece3b0efacdf
diff --git a/dev-db/soci/metadata.xml b/dev-db/soci/metadata.xml
deleted file mode 100644
index ad9d64cb1e23..000000000000
--- a/dev-db/soci/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!--maintainer-needed-->
- <use>
- <flag name="boost">Enable boost support</flag>
- <flag name="empty">Build the sample backend called Empty</flag>
- </use>
- <upstream>
- <remote-id type="sourceforge">soci</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-db/soci/soci-3.2.3-r1.ebuild b/dev-db/soci/soci-3.2.3-r1.ebuild
deleted file mode 100644
index 9051f4411cb7..000000000000
--- a/dev-db/soci/soci-3.2.3-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Makes the illusion of embedding SQL queries in the regular C++ code"
-HOMEPAGE="http://soci.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boost doc +empty firebird mysql odbc oracle postgres sqlite static-libs test"
-
-RDEPEND="
- firebird? ( dev-db/firebird )
- mysql? ( dev-db/mysql-connector-c:= )
- odbc? ( dev-db/unixODBC )
- oracle? ( dev-db/oracle-instantclient-basic )
- postgres? ( dev-db/postgresql:= )
- sqlite? ( dev-db/sqlite:3 )
-"
-DEPEND="${RDEPEND}
- boost? ( dev-libs/boost )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_BOOST=$(usex boost)
- -DSOCI_EMPTY=$(usex empty)
- -DWITH_FIREBIRD=$(usex firebird)
- -DWITH_MYSQL=$(usex mysql)
- -DWITH_ODBC=$(usex odbc)
- -DWITH_ORACLE=$(usex oracle)
- -DWITH_POSTGRESQL=$(usex postgres)
- -DWITH_SQLITE3=$(usex sqlite)
- -DSOCI_STATIC=$(usex static-libs)
- -DSOCI_TESTS=$(usex test)
- -DWITH_DB2=OFF
- )
- #use MYCMAKEARGS if you want enable IBM DB2 support
- cmake-utils_src_configure
-}
-
-src_install() {
- use doc && local HTML_DOCS=( doc/. )
- cmake-utils_src_install
-}