diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-18 11:58:30 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-18 11:58:30 -0200 |
commit | e28c22b3aa33f1243d096dfd3b7da6ce7760a144 (patch) | |
tree | 3306d7a3261092a14fadaa5eebe1254069ed7f5b /pcr/hiredis | |
parent | 3605270bdc98b3d4ac973eead454c2dcd6d24072 (diff) |
remove packages that has been released as Arch official package
Diffstat (limited to 'pcr/hiredis')
-rw-r--r-- | pcr/hiredis/ChangeLog | 14 | ||||
-rw-r--r-- | pcr/hiredis/PKGBUILD | 43 | ||||
-rw-r--r-- | pcr/hiredis/hiredis-fix-tests.patch | 11 |
3 files changed, 0 insertions, 68 deletions
diff --git a/pcr/hiredis/ChangeLog b/pcr/hiredis/ChangeLog deleted file mode 100644 index b804e1b67..000000000 --- a/pcr/hiredis/ChangeLog +++ /dev/null @@ -1,14 +0,0 @@ -2013-12-11 Vladimir Tsanev <tsachev@gamil.com> - - * 0.11.0-3 : - Tests enabled thanks to Massimiliano Torromeo. - -2013-11-23 Vladimir Tsanev <tsachev@gamil.com> - - * 0.11.0-2 : - added i686 arch. - -2013-06-07 Vladimir Tsanev <tsachev@gamil.com> - - * 0.11.0-1 : - Initial PKGBUILD. diff --git a/pcr/hiredis/PKGBUILD b/pcr/hiredis/PKGBUILD deleted file mode 100644 index d6e2938b9..000000000 --- a/pcr/hiredis/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# Maintainer (Arch): orphan -# Contributor: Nicolás Reynolds <fauno@kiwwwi.com.ar> -# Contributor: Luke Shumaker <lukeshu@sbcglobal.net> -# Maintainer (AUR): Vladimir Tsanev <tsachev@gmail.com> -# Contributor (AUR): Massimiliano Torromeo <massimiliano.torromeo@gmail.com> - -pkgname=hiredis -pkgver=0.11.0 -pkgrel=3 -pkgdesc='Minimalistic C client library for Redis' -arch=('x86_64' 'i686') -url="https://github.com/redis/hiredis/" -license=('BSD3') -depends=('glibc') -checkdepends=('redis') -changelog='ChangeLog' -source=($pkgname-$pkgver.tar.gz::https://codeload.github.com/redis/$pkgname/tar.gz/v$pkgver - hiredis-fix-tests.patch) -md5sums=('e2ac29509823ccc96990b6fe765b5d46' - 'ddcc73042a8ec278aca6cc2b2d26bc03') - -prepare() { - cd "$srcdir/$pkgname-$pkgver" - patch -Np1 -i ../hiredis-fix-tests.patch -} - -build() { - cd "$srcdir/$pkgname-$pkgver" - make -} - -check() { - cd "$srcdir/$pkgname-$pkgver" - sed -r 's|echo \\|echo -e \\|' -i Makefile - make check -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX="$pkgdir/usr" install - - install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" -} diff --git a/pcr/hiredis/hiredis-fix-tests.patch b/pcr/hiredis/hiredis-fix-tests.patch deleted file mode 100644 index 51e49bf71..000000000 --- a/pcr/hiredis/hiredis-fix-tests.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -ru hiredis-0.11.0.orig/test.c hiredis-0.11.0/test.c ---- hiredis-0.11.0.orig/test.c 2012-08-28 02:55:52.000000000 -0400 -+++ hiredis-0.11.0/test.c 2014-03-02 17:49:24.396739767 -0500 -@@ -286,6 +286,7 @@ - c = redisConnect((char*)"idontexist.local", 6379); - test_cond(c->err == REDIS_ERR_OTHER && - (strcmp(c->errstr,"Name or service not known") == 0 || -+ strcmp(c->errstr,"Temporary failure in name resolution") == 0 || - strcmp(c->errstr,"Can't resolve: idontexist.local") == 0)); - redisFree(c); - |