From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B79FE1382C5 for ; Sat, 13 Mar 2021 20:19:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD628E083B; Sat, 13 Mar 2021 20:19:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2F8EE083B for ; Sat, 13 Mar 2021 20:19:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99868340BDD for ; Sat, 13 Mar 2021 20:19:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D4CC59B for ; Sat, 13 Mar 2021 20:19:07 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1615666734.c7d3a3ecef1c826d80b2856ae0ebd5c1c9dfe8bd.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/vsqlite++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild X-VCS-Directories: dev-db/vsqlite++/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c7d3a3ecef1c826d80b2856ae0ebd5c1c9dfe8bd X-VCS-Branch: master Date: Sat, 13 Mar 2021 20:19:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9c786587-3c63-4acc-a56b-21e06102175e X-Archives-Hash: 185df587559df91c880701398412d281 commit: c7d3a3ecef1c826d80b2856ae0ebd5c1c9dfe8bd Author: David Seifert gentoo org> AuthorDate: Sat Mar 13 20:18:54 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Mar 13 20:18:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d3a3ec dev-db/vsqlite++: Port to EAPI 7 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild | 41 +++++++++++++++-------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild b/dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild index 0024ad1032b..803330278e2 100644 --- a/dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild +++ b/dev-db/vsqlite++/vsqlite++-0.3.13-r1.ebuild @@ -1,39 +1,40 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -AUTOTOOLS_IN_SOURCE_BUILD=1 -AUTOTOOLS_AUTORECONF=1 +EAPI=7 -inherit autotools-utils +inherit autotools -DESCRIPTION="VSQLite++ - A welldesigned and portable SQLite3 Wrapper for C++" +DESCRIPTION="VSQLite++ - A well designed and portable SQLite3 Wrapper for C++" HOMEPAGE="http://evilissimo.fedorapeople.org/releases/vsqlite--/" SRC_URI="https://github.com/vinzenz/vsqlite--/archive/${PV}.tar.gz -> ${P}.tar.gz" -IUSE="static-libs" +# package name is vsqlite++, but github / homepage name is vsqlite-- +S="${WORKDIR}/vsqlite---${PV}" LICENSE="BSD" - SLOT="0" - KEYWORDS="amd64 ppc x86" -DEPEND=">=dev-libs/boost-1.33.1" - -RDEPEND="${DEPEND} - dev-db/sqlite:3" - -DOCS=(AUTHORS COPYING ChangeLog INSTALL NEWS README.md TODO VERSION) - -# package name is vsqlite++, but github / homepage name is vsqlite-- -S="${WORKDIR}/vsqlite---${PV}" +RDEPEND="dev-db/sqlite:3" +DEPEND=" + ${RDEPEND} + dev-libs/boost" src_prepare() { + default ## remove O3 in AM_CXXFLAGS sed -i -e 's/-O3//' Makefile.am || die - autotools-utils_src_prepare + + eautoreconf } src_configure() { - econf $(use_enable static-libs static) + econf --disable-static +} + +src_install() { + default + dodoc VERSION + + find "${ED}" -name '*.la' -delete || die }