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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F175158086 for ; Sun, 14 Nov 2021 13:48:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5B95E0A9A; Sun, 14 Nov 2021 13:48:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9417CE0A9A for ; Sun, 14 Nov 2021 13:48:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B2B23434DF for ; Sun, 14 Nov 2021 13:48:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D7AB1C0 for ; Sun, 14 Nov 2021 13:48:10 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1636897401.0d836275904b0d08fac841bbad6cd365d0b02a2c.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/libodbc++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/libodbc++/libodbc++-0.2.5-r2.ebuild dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild X-VCS-Directories: dev-db/libodbc++/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 0d836275904b0d08fac841bbad6cd365d0b02a2c X-VCS-Branch: master Date: Sun, 14 Nov 2021 13:48:10 +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: 75ebae47-4232-48a3-8bba-5a9fda9219cc X-Archives-Hash: 7a283473faa605dd34531ae6fe65eaaf commit: 0d836275904b0d08fac841bbad6cd365d0b02a2c Author: Jakov Smolić gentoo org> AuthorDate: Sun Nov 14 13:43:21 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sun Nov 14 13:43:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d836275 dev-db/libodbc++: Port to EAPI 8 Closes: https://bugs.gentoo.org/819669 Closes: https://bugs.gentoo.org/729692 Closes: https://bugs.gentoo.org/372025 Signed-off-by: Jakov Smolić gentoo.org> ...+-0.2.5-r2.ebuild => libodbc++-0.2.5-r3.ebuild} | 58 +++++++++++----------- 1 file changed, 28 insertions(+), 30 deletions(-) diff --git a/dev-db/libodbc++/libodbc++-0.2.5-r2.ebuild b/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild similarity index 63% rename from dev-db/libodbc++/libodbc++-0.2.5-r2.ebuild rename to dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild index 7f0ddc69be4c..3241509b98af 100644 --- a/dev-db/libodbc++/libodbc++-0.2.5-r2.ebuild +++ b/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit epatch flag-o-matic +EAPI=8 + +inherit flag-o-matic DESCRIPTION="Provides a subset of the well-known JDBC 2.0(tm) and runs on top of ODBC" SRC_URI="mirror://sourceforge/libodbcxx/${P}.tar.bz2" @@ -12,8 +13,6 @@ LICENSE="LGPL-2.1" SLOT=0 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86" -IUSE="static-libs" - DEPEND="dev-db/unixODBC sys-libs/ncurses" RDEPEND="${DEPEND}" @@ -24,27 +23,26 @@ SB_MT="${S}-build-mt" #SB_QT="${S}-build_qt" #SB_QT_MT="${S}-build_qt-mt" +PATCHES=( + "${FILESDIR}"/${PN}-0.2.3-doxygen.patch + "${FILESDIR}"/${PN}-0.2.3-gcc41.patch + "${FILESDIR}"/${PN}-0.2.3-gcc44.patch +) + src_prepare() { - #epatch "${FILESDIR}"/${PN}-0.2.3-std-streamsize.patch - epatch "${FILESDIR}"/${PN}-0.2.3-doxygen.patch - epatch "${FILESDIR}"/${PN}-0.2.3-gcc41.patch - #epatch "${FILESDIR}"/${PN}-0.2.3-gcc43.patch - #epatch "${FILESDIR}"/${PN}-0.2.3-typecast.patch - epatch "${FILESDIR}"/${PN}-0.2.3-gcc44.patch + default # Fix configure to use ncurses instead of termcap (bug #103105) - sed -i -e 's~termcap~ncurses~g' configure + sed -i -e 's~termcap~ncurses~g' configure || die # Fix undeclared ODBCXX_STRING_PERCENT symbol, bug #532356 sed -i -e 's/ODBCXX_STRING_PERCENT/"%"/' src/dtconv.h || die - - epatch_user } src_configure() { local commonconf buildlist - commonconf="--with-odbc=/usr --without-tests" - commonconf="${commonconf} $(use_enable static-libs static) --enable-shared" + commonconf="--with-odbc=${EPREFIX}/usr --without-tests" + commonconf="${commonconf} --enable-shared" # " --enable-threads" export ECONF_SOURCE="${S}" @@ -53,14 +51,15 @@ src_configure() { buildlist="${SB} ${SB_MT}" #use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT" + local sd for sd in ${buildlist}; do einfo "Doing configure pass for $sd" - mkdir -p "${sd}" - cd "${sd}" + mkdir -p "${sd}" || die + cd "${sd}" || die commonconf2='' LIBS='' - [ "${sd}" == "${SB_MT}" -o "${sd}" == "${SB_QT_MT}" ] && commonconf2="${commonconf2} --enable-threads" - [ "${sd}" == "${SB_QT}" -o "${sd}" == "${SB_QT_MT}" ] && commonconf2="${commonconf2} --with-qt" + [[ "${sd}" == "${SB_MT}" || "${sd}" == "${SB_QT_MT}" ]] && commonconf2="${commonconf2} --enable-threads" + [[ "${sd}" == "${SB_QT}" || "${sd}" == "${SB_QT_MT}" ]] && commonconf2="${commonconf2} --with-qt" # isql++ tool fails to compile: #libodbc++-0.2.5/isql++/isql++.cpp: In constructor 'Isql::Isql(odbc::Connection*)': #libodbc++-0.2.5/isql++/isql++.cpp:275: error: invalid cast to function type 'char** ()()' @@ -79,29 +78,28 @@ src_configure() { } src_compile() { - local buildlist failures + local buildlist failures sd buildlist="${SB} ${SB_MT}" #use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT" for sd in ${buildlist}; do - einfo "Doing compile pass for $sd" - cd "${sd}" - emake LIBS='' || failures="${failures} ${sd//${S}-}" + einfo "Doing compile pass for ${sd}" + emake -C "${sd}" LIBS='' || failures="${failures} ${sd//${S}-}" done - [ -n "${failures}" ] && die "Failures: ${failures}" + [[ -n ${failures} ]] && die "Failures: ${failures}" } src_install() { - dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO + einstalldocs + local sd buildlist buildlist="${SB} ${SB_MT}" #use qt3 && buildlist="${buildlist} $SB_QT $SB_QT_MT" for sd in ${buildlist}; do - einfo "Doing install pass for $sd" - cd ${sd} - emake DESTDIR="${D}" install + einfo "Doing install pass for ${sd}" + emake -C "${sd}" DESTDIR="${D}" install done if [[ "${P}" != "${PF}" ]]; then - mv "${D}"/usr/share/doc/${P}/* "${D}"/usr/share/doc/${PF}/ - rmdir "${D}"/usr/share/doc/${P} + mv "${ED}"/usr/share/doc/${P}/* "${ED}"/usr/share/doc/${PF}/ || die + rmdir "${ED}"/usr/share/doc/${P} || die fi }