* [gentoo-commits] repo/gentoo:master commit in: dev-db/libodbc++/
@ 2021-11-14 13:48 Jakov Smolić
0 siblings, 0 replies; 2+ messages in thread
From: Jakov Smolić @ 2021-11-14 13:48 UTC (permalink / raw
To: gentoo-commits
commit: 0d836275904b0d08fac841bbad6cd365d0b02a2c
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 13:43:21 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> 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ć <jsmolic <AT> 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
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/libodbc++/
@ 2023-02-12 18:35 Jakov Smolić
0 siblings, 0 replies; 2+ messages in thread
From: Jakov Smolić @ 2023-02-12 18:35 UTC (permalink / raw
To: gentoo-commits
commit: afc3c815fb42eb31f1ca6b3b15a5761267880085
Author: Xin Yang <yangmame <AT> icloud <DOT> com>
AuthorDate: Fri Feb 10 15:50:20 2023 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 18:35:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afc3c815
dev-db/libodbc++: keyword 0.2.5-r3 riscv #893856
Signed-off-by: Xin Yang <yangmame <AT> icloud.com>
Closes: https://github.com/gentoo/gentoo/pull/29533
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild b/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild
index b3ebd27f321a..7fb107403c2a 100644
--- a/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild
+++ b/dev-db/libodbc++/libodbc++-0.2.5-r3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://libodbcxx.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT=0
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~riscv ~x86"
DEPEND="dev-db/unixODBC
sys-libs/ncurses"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-12 18:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-14 13:48 [gentoo-commits] repo/gentoo:master commit in: dev-db/libodbc++/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2023-02-12 18:35 Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox