* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-07 18:15 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-01-07 18:15 UTC (permalink / raw
To: gentoo-commits
arfrever 10/01/07 18:15:02
Modified: ChangeLog
Added: sqlite-3.6.22.ebuild
Log:
Version bump.
(Portage version: 15172-svn/cvs/Linux x86_64)
Revision Changes Path
1.312 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.312&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.312&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.311&r2=1.312
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.311
retrieving revision 1.312
diff -u -r1.311 -r1.312
--- ChangeLog 3 Jan 2010 09:38:38 -0000 1.311
+++ ChangeLog 7 Jan 2010 18:15:01 -0000 1.312
@@ -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.311 2010/01/03 09:38:38 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.312 2010/01/07 18:15:01 arfrever Exp $
+
+*sqlite-3.6.22 (07 Jan 2010)
+
+ 07 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +sqlite-3.6.22.ebuild:
+ Version bump.
03 Jan 2010; Petteri Räty <betelgeuse@gentoo.org> sqlite-3.6.21.ebuild:
Turn on fts3 by default because FF3 needs it.
1.1 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.1&content-type=text/plain
Index: sqlite-3.6.22.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.22.ebuild,v 1.1 2010/01/07 18:15:01 arfrever Exp $
EAPI="2"
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="
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 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc +fts3 icu +readline 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
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 soundex, bug #143794
if use soundex; then
append-cppflags -DSQLITE_SOUNDEX
fi
# Support FTS3, bug #207701
if use fts3; then
append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS
fi
# The amalgamation source doesn't have these via Makefile
if use debug; then
append-cppflags -DSQLITE_DEBUG=1
else
append-cppflags -DNDEBUG
fi
# amalgamation doesn't have tcl
econf \
$(use_enable readline) \
$(use_enable threadsafe) \
$(use tcl && echo --enable-tcl) \
$(use !tcl && use test && echo --disable-tcl)
}
src_compile() {
emake TCLLIBDIR="/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="/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] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-08 19:47 Fabian Groffen (grobian)
0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2010-01-08 19:47 UTC (permalink / raw
To: gentoo-commits
grobian 10/01/08 19:47:59
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
Transfer Prefix keywords, make ebuild Prefix aware, fix compilation on static-only platforms (bug #299294)
(Portage version: 2.2.00.15178-prefix/cvs/Darwin powerpc)
Revision Changes Path
1.2 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.1&r2=1.2
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sqlite-3.6.22.ebuild 7 Jan 2010 18:15:01 -0000 1.1
+++ sqlite-3.6.22.ebuild 8 Jan 2010 19:47:59 -0000 1.2
@@ -1,10 +1,10 @@
# 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.22.ebuild,v 1.1 2010/01/07 18:15:01 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.2 2010/01/08 19:47:59 grobian Exp $
EAPI="2"
-inherit eutils flag-o-matic multilib versionator
+inherit eutils flag-o-matic multilib versionator toolchain-funcs
DESCRIPTION="an SQL Database Engine in a C Library"
HOMEPAGE="http://www.sqlite.org/"
@@ -21,7 +21,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 ~ppc-aix ~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 +fts3 icu +readline soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
@@ -77,13 +77,15 @@
# amalgamation doesn't have tcl
econf \
$(use_enable readline) \
+ --with-readline-inc=-I"${EPREFIX}"/usr/include/readline \
$(use_enable threadsafe) \
$(use tcl && echo --enable-tcl) \
- $(use !tcl && use test && echo --disable-tcl)
+ $(use !tcl && use test && echo --disable-tcl) \
+ $(tc-is-static-only && echo --enable-dynamic-extensions=no)
}
src_compile() {
- emake TCLLIBDIR="/usr/$(get_libdir)/${P}" || die "emake failed"
+ emake TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" || die "emake failed"
}
src_test() {
@@ -100,7 +102,7 @@
src_install() {
emake \
DESTDIR="${D}" \
- TCLLIBDIR="/usr/$(get_libdir)/${P}" \
+ TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" \
install \
|| die "emake install failed"
1.313 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.313&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.313&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.312&r2=1.313
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.312
retrieving revision 1.313
diff -u -r1.312 -r1.313
--- ChangeLog 7 Jan 2010 18:15:01 -0000 1.312
+++ ChangeLog 8 Jan 2010 19:47:59 -0000 1.313
@@ -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.312 2010/01/07 18:15:01 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.313 2010/01/08 19:47:59 grobian Exp $
+
+ 08 Jan 2010; Fabian Groffen <grobian@gentoo.org> sqlite-3.6.22.ebuild:
+ Transfer Prefix keywords, make ebuild Prefix aware, fix compilation on
+ static-only platforms (bug #299294)
*sqlite-3.6.22 (07 Jan 2010)
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-09 22:08 Christian Faulhammer (fauli)
0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-09 22:08 UTC (permalink / raw
To: gentoo-commits
fauli 10/01/09 22:08:48
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
keyword ~x86-freebsd
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.3 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.2&r2=1.3
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlite-3.6.22.ebuild 8 Jan 2010 19:47:59 -0000 1.2
+++ sqlite-3.6.22.ebuild 9 Jan 2010 22:08:47 -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.22.ebuild,v 1.2 2010/01/08 19:47:59 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.3 2010/01/09 22:08:47 fauli Exp $
EAPI="2"
@@ -21,7 +21,7 @@
LICENSE="as-is"
SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-aix ~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 +fts3 icu +readline soundex tcl +threadsafe test"
RDEPEND="icu? ( dev-libs/icu )
1.314 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.314&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.314&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.313&r2=1.314
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.313
retrieving revision 1.314
diff -u -r1.313 -r1.314
--- ChangeLog 8 Jan 2010 19:47:59 -0000 1.313
+++ ChangeLog 9 Jan 2010 22:08:47 -0000 1.314
@@ -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.313 2010/01/08 19:47:59 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.314 2010/01/09 22:08:47 fauli Exp $
+
+ 09 Jan 2010; Christian Faulhammer <fauli@gentoo.org> sqlite-3.6.22.ebuild:
+ keyword ~x86-freebsd
08 Jan 2010; Fabian Groffen <grobian@gentoo.org> sqlite-3.6.22.ebuild:
Transfer Prefix keywords, make ebuild Prefix aware, fix compilation on
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-10 21:55 Fabian Groffen (grobian)
0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2010-01-10 21:55 UTC (permalink / raw
To: gentoo-commits
grobian 10/01/10 21:55:08
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
Run elibtoolize for FreeMiNT
(Portage version: 2.2.00.15187-prefix/cvs/Darwin powerpc)
Revision Changes Path
1.5 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.4&r2=1.5
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sqlite-3.6.22.ebuild 10 Jan 2010 21:26:57 -0000 1.4
+++ sqlite-3.6.22.ebuild 10 Jan 2010 21:55:07 -0000 1.5
@@ -1,10 +1,10 @@
# 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.22.ebuild,v 1.4 2010/01/10 21:26:57 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.5 2010/01/10 21:55:07 grobian Exp $
EAPI="2"
-inherit eutils flag-o-matic multilib versionator
+inherit eutils flag-o-matic multilib versionator libtool
DESCRIPTION="an SQL Database Engine in a C Library"
HOMEPAGE="http://www.sqlite.org/"
@@ -37,6 +37,7 @@
fi
epunt_cxx
+ elibtoolize # for MiNT
}
src_configure() {
1.317 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.317&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.317&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.316&r2=1.317
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -r1.316 -r1.317
--- ChangeLog 10 Jan 2010 21:26:57 -0000 1.316
+++ ChangeLog 10 Jan 2010 21:55:07 -0000 1.317
@@ -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.316 2010/01/10 21:26:57 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.317 2010/01/10 21:55:07 grobian Exp $
+
+ 10 Jan 2010; Fabian Groffen <grobian@gentoo.org> sqlite-3.6.22.ebuild:
+ Run elibtoolize for FreeMiNT
10 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
sqlite-3.6.22.ebuild, metadata.xml:
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-14 14:38 Markus Duft (mduft)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Duft (mduft) @ 2010-01-14 14:38 UTC (permalink / raw
To: gentoo-commits
mduft 10/01/14 14:38:26
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
fixed build for ~x86-interix
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.7 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.6&r2=1.7
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sqlite-3.6.22.ebuild 10 Jan 2010 22:03:08 -0000 1.6
+++ sqlite-3.6.22.ebuild 14 Jan 2010 14:38:26 -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.22.ebuild,v 1.6 2010/01/10 22:03:08 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.7 2010/01/14 14:38:26 mduft Exp $
EAPI="2"
@@ -36,6 +36,9 @@
rm -f test/like.test
fi
+ epatch "${FILESDIR}"/${P}-interix-no-estale.patch
+ epatch "${FILESDIR}"/${P}-interix-utime-s.patch
+
epunt_cxx
elibtoolize # for MiNT
}
1.318 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.318&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.318&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.317&r2=1.318
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.317
retrieving revision 1.318
diff -u -r1.317 -r1.318
--- ChangeLog 10 Jan 2010 21:55:07 -0000 1.317
+++ ChangeLog 14 Jan 2010 14:38:26 -0000 1.318
@@ -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.317 2010/01/10 21:55:07 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.318 2010/01/14 14:38:26 mduft Exp $
+
+ 14 Jan 2010; Markus Duft <mduft@gentoo.org> sqlite-3.6.22.ebuild,
+ +files/sqlite-3.6.22-interix-no-estale.patch,
+ +files/sqlite-3.6.22-interix-utime-s.patch:
+ fix build for ~x86-interix. interix misses ESTALE, and some versions miss
+ utimes() too. utime() as replacement should work on all platforms.
10 Jan 2010; Fabian Groffen <grobian@gentoo.org> sqlite-3.6.22.ebuild:
Run elibtoolize for FreeMiNT
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-14 23:14 Jeremy Olexa (darkside)
0 siblings, 0 replies; 7+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-01-14 23:14 UTC (permalink / raw
To: gentoo-commits
darkside 10/01/14 23:14:47
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
Disable interix patches until bug 300940 is resolved. Sorry.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Revision Changes Path
1.8 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.7&r2=1.8
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sqlite-3.6.22.ebuild 14 Jan 2010 14:38:26 -0000 1.7
+++ sqlite-3.6.22.ebuild 14 Jan 2010 23:14:47 -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.22.ebuild,v 1.7 2010/01/14 14:38:26 mduft Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.8 2010/01/14 23:14:47 darkside Exp $
EAPI="2"
@@ -36,8 +36,8 @@
rm -f test/like.test
fi
- epatch "${FILESDIR}"/${P}-interix-no-estale.patch
- epatch "${FILESDIR}"/${P}-interix-utime-s.patch
+# epatch "${FILESDIR}"/${P}-interix-no-estale.patch
+# epatch "${FILESDIR}"/${P}-interix-utime-s.patch
epunt_cxx
elibtoolize # for MiNT
1.319 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.319&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.319&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.318&r2=1.319
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.318
retrieving revision 1.319
diff -u -r1.318 -r1.319
--- ChangeLog 14 Jan 2010 14:38:26 -0000 1.318
+++ ChangeLog 14 Jan 2010 23:14:47 -0000 1.319
@@ -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.318 2010/01/14 14:38:26 mduft Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.319 2010/01/14 23:14:47 darkside Exp $
+
+ 14 Jan 2010; Jeremy Olexa <darkside@gentoo.org> sqlite-3.6.22.ebuild:
+ Disable interix patches until bug 300940 is resolved. Sorry.
14 Jan 2010; Markus Duft <mduft@gentoo.org> sqlite-3.6.22.ebuild,
+files/sqlite-3.6.22-interix-no-estale.patch,
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog
@ 2010-01-15 8:16 Markus Duft (mduft)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Duft (mduft) @ 2010-01-15 8:16 UTC (permalink / raw
To: gentoo-commits
mduft 10/01/15 08:16:21
Modified: sqlite-3.6.22.ebuild ChangeLog
Log:
fixed interix patches
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.9 dev-db/sqlite/sqlite-3.6.22.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild?r1=1.8&r2=1.9
Index: sqlite-3.6.22.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sqlite-3.6.22.ebuild 14 Jan 2010 23:14:47 -0000 1.8
+++ sqlite-3.6.22.ebuild 15 Jan 2010 08:16:21 -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.22.ebuild,v 1.8 2010/01/14 23:14:47 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.6.22.ebuild,v 1.9 2010/01/15 08:16:21 mduft Exp $
EAPI="2"
@@ -36,8 +36,11 @@
rm -f test/like.test
fi
-# epatch "${FILESDIR}"/${P}-interix-no-estale.patch
-# epatch "${FILESDIR}"/${P}-interix-utime-s.patch
+ if use tcl || use test; then
+ epatch "${FILESDIR}"/${P}-interix-fixes.patch
+ else
+ epatch "${FILESDIR}"/${P}-interix-fixes-amalgamation.patch
+ fi
epunt_cxx
elibtoolize # for MiNT
1.320 dev-db/sqlite/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.320&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.320&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.319&r2=1.320
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.319
retrieving revision 1.320
diff -u -r1.319 -r1.320
--- ChangeLog 14 Jan 2010 23:14:47 -0000 1.319
+++ ChangeLog 15 Jan 2010 08:16:21 -0000 1.320
@@ -1,6 +1,14 @@
# 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.319 2010/01/14 23:14:47 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.320 2010/01/15 08:16:21 mduft Exp $
+
+ 15 Jan 2010; Markus Duft <mduft@gentoo.org> sqlite-3.6.22.ebuild,
+ +files/sqlite-3.6.22-interix-fixes.patch,
+ +files/sqlite-3.6.22-interix-fixes-amalgamation.patch,
+ -files/sqlite-3.6.22-interix-no-estale.patch,
+ -files/sqlite-3.6.22-interix-utime-s.patch:
+ fixed interix patches for non-amalgamation builds - completely missed
+ those before.
14 Jan 2010; Jeremy Olexa <darkside@gentoo.org> sqlite-3.6.22.ebuild:
Disable interix patches until bug 300940 is resolved. Sorry.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-01-15 8:16 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-07 18:15 [gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.6.22.ebuild ChangeLog Arfrever Frehtes Taifersar Arahesis (arfrever)
-- strict thread matches above, loose matches on Subject: below --
2010-01-08 19:47 Fabian Groffen (grobian)
2010-01-09 22:08 Christian Faulhammer (fauli)
2010-01-10 21:55 Fabian Groffen (grobian)
2010-01-14 14:38 Markus Duft (mduft)
2010-01-14 23:14 Jeremy Olexa (darkside)
2010-01-15 8:16 Markus Duft (mduft)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox