public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2010-08-13 10:34 Patrick Lauer (patrick)
  0 siblings, 0 replies; 7+ messages in thread
From: Patrick Lauer (patrick) @ 2010-08-13 10:34 UTC (permalink / raw
  To: gentoo-commits

patrick     10/08/13 10:34:29

  Modified:             ChangeLog
  Added:                tokyocabinet-1.4.46.ebuild
  Log:
  Bump, lots of nice fixes by Johan Bergstroem, fixes #331555
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.26                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	2 Jun 2010 10:55:17 -0000	1.25
+++ ChangeLog	13 Aug 2010 10:34:29 -0000	1.26
@@ -1,6 +1,12 @@
 # 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.25 2010/06/02 10:55:17 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.26 2010/08/13 10:34:29 patrick Exp $
+
+*tokyocabinet-1.4.46 (13 Aug 2010)
+
+  13 Aug 2010; Patrick Lauer <patrick@gentoo.org> +files/1.4.46.patch,
+  +tokyocabinet-1.4.46.ebuild, +files/remove_docinst.patch:
+  Bump, lots of nice fixes by Johan Bergstroem, fixes #331555
 
 *tokyocabinet-1.4.45 (02 Jun 2010)
 



1.1                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.1&content-type=text/plain

Index: tokyocabinet-1.4.46.ebuild
===================================================================
# 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.46.ebuild,v 1.1 2010/08/13 10:34:29 patrick Exp $

EAPI="2"

inherit eutils

DESCRIPTION="A library of routines for managing a database"
HOMEPAGE="http://fallabs.com/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"
	epatch "${FILESDIR}/remove_docinst.patch"
}

src_configure() {
	econf $(use_enable debug) --enable-off64
}

