public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/libdrizzle: libdrizzle-0.8.ebuild ChangeLog
@ 2010-03-19 14:08 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-03-19 14:08 UTC (permalink / raw
  To: gentoo-commits

flameeyes    10/03/19 14:08:00

  Modified:             ChangeLog
  Added:                libdrizzle-0.8.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-db/libdrizzle/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	13 Jan 2010 09:59:57 -0000	1.3
+++ ChangeLog	19 Mar 2010 14:07:59 -0000	1.4
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/libdrizzle
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v 1.3 2010/01/13 09:59:57 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v 1.4 2010/03/19 14:07:59 flameeyes Exp $
+
+*libdrizzle-0.8 (19 Mar 2010)
+
+  19 Mar 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+  +libdrizzle-0.8.ebuild:
+  Version bump.
 
 *libdrizzle-0.7 (13 Jan 2010)
 



1.1                  dev-db/libdrizzle/libdrizzle-0.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild?rev=1.1&content-type=text/plain

Index: libdrizzle-0.8.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild,v 1.1 2010/03/19 14:07:59 flameeyes Exp $

EAPI=2

DESCRIPTION="a C client and protocol library for the Drizzle project"
HOMEPAGE="http://launchpad.net/libdrizzle"
SRC_URI="http://launchpad.net/libdrizzle/trunk/${PV}/+download/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug tcmalloc +sqlite static-libs"

RDEPEND="tcmalloc? ( dev-util/google-perftools )
	sqlite? ( dev-db/sqlite:3 )"
DEPEND="${RDEPEND}"

src_configure() {
	# Don't ever use --enable-assert since configure.ac is broken, and
	# only does --disable-assert correctly.
	 if use debug; then
		# Since --with-debug would turn off optimisations as well as
		# enabling debug, we just enable debug through the
		# preprocessor then.
		append-flags -DDEBUG

	# Right now disabling asserts break the code, so never disable
	# them as it is.
	#else
	#	myconf="${myconf} --disable-assert"
	fi

	econf \
		--disable-static \
		--disable-dependency-tracking \
		--disable-mtmalloc \
		$(use_enable tcmalloc) \
		$(use_enable libsqlite3)
}

src_install() {
	emake DESTDIR="${D}" install || die "install failed"
	dodoc AUTHORS ChangeLog NEWS PROTOCOL README || die

	find "${D}" -name '*.la' -delete || die
}






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

* [gentoo-commits] gentoo-x86 commit in dev-db/libdrizzle: libdrizzle-0.8.ebuild ChangeLog
@ 2010-04-19  6:04 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-04-19  6:04 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/04/19 06:04:39

  Modified:             libdrizzle-0.8.ebuild ChangeLog
  Log:
  Missed a commit from my laptop.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-db/libdrizzle/libdrizzle-0.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild?r1=1.1&r2=1.2

Index: libdrizzle-0.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- libdrizzle-0.8.ebuild	19 Mar 2010 14:07:59 -0000	1.1
+++ libdrizzle-0.8.ebuild	19 Apr 2010 06:04:39 -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/libdrizzle/libdrizzle-0.8.ebuild,v 1.1 2010/03/19 14:07:59 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/libdrizzle-0.8.ebuild,v 1.2 2010/04/19 06:04:39 robbat2 Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@ SRC_URI="http://launchpad.net/libdrizzle
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="debug tcmalloc +sqlite static-libs"
 
 RDEPEND="tcmalloc? ( dev-util/google-perftools )



1.5                  dev-db/libdrizzle/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdrizzle/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -p -w -b -B -u -u -r1.4 -r1.5
--- ChangeLog	19 Mar 2010 14:07:59 -0000	1.4
+++ ChangeLog	19 Apr 2010 06:04:39 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/libdrizzle
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v 1.4 2010/03/19 14:07:59 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdrizzle/ChangeLog,v 1.5 2010/04/19 06:04:39 robbat2 Exp $
+
+  19 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> libdrizzle-0.8.ebuild:
+  Missed a commit from my laptop.
 
 *libdrizzle-0.8 (19 Mar 2010)
 






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

end of thread, other threads:[~2010-04-19  6:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-19 14:08 [gentoo-commits] gentoo-x86 commit in dev-db/libdrizzle: libdrizzle-0.8.ebuild ChangeLog Diego Petteno (flameeyes)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-19  6:04 Robin H. Johnson (robbat2)

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