* [gentoo-commits] proj/musl:master commit in: sys-libs/gdbm/
@ 2016-11-12 10:51 Felix Janda
0 siblings, 0 replies; only message in thread
From: Felix Janda @ 2016-11-12 10:51 UTC (permalink / raw
To: gentoo-commits
commit: dd49ae12f7b3c4636fe07ceca042643576c1fa1d
Author: Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Sat Nov 12 10:44:35 2016 +0000
Commit: Felix Janda <felix.janda <AT> posteo <DOT> de>
CommitDate: Sat Nov 12 10:44:35 2016 +0000
URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=dd49ae12
sys-libs/gdbm: in tree version works fine
sys-libs/gdbm/Manifest | 4 ---
sys-libs/gdbm/gdbm-1.11-r99.ebuild | 70 --------------------------------------
sys-libs/gdbm/metadata.xml | 12 -------
3 files changed, 86 deletions(-)
diff --git a/sys-libs/gdbm/Manifest b/sys-libs/gdbm/Manifest
deleted file mode 100644
index 03bc2a0..0000000
--- a/sys-libs/gdbm/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST gdbm-1.11.tar.gz 811662 SHA256 8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3 SHA512 272fb65ab9ca0a21e9f0dcfb2c638457e87cbb938c65ee850123474d11f2858496f84d3fa9edca27cd91c7220160cfdb59f90bd46ddc45395514addc9fd4151c WHIRLPOOL 827f100826273fb8e6d8fdc88fffdb81e5630a7d07bdbeeb7d25759809c5165613446567b0b48bf862d4a4b231e5db921e28c9d6915e669fd0ce795f4a9f150a
-DIST gdbm-1.8.3.tar.gz 228695 SHA256 cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9 SHA512 2a01751ee8f730db563b4f52185c72f1c7a4f66530d6736f05f7446153be685ea0bb6ea1d2bad16ce31547fea879dc48507ff65ad35b0973df9aa385713b10d7 WHIRLPOOL 9d2e402b2ec00cadfc64e40d87da095f293f157386abbe9a64ebe8b7a2af9b965546805826ffe3d5c88212dec0628ab2ae3ebef91de2da7fc69d0937d03d7075
-EBUILD gdbm-1.11-r99.ebuild 1672 SHA256 154ebdd14d2c5fac7de4a3d2df4ef2d2c3287a2c43903d18b99ec05f7b972d57 SHA512 3bf994ec417fceef0660dc37eb33da59b22e1d08765a45d24ba1a0594be118e68d7dbf6e1452713e383a26a19c67915aa20907be96e9820339322993fab705e5 WHIRLPOOL cdd80ec695ac3acdf923c91b306e64eb95a7b138a4798e9df05752ea73c9389a04a7e7f2f645e282262dafd41852d21b2ec3674568ba1b8659f69a61ba9deecf
-MISC metadata.xml 471 SHA256 d1096e4a55096ffa3feec967b72fc7facdef179e2a0f229f72a4649f4b157ea6 SHA512 05f989aa1f1d2ca29d4084741af8465c3daa0713881130aeb8ba8ac65f89a8874d668a0ea32184ec404e19777aa1df9e8d2526fe2ce9a22cae8c08c608501d41 WHIRLPOOL 7dfb6740dc7b6c26edc10bb868522abfcb549bebb965daaed20e3531a23d43cde993f3b1795bf19c890fbb29a60c73b7ad5f7ee2ec35bb0f9981b0976818f5ed
diff --git a/sys-libs/gdbm/gdbm-1.11-r99.ebuild b/sys-libs/gdbm/gdbm-1.11-r99.ebuild
deleted file mode 100644
index cc261d1..0000000
--- a/sys-libs/gdbm/gdbm-1.11-r99.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit flag-o-matic libtool multilib multilib-minimal
-
-EX_P="${PN}-1.8.3"
-DESCRIPTION="Standard GNU database libraries"
-HOMEPAGE="http://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="amd64 arm ~mips ppc x86"
-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_build_binaries && 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_build_binaries && 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() {
- 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/metadata.xml b/sys-libs/gdbm/metadata.xml
deleted file mode 100644
index d75e86b..0000000
--- a/sys-libs/gdbm/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>base-system@gentoo.org</email>
- <name>Gentoo Base System</name>
-</maintainer>
-<use>
- <flag name="berkdb">enable compatibility layer for UNIX-like dbm and ndbm interfaces</flag>
- <flag name="exporter">enable gdbmexport binary for exporting data from gdbm-1.8 databases into gdbm-1.9</flag>
-</use>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-11-12 10:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-12 10:51 [gentoo-commits] proj/musl:master commit in: sys-libs/gdbm/ Felix Janda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox