* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-05-26 10:55 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 11+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-05-26 10:55 UTC (permalink / raw
To: gentoo-commits
arfrever 09/05/26 10:55:04
Modified: ChangeLog
Added: sqlite-3.6.14.2.ebuild
Log:
Version bump.
(Portage version: 13625-svn/cvs/Linux x86_64)
Revision Changes Path
1.250 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.250&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.250&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.249&r2=1.250
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ChangeLog 24 May 2009 17:41:33 -0000 1.249
+++ ChangeLog 26 May 2009 10:55:03 -0000 1.250
@@ -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.249 2009/05/24 17:41:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.250 2009/05/26 10:55:03 arfrever Exp $
+
+*sqlite-3.6.14.2 (26 May 2009)
+
+ 26 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +sqlite-3.6.14.2.ebuild:
+ Version bump.
24 May 2009; Markus Meier <maekke@gentoo.org> sqlite-3.6.13.ebuild:
x86 stable, bug #269998
1.1 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.1&content-type=text/plain
Index: sqlite-3.6.14.2.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.14.2.ebuild,v 1.1 2009/05/26 10:55:03 arfrever Exp $
EAPI="1"
inherit eutils flag-o-matic multilib 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() {
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}"
# note: this sandbox fix is no longer needed with sandbox-1.3+
epatch "${FILESDIR}"/sandbox-fix2.patch
epunt_cxx
}
src_compile() {
# Enable column metadata, bug #266651
append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA
# not available via configure and requested in bug #143794
use soundex && append-cppflags -DSQLITE_SOUNDEX
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 && test=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
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-05-28 17:53 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 11+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-05-28 17:53 UTC (permalink / raw
To: gentoo-commits
arfrever 09/05/28 17:53:24
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Fix alignment (bug #270867).
(Portage version: 13625-svn/cvs/Linux x86_64)
Revision Changes Path
1.251 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.251&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.251&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.250&r2=1.251
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.250
retrieving revision 1.251
diff -u -r1.250 -r1.251
--- ChangeLog 26 May 2009 10:55:03 -0000 1.250
+++ ChangeLog 28 May 2009 17:53:24 -0000 1.251
@@ -1,6 +1,10 @@
# 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.250 2009/05/26 10:55:03 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.251 2009/05/28 17:53:24 arfrever Exp $
+
+ 28 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ sqlite-3.6.14.2.ebuild, +files/sqlite-3.6.14.2-fix_alignment.patch:
+ Fix alignment (bug #270867).
*sqlite-3.6.14.2 (26 May 2009)
1.2 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.1&r2=1.2
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.6.14.2.ebuild 26 May 2009 10:55:03 -0000 1.1
+++ sqlite-3.6.14.2.ebuild 28 May 2009 17:53:24 -0000 1.2
@@ -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.14.2.ebuild,v 1.1 2009/05/26 10:55:03 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.2 2009/05/28 17:53:24 arfrever Exp $
EAPI="1"
@@ -43,6 +43,8 @@
# note: this sandbox fix is no longer needed with sandbox-1.3+
epatch "${FILESDIR}"/sandbox-fix2.patch
+ epatch "${FILESDIR}/${P}-fix_alignment.patch"
+
epunt_cxx
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-05-28 20:53 Ferris McCormick (fmccor)
0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-05-28 20:53 UTC (permalink / raw
To: gentoo-commits
fmccor 09/05/28 20:53:11
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
re-keyword for ~sparc, Bug #270867 Comment #8, #10.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.253 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.253&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.253&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.252&r2=1.253
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -r1.252 -r1.253
--- ChangeLog 28 May 2009 20:37:25 -0000 1.252
+++ ChangeLog 28 May 2009 20:53:11 -0000 1.253
@@ -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.252 2009/05/28 20:37:25 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.253 2009/05/28 20:53:11 fmccor Exp $
+
+ 28 May 2009; Ferris McCormick <fmccor@gentoo.org> sqlite-3.6.14.2.ebuild:
+ re-keyword for ~sparc, Bug #270867 Comment #8, #10.
28 May 2009; Ferris McCormick <fmccor@gentoo.org>
-files/sqlite-3.6.14.2-fix_alignment.patch:
1.3 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.2&r2=1.3
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.6.14.2.ebuild 28 May 2009 17:53:24 -0000 1.2
+++ sqlite-3.6.14.2.ebuild 28 May 2009 20:53:11 -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.14.2.ebuild,v 1.2 2009/05/28 17:53:24 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.3 2009/05/28 20:53:11 fmccor 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] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-06-27 12:55 Ferris McCormick (fmccor)
0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-06-27 12:55 UTC (permalink / raw
To: gentoo-commits
fmccor 09/06/27 12:55:54
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Sparc stable, Bug #275592.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.255 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.255&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.255&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.254&r2=1.255
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -r1.254 -r1.255
--- ChangeLog 21 Jun 2009 00:33:56 -0000 1.254
+++ ChangeLog 27 Jun 2009 12:55:54 -0000 1.255
@@ -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.254 2009/06/21 00:33:56 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.255 2009/06/27 12:55:54 fmccor Exp $
+
+ 27 Jun 2009; Ferris McCormick <fmccor@gentoo.org> sqlite-3.6.14.2.ebuild:
+ Sparc stable, Bug #275592.
*sqlite-3.6.15 (21 Jun 2009)
1.4 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.3&r2=1.4
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlite-3.6.14.2.ebuild 28 May 2009 20:53:11 -0000 1.3
+++ sqlite-3.6.14.2.ebuild 27 Jun 2009 12:55:54 -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.14.2.ebuild,v 1.3 2009/05/28 20:53:11 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.4 2009/06/27 12:55:54 fmccor 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] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-06-27 15:48 Brent Baude (ranger)
0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2009-06-27 15:48 UTC (permalink / raw
To: gentoo-commits
ranger 09/06/27 15:48:41
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Marking sqlite-3.6.14.2 ppc64 for bug 275592
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.256 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.256&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.256&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.255&r2=1.256
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog 27 Jun 2009 12:55:54 -0000 1.255
+++ ChangeLog 27 Jun 2009 15:48:41 -0000 1.256
@@ -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.255 2009/06/27 12:55:54 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.256 2009/06/27 15:48:41 ranger Exp $
+
+ 27 Jun 2009; Brent Baude <ranger@gentoo.org> sqlite-3.6.14.2.ebuild:
+ Marking sqlite-3.6.14.2 ppc64 for bug 275592
27 Jun 2009; Ferris McCormick <fmccor@gentoo.org> sqlite-3.6.14.2.ebuild:
Sparc stable, Bug #275592.
1.5 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.4&r2=1.5
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sqlite-3.6.14.2.ebuild 27 Jun 2009 12:55:54 -0000 1.4
+++ sqlite-3.6.14.2.ebuild 27 Jun 2009 15:48:41 -0000 1.5
@@ -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.14.2.ebuild,v 1.4 2009/06/27 12:55:54 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.5 2009/06/27 15:48:41 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] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-06-28 16:25 Tobias Klausmann (klausman)
0 siblings, 0 replies; 11+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-06-28 16:25 UTC (permalink / raw
To: gentoo-commits
klausman 09/06/28 16:25:52
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Stable on alpha, bug #275592
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.258 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.258&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.258&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.257&r2=1.258
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.257
retrieving revision 1.258
diff -u -r1.257 -r1.258
--- ChangeLog 27 Jun 2009 21:31:00 -0000 1.257
+++ ChangeLog 28 Jun 2009 16:25:51 -0000 1.258
@@ -1,6 +1,10 @@
# 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.257 2009/06/27 21:31:00 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.258 2009/06/28 16:25:51 klausman Exp $
+
+ 28 Jun 2009; Tobias Klausmann <klausman@gentoo.org>
+ sqlite-3.6.14.2.ebuild:
+ Stable on alpha, bug #275592
*sqlite-3.6.16 (27 Jun 2009)
1.6 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.5&r2=1.6
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlite-3.6.14.2.ebuild 27 Jun 2009 15:48:41 -0000 1.5
+++ sqlite-3.6.14.2.ebuild 28 Jun 2009 16:25:51 -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.14.2.ebuild,v 1.5 2009/06/27 15:48:41 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.6 2009/06/28 16:25:51 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 ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-06-30 21:18 Christian Faulhammer (fauli)
0 siblings, 0 replies; 11+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-06-30 21:18 UTC (permalink / raw
To: gentoo-commits
fauli 09/06/30 21:18:43
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
stable x86, bug 275592
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.259 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.259&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.259&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.258&r2=1.259
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.258
retrieving revision 1.259
diff -u -r1.258 -r1.259
--- ChangeLog 28 Jun 2009 16:25:51 -0000 1.258
+++ ChangeLog 30 Jun 2009 21:18:43 -0000 1.259
@@ -1,6 +1,10 @@
# 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.258 2009/06/28 16:25:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.259 2009/06/30 21:18:43 fauli Exp $
+
+ 30 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
+ sqlite-3.6.14.2.ebuild:
+ stable x86, bug 275592
28 Jun 2009; Tobias Klausmann <klausman@gentoo.org>
sqlite-3.6.14.2.ebuild:
1.7 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.6&r2=1.7
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.6.14.2.ebuild 28 Jun 2009 16:25:51 -0000 1.6
+++ sqlite-3.6.14.2.ebuild 30 Jun 2009 21:18:43 -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.14.2.ebuild,v 1.6 2009/06/28 16:25:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.7 2009/06/30 21:18:43 fauli Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-07-01 14:54 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2009-07-01 14:54 UTC (permalink / raw
To: gentoo-commits
armin76 09/07/01 14:54:39
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
arm/ia64/s390/sh stable wrt #275592
(Portage version: 2.1.6.13/cvs/Linux ia64)
Revision Changes Path
1.260 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.260&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.260&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.259&r2=1.260
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog 30 Jun 2009 21:18:43 -0000 1.259
+++ ChangeLog 1 Jul 2009 14:54:39 -0000 1.260
@@ -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.259 2009/06/30 21:18:43 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.260 2009/07/01 14:54:39 armin76 Exp $
+
+ 01 Jul 2009; Raúl Porcel <armin76@gentoo.org> sqlite-3.6.14.2.ebuild:
+ arm/ia64/s390/sh stable wrt #275592
30 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
sqlite-3.6.14.2.ebuild:
1.8 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.7&r2=1.8
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.6.14.2.ebuild 30 Jun 2009 21:18:43 -0000 1.7
+++ sqlite-3.6.14.2.ebuild 1 Jul 2009 14:54:39 -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.14.2.ebuild,v 1.7 2009/06/30 21:18:43 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.8 2009/07/01 14:54:39 armin76 Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-07-11 0:50 Tony Vroon (chainsaw)
0 siblings, 0 replies; 11+ messages in thread
From: Tony Vroon (chainsaw) @ 2009-07-11 0:50 UTC (permalink / raw
To: gentoo-commits
chainsaw 09/07/11 00:50:56
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Marked stable on AMD64 for bug #275592; tested on a dual Opteron 2354.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Revision Changes Path
1.261 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.261&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.261&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.260&r2=1.261
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog 1 Jul 2009 14:54:39 -0000 1.260
+++ ChangeLog 11 Jul 2009 00:50:56 -0000 1.261
@@ -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.260 2009/07/01 14:54:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.261 2009/07/11 00:50:56 chainsaw Exp $
+
+ 11 Jul 2009; <chainsaw@gentoo.org> sqlite-3.6.14.2.ebuild:
+ Marked stable on AMD64 for bug #275592; tested on a dual Opteron 2354.
01 Jul 2009; Raúl Porcel <armin76@gentoo.org> sqlite-3.6.14.2.ebuild:
arm/ia64/s390/sh stable wrt #275592
1.9 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.8&r2=1.9
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sqlite-3.6.14.2.ebuild 1 Jul 2009 14:54:39 -0000 1.8
+++ sqlite-3.6.14.2.ebuild 11 Jul 2009 00:50:56 -0000 1.9
@@ -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.14.2.ebuild,v 1.8 2009/07/01 14:54:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.9 2009/07/11 00:50:56 chainsaw Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-07-21 0:29 Jeroen Roovers (jer)
0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2009-07-21 0:29 UTC (permalink / raw
To: gentoo-commits
jer 09/07/21 00:29:42
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
Stable for HPPA (bug #275592).
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.262 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.261&r2=1.262
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog 11 Jul 2009 00:50:56 -0000 1.261
+++ ChangeLog 21 Jul 2009 00:29:42 -0000 1.262
@@ -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.261 2009/07/11 00:50:56 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.262 2009/07/21 00:29:42 jer Exp $
+
+ 21 Jul 2009; Jeroen Roovers <jer@gentoo.org> sqlite-3.6.14.2.ebuild:
+ Stable for HPPA (bug #275592).
11 Jul 2009; <chainsaw@gentoo.org> sqlite-3.6.14.2.ebuild:
Marked stable on AMD64 for bug #275592; tested on a dual Opteron 2354.
1.10 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.9&r2=1.10
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sqlite-3.6.14.2.ebuild 11 Jul 2009 00:50:56 -0000 1.9
+++ sqlite-3.6.14.2.ebuild 21 Jul 2009 00:29:42 -0000 1.10
@@ -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.14.2.ebuild,v 1.9 2009/07/11 00:50:56 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.10 2009/07/21 00:29:42 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 x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc soundex tcl +threadsafe"
RESTRICT="!tcl? ( test )"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild
@ 2009-07-27 17:02 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 11+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-07-27 17:02 UTC (permalink / raw
To: gentoo-commits
nixnut 09/07/27 17:02:15
Modified: ChangeLog sqlite-3.6.14.2.ebuild
Log:
ppc stable #275592
(Portage version: 2.1.6.13/cvs/Linux ppc)
Revision Changes Path
1.263 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.263&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.263&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.262&r2=1.263
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog 21 Jul 2009 00:29:42 -0000 1.262
+++ ChangeLog 27 Jul 2009 17:02:15 -0000 1.263
@@ -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.262 2009/07/21 00:29:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.263 2009/07/27 17:02:15 nixnut Exp $
+
+ 27 Jul 2009; nixnut <nixnut@gentoo.org> sqlite-3.6.14.2.ebuild:
+ ppc stable #275592
21 Jul 2009; Jeroen Roovers <jer@gentoo.org> sqlite-3.6.14.2.ebuild:
Stable for HPPA (bug #275592).
1.11 dev-db/sqlite/sqlite-3.6.14.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild?r1=1.10&r2=1.11
Index: sqlite-3.6.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sqlite-3.6.14.2.ebuild 21 Jul 2009 00:29:42 -0000 1.10
+++ sqlite-3.6.14.2.ebuild 27 Jul 2009 17:02:15 -0000 1.11
@@ -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.14.2.ebuild,v 1.10 2009/07/21 00:29:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.14.2.ebuild,v 1.11 2009/07/27 17:02:15 nixnut Exp $
EAPI="1"
@@ -15,7 +15,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~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] 11+ messages in thread
end of thread, other threads:[~2009-07-27 17:02 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-28 17:53 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.14.2.ebuild Arfrever Frehtes Taifersar Arahesis (arfrever)
-- strict thread matches above, loose matches on Subject: below --
2009-07-27 17:02 Gysbert Wassenaar (nixnut)
2009-07-21 0:29 Jeroen Roovers (jer)
2009-07-11 0:50 Tony Vroon (chainsaw)
2009-07-01 14:54 Raul Porcel (armin76)
2009-06-30 21:18 Christian Faulhammer (fauli)
2009-06-28 16:25 Tobias Klausmann (klausman)
2009-06-27 15:48 Brent Baude (ranger)
2009-06-27 12:55 Ferris McCormick (fmccor)
2009-05-28 20:53 Ferris McCormick (fmccor)
2009-05-26 10:55 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox