From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gdbm/
Date: Tue, 2 Jan 2018 13:07:37 +0000 (UTC) [thread overview]
Message-ID: <1514898448.51f5487dd50701ba6a6f66f79b586fddfb190190.polynomial-c@gentoo> (raw)
commit: 51f5487dd50701ba6a6f66f79b586fddfb190190
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 2 12:51:04 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Jan 2 13:07:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f5487d
sys-libs/gdbm: Removed old.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
sys-libs/gdbm/Manifest | 1 -
sys-libs/gdbm/gdbm-1.12.ebuild | 71 -----------------------------------------
sys-libs/gdbm/gdbm-1.13.ebuild | 72 ------------------------------------------
3 files changed, 144 deletions(-)
diff --git a/sys-libs/gdbm/Manifest b/sys-libs/gdbm/Manifest
index b198ab08546..0b4327b630f 100644
--- a/sys-libs/gdbm/Manifest
+++ b/sys-libs/gdbm/Manifest
@@ -1,5 +1,4 @@
DIST gdbm-1.11.tar.gz 811662 BLAKE2B 5936aaac753da4aa5e9a103cfb8a50d33d8ff124846c9224f09aead496b9e76c269b17aaca0b96d3c51b0444910f29e4f9f246f858e5ab849917662711732f4b SHA512 272fb65ab9ca0a21e9f0dcfb2c638457e87cbb938c65ee850123474d11f2858496f84d3fa9edca27cd91c7220160cfdb59f90bd46ddc45395514addc9fd4151c
-DIST gdbm-1.12.tar.gz 841213 BLAKE2B e91d595df6bef489edf005a3e6ea66f3bb64dbb8afc079d82a16796cae53759bb0ab6123929d2375dcc2ff6b1dec15522b9d6a82c22bffa1f7a21a9c01673644 SHA512 25e03dceed6986f1977d304a5ad059ac6c603a88ad4aa18c831ec42df82d68006f2e04b8a3cc400d0a4970750c78ba24a3f84cdff70de9f278cfd854c059699e
DIST gdbm-1.13.tar.gz 891987 BLAKE2B f73cb89aeed140a584c5a8bce9c2324cc39a7647ee288364af66fbe1c1cd8662e53f7cb82a208e795a6d27adc048018153671d964ecad518407eb888283e17c5 SHA512 fdb777f5b415b0578ea46b4a6fc70151a04a3568e2f2c8c0219ccad8c0d34abb773d80d5d7a06462ad1a3d6c1f3b5b7ab25f9de4f43ccf05c58db05f9a2906ad
DIST gdbm-1.14.tar.gz 893270 BLAKE2B 413b0e866579c697baa8b6ee2412690d3a25aecae1a1bed7b213560a452bf6a41343cabcc5e1c4c3269f796148e7c94782b479790227780e0bd1e8e965eecb87 SHA512 8378920c446f4d343f43af9982acc93be28faf0d6ac709abead03fdd8d47e9ef0226e86179d1e9cdc239c096a11f8d9ccd524747f6114ed9985e1120b8b60c2b
DIST gdbm-1.8.3.tar.gz 228695 BLAKE2B 21b5833facb97fe937020d80b038c7b09e55eea6bdb9ec323d185a0980f235ff6a225d180d86d984469ce04a3f0266d20881f317f4339915bc6f61ab150ac2ac SHA512 2a01751ee8f730db563b4f52185c72f1c7a4f66530d6736f05f7446153be685ea0bb6ea1d2bad16ce31547fea879dc48507ff65ad35b0973df9aa385713b10d7
diff --git a/sys-libs/gdbm/gdbm-1.12.ebuild b/sys-libs/gdbm/gdbm-1.12.ebuild
deleted file mode 100644
index 4748ea36361..00000000000
--- a/sys-libs/gdbm/gdbm-1.12.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic libtool multilib multilib-minimal
-
-EX_P="${PN}-1.8.3"
-DESCRIPTION="Standard GNU database libraries"
-HOMEPAGE="https://www.gnu.org/software/gdbm/"
-SRC_URI="mirror://gnu/gdbm/${P}.tar.gz
- exporter? ( mirror://gnu/gdbm/${EX_P}.tar.gz )"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="+berkdb exporter nls static-libs"
-
-RDEPEND="
- abi_x86_32? (
- !<=app-emulation/emul-linux-x86-baselibs-20131008-r4
- !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
- )"
-
-EX_S="${WORKDIR}"/${EX_P}
-
-src_prepare() {
- elibtoolize
-}
-
-multilib_src_configure() {
- # gdbm doesn't appear to use either of these libraries
- export ac_cv_lib_dbm_main=no ac_cv_lib_ndbm_main=no
-
- if multilib_is_native_abi && use exporter ; then
- pushd "${EX_S}" >/dev/null
- append-lfs-flags
- econf --disable-shared
- popd >/dev/null
- fi
-
- ECONF_SOURCE=${S} \
- econf \
- --includedir="${EPREFIX}"/usr/include/gdbm \
- --with-gdbm183-libdir="${EX_S}/.libs" \
- --with-gdbm183-includedir="${EX_S}" \
- $(use_enable berkdb libgdbm-compat) \
- $(multilib_native_use_enable exporter gdbm-export) \
- $(use_enable nls) \
- $(use_enable static-libs static)
-}
-
-multilib_src_compile() {
- use exporter && emake -C "${EX_S}" libgdbm.la
- emake
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- use static-libs || find "${ED}" -name '*.la' -delete
- mv "${ED}"/usr/include/gdbm/gdbm.h "${ED}"/usr/include/ || die
-}
-
-pkg_preinst() {
- preserve_old_lib libgdbm{,_compat}.so.{2,3} #32510
-}
-
-pkg_postinst() {
- preserve_old_lib_notify libgdbm{,_compat}.so.{2,3} #32510
-}
diff --git a/sys-libs/gdbm/gdbm-1.13.ebuild b/sys-libs/gdbm/gdbm-1.13.ebuild
deleted file mode 100644
index 1aafca746d3..00000000000
--- a/sys-libs/gdbm/gdbm-1.13.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic libtool multilib multilib-minimal
-
-EX_P="${PN}-1.8.3"
-DESCRIPTION="Standard GNU database libraries"
-HOMEPAGE="https://www.gnu.org/software/gdbm/"
-SRC_URI="mirror://gnu/gdbm/${P}.tar.gz
- exporter? ( mirror://gnu/gdbm/${EX_P}.tar.gz )"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="+berkdb exporter nls +readline static-libs"
-
-DEPEND="
- readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
-"
-RDEPEND="${DEPEND}"
-
-EX_S="${WORKDIR}/${EX_P}"
-
-src_prepare() {
- elibtoolize
-}
-
-multilib_src_configure() {
- # gdbm doesn't appear to use either of these libraries
- export ac_cv_lib_dbm_main=no ac_cv_lib_ndbm_main=no
-
- if multilib_is_native_abi && use exporter ; then
- pushd "${EX_S}" >/dev/null
- append-lfs-flags
- econf --disable-shared
- popd >/dev/null
- fi
-
- local myeconfargs=(
- --includedir="${EPREFIX}"/usr/include/gdbm
- --with-gdbm183-libdir="${EX_S}/.libs"
- --with-gdbm183-includedir="${EX_S}"
- $(use_enable berkdb libgdbm-compat)
- $(multilib_native_use_enable exporter gdbm-export)
- $(use_enable nls)
- $(use_enable static-libs static)
- $(use_with readline)
- )
- ECONF_SOURCE=${S} econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
- use exporter && emake -C "${EX_S}" libgdbm.la
- emake
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- use static-libs || find "${ED}" -name '*.la' -delete
- mv "${ED%/}"/usr/include/gdbm/gdbm.h "${ED%/}"/usr/include/ || die
-}
-
-pkg_preinst() {
- preserve_old_lib libgdbm{,_compat}.so.{2,3} #32510
-}
-
-pkg_postinst() {
- preserve_old_lib_notify libgdbm{,_compat}.so.{2,3} #32510
-}
next reply other threads:[~2018-01-02 13:07 UTC|newest]
Thread overview: 103+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-02 13:07 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-09 0:08 [gentoo-commits] repo/gentoo:master commit in: sys-libs/gdbm/ Sam James
2024-12-06 13:04 Sam James
2024-11-17 3:06 Sam James
2024-10-18 19:43 Sam James
2024-08-30 7:59 Sam James
2024-08-29 3:51 Sam James
2024-08-29 3:23 Sam James
2024-08-29 3:15 Sam James
2024-08-29 3:15 Sam James
2024-08-29 3:15 Sam James
2024-08-29 2:35 Sam James
2024-07-03 0:54 Sam James
2022-10-28 7:01 Sam James
2022-10-18 2:18 Sam James
2022-06-21 9:41 David Seifert
2022-05-22 12:03 Jakov Smolić
2022-05-22 6:22 Agostino Sarubbo
2022-05-22 6:19 Agostino Sarubbo
2022-05-22 6:17 Agostino Sarubbo
2022-05-22 3:25 Sam James
2022-05-22 3:21 Sam James
2022-05-22 3:20 Sam James
2022-05-22 3:18 Sam James
2022-04-27 1:36 Sam James
2022-04-27 1:36 Sam James
2022-04-07 4:07 Sam James
2022-02-07 1:22 Sam James
2021-12-15 5:02 Arthur Zamarin
2021-12-14 22:16 Sam James
2021-12-13 7:03 Agostino Sarubbo
2021-12-13 7:02 Agostino Sarubbo
2021-12-13 6:57 Agostino Sarubbo
2021-12-13 6:17 Sam James
2021-12-13 6:17 Sam James
2021-10-19 10:04 Lars Wendler
2021-10-19 10:04 Lars Wendler
2021-09-03 22:15 Sam James
2021-09-03 22:13 Andreas K. Hüttel
2021-09-03 21:38 Andreas K. Hüttel
2021-09-03 18:03 Sam James
2021-09-02 16:26 Lars Wendler
2021-08-16 16:47 Sam James
2021-08-11 6:43 Agostino Sarubbo
2021-08-11 0:24 Sam James
2021-08-11 0:12 Sam James
2021-08-10 15:36 Agostino Sarubbo
2021-06-17 21:47 Lars Wendler
2021-05-27 16:51 Sergei Trofimovich
2021-05-26 8:11 Sam James
2021-05-26 8:04 Sam James
2021-05-25 11:06 Sam James
2021-05-24 0:12 Sam James
2021-05-24 0:12 Sam James
2021-05-23 23:05 Agostino Sarubbo
2021-05-23 22:28 Agostino Sarubbo
2021-01-06 15:35 Fabian Groffen
2020-12-27 18:20 Fabian Groffen
2020-12-24 23:17 Lars Wendler
2020-11-18 22:01 Sergei Trofimovich
2020-11-17 19:17 Agostino Sarubbo
2020-11-17 19:10 Agostino Sarubbo
2020-11-17 19:05 Agostino Sarubbo
2020-11-17 18:55 Agostino Sarubbo
2020-11-17 18:50 Agostino Sarubbo
2020-11-15 5:24 Sam James
2020-11-14 22:50 Sam James
2020-11-14 21:15 Sam James
2020-09-07 20:44 Mike Gilbert
2020-08-05 14:06 Agostino Sarubbo
2020-08-05 14:04 Agostino Sarubbo
2020-08-05 14:02 Agostino Sarubbo
2020-08-05 14:01 Agostino Sarubbo
2020-07-27 18:36 Sergei Trofimovich
2020-07-25 11:17 Sam James
2020-07-25 8:42 Sergei Trofimovich
2020-07-22 9:01 Agostino Sarubbo
2019-05-04 13:25 Mikle Kolyada
2018-10-27 15:29 Lars Wendler
2018-08-23 23:05 Lars Wendler
2018-08-23 23:05 Lars Wendler
2018-07-31 8:44 Lars Wendler
2018-07-31 8:44 Lars Wendler
2018-06-28 12:48 Lars Wendler
2018-06-16 21:10 Lars Wendler
2018-04-20 11:13 Lars Wendler
2018-03-04 8:16 Tobias Klausmann
2018-01-16 3:56 Mike Frysinger
2018-01-10 6:19 Markus Meier
2018-01-07 11:19 Sergei Trofimovich
2018-01-06 14:25 Sergei Trofimovich
2018-01-05 9:47 Lars Wendler
2018-01-04 1:29 Lars Wendler
2018-01-04 1:29 Lars Wendler
2018-01-03 19:51 Sergei Trofimovich
2018-01-02 21:23 Lars Wendler
2018-01-02 13:07 Lars Wendler
2017-06-22 22:42 Lars Wendler
2017-06-21 0:41 Lars Wendler
2017-06-17 21:54 Lars Wendler
2017-03-11 19:47 Lars Wendler
2017-01-29 20:14 Fabian Groffen
2016-05-17 10:12 Lars Wendler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1514898448.51f5487dd50701ba6a6f66f79b586fddfb190190.polynomial-c@gentoo \
--to=polynomial-c@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox