diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
commit | 6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch) | |
tree | 1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/lua-dbi | |
parent | 66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff) | |
download | aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2 aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz |
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/lua-dbi')
-rw-r--r-- | testing/lua-dbi/APKBUILD | 66 | ||||
-rw-r--r-- | testing/lua-dbi/lua-dbi-postgresql.patch | 9 |
2 files changed, 0 insertions, 75 deletions
diff --git a/testing/lua-dbi/APKBUILD b/testing/lua-dbi/APKBUILD deleted file mode 100644 index 4455308b44..0000000000 --- a/testing/lua-dbi/APKBUILD +++ /dev/null @@ -1,66 +0,0 @@ -# Contributor: Leonardo Arena <rnarld@alpinelinux.org> -# Maintainer: -pkgname=lua-dbi -_realname=luadbi -pkgver=0.5 -pkgrel=1 -pkgdesc="A database interface library for Lua" -url="http://code.google.com/p/luadbi" -arch="all" -license="GPL" -depends="" -makedepends="lua-dev mysql-dev postgresql-dev sqlite-dev" -install="" -subpackages="$pkgname-mysql $pkgname-postgresql $pkgname-sqlite" -source="http://luadbi.googlecode.com/files/$_realname.$pkgver.tar.gz - lua-dbi-postgresql.patch" - -_builddir="$srcdir" - -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - make || return 1 -} - -package() { - cd "$_builddir" - # install -d "$pkgdir"/usr/lib/lua/5.1 - install -D -m755 "$srcdir"/DBI.lua "$pkgdir"/usr/share/lua/5.1/DBI.lua || return 1 - rm -f "$pkgdir"/usr/lib/*.la -} - -_mv_backend() { - install -d "$subpkgdir"/usr/lib/lua/5.1 - mv "$srcdir"/dbd${1}.so "$subpkgdir"/usr/lib/lua/5.1 -} - -sqlite() { - pkgdesc="lua-dbi SQLite backend" - depends="lua-dbi sqlite" - _mv_backend sqlite3 -} - -mysql() { - pkgdesc="lua-dbi MySQL backend" - depends="lua-dbi mysql" - _mv_backend mysql -} - -postgresql() { - pkgdesc="lua-dbi PostgreSQL backend" - depends="lua-dbi postgresql" - _mv_backend postgresql -} - -md5sums="ede2b003aadddc151aac87050c3d926e luadbi.0.5.tar.gz -67fa36ca81d2d7003be5a3f86d35c79c lua-dbi-postgresql.patch" diff --git a/testing/lua-dbi/lua-dbi-postgresql.patch b/testing/lua-dbi/lua-dbi-postgresql.patch deleted file mode 100644 index 2d2ba272da..0000000000 --- a/testing/lua-dbi/lua-dbi-postgresql.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- a/dbd/postgresql/dbd_postgresql.h.old 2010-05-01 06:25:12.000000000 +0200 -+++ b/dbd/postgresql/dbd_postgresql.h 2011-04-19 16:59:53.364944209 +0200 -@@ -1,5 +1,5 @@ - #include <libpq-fe.h> --#include <postgres_fe.h> -+#include <server/postgres_fe.h> - #include <dbd/common.h> - - /* |