mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-db/ctdb: Remove last-rited pkg, #512292
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST ctdb-1.13.tar.xz 736004 SHA256 c43693877cbc7d047d8b11b01a101bee69df6a871ab397214cc68d8f6f8c98c7 SHA512 653e1d5c29962810353d6b8c5867d07bef17dd5bf431f7304793f13712bb92379fb1b05b6e461279b08e0a1c9d87951f57fb1e2c35f85392b99baadf7d232ece WHIRLPOOL 9323de35b038a920ed6d5ed3be379c7c2ec93814f0f8c4f304de36e2512f58f7a62578ecd257d4fbe4e856c6d0b196fae88e7fbf673e47bbfd2acf0f2ac13b6b
|
||||
@@ -1,44 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils multilib-minimal
|
||||
|
||||
DESCRIPTION="A cluster implementation of the TDB database used to store temporary data"
|
||||
HOMEPAGE="http://ctdb.samba.org/"
|
||||
# upstream is too sexy for releases, grab tags from:
|
||||
# http://git.samba.org/?p=ctdb.git;a=summary
|
||||
SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/popt-1.16-r2[${MULTILIB_USEDEP}]"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-ldflags.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
epatch "${PATCHES[@]}"
|
||||
epatch_user
|
||||
|
||||
# custom, broken Makefile
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
econf \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
||||
--localstatedir="${EPREFIX}/var/lib" \
|
||||
--with-logdir="${EPREFIX}/var/log/${PN}"
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
dohtml web/* doc/*.html
|
||||
}
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
EGIT_REPO_URI="git://git.samba.org/ctdb.git"
|
||||
inherit autotools eutils git-2 multilib-minimal
|
||||
|
||||
DESCRIPTION="A cluster implementation of the TDB database used to store temporary data"
|
||||
HOMEPAGE="http://ctdb.samba.org/"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/popt-1.16-r2[${MULTILIB_USEDEP}]"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
AT_M4DIR="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
|
||||
AT_M4DIR+=" -I lib/talloc -I talloc -I ../talloc"
|
||||
AT_M4DIR+=" -I lib/tdb -I tdb -I ../tdb"
|
||||
AT_M4DIR+=" -I lib/popt -I popt -I ../popt"
|
||||
AT_M4DIR+=" -I lib/tevent"
|
||||
|
||||
rm -rf autom4te.cache
|
||||
rm -f configure config.h.in
|
||||
|
||||
autotools_run_tool autoheader ${AT_M4DIR} || die "running autoheader failed"
|
||||
eautoconf ${AT_M4DIR}
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${PATCHES[@]}"
|
||||
epatch_user
|
||||
|
||||
# custom, broken Makefile
|
||||
multilib_copy_sources
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
econf \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
||||
--localstatedir="${EPREFIX}/var/lib" \
|
||||
--with-logdir="${EPREFIX}/var/log/${PN}"
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
dohtml web/* doc/*.html
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
diff -urN ctdb-1.13.old/Makefile.in ctdb-1.13/Makefile.in
|
||||
--- ctdb-1.13.old/Makefile.in 2012-03-23 11:30:03.321735210 +0100
|
||||
+++ ctdb-1.13/Makefile.in 2012-03-23 11:37:03.131704144 +0100
|
||||
@@ -151,7 +151,7 @@
|
||||
|
||||
bin/ltdbtool: tools/ltdbtool.o @TDB_OBJ@
|
||||
@echo Linking $@
|
||||
- @$(CC) $(CFLAGS) -o $@ $+
|
||||
+ @$(CC) $(CFLAGS) -o $@ $+ $(LIB_FLAGS)
|
||||
|
||||
bin/smnotify: utils/smnotify/gen_xdr.o utils/smnotify/gen_smnotify.o utils/smnotify/smnotify.o $(POPT_OBJ)
|
||||
@echo Linking $@
|
||||
@@ -173,7 +173,7 @@
|
||||
|
||||
bin/ping_pong: utils/ping_pong/ping_pong.o
|
||||
@echo Linking $@
|
||||
- @$(CC) $(CFLAGS) -o $@ utils/ping_pong/ping_pong.o
|
||||
+ @$(CC) $(CFLAGS) -o $@ utils/ping_pong/ping_pong.o $(LIB_FLAGS)
|
||||
|
||||
bin/pmdactdb: $(CTDB_CLIENT_OBJ) utils/pmda/pmda_ctdb.o
|
||||
@echo Linking $@
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>samba@gentoo.org</email>
|
||||
<name>Samba</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -421,13 +421,6 @@ app-mobilephone/bitpim
|
||||
# Removal in 30 days. Bug #562896.
|
||||
net-irc/charybdis
|
||||
|
||||
# Michał Górny <mgorny@gentoo.org> (05 Jun 2017)
|
||||
# (on behalf of Treecleaner project)
|
||||
# Unmaintained in Gentoo. Multiple versions behind upstream.
|
||||
# Security vulnerabilities. No reverse dependencies anymore.
|
||||
# Removal in 30 days. Bug #512292.
|
||||
dev-db/ctdb
|
||||
|
||||
# Hans de Graaff <graaff@gentoo.org> (05 Jun 2017)
|
||||
# Bundles obsolete and vulnerable webkit version.
|
||||
# Upstream has stopped development and recommends using
|
||||
|
||||
Reference in New Issue
Block a user