* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-04-18 1:21 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-04-18 1:21 UTC (permalink / raw
To: gentoo-commits
arfrever 10/04/18 01:21:40
Modified: ChangeLog
Added: sqlite-3.6.23.1.ebuild
Log:
Version bump.
(Portage version: HEAD/cvs/Linux x86_64)
Revision Changes Path
1.333 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.333&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.333&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.332&r2=1.333
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.332
retrieving revision 1.333
diff -u -r1.332 -r1.333
--- ChangeLog 19 Mar 2010 18:33:37 -0000 1.332
+++ ChangeLog 18 Apr 2010 01:21:40 -0000 1.333
@@ -1,6 +1,12 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.332 2010/03/19 18:33:37 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.333 2010/04/18 01:21:40 arfrever Exp $
+
+*sqlite-3.6.23.1 (18 Apr 2010)
+
+ 18 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +sqlite-3.6.23.1.ebuild:
+ Version bump.
19 Mar 2010; Fabian Groffen <grobian@gentoo.org> sqlite-3.6.23.ebuild:
Fix compilation on older Mac OS X systems by disabling new locking methods
1.1 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.1&content-type=text/plain
Index: sqlite-3.6.23.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.1 2010/04/18 01:21:40 arfrever Exp $
EAPI="3"
inherit autotools eutils flag-o-matic multilib versionator
DESCRIPTION="A 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="
tcl? ( http://www.sqlite.org/${P}.tar.gz )
!tcl? (
test? ( http://www.sqlite.org/${P}.tar.gz )
!test? ( http://www.sqlite.org/${PN}-amalgamation-${PV}.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 ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
readline? ( sys-libs/readline )
tcl? ( dev-lang/tcl )"
DEPEND="${RDEPEND}
test? ( dev-lang/tcl )
doc? ( app-arch/unzip )"
src_prepare() {
if use icu; then
rm -f test/like.test
fi
if use tcl || use test; then
epatch "${FILESDIR}/${PN}-3.6.22-interix-fixes.patch"
epatch "${FILESDIR}/${PN}-3.6.22-dlopen.patch" # bug 300836
eautoreconf # dlopen.patch patches configure.ac
else
epatch "${FILESDIR}/${PN}-3.6.22-interix-fixes-amalgamation.patch"
fi
eautoreconf # for MiNT and interix
epunt_cxx
}
src_configure() {
# Support column metadata, bug #266651
append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA
# Support R-trees, bug #257646
append-cppflags -DSQLITE_ENABLE_RTREE
if use icu; then
append-cppflags -DSQLITE_ENABLE_ICU
if use tcl || use test; then
# Normal tarball.
sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
else
# Amalgamation tarball.
sed -e "s/LIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
fi
fi
# Support FTS3, bug #207701
if use fts3; then
append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS
fi
# Enable secure_delete pragma by default
if use secure-delete; then
append-cppflags -DSQLITE_SECURE_DELETE -DSQLITE_CHECK_PAGES -DSQLITE_CORE
fi
# Support soundex, bug #143794
if use soundex; then
append-cppflags -DSQLITE_SOUNDEX
fi
# The amalgamation source doesn't have these via Makefile
if use debug; then
append-cppflags -DSQLITE_DEBUG
else
append-cppflags -DNDEBUG
fi
local extensions_option
if use tcl || use test; then
extensions_option="load-extension"
else
extensions_option="dynamic-extensions"
fi
# Starting from 3.6.23, SQLite has locking strategies that are specific to
# OSX. By default they are enabled, and use semantics that only make sense
# on OSX. However, they require gethostuuid() function for that, which is
# only available on OSX starting from 10.6 (Snow Leopard). For earlier
# versions of OSX we have to disable all this nifty locking options, as
# suggested by upstream.
if [[ "${CHOST}" == *-darwin[56789] ]] ; then
append-cppflags -DSQLITE_ENABLE_LOCKING_STYLE=0
fi
# `configure` from amalgamation tarball doesn't support
# --with-readline-inc and --(enable|disable)-tcl options.
econf \
$(use_enable extensions ${extensions_option}) \
$(use_enable readline) \
$({ use tcl || use test; } && echo --with-readline-inc="-I${EPREFIX}/usr/include/readline") \
$(use_enable threadsafe) \
$(use tcl && echo --enable-tcl) \
$(use !tcl && use test && echo --enable-tcl)
}
src_compile() {
emake TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" || die "emake failed"
}
src_test() {
if [[ "${EUID}" -ne "0" ]]; then
local test="test"
use debug && test="fulltest"
emake ${test} || die "Some test(s) failed"
else
ewarn "The userpriv feature must be enabled to run tests."
eerror "Testsuite will not be run."
fi
}
src_install() {
emake \
DESTDIR="${D}" \
TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" \
install \
|| die "emake install failed"
doman sqlite3.1 || die "doman sqlite3.1 failed"
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 "dohtml failed"
fi
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-05-20 20:06 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-20 20:06 UTC (permalink / raw
To: gentoo-commits
jer 10/05/20 20:06:13
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
Stable for HPPA (bug #320467).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.334 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.334&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.334&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.333&r2=1.334
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.333
retrieving revision 1.334
diff -u -r1.333 -r1.334
--- ChangeLog 18 Apr 2010 01:21:40 -0000 1.333
+++ ChangeLog 20 May 2010 20:06:13 -0000 1.334
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.333 2010/04/18 01:21:40 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.334 2010/05/20 20:06:13 jer Exp $
+
+ 20 May 2010; Jeroen Roovers <jer@gentoo.org> sqlite-3.6.23.1.ebuild:
+ Stable for HPPA (bug #320467).
*sqlite-3.6.23.1 (18 Apr 2010)
1.2 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.1&r2=1.2
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.6.23.1.ebuild 18 Apr 2010 01:21:40 -0000 1.1
+++ sqlite-3.6.23.1.ebuild 20 May 2010 20:06:13 -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.1 2010/04/18 01:21:40 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.2 2010/05/20 20:06:13 jer Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-05-30 13:43 Markos Chandras (hwoarang)
0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-05-30 13:43 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/05/30 13:43:39
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
Stable on amd64 wrt bug #320467
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.335 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.335&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.335&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.334&r2=1.335
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.334
retrieving revision 1.335
diff -u -r1.334 -r1.335
--- ChangeLog 20 May 2010 20:06:13 -0000 1.334
+++ ChangeLog 30 May 2010 13:43:39 -0000 1.335
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.334 2010/05/20 20:06:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.335 2010/05/30 13:43:39 hwoarang Exp $
+
+ 30 May 2010; Markos Chandras <hwoarang@gentoo.org> sqlite-3.6.23.1.ebuild:
+ Stable on amd64 wrt bug #320467
20 May 2010; Jeroen Roovers <jer@gentoo.org> sqlite-3.6.23.1.ebuild:
Stable for HPPA (bug #320467).
1.3 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.2&r2=1.3
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.6.23.1.ebuild 20 May 2010 20:06:13 -0000 1.2
+++ sqlite-3.6.23.1.ebuild 30 May 2010 13:43:39 -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.2 2010/05/20 20:06:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.3 2010/05/30 13:43:39 hwoarang Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-06-04 19:25 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-06-04 19:25 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/06/04 19:25:54
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
x86 stable wrt bug #320467
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.336 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.336&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.336&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.335&r2=1.336
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.335
retrieving revision 1.336
diff -u -r1.335 -r1.336
--- ChangeLog 30 May 2010 13:43:39 -0000 1.335
+++ ChangeLog 4 Jun 2010 19:25:54 -0000 1.336
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.335 2010/05/30 13:43:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.336 2010/06/04 19:25:54 phajdan.jr Exp $
+
+ 04 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+ sqlite-3.6.23.1.ebuild:
+ x86 stable wrt bug #320467
30 May 2010; Markos Chandras <hwoarang@gentoo.org> sqlite-3.6.23.1.ebuild:
Stable on amd64 wrt bug #320467
1.4 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.3&r2=1.4
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlite-3.6.23.1.ebuild 30 May 2010 13:43:39 -0000 1.3
+++ sqlite-3.6.23.1.ebuild 4 Jun 2010 19:25: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/sqlite/sqlite-3.6.23.1.ebuild,v 1.3 2010/05/30 13:43:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.4 2010/06/04 19:25:54 phajdan.jr Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-06-26 12:34 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 9+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-06-26 12:34 UTC (permalink / raw
To: gentoo-commits
nixnut 10/06/26 12:34:23
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
ppc stable #320467
(Portage version: 2.1.8.3/cvs/Linux ppc)
Revision Changes Path
1.338 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.338&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.338&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.337&r2=1.338
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.337
retrieving revision 1.338
diff -u -r1.337 -r1.338
--- ChangeLog 26 Jun 2010 10:46:54 -0000 1.337
+++ ChangeLog 26 Jun 2010 12:34:23 -0000 1.338
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.337 2010/06/26 10:46:54 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.338 2010/06/26 12:34:23 nixnut Exp $
+
+ 26 Jun 2010; <nixnut@gentoo.org> sqlite-3.6.23.1.ebuild:
+ ppc stable #320467
*sqlite-3.6.23.1-r1 (26 Jun 2010)
1.5 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.4&r2=1.5
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sqlite-3.6.23.1.ebuild 4 Jun 2010 19:25:54 -0000 1.4
+++ sqlite-3.6.23.1.ebuild 26 Jun 2010 12:34:23 -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.4 2010/06/04 19:25:54 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.5 2010/06/26 12:34:23 nixnut Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-07-21 19:01 Markus Meier (maekke)
0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2010-07-21 19:01 UTC (permalink / raw
To: gentoo-commits
maekke 10/07/21 19:01:00
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
arm stable, bug #320467
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.339 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.339&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.339&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.338&r2=1.339
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -r1.338 -r1.339
--- ChangeLog 26 Jun 2010 12:34:23 -0000 1.338
+++ ChangeLog 21 Jul 2010 19:01:00 -0000 1.339
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.338 2010/06/26 12:34:23 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.339 2010/07/21 19:01:00 maekke Exp $
+
+ 21 Jul 2010; Markus Meier <maekke@gentoo.org> sqlite-3.6.23.1.ebuild:
+ arm stable, bug #320467
26 Jun 2010; <nixnut@gentoo.org> sqlite-3.6.23.1.ebuild:
ppc stable #320467
1.6 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.5&r2=1.6
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlite-3.6.23.1.ebuild 26 Jun 2010 12:34:23 -0000 1.5
+++ sqlite-3.6.23.1.ebuild 21 Jul 2010 19:01:00 -0000 1.6
@@ -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.5 2010/06/26 12:34:23 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.6 2010/07/21 19:01:00 maekke Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-07-23 12:53 Tobias Klausmann (klausman)
0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-07-23 12:53 UTC (permalink / raw
To: gentoo-commits
klausman 10/07/23 12:53:20
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
Stable on alpha, bug #320467
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.340 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.340&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.340&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.339&r2=1.340
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.339
retrieving revision 1.340
diff -u -r1.339 -r1.340
--- ChangeLog 21 Jul 2010 19:01:00 -0000 1.339
+++ ChangeLog 23 Jul 2010 12:53:20 -0000 1.340
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.339 2010/07/21 19:01:00 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.340 2010/07/23 12:53:20 klausman Exp $
+
+ 23 Jul 2010; Tobias Klausmann <klausman@gentoo.org>
+ sqlite-3.6.23.1.ebuild:
+ Stable on alpha, bug #320467
21 Jul 2010; Markus Meier <maekke@gentoo.org> sqlite-3.6.23.1.ebuild:
arm stable, bug #320467
1.7 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.6&r2=1.7
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.6.23.1.ebuild 21 Jul 2010 19:01:00 -0000 1.6
+++ sqlite-3.6.23.1.ebuild 23 Jul 2010 12:53:20 -0000 1.7
@@ -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.6 2010/07/21 19:01:00 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.7 2010/07/23 12:53:20 klausman Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-08-14 14:43 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-08-14 14:43 UTC (permalink / raw
To: gentoo-commits
armin76 10/08/14 14:43:27
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
ia64/s390/sh/sparc stable wrt #320467
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.342 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.342&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.342&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.341&r2=1.342
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.341
retrieving revision 1.342
diff -u -r1.341 -r1.342
--- ChangeLog 23 Jul 2010 19:40:05 -0000 1.341
+++ ChangeLog 14 Aug 2010 14:43:27 -0000 1.342
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.341 2010/07/23 19:40:05 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.342 2010/08/14 14:43:27 armin76 Exp $
+
+ 14 Aug 2010; Raúl Porcel <armin76@gentoo.org> sqlite-3.6.23.1.ebuild:
+ ia64/s390/sh/sparc stable wrt #320467
*sqlite-3.7.0 (23 Jul 2010)
1.8 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.7&r2=1.8
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.6.23.1.ebuild 23 Jul 2010 12:53:20 -0000 1.7
+++ sqlite-3.6.23.1.ebuild 14 Aug 2010 14:43:27 -0000 1.8
@@ -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.7 2010/07/23 12:53:20 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.8 2010/08/14 14:43:27 armin76 Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild
@ 2010-09-06 21:01 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-09-06 21:01 UTC (permalink / raw
To: gentoo-commits
ranger 10/09/06 21:01:39
Modified: ChangeLog sqlite-3.6.23.1.ebuild
Log:
Marking sqlite-3.6.23.1 ppc64 for bug 320467
(Portage version: 2.1.8.3/cvs/Linux ppc64)
Revision Changes Path
1.346 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.346&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.346&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.345&r2=1.346
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.345
retrieving revision 1.346
diff -u -r1.345 -r1.346
--- ChangeLog 30 Aug 2010 09:22:06 -0000 1.345
+++ ChangeLog 6 Sep 2010 21:01:39 -0000 1.346
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/sqlite
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.345 2010/08/30 09:22:06 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.346 2010/09/06 21:01:39 ranger Exp $
+
+ 06 Sep 2010; Brent Baude <ranger@gentoo.org> sqlite-3.6.23.1.ebuild:
+ Marking sqlite-3.6.23.1 ppc64 for bug 320467
30 Aug 2010; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.7.2.ebuild:
Fix running tests with USE=-tcl. Fixes bug #335179.
1.9 dev-db/sqlite/sqlite-3.6.23.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild?r1=1.8&r2=1.9
Index: sqlite-3.6.23.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sqlite-3.6.23.1.ebuild 14 Aug 2010 14:43:27 -0000 1.8
+++ sqlite-3.6.23.1.ebuild 6 Sep 2010 21:01:39 -0000 1.9
@@ -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/sqlite/sqlite-3.6.23.1.ebuild,v 1.8 2010/08/14 14:43:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.23.1.ebuild,v 1.9 2010/09/06 21:01:39 ranger Exp $
EAPI="3"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc extensions +fts3 icu +readline secure-delete soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2010-09-06 21:01 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-20 20:06 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: ChangeLog sqlite-3.6.23.1.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2010-09-06 21:01 Brent Baude (ranger)
2010-08-14 14:43 Raul Porcel (armin76)
2010-07-23 12:53 Tobias Klausmann (klausman)
2010-07-21 19:01 Markus Meier (maekke)
2010-06-26 12:34 Gysbert Wassenaar (nixnut)
2010-06-04 19:25 PaweA Hajdan (phajdan.jr)
2010-05-30 13:43 Markos Chandras (hwoarang)
2010-04-18 1:21 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