diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-12 16:33:55 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-12 16:33:55 -0300 |
commit | 6a27e982cb144b02a1e6a81b0c0e27c02805b1db (patch) | |
tree | 4d88a46915d39f237d180ddc6960cebd48ac0f68 /pcr/python2-potr | |
parent | e3acfdf0b0b71c3180b756bdc7ff4a8090bb5e00 (diff) | |
download | abslibre-6a27e982cb144b02a1e6a81b0c0e27c02805b1db.tar.gz abslibre-6a27e982cb144b02a1e6a81b0c0e27c02805b1db.tar.bz2 abslibre-6a27e982cb144b02a1e6a81b0c0e27c02805b1db.zip |
python2-potr: upgrade, weechat's otr.py works now
Diffstat (limited to 'pcr/python2-potr')
-rw-r--r-- | pcr/python2-potr/PKGBUILD | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/pcr/python2-potr/PKGBUILD b/pcr/python2-potr/PKGBUILD index 39613ad95..684912283 100644 --- a/pcr/python2-potr/PKGBUILD +++ b/pcr/python2-potr/PKGBUILD @@ -1,28 +1,34 @@ -# Maintainer: Michael Düll <mail@akurei.me> PGP-Key: AAAEE882 +# Maintainer: Michael Düll <mail@akurei.me> pkgname=python2-potr -pkgver=1.0.0beta6 -pkgrel=3 -pkgdesc="This is a pure Python OTR implementation; it does not bind to libotr." +pkgver=1.0.0 +pkgrel=4 +pkgdesc="This is a pure Python2 OTR implementation; it does not bind to libotr." arch=(any) url="https://github.com/afflux/pure-python-otr" license=('LGPL') depends=('python2' 'python2-crypto') conflicts=('python-potr-git' 'python-potr') replaces=('python-potr') -options=(!emptydirs) -source=("https://github.com/afflux/pure-python-otr/tarball/${pkgver}") +#options=(!emptydirs) +source=("https://github.com/python-otr/pure-python-otr/archive/${pkgver}.tar.gz") +sha512sums=('46b0dab24cab68e695661c5982ba25823e39540ecef7e90693898342f44e52afa549d8708166ebef81474aee3f846d8b76690e3061fa1bc65147e804751f8f48') PYTHON=`which python2` -build() { - cd $srcdir/afflux* +#build() { +# cd $srcdir/afflux* +# set_python2 +# $PYTHON ./setup.py build +#} + +prepare() { + cd $srcdir/pure-python-otr-${pkgver} set_python2 - $PYTHON ./setup.py build } package() { - cd $srcdir/afflux* + cd $srcdir/pure-python-otr-${pkgver} $PYTHON ./setup.py install --root=$pkgdir/ } @@ -36,4 +42,3 @@ set_python2() { # vim:set ts=2 sw=2 et: -sha512sums=('323ad31e782409b7bd93539dfc0088de8b114075b88de81123b732aff609fbb2a2c06221c52266225ce54e20e9856b25759bae84c93244a1258ccba3825c8b1c') |