commit: 5f80a5be1a768e5964f4d4f3399eb3b91912c81f Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org> AuthorDate: Thu Sep 28 15:26:19 2017 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Thu Sep 28 17:10:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f80a5be
dev-db/sqlite: Fix csv extension on ppc/ppc64 (bug #630698). ...ite-3.20.1-full_tarball-csv-unsigned_char.patch | 33 ++++++++++++++++++++++ ...qlite-3.20.1.ebuild => sqlite-3.20.1-r1.ebuild} | 1 + 2 files changed, 34 insertions(+) diff --git a/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch b/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch new file mode 100644 index 00000000000..86236c4b4bf --- /dev/null +++ b/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch @@ -0,0 +1,33 @@ +https://sqlite.org/src/info/42f0777555675875 + +--- ext/misc/csv.c ++++ ext/misc/csv.c +@@ -78,7 +78,7 @@ + int nAlloc; /* Space allocated for z[] */ + int nLine; /* Current line number */ + int bNotFirst; /* True if prior text has been seen */ +- char cTerm; /* Character that terminated the most recent field */ ++ int cTerm; /* Character that terminated the most recent field */ + size_t iIn; /* Next unread character in the input buffer */ + size_t nIn; /* Number of characters in the input buffer */ + char *zIn; /* The input buffer */ +@@ -166,7 +166,7 @@ + if( p->in!=0 ) return csv_getc_refill(p); + return EOF; + } +- return p->zIn[p->iIn++]; ++ return ((unsigned char*)p->zIn)[p->iIn++]; + } + + /* Increase the size of p->z and append character c to the end. +--- test/releasetest.tcl ++++ test/releasetest.tcl +@@ -114,7 +114,7 @@ + } + "Debug-One" { + --disable-shared +- -O2 ++ -O2 -funsigned-char + -DSQLITE_DEBUG=1 + -DSQLITE_MEMDEBUG=1 + -DSQLITE_MUTEX_NOOP=1 diff --git a/dev-db/sqlite/sqlite-3.20.1.ebuild b/dev-db/sqlite/sqlite-3.20.1-r1.ebuild similarity index 99% rename from dev-db/sqlite/sqlite-3.20.1.ebuild rename to dev-db/sqlite/sqlite-3.20.1-r1.ebuild index ee52cadc0f7..7b6ce7814c0 100644 --- a/dev-db/sqlite/sqlite-3.20.1.ebuild +++ b/dev-db/sqlite/sqlite-3.20.1-r1.ebuild @@ -50,6 +50,7 @@ pkg_setup() { src_prepare() { if full_tarball; then eapply -p0 "${FILESDIR}/${PN}-3.20.0-full_tarball-build.patch" + eapply -p0 "${FILESDIR}/${PN}-3.20.1-full_tarball-csv-unsigned_char.patch" eapply_user
