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

2017-10-30 Thread Andreas Radke
Date: Monday, October 30, 2017 @ 13:10:53
  Author: andyrtr
Revision: 308655

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 308654, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 308654, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 308654, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 308654, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 302 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 308654, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-10-30 13:10:53 UTC (rev 308655)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=321
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.21.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('1892ebbac215095351a0ecc0c60a36e4d03104bc'
+  'd919b648e128028d17c5435dc88f2f190f7d6a2e'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 308654, 
sqlite/trunk/license.txt)

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

2017-08-25 Thread Andreas Radke
Date: Friday, August 25, 2017 @ 18:17:40
  Author: andyrtr
Revision: 303530

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 303529, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 303529, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 303529, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 303529, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 302 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 303529, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-08-25 18:17:40 UTC (rev 303530)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3200100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('808448837323b4ef9c0771af89d06dca5f0832dd'
+  '9c2faf412173e51841d311e740d2061cad6544ad'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 303529, 
sqlite/trunk/license.txt)

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

2017-08-01 Thread Andreas Radke
Date: Tuesday, August 1, 2017 @ 17:50:02
  Author: andyrtr
Revision: 301470

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 301469, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 301469, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 301469, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 301469, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 302 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 301469, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-08-01 17:50:02 UTC (rev 301470)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=320
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('f0463bd42d51052693b8ac7ff671ac7a0acf1215'
+  'b22bd9952f7857d9cfe2b25482f1759f23d22389'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 301469, 
sqlite/trunk/license.txt)

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

2017-06-08 Thread Andreas Radke
Date: Thursday, June 8, 2017 @ 17:40:20
  Author: andyrtr
Revision: 298396

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 298395, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 298395, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 298395, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 298395, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 302 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 298395, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-06-08 17:40:20 UTC (rev 298396)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3190300
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.19.3
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('41ad08f1268fa35e0bd9715c33bf51dee81b7bfc'
+  '591a68cb165737bf024575fe90d4e28df0a57b65'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 298395, 
sqlite/trunk/license.txt)

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

2017-05-29 Thread Andreas Radke
Date: Monday, May 29, 2017 @ 18:29:59
  Author: andyrtr
Revision: 296737

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 296736, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 296736, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 296736, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 296736, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 302 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 296736, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-29 18:29:59 UTC (rev 296737)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3190200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.19.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('c20cca8042b87cf68c4c3bc81297857e13bd1ca8'
+  '81f1ff9c8025f37b7ae60237aa2626d4563c8bb5'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 296736, 
sqlite/trunk/license.txt)

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

2017-04-01 Thread Andreas Radke
Date: Saturday, April 1, 2017 @ 08:33:44
  Author: andyrtr
Revision: 291979

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 291978, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 291978, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 291978, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 291978, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  117 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  117 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 300 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 291978, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-04-01 08:33:44 UTC (rev 291979)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=318
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('7c8e1acd2e006675aee7fb9578c1ac7de58ab614'
+  '36fac5aa864683d186410c75d2f6e3176beddc7d'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 291978, 
sqlite/trunk/license.txt)
===
--- 

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

2017-02-14 Thread Andreas Radke
Date: Tuesday, February 14, 2017 @ 14:16:28
  Author: andyrtr
Revision: 288942

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 288941, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 288941, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 288941, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 288941, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  117 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  117 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 300 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 288941, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-02-14 14:16:28 UTC (rev 288942)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=317
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.17.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('67368dfa74dac296cebfc4a8fe9bb92ef47e8b47'
+  'bf3b479067d6eb36c8230b668a45994c9212d6cc'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 288941, 
sqlite/trunk/license.txt)
===
--- 

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

2017-01-06 Thread Andreas Radke
Date: Friday, January 6, 2017 @ 21:29:53
  Author: andyrtr
Revision: 285497

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 285496, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 285496, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 285496, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 285496, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  117 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  117 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 300 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 285496, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-06 21:29:53 UTC (rev 285497)
@@ -0,0 +1,117 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3160200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.16.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('fc216077093044e9161d9d27c68d0fba8ff19d3f'
+  'c3424040e2368dd78cf9aac801de8d8988549439'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 285496, 
sqlite/trunk/license.txt)
===
--- 

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

