[arch-commits] Commit in sqlite/repos (4 files)

2020-12-01 Thread Andreas Radke via arch-commits
Date: Wednesday, December 2, 2020 @ 07:43:42
  Author: andyrtr
Revision: 402738

archrelease: copy trunk to testing-x86_64

Added:
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 402737, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 402737, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/sqlite-lemon-system-template.patch
(from rev 402737, sqlite/trunk/sqlite-lemon-system-template.patch)

+
 PKGBUILD   |  146 +++
 license.txt|   33 +++
 sqlite-lemon-system-template.patch |   21 +
 3 files changed, 200 insertions(+)

Copied: sqlite/repos/testing-x86_64/PKGBUILD (from rev 402737, 
sqlite/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-02 07:43:42 UTC (rev 402738)
@@ -0,0 +1,146 @@
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-analyzer' 'lemon' 'sqlite-doc')
+_srcver=334
+_docver=${_srcver}
+#_docver=333
+pkgver=3.34.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('x86_64')
+license=('custom:Public Domain')
+url="https://www.sqlite.org/;
+makedepends=('tcl' 'readline' 'zlib')
+source=(https://www.sqlite.org/2020/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2020/sqlite-doc-${_docver}.zip
+sqlite-lemon-system-template.patch
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+# upstream now switched to sha3sums - currently not suppoerted by makepkg
+sha256sums=('a5c2000ece56d2de13c474658b9cdba6b7f2608a4d711e245518ea02a2a2333e'
+'1e86e24d3c1217b7ef10e67a9ff7f395d1e19a8beee732a46445b493c22979a8'
+'9ffb899a28b74b5b1fcb6f1cf50a34d53c98e41f2cbcf60838a8a890cdb595e8'
+'4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d')
+
+prepare() {
+  cd sqlite-src-$_srcver
+
+  # patch taken from Fedora
+  # https://src.fedoraproject.org/rpms/sqlite/blob/master/f/sqlite.spec
+#  patch -Np1 -i ../sqlite-lemon-system-template.patch
+
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
+ -DSQLITE_SECURE_DELETE \
+ -DSQLITE_MAX_VARIABLE_NUMBER=25 \
+ -DSQLITE_MAX_EXPR_DEPTH=1"
+
+  # build sqlite
+  cd sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-amalgamation \
+   --enable-fts3 \
+   --enable-fts4 \
+   --enable-fts5 \
+   --enable-rtree \
+   --enable-json1 \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
+}
+
+package_sqlite() {
+
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline' 'zlib')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+
+  cd sqlite-src-$_srcver
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 showdb showjournal showstat4 showwal sqldiff 
"${pkgdir}"/usr/bin/
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/man1
+  install -m644 sqlite3.1 "${pkgdir}"/usr/share/man/man1/
+
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/license.txt
+
+  # split out tcl extension
+  mkdir "$srcdir"/tcl
+  mv "$pkgdir"/usr/lib/sqlite* "$srcdir"/tcl
+}
+
+package_sqlite-tcl() {
+
+ pkgdesc="sqlite Tcl Extension Architecture (TEA)"
+ depends=('sqlite')
+ provides=("sqlite3-tcl=$pkgver")
+ replaces=("sqlite3-tcl")
+
+  install -m755 -d "${pkgdir}"/usr/lib
+  mv "$srcdir"/tcl/* "${pkgdir}"/usr/lib
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/mann
+  install -m644 "${srcdir}"/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n 
"${pkgdir}"/usr/share/man/mann/
+
+  # link license
+  install -m755 -d "${pkgdir}"/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_sqlite-analyzer() {
+
+ pkgdesc="An analysis program for sqlite3 database files"
+ depends=('sqlite' 'tcl')
+
+  cd sqlite-src-$_srcver
+  install -m755 -d "${pkgdir}"/usr/bin
+  install -m755 sqlite3_analyzer "${pkgdir}"/usr/bin/
+}
+
+package_lemon() {
+
+ # https://www.sqlite.org/lemon.html
+ pkgdesc="A parser generator"
+ depends=('glibc')
+
+  cd sqlite-src-$_srcver
+  # ELF file ('usr/bin/lemon') lacks FULL 

[arch-commits] Commit in sqlite/repos (4 files)

2020-08-25 Thread Andreas Radke via arch-commits
Date: Tuesday, August 25, 2020 @ 12:33:31
  Author: andyrtr
Revision: 394702

archrelease: copy trunk to testing-x86_64

Added:
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 394701, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 394701, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/sqlite-lemon-system-template.patch
(from rev 394701, sqlite/trunk/sqlite-lemon-system-template.patch)

+
 PKGBUILD   |  144 +++
 license.txt|   33 
 sqlite-lemon-system-template.patch |   21 +
 3 files changed, 198 insertions(+)

Copied: sqlite/repos/testing-x86_64/PKGBUILD (from rev 394701, 
sqlite/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-25 12:33:31 UTC (rev 394702)
@@ -0,0 +1,144 @@
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-analyzer' 'lemon' 'sqlite-doc')
+_srcver=333
+_docver=${_srcver}
+#_docver=333
+pkgver=3.33.0
+pkgrel=2
+pkgdesc="A C library that implements an SQL database engine"
+arch=('x86_64')
+license=('custom:Public Domain')
+url="https://www.sqlite.org/;
+makedepends=('tcl' 'readline' 'zlib')
+source=(https://www.sqlite.org/2020/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2020/sqlite-doc-${_docver}.zip
+sqlite-lemon-system-template.patch
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+# upstream now switched to sha3sums - currently not suppoerted by makepkg
+sha256sums=('90bf7604a5aa26deece551af7a665fd4ce3d854ea809899c0e4bb19a69d609b8'
+'42f6e7eb03ea26f551760804703d6b81c3017983ccdb5fdbd8b9fc1940cd018e'
+'9ffb899a28b74b5b1fcb6f1cf50a34d53c98e41f2cbcf60838a8a890cdb595e8'
+'4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d')
+
+prepare() {
+  cd sqlite-src-$_srcver
+
+  # patch taken from Fedora
+  patch -Np1 -i ../sqlite-lemon-system-template.patch
+
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
+ -DSQLITE_SECURE_DELETE \
+ -DSQLITE_MAX_VARIABLE_NUMBER=25 \
+ -DSQLITE_MAX_EXPR_DEPTH=1"
+
+  # build sqlite
+  cd sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-amalgamation \
+   --enable-fts3 \
+   --enable-fts4 \
+   --enable-fts5 \
+   --enable-rtree \
+   --enable-json1 \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
+}
+
+package_sqlite() {
+
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline' 'zlib')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+
+  cd sqlite-src-$_srcver
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 showdb showjournal showstat4 showwal sqldiff 
"${pkgdir}"/usr/bin/
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/man1
+  install -m644 sqlite3.1 "${pkgdir}"/usr/share/man/man1/
+
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/license.txt
+
+  # split out tcl extension
+  mkdir "$srcdir"/tcl
+  mv "$pkgdir"/usr/lib/sqlite* "$srcdir"/tcl
+}
+
+package_sqlite-tcl() {
+
+ pkgdesc="sqlite Tcl Extension Architecture (TEA)"
+ depends=('sqlite')
+ provides=("sqlite3-tcl=$pkgver")
+ replaces=("sqlite3-tcl")
+
+  install -m755 -d "${pkgdir}"/usr/lib
+  mv "$srcdir"/tcl/* "${pkgdir}"/usr/lib
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/mann
+  install -m644 "${srcdir}"/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n 
"${pkgdir}"/usr/share/man/mann/
+
+  # link license
+  install -m755 -d "${pkgdir}"/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_sqlite-analyzer() {
+
+ pkgdesc="An analysis program for sqlite3 database files"
+ depends=('sqlite' 'tcl')
+
+  cd sqlite-src-$_srcver
+  install -m755 -d "${pkgdir}"/usr/bin
+  install -m755 sqlite3_analyzer "${pkgdir}"/usr/bin/
+}
+
+package_lemon() {
+
+ # https://www.sqlite.org/lemon.html
+ pkgdesc="A parser generator"
+ depends=('glibc')
+
+  cd sqlite-src-$_srcver
+  # ELF file ('usr/bin/lemon') lacks FULL RELRO, check LDFLAGS. - no fix found 
so far
+  install -Dm755 lemon ${pkgdir}/usr/bin/lemon
+  install -Dm644 lempar.c 

[arch-commits] Commit in sqlite/repos (4 files)

2012-04-07 Thread andyrtr
Date: Saturday, April 7, 2012 @ 03:57:38
  Author: andyrtr
Revision: 155831

db-move: moved sqlite from [testing] to [extra] (i686)

Added:
  sqlite/repos/extra-i686/
  sqlite/repos/extra-i686/PKGBUILD
(from rev 155830, sqlite/repos/testing-i686/PKGBUILD)
  sqlite/repos/extra-i686/license.txt
(from rev 155830, sqlite/repos/testing-i686/license.txt)
Deleted:
  sqlite/repos/testing-i686/

-+
 PKGBUILD|   93 ++
 license.txt |   33 
 2 files changed, 126 insertions(+)

Copied: sqlite/repos/extra-i686/PKGBUILD (from rev 155830, 
sqlite/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-04-07 07:57:38 UTC (rev 155831)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3071100
+_amalgamationver2=${_amalgamationver/00/}
+_docver=${_amalgamationver}#3070700
+#pkgver=${_amalgamationver2//0/.}
+pkgver=3.7.11
+pkgrel=2
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=( # tarball containing the amalgamation for SQLite = 3.7.5 together 
with a configure script and makefile for building it; includes now also the Tcl 
Extension Architecture (TEA)
+   http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz
+   #http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip
+   http://www.sqlite.org/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!libtool' '!emptydirs')
+md5sums=('0552d71bda98ebdcaea305cd6058221b'
+ 'c1fb48beff33612b2c7f5ae6ab17a601'
+ 'c1cdbc5544034d9012e421e75a5e4890')
+
+build() {
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
+
+  # build sqlite
+  cd $srcdir/sqlite-autoconf-$_amalgamationver
+  ./configure --prefix=/usr \
+   --disable-static
+  make
+  
+  # build the tcl extension
+  cd $srcdir/sqlite-autoconf-$_amalgamationver/tea
+  ./configure --prefix=/usr \
+   --with-system-sqlite
+  make
+
+}
+
+package_sqlite() {
+ 
+ pkgdesc=A C library that implements an SQL database engine
+ depends=('readline')
+ provides=(sqlite3=$pkgver)
+ replaces=(sqlite3=$pkgver)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite=3.7.5')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl=$pkgver)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+}
+
+package_sqlite-doc() {
+
+ pkgdesc=most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation
+ #arch=('any') - not yet supported
+ provides=(sqlite3-doc=$pkgver)
+ replaces=(sqlite3-doc=$pkgver)
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+  
+  # fix permissions and remove obsolete files; 
https://bugs.archlinux.org/task/24605
+  find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
+  find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
+
+  find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
+  find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
+  find ${pkgdir} -name '*~' -exec rm -f {} \;
+
+  find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # 
/build/pkg/sqlite-doc/usr/share/doc/sqlite/images/fileformat/.~lock.indexpage.odg#
+  find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
+  find ${pkgdir} -name '.~*' -exec rm -f {} \;
+}

Copied: sqlite/repos/extra-i686/license.txt (from rev 155830, 
sqlite/repos/testing-i686/license.txt)
===
--- extra-i686/license.txt  (rev 0)
+++ extra-i686/license.txt  2012-04-07 07:57:38 UTC (rev 155831)
@@ -0,0 +1,33 @@
+SQLite Copyright
+SQLite is in the
+Public Domain 
+
+
+All of the deliverable code in SQLite has been dedicated to the public domain 
by the authors. All code authors, and representatives of the companies they 
work for, have signed affidavits dedicating their contributions to the public 
domain and originals of those signed affidavits are stored in a firesafe at the 
main offices of Hwaci. Anyone is free to copy, modify, publish, use, compile, 
sell, or distribute the original SQLite code, either in source code form or as 
a compiled 

[arch-commits] Commit in sqlite/repos (4 files)

2012-04-07 Thread andyrtr
Date: Saturday, April 7, 2012 @ 03:57:39
  Author: andyrtr
Revision: 155832

db-move: moved sqlite from [testing] to [extra] (x86_64)

Added:
  sqlite/repos/extra-x86_64/
  sqlite/repos/extra-x86_64/PKGBUILD
(from rev 155830, sqlite/repos/testing-x86_64/PKGBUILD)
  sqlite/repos/extra-x86_64/license.txt
(from rev 155830, sqlite/repos/testing-x86_64/license.txt)
Deleted:
  sqlite/repos/testing-x86_64/

-+
 PKGBUILD|   93 ++
 license.txt |   33 
 2 files changed, 126 insertions(+)

Copied: sqlite/repos/extra-x86_64/PKGBUILD (from rev 155830, 
sqlite/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-04-07 07:57:39 UTC (rev 155832)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3071100
+_amalgamationver2=${_amalgamationver/00/}
+_docver=${_amalgamationver}#3070700
+#pkgver=${_amalgamationver2//0/.}
+pkgver=3.7.11
+pkgrel=2
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=( # tarball containing the amalgamation for SQLite = 3.7.5 together 
with a configure script and makefile for building it; includes now also the Tcl 
Extension Architecture (TEA)
+   http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz
+   #http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip
+   http://www.sqlite.org/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!libtool' '!emptydirs')
+md5sums=('0552d71bda98ebdcaea305cd6058221b'
+ 'c1fb48beff33612b2c7f5ae6ab17a601'
+ 'c1cdbc5544034d9012e421e75a5e4890')
+
+build() {
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
+
+  # build sqlite
+  cd $srcdir/sqlite-autoconf-$_amalgamationver
+  ./configure --prefix=/usr \
+   --disable-static
+  make
+  
+  # build the tcl extension
+  cd $srcdir/sqlite-autoconf-$_amalgamationver/tea
+  ./configure --prefix=/usr \
+   --with-system-sqlite
+  make
+
+}
+
+package_sqlite() {
+ 
+ pkgdesc=A C library that implements an SQL database engine
+ depends=('readline')
+ provides=(sqlite3=$pkgver)
+ replaces=(sqlite3=$pkgver)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite=3.7.5')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl=$pkgver)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+}
+
+package_sqlite-doc() {
+
+ pkgdesc=most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation
+ #arch=('any') - not yet supported
+ provides=(sqlite3-doc=$pkgver)
+ replaces=(sqlite3-doc=$pkgver)
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+  
+  # fix permissions and remove obsolete files; 
https://bugs.archlinux.org/task/24605
+  find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
+  find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
+
+  find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
+  find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
+  find ${pkgdir} -name '*~' -exec rm -f {} \;
+
+  find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # 
/build/pkg/sqlite-doc/usr/share/doc/sqlite/images/fileformat/.~lock.indexpage.odg#
+  find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
+  find ${pkgdir} -name '.~*' -exec rm -f {} \;
+}

Copied: sqlite/repos/extra-x86_64/license.txt (from rev 155830, 
sqlite/repos/testing-x86_64/license.txt)
===
--- extra-x86_64/license.txt(rev 0)
+++ extra-x86_64/license.txt2012-04-07 07:57:39 UTC (rev 155832)
@@ -0,0 +1,33 @@
+SQLite Copyright
+SQLite is in the
+Public Domain 
+
+
+All of the deliverable code in SQLite has been dedicated to the public domain 
by the authors. All code authors, and representatives of the companies they 
work for, have signed affidavits dedicating their contributions to the public 
domain and originals of those signed affidavits are stored in a firesafe at the 
main offices of Hwaci. Anyone is free to copy, modify, publish, use, compile, 
sell, or distribute the original SQLite code, either