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 D19C5158086 for ; Thu, 21 Oct 2021 15:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 024FDE07B3; Thu, 21 Oct 2021 15:05:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07B78E0845 for ; Thu, 21 Oct 2021 15:05:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF1F934325F for ; Thu, 21 Oct 2021 15:05:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18C96156 for ; Thu, 21 Oct 2021 15:05:38 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1634828669.0e266c1cca59f7f23f2343f108efbfe822180912.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/qdbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/qdbm/qdbm-1.8.78-r2.ebuild X-VCS-Directories: dev-db/qdbm/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 0e266c1cca59f7f23f2343f108efbfe822180912 X-VCS-Branch: master Date: Thu, 21 Oct 2021 15:05:38 +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: d4ba2d6a-90de-41f4-896f-56c7abccaf30 X-Archives-Hash: 77ef804ce52e869c07a216944710b1a2 commit: 0e266c1cca59f7f23f2343f108efbfe822180912 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Oct 21 14:16:41 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Thu Oct 21 15:04:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e266c1c dev-db/qdbm: remove old Closes: https://github.com/gentoo/gentoo/pull/22657 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Akinori Hattori gentoo.org> dev-db/qdbm/qdbm-1.8.78-r2.ebuild | 196 -------------------------------------- 1 file changed, 196 deletions(-) diff --git a/dev-db/qdbm/qdbm-1.8.78-r2.ebuild b/dev-db/qdbm/qdbm-1.8.78-r2.ebuild deleted file mode 100644 index 8f010ce95b7..00000000000 --- a/dev-db/qdbm/qdbm-1.8.78-r2.ebuild +++ /dev/null @@ -1,196 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -USE_RUBY="ruby25 ruby26 ruby27 ruby30" -RUBY_OPTIONAL="yes" - -inherit autotools flag-o-matic java-pkg-opt-2 perl-functions ruby-ng - -DESCRIPTION="Quick Database Manager" -HOMEPAGE="https://fallabs.com/qdbm/" -SRC_URI="https://fallabs.com/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86" -IUSE="bzip2 cxx debug java lzo perl ruby static-libs zlib" - -RDEPEND="bzip2? ( app-arch/bzip2 ) - java? ( >=virtual/jre-1.4:* ) - lzo? ( dev-libs/lzo ) - perl? ( dev-lang/perl ) - ruby? ( $(ruby_implementations_depend) ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - java? ( >=virtual/jdk-1.4:* )" -S="${WORKDIR}/all/${P}" -RUBY_S="${P}/ruby" - -PATCHES=( - "${FILESDIR}"/${PN}-configure.patch - "${FILESDIR}"/${PN}-perl.patch - "${FILESDIR}"/${PN}-ruby19.patch - "${FILESDIR}"/${PN}-runpath.patch - "${FILESDIR}"/${PN}-darwin.patch -) -HTML_DOCS=( doc/. ) - -AT_NOELIBTOOLIZE="yes" - -pkg_setup() { - java-pkg-opt-2_pkg_setup - use ruby && ruby-ng_pkg_setup -} - -qdbm_foreach_api() { - local u - for u in cxx java perl ruby; do - if ! use "${u}"; then - continue - fi - einfo "${EBUILD_PHASE} ${u}" - if [[ "${u}" == "cxx" ]]; then - u="plus" - fi - if [[ "${u}" != "ruby" ]]; then - cd "${u}" - case "${EBUILD_PHASE}" in - prepare) - mv configure.{in,ac} - eautoreconf - ;; - configure) - case "${u}" in - cgi|java|plus) - econf $(use_enable debug) - ;; - *) - econf - ;; - esac - ;; - compile) - emake - ;; - test) - emake check - ;; - install) - emake DESTDIR="${D}" MYDATADIR=/usr/share/doc/${P}/html install - esac - cd - >/dev/null - else - PATCHES= ruby-ng_src_${EBUILD_PHASE} - fi - done -} - -src_prepare() { - default - java-pkg-opt-2_src_prepare - - # fix build with >=sys-devel/gcc-7, bug #638878 - append-cflags $(test-flags-CC -fno-tree-vrp) - - sed -i \ - -e "/^CFLAGS/s|$| ${CFLAGS}|" \ - -e "/^OPTIMIZE/s|$| ${CFLAGS}|" \ - -e "/^CXXFLAGS/s|$| ${CXXFLAGS}|" \ - -e "/^JAVACFLAGS/s|$| ${JAVACFLAGS}|" \ - -e 's/make\( \|$\)/$(MAKE)\1/g' \ - -e '/^debug/,/^$/s/LDFLAGS="[^"]*" //' \ - Makefile.in {cgi,java,perl,plus,ruby}/Makefile.in || die - find -name "*~" -delete || die - - mv configure.{in,ac} || die - eautoreconf - qdbm_foreach_api -} - -each_ruby_prepare() { - sed -i \ - -e "s|ruby |${RUBY} |" \ - -e "s|\.\./\.\.|${WORKDIR}/all/${P}|" \ - {Makefile,configure}.in {curia,depot,villa}/extconf.rb || die - - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf \ - $(use_enable bzip2 bzip) \ - $(use_enable debug) \ - $(use_enable lzo) \ - $(use_enable zlib) \ - --enable-iconv \ - --enable-pthread - qdbm_foreach_api -} - -each_ruby_configure() { - econf -} - -src_compile() { - if [[ ${CHOST} == *darwin* ]] ; then - emake mac - else - default - qdbm_foreach_api - fi -} - -each_ruby_compile() { - emake -} - -src_test() { - if [[ ${CHOST} == *darwin* ]] ; then - emake check-mac - else - default - qdbm_foreach_api - fi -} - -each_ruby_test() { - emake check -} - -src_install() { - if [[ ${CHOST} == *darwin* ]] ; then - emake install-mac - else - default - fi - - qdbm_foreach_api - use static-libs || find "${ED}" -name '*.a' -delete || die - - rm -rf "${ED}"/usr/share/${PN} - - if use java; then - java-pkg_dojar "${ED}"/usr/$(get_libdir)/*.jar - rm -f "${ED}"/usr/$(get_libdir)/*.jar - fi - if use perl; then - perl_delete_module_manpages - perl_fix_packlist - fi - - rm -f "${ED}"/usr/bin/*test - rm -f "${ED}"/usr/share/man/man1/*test.1* -} - -each_ruby_install() { - local m - for m in curia depot villa; do - emake -C "${m}" DESTDIR="${D}" install - done -} - -all_ruby_install() { - dodoc -r rb*.html rbapidoc -}