diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-06-02 10:55:17 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-06-02 10:55:17 +0000 |
commit | b5427ad53a406fa295ecf326c72688a306c19bf5 (patch) | |
tree | 546faa25b694077dfd7be3fc09bb7eadce7f8efc /dev-db | |
parent | Version bump. (diff) | |
download | gentoo-2-b5427ad53a406fa295ecf326c72688a306c19bf5.tar.gz gentoo-2-b5427ad53a406fa295ecf326c72688a306c19bf5.tar.bz2 gentoo-2-b5427ad53a406fa295ecf326c72688a306c19bf5.zip |
Bump, fixes #321171, thanks to Johan Bergstroem
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/tokyocabinet/ChangeLog | 10 | ||||
-rw-r--r-- | dev-db/tokyocabinet/files/1.4.43.patch | 12 | ||||
-rw-r--r-- | dev-db/tokyocabinet/files/1.4.45.patch (renamed from dev-db/tokyocabinet/files/1.4.44.patch) | 2 | ||||
-rw-r--r-- | dev-db/tokyocabinet/tokyocabinet-1.4.43.ebuild | 45 | ||||
-rw-r--r-- | dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild (renamed from dev-db/tokyocabinet/tokyocabinet-1.4.44.ebuild) | 2 |
5 files changed, 11 insertions, 60 deletions
diff --git a/dev-db/tokyocabinet/ChangeLog b/dev-db/tokyocabinet/ChangeLog index e8ea2ff8c8d3..f8f7438006b8 100644 --- a/dev-db/tokyocabinet/ChangeLog +++ b/dev-db/tokyocabinet/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-db/tokyocabinet # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.24 2010/05/03 17:56:03 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.25 2010/06/02 10:55:17 patrick Exp $ + +*tokyocabinet-1.4.45 (02 Jun 2010) + + 02 Jun 2010; Patrick Lauer <patrick@gentoo.org> -files/1.4.43.patch, + -tokyocabinet-1.4.44.ebuild, -files/1.4.44.patch, + +tokyocabinet-1.4.45.ebuild, +files/1.4.45.patch, + -tokyocabinet-1.4.43.ebuild: + Bump, fixes #321171, thanks to Johan Bergstroem 03 May 2010; Patrick Lauer <patrick@gentoo.org> tokyocabinet-1.4.44.ebuild: diff --git a/dev-db/tokyocabinet/files/1.4.43.patch b/dev-db/tokyocabinet/files/1.4.43.patch deleted file mode 100644 index a75da590ee38..000000000000 --- a/dev-db/tokyocabinet/files/1.4.43.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index 60b1036..12f02b0 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -125,7 +125,6 @@ install : - cd man && cp -Rf $(MAN3FILES) $(DESTDIR)$(MAN3DIR) - mkdir -p $(DESTDIR)$(PCDIR) - cp -Rf $(PCFILES) $(DESTDIR)$(PCDIR) -- [ "$$UID" == 0 ] && ldconfig || true - @printf '\n' - @printf '#================================================================\n' - @printf '# Thanks for using Tokyo Cabinet.\n' diff --git a/dev-db/tokyocabinet/files/1.4.44.patch b/dev-db/tokyocabinet/files/1.4.45.patch index 1e5ccca83bd0..64d7b4a4f9fb 100644 --- a/dev-db/tokyocabinet/files/1.4.44.patch +++ b/dev-db/tokyocabinet/files/1.4.45.patch @@ -9,4 +9,4 @@ index 973bf81..e44f0a8 100644 - [ "$$UID" = 0 ] && ldconfig || true @printf '\n' @printf '#================================================================\n' - @printf '# Thanks for using Tokyo Cabinet.\n' + @printf '# Thanks for using Tokyo Cabinet.\n'
\ No newline at end of file diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.43.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.43.ebuild deleted file mode 100644 index a195f2b77031..000000000000 --- a/dev-db/tokyocabinet/tokyocabinet-1.4.43.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.43.ebuild,v 1.1 2010/03/17 21:25:37 patrick Exp $ - -EAPI=2 - -inherit eutils - -DESCRIPTION="A library of routines for managing a database" -HOMEPAGE="http://1978th.net/tokyocabinet/" -SRC_URI="${HOMEPAGE}${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" -IUSE="debug doc examples" - -DEPEND="sys-libs/zlib - app-arch/bzip2" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}/fix_rpath.patch" - epatch "${FILESDIR}/${PV}.patch" -} - -src_configure() { - econf $(use_enable debug) -} - -src_install() { - emake DESTDIR="${D}" install || die "Install failed" - - if use examples; then - dodoc example/* || die "Install failed" - fi - - if use doc; then - dodoc doc/* || die "Install failed" - fi -} - -src_test() { - emake -j1 check || die "Tests failed" -} diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.44.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild index f649659b67ff..e42260c81595 100644 --- a/dev-db/tokyocabinet/tokyocabinet-1.4.44.ebuild +++ b/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.44.ebuild,v 1.2 2010/05/03 17:56:03 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild,v 1.1 2010/06/02 10:55:17 patrick Exp $ EAPI=2 |