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

2014-06-06 Thread Andreas Radke
Date: Saturday, June 7, 2014 @ 00:03:53
  Author: andyrtr
Revision: 214341

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

Added:
  sqlite/repos/extra-i686/PKGBUILD
(from rev 214340, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-i686/license.txt
(from rev 214340, sqlite/trunk/license.txt)
  sqlite/repos/extra-x86_64/PKGBUILD
(from rev 214340, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-x86_64/license.txt
(from rev 214340, sqlite/trunk/license.txt)
Deleted:
  sqlite/repos/extra-i686/PKGBUILD
  sqlite/repos/extra-i686/license.txt
  sqlite/repos/extra-i686/sqlite-nautilus.patch
  sqlite/repos/extra-x86_64/PKGBUILD
  sqlite/repos/extra-x86_64/license.txt
  sqlite/repos/extra-x86_64/sqlite-nautilus.patch

+
 /PKGBUILD  |  192 +++
 /license.txt   |   66 
 extra-i686/PKGBUILD|  104 --
 extra-i686/license.txt |   33 --
 extra-i686/sqlite-nautilus.patch   |   41 ---
 extra-x86_64/PKGBUILD  |  104 --
 extra-x86_64/license.txt   |   33 --
 extra-x86_64/sqlite-nautilus.patch |   41 ---
 8 files changed, 258 insertions(+), 356 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-06 22:03:38 UTC (rev 214340)
+++ extra-i686/PKGBUILD 2014-06-06 22:03:53 UTC (rev 214341)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Tom Newsom 
-
-pkgbase="sqlite"
-pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
-_amalgamationver=3080403
-_docver=${_amalgamationver}
-#_docver=3080001
-pkgver=3.8.4.3
-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=( # 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/2014/sqlite-autoconf-$_amalgamationver.tar.gz
-   http://www.sqlite.org/2014/sqlite-doc-${_docver}.zip
-   license.txt
-   sqlite-nautilus.patch)
-options=('!emptydirs')
-sha1sums=('70f3b100fa22e5bfebfe1b0a2102612e3c6c53fb'
-  'ce8615799a9da7fc9d2cbcd2774d77da4ba72417'
-  'f34f6daa4ab3073d74e774aad21d66878cf26853'
-  '4e9a4f80c91bbaf80f0f45b9b97fb1cbe3464bc7')
-
-prepare() {
-  cd "$srcdir"/sqlite-autoconf-$_amalgamationver
-  # https://bugs.archlinux.org/task/39861
-  patch -Np1 -i ${srcdir}/sqlite-nautilus.patch
-}
-
-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 

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

2017-05-30 Thread Andreas Radke
Date: Tuesday, May 30, 2017 @ 15:03:08
  Author: andyrtr
Revision: 296747

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

Added:
  sqlite/repos/testing-i686/PKGBUILD
(from rev 296746, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/configure.patch
(from rev 296746, sqlite/trunk/configure.patch)
  sqlite/repos/testing-i686/license.txt
(from rev 296746, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 296746, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/configure.patch
(from rev 296746, sqlite/trunk/configure.patch)
  sqlite/repos/testing-x86_64/license.txt
(from rev 296746, sqlite/trunk/license.txt)
Deleted:
  sqlite/repos/testing-i686/PKGBUILD
  sqlite/repos/testing-i686/license.txt
  sqlite/repos/testing-x86_64/PKGBUILD
  sqlite/repos/testing-x86_64/license.txt

+
 /PKGBUILD  |  246 +++
 /license.txt   |   66 ++
 testing-i686/PKGBUILD  |  118 --
 testing-i686/configure.patch   |  210 +
 testing-i686/license.txt   |   33 -
 testing-x86_64/PKGBUILD|  118 --
 testing-x86_64/configure.patch |  210 +
 testing-x86_64/license.txt |   33 -
 8 files changed, 732 insertions(+), 302 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-05-30 15:02:46 UTC (rev 296746)
+++ testing-i686/PKGBUILD   2017-05-30 15:03:08 UTC (rev 296747)
@@ -1,118 +0,0 @@
-# $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 websi