public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/tinycdb: ChangeLog tinycdb-0.77-r1.ebuild
@ 2011-08-13 12:03 Akinori Hattori (hattya)
  0 siblings, 0 replies; 3+ messages in thread
From: Akinori Hattori (hattya) @ 2011-08-13 12:03 UTC (permalink / raw
  To: gentoo-commits

hattya      11/08/13 12:03:15

  Modified:             ChangeLog
  Added:                tinycdb-0.77-r1.ebuild
  Log:
  add static-libs use flag. fixes bug #359557.
  
  (Portage version: 2.1.10.3/cvs/Linux i686)

Revision  Changes    Path
1.26                 dev-db/tinycdb/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	11 Apr 2010 08:26:13 -0000	1.25
+++ ChangeLog	13 Aug 2011 12:03:15 -0000	1.26
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/tinycdb
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.25 2010/04/11 08:26:13 hattya Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.26 2011/08/13 12:03:15 hattya Exp $
+
+*tinycdb-0.77-r1 (13 Aug 2011)
+
+  13 Aug 2011; Akinori Hattori <hattya@gentoo.org> +tinycdb-0.77-r1.ebuild,
+  +files/tinycdb-0.77-gentoo.diff:
+  add static-libs use flag. fixes bug #359557.
 
   11 Apr 2010; Akinori Hattori <hattya@gentoo.org> -tinycdb-0.74.ebuild,
   -tinycdb-0.76.ebuild, -files/tinycdb-libbase.diff:



1.1                  dev-db/tinycdb/tinycdb-0.77-r1.ebuild

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

Index: tinycdb-0.77-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.1 2011/08/13 12:03:15 hattya Exp $

EAPI="4"

inherit eutils multilib toolchain-funcs

DESCRIPTION="TinyCDB is a very fast and simple package for creating and reading constant data bases"
HOMEPAGE="http://www.corpit.ru/mjt/tinycdb.html"
SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86"
IUSE="static-libs"
RESTRICT="test"

RDEPEND="!dev-db/cdb"

src_prepare() {
	epatch "${FILESDIR}"/${P}-gentoo.diff
	# fix multilib support
	sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile
}

src_compile() {
	local targets="shared"
	use static-libs && targets="${targets} staticlib piclib"

	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ${targets}
}

src_install() {
	local targets="install-sharedlib"
	use static-libs && targets="${targets} install-piclib"

	einstall ${targets}
	dodoc ChangeLog NEWS
}






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

* [gentoo-commits] gentoo-x86 commit in dev-db/tinycdb: ChangeLog tinycdb-0.77-r1.ebuild
@ 2012-04-04 20:31 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-04-04 20:31 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/04/04 20:31:15

  Modified:             ChangeLog tinycdb-0.77-r1.ebuild
  Log:
  marked x86 per bug 399963
  
  (Portage version: 2.2.0_alpha99/cvs/Linux i686)

Revision  Changes    Path
1.32                 dev-db/tinycdb/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	8 Mar 2012 17:23:23 -0000	1.31
+++ ChangeLog	4 Apr 2012 20:31:15 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/tinycdb
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.31 2012/03/08 17:23:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.32 2012/04/04 20:31:15 jdhore Exp $
+
+  04 Apr 2012; Jeff Horelick <jdhore@gentoo.org> tinycdb-0.77-r1.ebuild:
+  marked x86 per bug 399963
 
 *tinycdb-0.77-r2 (08 Mar 2012)
 



1.5                  dev-db/tinycdb/tinycdb-0.77-r1.ebuild

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

Index: tinycdb-0.77-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tinycdb-0.77-r1.ebuild	6 Mar 2012 21:08:47 -0000	1.4
+++ tinycdb-0.77-r1.ebuild	4 Apr 2012 20:31:15 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.4 2012/03/06 21:08:47 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.5 2012/04/04 20:31:15 jdhore Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ppc ~x86"
+KEYWORDS="amd64 hppa ~ia64 ppc x86"
 IUSE="static-libs"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-db/tinycdb: ChangeLog tinycdb-0.77-r1.ebuild
@ 2012-05-06 17:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2012-05-06 17:38 UTC (permalink / raw
  To: gentoo-commits

armin76     12/05/06 17:38:52

  Modified:             ChangeLog tinycdb-0.77-r1.ebuild
  Log:
  ia64 stable wrt #399963
  
  (Portage version: 2.1.10.53/cvs/Linux ia64)

Revision  Changes    Path
1.33                 dev-db/tinycdb/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	4 Apr 2012 20:31:15 -0000	1.32
+++ ChangeLog	6 May 2012 17:38:52 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/tinycdb
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.32 2012/04/04 20:31:15 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.33 2012/05/06 17:38:52 armin76 Exp $
+
+  06 May 2012; Raúl Porcel <armin76@gentoo.org> tinycdb-0.77-r1.ebuild:
+  ia64 stable wrt #399963
 
   04 Apr 2012; Jeff Horelick <jdhore@gentoo.org> tinycdb-0.77-r1.ebuild:
   marked x86 per bug 399963



1.6                  dev-db/tinycdb/tinycdb-0.77-r1.ebuild

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

Index: tinycdb-0.77-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tinycdb-0.77-r1.ebuild	4 Apr 2012 20:31:15 -0000	1.5
+++ tinycdb-0.77-r1.ebuild	6 May 2012 17:38:52 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.5 2012/04/04 20:31:15 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.6 2012/05/06 17:38:52 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ppc x86"
+KEYWORDS="amd64 hppa ia64 ppc x86"
 IUSE="static-libs"
 RESTRICT="test"
 






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

end of thread, other threads:[~2012-05-06 17:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-13 12:03 [gentoo-commits] gentoo-x86 commit in dev-db/tinycdb: ChangeLog tinycdb-0.77-r1.ebuild Akinori Hattori (hattya)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-04 20:31 Jeff Horelick (jdhore)
2012-05-06 17:38 Raul Porcel (armin76)

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