diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/flyspray | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'unmaintained/flyspray')
-rw-r--r-- | unmaintained/flyspray/APKBUILD | 61 | ||||
-rw-r--r-- | unmaintained/flyspray/flyspray.post-install | 3 |
2 files changed, 64 insertions, 0 deletions
diff --git a/unmaintained/flyspray/APKBUILD b/unmaintained/flyspray/APKBUILD new file mode 100644 index 0000000000..ffdcb8b62f --- /dev/null +++ b/unmaintained/flyspray/APKBUILD @@ -0,0 +1,61 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=flyspray +pkgver=0.9.9.7 +pkgrel=1 +pkgdesc="A PHP web-based bug tracker" +url="http://www.flyspray.org/" +arch="noarch" +license="GPL2.1" +depends="php php-xml" +depends_dev="" +makedepends="$depends_dev" +install="$pkgname.post-install" +pkggroups="www-data" +subpackages="$pkgname-mysql $pkgname-mysqli $pkgname-pgsql" +source="http://flyspray.org/$pkgname-$pkgver.zip" +_builddir=$srcdir +_instdir="/usr/share/webapps/$pkgname" +prepare() { + sed -i -e "s/split/explode/" adodb/drivers/adodb-postgres64.inc.php +} + +build() { + return 0 +} + +package() { + cd "$_builddir" + mkdir -p $pkgdir"$_instdir" + cp -ar $srcdir/* $pkgdir"$_instdir" + rm $pkgdir"$_instdir"/$pkgname-$pkgver.zip + echo "deny from all" > $pkgdir"$_instdir"/.htaccess + chgrp -R www-data $pkgdir"$_instdir" +} + +pgsql() { + arch="noarch" + pkgdesc="Flyspray PostgreSQL support" + depends="flyspray php-pgsql php-pdo_pgsql php-pear-mdb2-driver-pgsql" + mkdir -p "$subpkgdir"$_instdir +} + +mysql() { + arch="noarch" + pkgdesc="Flyspray MySQL support" + depends="flyspray php-mysql php-pdo_mysql php-pear-mdb2-driver-mysql" + mkdir -p "$subpkgdir"$_instdir +} + +mysqli() { + arch="noarch" + pkgdesc="Flyspray MySQLi support" + depends="flyspray php-mysqli php-pear-mdb2-driver-mysqli" + mkdir -p "$subpkgdir"$_instdir +} + + + +md5sums="3a218c5447d64af18f19bc63bb825e58 flyspray-0.9.9.7.zip" +sha256sums="f05fb71d61ee3b4ab42a61efea7b2c4fc53fd4ad762c9f3ced7de664661c2f2d flyspray-0.9.9.7.zip" +sha512sums="17d8126bfe393527ae7e64377c6580274a118e4fd449f1191190471e242479b6ed50f8451dd7074afc39fda430c0fa5dee3845092ee0ca83d3254ecc6f0b8885 flyspray-0.9.9.7.zip" diff --git a/unmaintained/flyspray/flyspray.post-install b/unmaintained/flyspray/flyspray.post-install new file mode 100644 index 0000000000..de166dac84 --- /dev/null +++ b/unmaintained/flyspray/flyspray.post-install @@ -0,0 +1,3 @@ +#!/bin/sh +echo -e "\nRemember to make a symlink from /usr/share/webapps/flyspray to the document root -or whatever- of your preferred webserver\n" +exit 0 |