2017-01-02 Thread Andreas Radke
Date: Monday, January 2, 2017 @ 20:13:16
  Author: andyrtr
Revision: 285222

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 285221, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 285221, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 285221, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 285221, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 285221, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-02 20:13:16 UTC (rev 285222)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=316
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.16.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2017/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2017/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('1256fb4d810d23082ed2150cbfc3fa98245cd05b'
+  '6588aea01865be2cfcd326b693193dda5a618b7b'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 285221, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt  

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

2016-11-29 Thread Andreas Radke
Date: Tuesday, November 29, 2016 @ 20:58:59
  Author: andyrtr
Revision: 282340

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 282339, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 282339, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 282339, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 282339, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 282339, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-29 20:58:59 UTC (rev 282340)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3150200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.15.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('4b7c86c0c2780321d524ca69073fc6bb7c29c108'
+  '7f60ca500384f3de8e548d80fb48cb58b9ce0b1a'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 282339, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-11-06 Thread Evangelos Foutras
Date: Sunday, November 6, 2016 @ 20:37:40
  Author: foutrelis
Revision: 279973

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  sqlite/repos/staging-i686/
  sqlite/repos/staging-i686/PKGBUILD
(from rev 279972, sqlite/trunk/PKGBUILD)
  sqlite/repos/staging-i686/license.txt
(from rev 279972, sqlite/trunk/license.txt)
  sqlite/repos/staging-x86_64/
  sqlite/repos/staging-x86_64/PKGBUILD
(from rev 279972, sqlite/trunk/PKGBUILD)
  sqlite/repos/staging-x86_64/license.txt
(from rev 279972, sqlite/trunk/license.txt)

+
 staging-i686/PKGBUILD  |  116 +++
 staging-i686/license.txt   |   33 
 staging-x86_64/PKGBUILD|  116 +++
 staging-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/staging-i686/PKGBUILD (from rev 279972, 
sqlite/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-06 20:37:40 UTC (rev 279973)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3150100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.15.1
+pkgrel=2
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('2e327da0763e6fcb38ba01c8159ee9c1db015c2c'
+  '25da810eb1aaa1058465513eea181ecbb8a42aaf'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/staging-i686/license.txt (from rev 279972, 
sqlite/trunk/license.txt)
===
--- staging-i686/license.txt(rev 0)
+++ 

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

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:44:33
  Author: andyrtr
Revision: 279842

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 279841, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 279841, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 279841, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 279841, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 279841, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 14:44:33 UTC (rev 279842)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3150100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.15.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('2e327da0763e6fcb38ba01c8159ee9c1db015c2c'
+  '25da810eb1aaa1058465513eea181ecbb8a42aaf'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 279841, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt 

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

2016-10-15 Thread Andreas Radke
Date: Saturday, October 15, 2016 @ 20:08:53
  Author: andyrtr
Revision: 278851

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 278850, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 278850, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 278850, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 278850, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 278850, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-15 20:08:53 UTC (rev 278851)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=315
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.15.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('48aaa84b12f4c6c500ac2d7b99fa5efbd5183bf1'
+  '0a0537702edefeff71355ee54ccced88d5035198'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 278850, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt 

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

2016-09-13 Thread Andreas Radke
Date: Tuesday, September 13, 2016 @ 15:02:53
  Author: andyrtr
Revision: 276222

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 276221, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 276221, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 276221, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 276221, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 276221, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-13 15:02:53 UTC (rev 276222)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3140200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.14.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('711f186968ccbfac42b302a1854cd72b97b6975c'
+  'ed4248ebfd30a20ce9bddc8e27677ce63382a952'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 276221, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-08-21 Thread Andreas Radke
Date: Sunday, August 21, 2016 @ 08:57:49
  Author: andyrtr
Revision: 274531

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 274530, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 274530, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 274530, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 274530, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 274530, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 08:57:49 UTC (rev 274531)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3140100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.14.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('7127041adb3f7f94f0a668625d9e74a413c1ddbb'
+  'aad54bb01293bb75e880377be46132874d928ae0'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 274530, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt

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

2016-08-11 Thread Christian Hesse
Date: Thursday, August 11, 2016 @ 12:09:00
  Author: eworm
Revision: 273605

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 273604, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 273604, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 273604, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 273604, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 273604, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-11 12:09:00 UTC (rev 273605)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=314
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.14.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('d9470fa06b352e3e17b6c4b78cf8059ac1f79aa4'
+  'a58fe1b26f55cda14271fe0356b5cbdb11e58751'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 273604, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt

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

2016-05-18 Thread Andreas Radke
Date: Wednesday, May 18, 2016 @ 17:21:41
  Author: andyrtr
Revision: 268303

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 268302, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 268302, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 268302, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 268302, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 268302, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-05-18 15:21:41 UTC (rev 268303)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=313
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.13.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('e8a1530a0f2bfe427c966da5399f4d431ae51533'
+  '1f10c30709c67bdb62d0d86f2b36c0148f64ed21'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 268302, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-04-19 Thread Andreas Radke
Date: Tuesday, April 19, 2016 @ 15:46:07
  Author: andyrtr
Revision: 265454

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 265453, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 265453, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 265453, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 265453, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 265453, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-19 13:46:07 UTC (rev 265454)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=3120200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.12.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('d96d0c14549212d3cac9a11450109149a17065d6'
+  'e49eb277915d1f886a9ee4687a23ec67dc5fe3cb'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 265453, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-04-09 Thread Andreas Radke
Date: Saturday, April 9, 2016 @ 14:48:34
  Author: andyrtr
Revision: 264249

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 264248, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 264248, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 264248, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 264248, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 264248, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-09 12:48:34 UTC (rev 264249)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=3120100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.12.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('f3f76c0f07a37e085eb504460a5663bcff53b6ad'
+  '5adad476e52a031bfb1cbc9c1426a5fb77e453a3'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 264248, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-03-31 Thread Andreas Radke
Date: Thursday, March 31, 2016 @ 20:29:49
  Author: andyrtr
Revision: 263700

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 263699, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 263699, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 263699, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 263699, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 263699, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-31 18:29:49 UTC (rev 263700)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=312
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.12.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('fbed202a087891c8be289093cbefa0e74baf8038'
+  'fbca5a4db72c1f50d949f9f5df96d9f905559230'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 263699, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-03-05 Thread Andreas Radke
Date: Saturday, March 5, 2016 @ 09:13:28
  Author: andyrtr
Revision: 260844

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 260843, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 260843, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 260843, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 260843, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 260843, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-05 08:13:28 UTC (rev 260844)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=3110100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.11.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('ce561ea09a7d956d3e1c86a094b75a68f7900826'
+  '79a24f86bbfc77371fb528ac396d3ad1c266ffa4'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  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"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 260843, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ 

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 19:18:01
  Author: andyrtr
Revision: 259837

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 259836, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 259836, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 259836, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 259836, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  115 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  115 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 296 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 259836, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-16 18:18:01 UTC (rev 259837)
@@ -0,0 +1,115 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=311
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.11.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('c2e655013bfbbb9916d610a15d6d091a056eb45c'
+  '9b58a0a48508103352144afee2e47469e74427ba'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 259836, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2016-02-16 18:18:01 UTC (rev 259837)
@@ 

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

2016-01-19 Thread Andreas Radke
Date: Tuesday, January 19, 2016 @ 20:42:18
  Author: andyrtr
Revision: 258420

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 258419, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 258419, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 258419, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 258419, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  115 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  115 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 296 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 258419, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-01-19 19:42:18 UTC (rev 258420)
@@ -0,0 +1,115 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer') 
+_srcver=3100100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.10.1
+pkgrel=2
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('01f5aa582d41b1f306bd68555977ce7772bace8a'
+  '1a7035b584b9b587346c55ffcd384db2509ced9c'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # 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')
+ 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_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")
+ 
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 258419, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2016-01-19 19:42:18 UTC (rev 258420)
@@ -0,0 

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

2016-01-14 Thread Andreas Radke
Date: Thursday, January 14, 2016 @ 16:41:14
  Author: andyrtr
Revision: 258306

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 258305, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 258305, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 258305, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 258305, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  102 +++
 testing-i686/license.txt   |   33 +
 testing-x86_64/PKGBUILD|  102 +++
 testing-x86_64/license.txt |   33 +
 4 files changed, 270 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 258305, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-01-14 15:41:14 UTC (rev 258306)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=3100100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('01f5aa582d41b1f306bd68555977ce7772bace8a'
+  '1a7035b584b9b587346c55ffcd384db2509ced9c'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd "$srcdir"/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_RTREE=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd "$srcdir"/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+ 
+  cd ${srcdir}/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-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")
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 258305, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2016-01-14 15:41:14 UTC (rev 258306)
@@ -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 

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

2016-01-08 Thread Andreas Radke
Date: Friday, January 8, 2016 @ 18:53:16
  Author: andyrtr
Revision: 257638

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 257637, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 257637, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 257637, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 257637, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  102 +++
 testing-i686/license.txt   |   33 +
 testing-x86_64/PKGBUILD|  102 +++
 testing-x86_64/license.txt |   33 +
 4 files changed, 270 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 257637, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-01-08 17:53:16 UTC (rev 257638)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=310
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.10.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('6d7047a57eb73773ebef5e8179510d28b61d9345'
+  '8bb827722301c485ac0526e20c015f1b76f32542'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd "$srcdir"/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_RTREE=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd "$srcdir"/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+ 
+  cd ${srcdir}/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-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")
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 257637, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2016-01-08 17:53:16 UTC (rev 257638)
@@ -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 

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

2015-11-04 Thread Andreas Radke
Date: Wednesday, November 4, 2015 @ 21:17:55
  Author: andyrtr
Revision: 250111

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 250110, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 250110, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 250110, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 250110, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  102 +++
 testing-i686/license.txt   |   33 +
 testing-x86_64/PKGBUILD|  102 +++
 testing-x86_64/license.txt |   33 +
 4 files changed, 270 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 250110, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-04 20:17:55 UTC (rev 250111)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=3090200
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.9.2
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2015/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('e3bf27dee50bda25bc5b87254541d7f52bfcd4bb'
+  '31a2e8a845e24968ede785ec09e057514c3538fd'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd "$srcdir"/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_RTREE=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd "$srcdir"/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+ 
+  cd ${srcdir}/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-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")
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 250110, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-11-04 20:17:55 UTC (rev 250111)
@@ -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 

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

2015-10-15 Thread Andreas Radke
Date: Thursday, October 15, 2015 @ 18:05:22
  Author: andyrtr
Revision: 249387

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 249386, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 249386, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 249386, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 249386, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  102 +++
 testing-i686/license.txt   |   33 +
 testing-x86_64/PKGBUILD|  102 +++
 testing-x86_64/license.txt |   33 +
 4 files changed, 270 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 249386, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-10-15 16:05:22 UTC (rev 249387)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=309
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2015/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('4bd502c7435bb86c6dafaa8863a90d95fb0bc06b'
+  'f20c4904ae55e2ef106bb0ecf31256b3e5d3b3ee'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd "$srcdir"/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_RTREE=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd "$srcdir"/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+ 
+  cd ${srcdir}/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-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")
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 249386, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-10-15 16:05:22 UTC (rev 249387)
@@ -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 

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

2015-09-04 Thread Andreas Radke
Date: Friday, September 4, 2015 @ 20:53:35
  Author: andyrtr
Revision: 245308

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 245307, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 245307, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 245307, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 245307, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  102 +++
 testing-i686/license.txt   |   33 +
 testing-x86_64/PKGBUILD|  102 +++
 testing-x86_64/license.txt |   33 +
 4 files changed, 270 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 245307, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-04 18:53:35 UTC (rev 245308)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=3081101
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.8.11.1
+pkgrel=3
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2015/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('120257f723649f7c84db8003972d599cb8d301a4'
+  '9ea6ec64c4959e8099ebe76a24b32784ee00e19d'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd "$srcdir"/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_RTREE=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd "$srcdir"/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+ 
+  cd ${srcdir}/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-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")
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 245307, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-09-04 18:53:35 UTC (rev 245308)
@@ -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 

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

2015-08-11 Thread Andreas Radke
Date: Tuesday, August 11, 2015 @ 20:11:58
  Author: andyrtr
Revision: 243174

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 243173, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 243173, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 243173, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 243173, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  101 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|  101 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 268 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 243173, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-08-11 18:11:58 UTC (rev 243174)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_srcver=3081101
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.8.11.1
+pkgrel=2
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url=http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(http://www.sqlite.org/2015/sqlite-src-${_srcver}.zip
+http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('120257f723649f7c84db8003972d599cb8d301a4'
+  '9ea6ec64c4959e8099ebe76a24b32784ee00e19d'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd $srcdir/sqlite-src-$_srcver
+  autoreconf -vfi
+}
+
+build() {
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 \
+ -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_SECURE_DELETE
+
+  # build sqlite
+  cd $srcdir/sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff
+}
+
+package_sqlite() {
+ 
+ pkgdesc=A C library that implements an SQL database engine
+ depends=('readline')
+ provides=(sqlite3=$pkgver)
+ replaces=(sqlite3)
+ 
+  cd ${srcdir}/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-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)
+ 
+  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
+  cd ${srcdir}/sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 243173, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-08-11 18:11:58 UTC (rev 243174)
@@ -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 

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

2015-07-28 Thread Andreas Radke
Date: Tuesday, July 28, 2015 @ 19:03:33
  Author: andyrtr
Revision: 242575

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 242574, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 242574, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 242574, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 242574, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 242574, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-28 17:03:33 UTC (rev 242575)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3081100
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.11
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('da1322d883548bdb0f6312941b20ed497e3754fa'
+  '8a0011fc13c2544902a6da426091c3b7e70d68aa'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 242574, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-07-28 17:03:33 UTC (rev 242575)
@@ -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 

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

2015-05-21 Thread Andreas Radke
Date: Thursday, May 21, 2015 @ 19:56:59
  Author: andyrtr
Revision: 239626

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 239624, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 239624, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 239624, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 239624, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 239624, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-21 17:56:59 UTC (rev 239626)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3081002
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.10.2
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('c2f2c17d3dc4c4e179d35cc04e4420636d48a152'
+  '2e816999255e4fced7d93b6ad3650a361a446288'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 239624, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-05-21 17:56:59 UTC (rev 239626)
@@ -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 

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

2015-05-07 Thread Andreas Radke
Date: Thursday, May 7, 2015 @ 21:41:27
  Author: andyrtr
Revision: 238611

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 238610, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 238610, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 238610, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 238610, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 238610, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-07 19:41:27 UTC (rev 238611)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3081000
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.10
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs' '!makeflags')
+sha1sums=('7e92b4f78d4648fb2a97a4dc721490cc08653a0b'
+  '338c73d748ce3499305e2ba524e85ee3aac7444b'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 238610, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-05-07 19:41:27 UTC (rev 238611)
@@ -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 

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

2015-04-11 Thread Andreas Radke
Date: Saturday, April 11, 2015 @ 20:54:12
  Author: andyrtr
Revision: 236272

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 236271, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 236271, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 236271, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 236271, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 236271, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-11 18:54:12 UTC (rev 236272)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080900
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.9
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('db70dee268700b312cbaa5b3e5cf8454e1c8b7b9'
+  'c677b73a0be5419427a01431d24d718ec4cde6a9'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 236271, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-04-11 18:54:12 UTC (rev 236272)
@@ -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 

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

2015-02-26 Thread Andreas Radke
Date: Thursday, February 26, 2015 @ 20:06:08
  Author: andyrtr
Revision: 232011

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 232010, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 232010, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 232010, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 232010, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 232010, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-26 19:06:08 UTC (rev 232011)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080803
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.8.3
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('2fe3f6226a2a08a2e814b97cd53e36bb3c597112'
+  '27c2cada8e663f694c0469bcae09eb0d8c55dd7c'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 232010, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-02-26 19:06:08 UTC (rev 232011)
@@ -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, 

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

2015-01-31 Thread Andreas Radke
Date: Saturday, January 31, 2015 @ 15:48:16
  Author: andyrtr
Revision: 230325

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 230324, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 230324, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 230324, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 230324, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 230324, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-31 14:48:16 UTC (rev 230325)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080802
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.8.2
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('1db237523419af7110e1d92c6b766e965f9322e4'
+  'a11a6ea95d3d4a88b8d7d4e0cb6fcc3e5f4bf887'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 230324, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-01-31 14:48:16 UTC (rev 230325)
@@ -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, 

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

2015-01-22 Thread Andreas Radke
Date: Thursday, January 22, 2015 @ 18:26:55
  Author: andyrtr
Revision: 229649

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 229648, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 229648, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 229648, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 229648, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 229648, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-22 17:26:55 UTC (rev 229649)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080801
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.8.1
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('a140e3ada8a91a7bacf7a58cfd8f5f0e76796258'
+  '43d0fbc6a9126d617cf7dd066cbd6171c1007d59'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 229648, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-01-22 17:26:55 UTC (rev 229649)
@@ -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, 

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

2015-01-17 Thread Andreas Radke
Date: Saturday, January 17, 2015 @ 22:54:53
  Author: andyrtr
Revision: 229497

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 229496, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 229496, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 229496, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 229496, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 229496, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-17 21:54:53 UTC (rev 229497)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080800
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.8
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2015/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2015/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('abb7570b7e331ffede7f40f0037be6e0c03b73af'
+  'd1192d3fd38ca1c68da537eeb87faf7c3071a5fd'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 229496, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2015-01-17 21:54:53 UTC (rev 229497)
@@ -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, 

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

2013-12-08 Thread Andreas Radke
Date: Sunday, December 8, 2013 @ 10:43:47
  Author: andyrtr
Revision: 201301

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 201300, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 201300, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 201300, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 201300, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   96 +++
 testing-i686/license.txt   |   33 ++
 testing-x86_64/PKGBUILD|   96 +++
 testing-x86_64/license.txt |   33 ++
 4 files changed, 258 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 201300, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-08 09:43:47 UTC (rev 201301)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=sqlite
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
+_amalgamationver=3080200
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.2
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+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/2013/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2013/sqlite-doc-${_docver}.zip
+   license.txt)
+options=('!emptydirs')
+sha1sums=('6033ef603ce221d367c665477514d972ef1dc90e'
+  'b9cbd42d08b8c1ce96656a6b111e918bb515b605'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+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)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
+  make DESTDIR=${pkgdir} install
+  
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+}
+
+package_sqlite-tcl() {
+ 
+ pkgdesc=sqlite Tcl Extension Architecture (TEA)
+ depends=('sqlite')
+ provides=(sqlite3-tcl=$pkgver)
+ replaces=(sqlite3-tcl)
+ 
+  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
+  make DESTDIR=${pkgdir} install
+  
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
+}
+
+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)
+ 
+  #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/testing-i686/license.txt (from rev 201300, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2013-12-08 09:43:47 UTC (rev 201301)
@@ -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 

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

2012-04-06 Thread andyrtr
Date: Friday, April 6, 2012 @ 11:51:36
  Author: andyrtr
Revision: 155797

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 155796, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 155796, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 155796, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 155796, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |   93 +++
 testing-i686/license.txt   |   33 +++
 testing-x86_64/PKGBUILD|   93 +++
 testing-x86_64/license.txt |   33 +++
 4 files changed, 252 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 155796, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-06 15:51:36 UTC (rev 155797)
@@ -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/testing-i686/license.txt (from rev 155796, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt2012-04-06 15:51:36 UTC (rev 155797)
@@ -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