summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/aria2/PKGBUILD17
-rw-r--r--community/libnfs/PKGBUILD6
-rw-r--r--community/python-pygit2/PKGBUILD8
3 files changed, 20 insertions, 11 deletions
diff --git a/community/aria2/PKGBUILD b/community/aria2/PKGBUILD
index fdfba60cc..41502f8c3 100644
--- a/community/aria2/PKGBUILD
+++ b/community/aria2/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 116175 2014-07-23 16:15:57Z fyan $
+# $Id: PKGBUILD 116412 2014-07-27 08:00:32Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
@@ -8,15 +8,24 @@
pkgname=aria2
pkgver=1.18.7
-pkgrel=1
+pkgrel=2
pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
arch=('i686' 'x86_64')
url='http://aria2.sourceforge.net/'
license=('GPL')
depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
checkdepends=('cppunit')
-source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('7944336efdfc82892802bec304698448e8d27b30f30496576716e8b93ebfff98')
+source=("http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz"
+ https://github.com/tatsuhiro-t/aria2/commit/c659fe939df2b0830f83f39429d6e7814ac82157.patch)
+sha256sums=('7944336efdfc82892802bec304698448e8d27b30f30496576716e8b93ebfff98'
+ '1225cde7db20d185188de752edebd4f76c73e4806793d7d139031788bf9434eb')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ # https://github.com/tatsuhiro-t/aria2/issues/265
+ patch -p1 -i ../c659fe939df2b0830f83f39429d6e7814ac82157.patch
+}
build() {
cd $pkgname-$pkgver
diff --git a/community/libnfs/PKGBUILD b/community/libnfs/PKGBUILD
index 5530b3d28..d3a1fade7 100644
--- a/community/libnfs/PKGBUILD
+++ b/community/libnfs/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 113854 2014-07-01 06:52:08Z idevolder $
+# $Id: PKGBUILD 116435 2014-07-27 17:03:29Z idevolder $
# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
pkgname=libnfs
-pkgver=1.9.4
+pkgver=1.9.5
pkgrel=1
pkgdesc="client library for accessing NFS shares"
arch=('i686' 'x86_64')
@@ -31,4 +31,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha256sums=('57502aa1904c402965df40ad17ce4b71d1d98f7c2a2b31a6d6f208fa6f787d49')
+sha256sums=('dd99ffa02a3d9fc936976e199614e0d0e2516bd27ead5639c063b8504008a393')
diff --git a/community/python-pygit2/PKGBUILD b/community/python-pygit2/PKGBUILD
index 9df58821a..d28de4901 100644
--- a/community/python-pygit2/PKGBUILD
+++ b/community/python-pygit2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 116289 2014-07-24 03:35:26Z thestinger $
+# $Id: PKGBUILD 116448 2014-07-27 20:48:56Z thestinger $
# Maintainer: Daniel Micay <danielmicay@gmail.com>
pkgbase=python-pygit2
pkgname=(python-pygit2 python2-pygit2)
pkgver=0.21.1
-pkgrel=1
+pkgrel=2
pkgdesc='Python bindings for libgit2'
url="https://github.com/libgit2/pygit2"
depends=(libgit2)
@@ -16,7 +16,7 @@ md5sums=('b453f5483b3da061aa6063916a4b6255')
package_python-pygit2() {
cd pygit2-$pkgver
- depends+=(python)
+ depends+=(python python-cffi)
replaces=(python-libgit2)
conflicts=(python-libgit2)
LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
@@ -24,7 +24,7 @@ package_python-pygit2() {
package_python2-pygit2() {
cd pygit2-$pkgver
- depends+=(python2)
+ depends+=(python2 python2-cffi)
replaces=(python2-libgit2)
conflicts=(python2-libgit2)
python2 setup.py install --root="$pkgdir" --optimize=1