diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-04 17:53:27 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-04 17:53:27 -0500 |
commit | 73a91aace010246bea82b57af6982f7de5508fac (patch) | |
tree | 02b6029d57b066c0f15d0160ffbde17dd976e0a1 /~lukeshu | |
parent | 52da029144be979ab29307f7456478a11451b4eb (diff) | |
download | abslibre-73a91aace010246bea82b57af6982f7de5508fac.tar.gz abslibre-73a91aace010246bea82b57af6982f7de5508fac.tar.bz2 abslibre-73a91aace010246bea82b57af6982f7de5508fac.zip |
update ~lukeshu/parabolaweb-git
Diffstat (limited to '~lukeshu')
-rw-r--r-- | ~lukeshu/parabolaweb-git/PKGBUILD | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/~lukeshu/parabolaweb-git/PKGBUILD b/~lukeshu/parabolaweb-git/PKGBUILD index 9b2614ed8..962b1c977 100644 --- a/~lukeshu/parabolaweb-git/PKGBUILD +++ b/~lukeshu/parabolaweb-git/PKGBUILD @@ -1,22 +1,19 @@ # Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> +# This does not follow normal package guidelines; it is not a normal package. pkgname=parabolaweb-git -pkgver=20111204 -pkgrel=1 +pkgver=20120228 +pkgrel=2 pkgdesc="The Parabola website, fork of archweb" arch=('any') url="https://projects.parabolagnulinux.org/parabolaweb.git/" license=('GPL2') -depends=('python2' 'git' - 'django=1.3.1' - 'python-markdown=2.0.3' - 'python-south=0.7.3' - 'python2-pyinotify=0.9.2' - 'python-memcached=1.47' - 'python2-pytz>=2011n' - 'python2-psycopg2' -) +_requirements=https://projects.parabolagnulinux.org/parabolaweb.git/plain/requirements_prod.txt +depends=('python2' 'git' + `curl -s "$_requirements" | sed -r -e 's/.*/\L&/' -e 's/==/=/' \ + -e 's/^(south)/python-&/' \ + -e 's/^(markdown|psycopg2|pyinotify|pytz)/python2-&/'`) install=parabolaweb.install # These will make it install into /http/srv/web @@ -38,5 +35,3 @@ build() { package() { install -d "${pkgdir}/${_install_dir}" } - -# vim:set ts=2 sw=2 et: |