public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-03-01  2:56 Thomas Sachau (tommy)
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Sachau (tommy) @ 2009-03-01  2:56 UTC (permalink / raw
  To: gentoo-commits

tommy       09/03/01 02:56:38

  Modified:             ChangeLog
  Added:                sqlite-3.6.11.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.223                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog	26 Feb 2009 20:03:46 -0000	1.222
+++ ChangeLog	1 Mar 2009 02:56:38 -0000	1.223
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.222 2009/02/26 20:03:46 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.223 2009/03/01 02:56:38 tommy Exp $
+
+*sqlite-3.6.11 (01 Mar 2009)
+
+  01 Mar 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+  +files/sqlite-3.6.11-reference.patch, +sqlite-3.6.11.ebuild:
+  Version bump
 
   26 Feb 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.10.ebuild:
   stable ppc64, bug 259462



1.1                  dev-db/sqlite/sqlite-3.6.11.ebuild

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

Index: sqlite-3.6.11.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.1 2009/03/01 02:56:38 tommy Exp $

EAPI="1"

inherit autotools eutils flag-o-matic libtool versionator

DESCRIPTION="an SQL Database Engine in a C Library"
HOMEPAGE="http://www.sqlite.org/"
DOC_BASE="$(get_version_component_range 1-3)"
DOC_PV="$(replace_all_version_separators _ ${DOC_BASE})"
SRC_URI="http://www.sqlite.org/${P}.tar.gz
	doc? ( http://www.sqlite.org/${PN}_docs_${DOC_PV}.zip )"

LICENSE="as-is"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"

RDEPEND="tcl? ( dev-lang/tcl )"
DEPEND="${RDEPEND}
	doc? ( app-arch/unzip )"

pkg_setup() {
	# test
	if has test ${FEATURES}; then
		if ! has userpriv ${FEATURES}; then
			ewarn "The userpriv feature must be enabled to run tests."
			eerror "Testsuite will not be run."
		fi
		if ! use tcl; then
			ewarn "You must enable the tcl use flag if you want to run the testsuite."
			eerror "Testsuite will not be run."
		fi
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}"/sandbox-fix2.patch
	epatch "${FILESDIR}"/${P}-reference.patch

	eautoreconf
	epunt_cxx
}

src_compile() {
	# not available via configure and requested in bug #143794
	use soundex && append-flags -DSQLITE_SOUNDEX=1

	econf \
		$(use_enable debug) \
		$(use_enable threadsafe) \
		$(use_enable threadsafe cross-thread-connections) \
		$(use_enable tcl)
	emake TCLLIBDIR="/usr/$(get_libdir)/${P}" || die "emake failed"
}

src_test() {
	if has userpriv ${FEATURES}; then
		local test=test
		use debug && tets=fulltest
		emake ${test} || die "some test(s) failed"
	fi
}

src_install() {
	emake \
		DESTDIR="${D}" \
		TCLLIBDIR="/usr/$(get_libdir)/${P}" \
		install \
		|| die "emake install failed"

	doman sqlite3.1 || die

	if use doc; then
		# Naming scheme changes randomly between - and _ in releases
		# http://www.sqlite.org/cvstrac/tktview?tn=3523
		dohtml -r "${WORKDIR}"/${PN}-${DOC_PV}-docs/* || die
	fi
}

pkg_postinst() {
	elog "sqlite-3.6.X is not totally backwards compatible, see"
	elog "http://www.sqlite.org/releaselog/3_6_0.html for full details."
}






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-03-31 23:53 Mike Frysinger (vapier)
  0 siblings, 0 replies; 7+ messages in thread
From: Mike Frysinger (vapier) @ 2009-03-31 23:53 UTC (permalink / raw
  To: gentoo-commits

vapier      09/03/31 23:53:11

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  Cleanup ebuild a bit and avoid running autotools.
  (Portage version: 2.2_rc28/cvs/Linux x86_64)

Revision  Changes    Path
1.224                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -r1.223 -r1.224
--- ChangeLog	1 Mar 2009 02:56:38 -0000	1.223
+++ ChangeLog	31 Mar 2009 23:53:11 -0000	1.224
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.223 2009/03/01 02:56:38 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.224 2009/03/31 23:53:11 vapier Exp $
+
+  31 Mar 2009; Mike Frysinger <vapier@gentoo.org> sqlite-3.6.11.ebuild:
+  Cleanup ebuild a bit and avoid running autotools.
 
 *sqlite-3.6.11 (01 Mar 2009)
 



1.2                  dev-db/sqlite/sqlite-3.6.11.ebuild

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

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.6.11.ebuild	1 Mar 2009 02:56:38 -0000	1.1
+++ sqlite-3.6.11.ebuild	31 Mar 2009 23:53:11 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.1 2009/03/01 02:56:38 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.2 2009/03/31 23:53:11 vapier Exp $
 
 EAPI="1"
 
-inherit autotools eutils flag-o-matic libtool versionator
+inherit eutils flag-o-matic multilib versionator
 
 DESCRIPTION="an SQL Database Engine in a C Library"
 HOMEPAGE="http://www.sqlite.org/"
@@ -24,13 +24,12 @@
 	doc? ( app-arch/unzip )"
 
 pkg_setup() {
-	# test
-	if has test ${FEATURES}; then
-		if ! has userpriv ${FEATURES}; then
+	if has test ${FEATURES} ; then
+		if ! has userpriv ${FEATURES} ; then
 			ewarn "The userpriv feature must be enabled to run tests."
 			eerror "Testsuite will not be run."
 		fi
-		if ! use tcl; then
+		if ! use tcl ; then
 			ewarn "You must enable the tcl use flag if you want to run the testsuite."
 			eerror "Testsuite will not be run."
 		fi
@@ -41,16 +40,18 @@
 	unpack ${A}
 	cd "${S}"
 
+	# note: this sandbox fix is no longer needed with sandbox-1.3+
 	epatch "${FILESDIR}"/sandbox-fix2.patch
 	epatch "${FILESDIR}"/${P}-reference.patch
 
-	eautoreconf
+	# avoid having to run autotools
+	sed -i 's:3\.6\.10:3.6.11:g' configure
 	epunt_cxx
 }
 
 src_compile() {
 	# not available via configure and requested in bug #143794
-	use soundex && append-flags -DSQLITE_SOUNDEX=1
+	use soundex && append-cppflags -DSQLITE_SOUNDEX=1
 
 	econf \
 		$(use_enable debug) \
@@ -61,7 +62,7 @@
 }
 
 src_test() {
-	if has userpriv ${FEATURES}; then
+	if has userpriv ${FEATURES} ; then
 		local test=test
 		use debug && tets=fulltest
 		emake ${test} || die "some test(s) failed"
@@ -77,7 +78,7 @@
 
 	doman sqlite3.1 || die
 
-	if use doc; then
+	if use doc ; then
 		# Naming scheme changes randomly between - and _ in releases
 		# http://www.sqlite.org/cvstrac/tktview?tn=3523
 		dohtml -r "${WORKDIR}"/${PN}-${DOC_PV}-docs/* || die






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-04-04 14:08 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-04-04 14:08 UTC (permalink / raw
  To: gentoo-commits

ranger      09/04/04 14:08:04

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  stable ppc64, bug 264514
  (Portage version: 2.1.6.7/cvs/Linux ppc64)

Revision  Changes    Path
1.227                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.226
retrieving revision 1.227
diff -u -r1.226 -r1.227
--- ChangeLog	1 Apr 2009 07:19:03 -0000	1.226
+++ ChangeLog	4 Apr 2009 14:08:04 -0000	1.227
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.226 2009/04/01 07:19:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.227 2009/04/04 14:08:04 ranger Exp $
+
+  04 Apr 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.11.ebuild:
+  stable ppc64, bug 264514
 
   01 Apr 2009; Mike Frysinger <vapier@gentoo.org> sqlite-3.6.12.ebuild:
   Upstream changed the released tarball.



1.3                  dev-db/sqlite/sqlite-3.6.11.ebuild

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

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.6.11.ebuild	31 Mar 2009 23:53:11 -0000	1.2
+++ sqlite-3.6.11.ebuild	4 Apr 2009 14:08:04 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.2 2009/03/31 23:53:11 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.3 2009/04/04 14:08:04 ranger Exp $
 
 EAPI="1"
 
@@ -15,7 +15,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="debug doc soundex tcl +threadsafe"
 RESTRICT="!tcl? ( test )"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-04-04 16:14 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-04-04 16:14 UTC (permalink / raw
  To: gentoo-commits

ranger      09/04/04 16:14:21

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  Marking sqlite-3.6.11 ppc for bug 264514
  (Portage version: 2.1.6.11/cvs/Linux ppc64)

Revision  Changes    Path
1.228                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -r1.227 -r1.228
--- ChangeLog	4 Apr 2009 14:08:04 -0000	1.227
+++ ChangeLog	4 Apr 2009 16:14:21 -0000	1.228
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.227 2009/04/04 14:08:04 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.228 2009/04/04 16:14:21 ranger Exp $
+
+  04 Apr 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.11.ebuild:
+  Marking sqlite-3.6.11 ppc for bug 264514
 
   04 Apr 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.11.ebuild:
   stable ppc64, bug 264514



1.4                  dev-db/sqlite/sqlite-3.6.11.ebuild

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

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlite-3.6.11.ebuild	4 Apr 2009 14:08:04 -0000	1.3
+++ sqlite-3.6.11.ebuild	4 Apr 2009 16:14:21 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.3 2009/04/04 14:08:04 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.4 2009/04/04 16:14:21 ranger Exp $
 
 EAPI="1"
 
@@ -15,7 +15,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="debug doc soundex tcl +threadsafe"
 RESTRICT="!tcl? ( test )"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-04-05 19:50 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-04-05 19:50 UTC (permalink / raw
  To: gentoo-commits

maekke      09/04/05 19:50:10

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  amd64/x86 stable, bug #264514
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.230                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog	4 Apr 2009 18:24:40 -0000	1.229
+++ ChangeLog	5 Apr 2009 19:50:10 -0000	1.230
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.229 2009/04/04 18:24:40 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.230 2009/04/05 19:50:10 maekke Exp $
+
+  05 Apr 2009; Markus Meier <maekke@gentoo.org> sqlite-3.6.11.ebuild:
+  amd64/x86 stable, bug #264514
 
   04 Apr 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   sqlite-3.6.11.ebuild, sqlite-3.6.12.ebuild:



1.6                  dev-db/sqlite/sqlite-3.6.11.ebuild

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

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlite-3.6.11.ebuild	4 Apr 2009 18:24:40 -0000	1.5
+++ sqlite-3.6.11.ebuild	5 Apr 2009 19:50:10 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.5 2009/04/04 18:24:40 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.6 2009/04/05 19:50:10 maekke Exp $
 
 EAPI="1"
 
@@ -15,7 +15,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
 IUSE="debug doc soundex tcl +threadsafe"
 RESTRICT="!tcl? ( test )"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-04-07 18:46 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-04-07 18:46 UTC (permalink / raw
  To: gentoo-commits

klausman    09/04/07 18:46:54

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  Stable on alpha, bug #264514
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.231                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -r1.230 -r1.231
--- ChangeLog	5 Apr 2009 19:50:10 -0000	1.230
+++ ChangeLog	7 Apr 2009 18:46:54 -0000	1.231
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.230 2009/04/05 19:50:10 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.231 2009/04/07 18:46:54 klausman Exp $
+
+  07 Apr 2009; Tobias Klausmann <klausman@gentoo.org> sqlite-3.6.11.ebuild:
+  Stable on alpha, bug #264514
 
   05 Apr 2009; Markus Meier <maekke@gentoo.org> sqlite-3.6.11.ebuild:
   amd64/x86 stable, bug #264514



1.7                  dev-db/sqlite/sqlite-3.6.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?r1=1.6&r2=1.7

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.6.11.ebuild	5 Apr 2009 19:50:10 -0000	1.6
+++ sqlite-3.6.11.ebuild	7 Apr 2009 18:46:54 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.6 2009/04/05 19:50:10 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.7 2009/04/07 18:46:54 klausman Exp $
 
 EAPI="1"
 
@@ -15,7 +15,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
 IUSE="debug doc soundex tcl +threadsafe"
 RESTRICT="!tcl? ( test )"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild
@ 2009-04-27 15:53 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2009-04-27 15:53 UTC (permalink / raw
  To: gentoo-commits

jer         09/04/27 15:53:03

  Modified:             ChangeLog sqlite-3.6.11.ebuild
  Log:
  Stable for HPPA (bug #264514).
  (Portage version: 2.2_rc31/cvs/Linux i686)

Revision  Changes    Path
1.234                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog	19 Apr 2009 00:10:20 -0000	1.233
+++ ChangeLog	27 Apr 2009 15:53:02 -0000	1.234
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.233 2009/04/19 00:10:20 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.234 2009/04/27 15:53:02 jer Exp $
+
+  27 Apr 2009; Jeroen Roovers <jer@gentoo.org> sqlite-3.6.11:
+  Stable for HPPA (bug #264514).
 
   18 Apr 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   sqlite-3.6.13:



1.8                  dev-db/sqlite/sqlite-3.6.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild?r1=1.7&r2=1.8

Index: sqlite-3.6.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.6.11.ebuild	7 Apr 2009 18:46:54 -0000	1.7
+++ sqlite-3.6.11.ebuild	27 Apr 2009 15:53:03 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.7 2009/04/07 18:46:54 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.11.ebuild,v 1.8 2009/04/27 15:53:03 jer Exp $
 
 EAPI="1"
 
@@ -15,7 +15,7 @@
 
 LICENSE="as-is"
 SLOT="3"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
 IUSE="debug doc soundex tcl +threadsafe"
 RESTRICT="!tcl? ( test )"
 






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

end of thread, other threads:[~2009-04-27 15:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-01  2:56 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.11.ebuild Thomas Sachau (tommy)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-31 23:53 Mike Frysinger (vapier)
2009-04-04 14:08 Brent Baude (ranger)
2009-04-04 16:14 Brent Baude (ranger)
2009-04-05 19:50 Markus Meier (maekke)
2009-04-07 18:46 Tobias Klausmann (klausman)
2009-04-27 15:53 Jeroen Roovers (jer)

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