public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-04-12 21:33 Mike Gilbert (floppym)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-04-12 21:33 UTC (permalink / raw
  To: gentoo-commits

floppym     13/04/12 21:33:57

  Modified:             ChangeLog
  Added:                sqlite-3.7.16.2.ebuild
  Log:
  Version bump. Ebuild by Arfrever.
  
  (Portage version: 2.2.0_alpha172/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.465                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.464
retrieving revision 1.465
diff -u -r1.464 -r1.465
--- ChangeLog	29 Mar 2013 20:35:23 -0000	1.464
+++ ChangeLog	12 Apr 2013 21:33:57 -0000	1.465
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.464 2013/03/29 20:35:23 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.465 2013/04/12 21:33:57 floppym Exp $
+
+*sqlite-3.7.16.2 (12 Apr 2013)
+
+  12 Apr 2013; Mike Gilbert <floppym@gentoo.org> +sqlite-3.7.16.2.ebuild:
+  Version bump. Ebuild by Arfrever.
 
 *sqlite-3.7.16.1 (29 Mar 2013)
 



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

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.1 2013/04/12 21:33:57 floppym Exp $

EAPI="5"

inherit autotools eutils flag-o-matic multilib versionator

SRC_PV="$(printf "%u%02u%02u%02u" $(get_version_components))"
DOC_PV="${SRC_PV}"
# DOC_PV="$(printf "%u%02u%02u00" $(get_version_components $(get_version_component_range 1-3)))"

DESCRIPTION="A SQL Database Engine in a C Library"
HOMEPAGE="http://sqlite.org/"
SRC_URI="doc? ( http://sqlite.org/2013/${PN}-doc-${DOC_PV}.zip )
	tcl? ( http://sqlite.org/2013/${PN}-src-${SRC_PV}.zip )
	!tcl? (
		test? ( http://sqlite.org/2013/${PN}-src-${SRC_PV}.zip )
		!test? ( http://sqlite.org/2013/${PN}-autoconf-${SRC_PV}.tar.gz )
	)"

LICENSE="public-domain"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"

RDEPEND="icu? ( dev-libs/icu:= )
	readline? ( sys-libs/readline )
	tcl? ( dev-lang/tcl:= )"
DEPEND="${RDEPEND}
	doc? ( app-arch/unzip )
	tcl? ( app-arch/unzip )
	test? (
		app-arch/unzip
		dev-lang/tcl
	)"

amalgamation() {
	use !tcl && use !test
}

pkg_setup() {
	if amalgamation; then
		S="${WORKDIR}/${PN}-autoconf-${SRC_PV}"
	else
		S="${WORKDIR}/${PN}-src-${SRC_PV}"
	fi
}

src_prepare() {
	# At least ppc-aix, x86-interix and *-solaris need newer libtool.
	use prefix && eautoreconf

	if amalgamation; then
		epunt_cxx
	fi
}

src_configure() {
	# `configure` from amalgamation tarball does not add -DSQLITE_DEBUG or -DNDEBUG flag.
	if amalgamation; then
		if use debug; then
			append-cppflags -DSQLITE_DEBUG
		else
			append-cppflags -DNDEBUG
		fi
	fi

	# Support column metadata functions.
	# http://sqlite.org/c3ref/column_database_name.html
	# http://sqlite.org/c3ref/table_column_metadata.html
	append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA

	# Support Full-Text Search versions 3 and 4.
	# http://sqlite.org/fts3.html
	append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS4_UNICODE61

	# Support R*Trees.
	# http://sqlite.org/rtree.html
	append-cppflags -DSQLITE_ENABLE_RTREE

	# Support soundex() function.
	# http://sqlite.org/lang_corefunc.html#soundex
	append-cppflags -DSQLITE_SOUNDEX

	# Support unlock notification.
	# http://sqlite.org/unlock_notify.html
	append-cppflags -DSQLITE_ENABLE_UNLOCK_NOTIFY

	if use icu; then
		append-cppflags -DSQLITE_ENABLE_ICU
		if amalgamation; then
			sed -e "s/LIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
		else
			sed -e "s/TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed"
		fi
	fi

	# Enable secure_delete pragma by default.
	# http://sqlite.org/pragma.html#pragma_secure_delete
	if use secure-delete; then
		append-cppflags -DSQLITE_SECURE_DELETE -DSQLITE_CHECK_PAGES -DSQLITE_CORE
	fi

	local extensions_option
	if amalgamation; then
		extensions_option="dynamic-extensions"
	else
		extensions_option="load-extension"
	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

	if [[ "${CHOST}" == *-mint* ]]; then
		append-cppflags -DSQLITE_OMIT_WAL
	fi

	# `configure` from amalgamation tarball does not support
	# --with-readline-inc and --(enable|disable)-tcl options.
	econf \
		--enable-threadsafe \
		$(use_enable extensions ${extensions_option}) \
		$(use_enable readline) \
		$(use_enable static-libs static) \
		$(amalgamation || echo --with-readline-inc="-I${EPREFIX}/usr/include/readline") \
		$(amalgamation || use_enable debug) \
		$(amalgamation || echo --enable-tcl)
}

src_compile() {
	emake TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}"
}

src_test() {
	if [[ "${EUID}" -eq 0 ]]; then
		ewarn "Skipping tests due to root permissions"
		return
	fi

	emake $(use debug && echo fulltest || echo test)
}

src_install() {
	emake DESTDIR="${D}" HAVE_TCL="$(usex tcl 1 "")" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" install
	prune_libtool_files

	doman sqlite3.1

	if use doc; then
		find "${WORKDIR}/${PN}-doc-${DOC_PV}" -name ".[_~]*" -delete
		dohtml -A ico,odg,pdf,svg -r "${WORKDIR}/${PN}-doc-${DOC_PV}/"
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-02 11:35 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-02 11:35 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/02 11:35:45

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #468218
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.7.16.2.ebuild	12 Apr 2013 21:33:57 -0000	1.1
+++ sqlite-3.7.16.2.ebuild	2 May 2013 11:35:45 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.1 2013/04/12 21:33:57 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.2 2013/05/02 11:35:45 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.466                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.465
retrieving revision 1.466
diff -u -r1.465 -r1.466
--- ChangeLog	12 Apr 2013 21:33:57 -0000	1.465
+++ ChangeLog	2 May 2013 11:35:45 -0000	1.466
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.465 2013/04/12 21:33:57 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.466 2013/05/02 11:35:45 ago Exp $
+
+  02 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for amd64, wrt bug #468218
 
 *sqlite-3.7.16.2 (12 Apr 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-03 13:23 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-03 13:23 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/03 13:23:13

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #468218
  
  (Portage version: 2.1.11.62/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.7.16.2.ebuild	2 May 2013 11:35:45 -0000	1.2
+++ sqlite-3.7.16.2.ebuild	3 May 2013 13:23:13 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.2 2013/05/02 11:35:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.3 2013/05/03 13:23:13 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.467                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.466
retrieving revision 1.467
diff -u -r1.466 -r1.467
--- ChangeLog	2 May 2013 11:35:45 -0000	1.466
+++ ChangeLog	3 May 2013 13:23:13 -0000	1.467
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.466 2013/05/02 11:35:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.467 2013/05/03 13:23:13 ago Exp $
+
+  03 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for ppc, wrt bug #468218
 
   02 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for amd64, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-03 16:07 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2013-05-03 16:07 UTC (permalink / raw
  To: gentoo-commits

jer         13/05/03 16:07:29

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #468218).
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.4                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlite-3.7.16.2.ebuild	3 May 2013 13:23:13 -0000	1.3
+++ sqlite-3.7.16.2.ebuild	3 May 2013 16:07:29 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.3 2013/05/03 13:23:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.4 2013/05/03 16:07:29 jer Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.468                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.467
retrieving revision 1.468
diff -u -r1.467 -r1.468
--- ChangeLog	3 May 2013 13:23:13 -0000	1.467
+++ ChangeLog	3 May 2013 16:07:29 -0000	1.468
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.467 2013/05/03 13:23:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.468 2013/05/03 16:07:29 jer Exp $
+
+  03 May 2013; Jeroen Roovers <jer@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for HPPA (bug #468218).
 
   03 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for ppc, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-05 14:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-05 14:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/05 14:12:26

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sqlite-3.7.16.2.ebuild	3 May 2013 16:07:29 -0000	1.4
+++ sqlite-3.7.16.2.ebuild	5 May 2013 14:12:26 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.4 2013/05/03 16:07:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.5 2013/05/05 14:12:26 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.469                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.468
retrieving revision 1.469
diff -u -r1.468 -r1.469
--- ChangeLog	3 May 2013 16:07:29 -0000	1.468
+++ ChangeLog	5 May 2013 14:12:26 -0000	1.469
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.468 2013/05/03 16:07:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.469 2013/05/05 14:12:26 ago Exp $
+
+  05 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for arm, wrt bug #468218
 
   03 May 2013; Jeroen Roovers <jer@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for HPPA (bug #468218).





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-05 17:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-05 17:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/05 17:36:46

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sqlite-3.7.16.2.ebuild	5 May 2013 14:12:26 -0000	1.5
+++ sqlite-3.7.16.2.ebuild	5 May 2013 17:36:46 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.5 2013/05/05 14:12:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.6 2013/05/05 17:36:46 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.470                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.469
retrieving revision 1.470
diff -u -r1.469 -r1.470
--- ChangeLog	5 May 2013 14:12:26 -0000	1.469
+++ ChangeLog	5 May 2013 17:36:46 -0000	1.470
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.469 2013/05/05 14:12:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.470 2013/05/05 17:36:46 ago Exp $
+
+  05 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for alpha, wrt bug #468218
 
   05 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for arm, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-07 13:40 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:40 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:40:26

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.7.16.2.ebuild	5 May 2013 17:36:46 -0000	1.6
+++ sqlite-3.7.16.2.ebuild	7 May 2013 13:40:26 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.6 2013/05/05 17:36:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.7 2013/05/07 13:40:26 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.471                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.470
retrieving revision 1.471
diff -u -r1.470 -r1.471
--- ChangeLog	5 May 2013 17:36:46 -0000	1.470
+++ ChangeLog	7 May 2013 13:40:26 -0000	1.471
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.470 2013/05/05 17:36:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.471 2013/05/07 13:40:26 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for ia64, wrt bug #468218
 
   05 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for alpha, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-07 13:57 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 13:57 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 13:57:27

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

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

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.7.16.2.ebuild	7 May 2013 13:40:26 -0000	1.7
+++ sqlite-3.7.16.2.ebuild	7 May 2013 13:57:27 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.7 2013/05/07 13:40:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.8 2013/05/07 13:57:27 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.472                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.471
retrieving revision 1.472
diff -u -r1.471 -r1.472
--- ChangeLog	7 May 2013 13:40:26 -0000	1.471
+++ ChangeLog	7 May 2013 13:57:27 -0000	1.472
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.471 2013/05/07 13:40:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.472 2013/05/07 13:57:27 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for sparc, wrt bug #468218
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for ia64, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-07 17:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-07 17:53 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/07 17:53:25

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-db/sqlite/sqlite-3.7.16.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?r1=1.8&r2=1.9

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sqlite-3.7.16.2.ebuild	7 May 2013 13:57:27 -0000	1.8
+++ sqlite-3.7.16.2.ebuild	7 May 2013 17:53:25 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.8 2013/05/07 13:57:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.9 2013/05/07 17:53:25 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.473                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.472
retrieving revision 1.473
diff -u -r1.472 -r1.473
--- ChangeLog	7 May 2013 13:57:27 -0000	1.472
+++ ChangeLog	7 May 2013 17:53:25 -0000	1.473
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.472 2013/05/07 13:57:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.473 2013/05/07 17:53:25 ago Exp $
+
+  07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for ppc64, wrt bug #468218
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for sparc, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-08 13:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-08 13:43 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/08 13:43:18

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-db/sqlite/sqlite-3.7.16.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?r1=1.9&r2=1.10

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sqlite-3.7.16.2.ebuild	7 May 2013 17:53:25 -0000	1.9
+++ sqlite-3.7.16.2.ebuild	8 May 2013 13:43:18 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.9 2013/05/07 17:53:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.10 2013/05/08 13:43:18 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.474                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.473
retrieving revision 1.474
diff -u -r1.473 -r1.474
--- ChangeLog	7 May 2013 17:53:25 -0000	1.473
+++ ChangeLog	8 May 2013 13:43:18 -0000	1.474
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.473 2013/05/07 17:53:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.474 2013/05/08 13:43:18 ago Exp $
+
+  08 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for sh, wrt bug #468218
 
   07 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for ppc64, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-14  9:40 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14  9:40 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 09:40:07

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 dev-db/sqlite/sqlite-3.7.16.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?r1=1.10&r2=1.11

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sqlite-3.7.16.2.ebuild	8 May 2013 13:43:18 -0000	1.10
+++ sqlite-3.7.16.2.ebuild	14 May 2013 09:40:07 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.10 2013/05/08 13:43:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.11 2013/05/14 09:40:07 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.475                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.474
retrieving revision 1.475
diff -u -r1.474 -r1.475
--- ChangeLog	8 May 2013 13:43:18 -0000	1.474
+++ ChangeLog	14 May 2013 09:40:07 -0000	1.475
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.474 2013/05/08 13:43:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.475 2013/05/14 09:40:07 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for x86, wrt bug #468218
 
   08 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for sh, wrt bug #468218





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

* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog
@ 2013-05-20 17:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 17:58 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 17:58:44

  Modified:             sqlite-3.7.16.2.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #468218
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 dev-db/sqlite/sqlite-3.7.16.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild?r1=1.11&r2=1.12

Index: sqlite-3.7.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sqlite-3.7.16.2.ebuild	14 May 2013 09:40:07 -0000	1.11
+++ sqlite-3.7.16.2.ebuild	20 May 2013 17:58:44 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.11 2013/05/14 09:40:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.7.16.2.ebuild,v 1.12 2013/05/20 17:58:44 ago Exp $
 
 EAPI="5"
 
@@ -21,7 +21,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc +extensions icu +readline secure-delete static-libs tcl test"
 
 RDEPEND="icu? ( dev-libs/icu:= )



1.476                dev-db/sqlite/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -r1.475 -r1.476
--- ChangeLog	14 May 2013 09:40:07 -0000	1.475
+++ ChangeLog	20 May 2013 17:58:44 -0000	1.476
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.475 2013/05/14 09:40:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.476 2013/05/20 17:58:44 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
+  Stable for s390, wrt bug #468218
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> sqlite-3.7.16.2.ebuild:
   Stable for x86, wrt bug #468218





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

end of thread, other threads:[~2013-05-20 17:58 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 17:58 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.7.16.2.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-14  9:40 Agostino Sarubbo (ago)
2013-05-08 13:43 Agostino Sarubbo (ago)
2013-05-07 17:53 Agostino Sarubbo (ago)
2013-05-07 13:57 Agostino Sarubbo (ago)
2013-05-07 13:40 Agostino Sarubbo (ago)
2013-05-05 17:36 Agostino Sarubbo (ago)
2013-05-05 14:12 Agostino Sarubbo (ago)
2013-05-03 16:07 Jeroen Roovers (jer)
2013-05-03 13:23 Agostino Sarubbo (ago)
2013-05-02 11:35 Agostino Sarubbo (ago)
2013-04-12 21:33 Mike Gilbert (floppym)

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