src_install() {
	emake DESTDIR="${D}" install || die "Install failed"

	if use examples; then
		insinto /usr/share/${PF}/example
		doins example/* || die "Install failed"
	fi

	if use doc; then
		insinto /usr/share/doc/${PF}
		doins -r doc/* || die "Install failed"
	fi
}

src_test() {
	emake -j1 check || die "Tests failed"
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2010-09-12 20:29 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-09-12 20:29 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/09/12 20:29:17

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  x86 stable wrt bug #335043
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.27                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	13 Aug 2010 10:34:29 -0000	1.26
+++ ChangeLog	12 Sep 2010 20:29:17 -0000	1.27
@@ -1,6 +1,10 @@
 # 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.26 2010/08/13 10:34:29 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.27 2010/09/12 20:29:17 phajdan.jr Exp $
+
+  12 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  tokyocabinet-1.4.46.ebuild:
+  x86 stable wrt bug #335043
 
 *tokyocabinet-1.4.46 (13 Aug 2010)
 



1.2                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.1&r2=1.2

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tokyocabinet-1.4.46.ebuild	13 Aug 2010 10:34:29 -0000	1.1
+++ tokyocabinet-1.4.46.ebuild	12 Sep 2010 20:29:17 -0000	1.2
@@ -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.46.ebuild,v 1.1 2010/08/13 10:34:29 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.2 2010/09/12 20:29:17 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2010-09-13 12:22 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-09-13 12:22 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/09/13 12:22:54

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  Stable on amd64 wrt bug #335043
  
  (Portage version: 2.2_rc78/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	12 Sep 2010 20:29:17 -0000	1.27
+++ ChangeLog	13 Sep 2010 12:22:54 -0000	1.28
@@ -1,6 +1,10 @@
 # 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.27 2010/09/12 20:29:17 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.28 2010/09/13 12:22:54 hwoarang Exp $
+
+  13 Sep 2010; Markos Chandras <hwoarang@gentoo.org>
+  tokyocabinet-1.4.46.ebuild:
+  Stable on amd64 wrt bug #335043
 
   12 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   tokyocabinet-1.4.46.ebuild:



1.3                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.2&r2=1.3

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tokyocabinet-1.4.46.ebuild	12 Sep 2010 20:29:17 -0000	1.2
+++ tokyocabinet-1.4.46.ebuild	13 Sep 2010 12:22:54 -0000	1.3
@@ -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.46.ebuild,v 1.2 2010/09/12 20:29:17 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.3 2010/09/13 12:22:54 hwoarang Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2010-11-26 15:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-26 15:56 UTC (permalink / raw
  To: gentoo-commits

jer         10/11/26 15:56:54

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  Stable for HPPA (bug #346661).
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.29                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	13 Sep 2010 12:22:54 -0000	1.28
+++ ChangeLog	26 Nov 2010 15:56:54 -0000	1.29
@@ -1,6 +1,9 @@
 # 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.28 2010/09/13 12:22:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.29 2010/11/26 15:56:54 jer Exp $
+
+  26 Nov 2010; Jeroen Roovers <jer@gentoo.org> tokyocabinet-1.4.46.ebuild:
+  Stable for HPPA (bug #346661).
 
   13 Sep 2010; Markos Chandras <hwoarang@gentoo.org>
   tokyocabinet-1.4.46.ebuild:



1.4                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.3&r2=1.4

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tokyocabinet-1.4.46.ebuild	13 Sep 2010 12:22:54 -0000	1.3
+++ tokyocabinet-1.4.46.ebuild	26 Nov 2010 15:56:54 -0000	1.4
@@ -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.46.ebuild,v 1.3 2010/09/13 12:22:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.4 2010/11/26 15:56:54 jer Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2010-12-22 15:09 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-12-22 15:09 UTC (permalink / raw
  To: gentoo-commits

klausman    10/12/22 15:09:37

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  Stable on alpha, bug #346661
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	26 Nov 2010 15:56:54 -0000	1.29
+++ ChangeLog	22 Dec 2010 15:09:37 -0000	1.30
@@ -1,6 +1,10 @@
 # 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.29 2010/11/26 15:56:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.30 2010/12/22 15:09:37 klausman Exp $
+
+  22 Dec 2010; Tobias Klausmann <klausman@gentoo.org>
+  tokyocabinet-1.4.46.ebuild:
+  Stable on alpha, bug #346661
 
   26 Nov 2010; Jeroen Roovers <jer@gentoo.org> tokyocabinet-1.4.46.ebuild:
   Stable for HPPA (bug #346661).



1.5                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.4&r2=1.5

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tokyocabinet-1.4.46.ebuild	26 Nov 2010 15:56:54 -0000	1.4
+++ tokyocabinet-1.4.46.ebuild	22 Dec 2010 15:09:37 -0000	1.5
@@ -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.46.ebuild,v 1.4 2010/11/26 15:56:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.5 2010/12/22 15:09:37 klausman Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2011-01-13 17:52 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2011-01-13 17:52 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/13 17:52:46

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  stable ppc, bug 346661
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.31                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	22 Dec 2010 15:09:37 -0000	1.30
+++ ChangeLog	13 Jan 2011 17:52:46 -0000	1.31
@@ -1,6 +1,9 @@
 # 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.30 2010/12/22 15:09:37 klausman Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.31 2011/01/13 17:52:46 ranger Exp $
+
+  13 Jan 2011; Brent Baude <ranger@gentoo.org> tokyocabinet-1.4.46.ebuild:
+  stable ppc, bug 346661
 
   22 Dec 2010; Tobias Klausmann <klausman@gentoo.org>
   tokyocabinet-1.4.46.ebuild:



1.6                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.5&r2=1.6

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tokyocabinet-1.4.46.ebuild	22 Dec 2010 15:09:37 -0000	1.5
+++ tokyocabinet-1.4.46.ebuild	13 Jan 2011 17:52:46 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.5 2010/12/22 15:09:37 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.6 2011/01/13 17:52:46 ranger Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild
@ 2011-02-26  8:22 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-02-26  8:22 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/02/26 08:22:12

  Modified:             ChangeLog tokyocabinet-1.4.46.ebuild
  Log:
  ppc64 stable wrt #346661
  
  (Portage version: 2.2.0_alpha25/cvs/Linux ppc64)

Revision  Changes    Path
1.33                 dev-db/tokyocabinet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	12 Feb 2011 08:58:23 -0000	1.32
+++ ChangeLog	26 Feb 2011 08:22:12 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/tokyocabinet
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.32 2011/02/12 08:58:23 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.33 2011/02/26 08:22:12 xarthisius Exp $
+
+  26 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org>
+  tokyocabinet-1.4.46.ebuild:
+  ppc64 stable wrt #346661
 
 *tokyocabinet-1.4.47 (12 Feb 2011)
 



1.7                  dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild?r1=1.6&r2=1.7

Index: tokyocabinet-1.4.46.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- tokyocabinet-1.4.46.ebuild	13 Jan 2011 17:52:46 -0000	1.6
+++ tokyocabinet-1.4.46.ebuild	26 Feb 2011 08:22:12 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.6 2011/01/13 17:52:46 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild,v 1.7 2011/02/26 08:22:12 xarthisius Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 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"
+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






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-02-26  8:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-13 12:22 [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.46.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2011-02-26  8:22 Kacper Kowalik (xarthisius)
2011-01-13 17:52 Brent Baude (ranger)
2010-12-22 15:09 Tobias Klausmann (klausman)
2010-11-26 15:56 Jeroen Roovers (jer)
2010-09-12 20:29 PaweA Hajdan (phajdan.jr)
2010-08-13 10:34 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox