summaryrefslogtreecommitdiff
path: root/community/quagga
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-06-26 03:25:35 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-06-26 03:25:35 +0000
commit76b667b6360f6f7e97f13392cf156f197dc4017b (patch)
tree3299ec5921d2da42ec5563b4ced54e65aa2c058b /community/quagga
parent7d53ccd018d0e86e7aa3a0c0b1a092ce8b206041 (diff)
Thu Jun 26 03:22:36 UTC 2014
Diffstat (limited to 'community/quagga')
-rw-r--r--community/quagga/PKGBUILD14
-rw-r--r--community/quagga/fix_readline36.patch14
2 files changed, 6 insertions, 22 deletions
diff --git a/community/quagga/PKGBUILD b/community/quagga/PKGBUILD
index f767c18a9..c35d3de10 100644
--- a/community/quagga/PKGBUILD
+++ b/community/quagga/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 112784 2014-06-07 10:56:52Z seblu $
+# $Id: PKGBUILD 113570 2014-06-25 19:42:14Z seblu $
# Maintainer: Sébastien Luttringer
pkgname=quagga
-pkgver=0.99.22.4
-pkgrel=4
+pkgver=0.99.23
+pkgrel=1
pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite'
arch=('i686' 'x86_64')
url='http://www.quagga.net'
@@ -19,9 +19,8 @@ source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar
'ospfd.service'
'ripd.service'
'ripngd.service'
- 'zebra.service'
- 'fix_readline36.patch')
-md5sums=('27ef98abb1820bae19eb71f631a10853'
+ 'zebra.service')
+md5sums=('d17145e62b6ea14f0f13bb63f59e5166'
'20a8e36ad851d4e06467aeb56a84b245'
'cc90c234aac9098c5132d653037d5269'
'67d0ada0f3000b9a86351798786c5256'
@@ -29,8 +28,7 @@ md5sums=('27ef98abb1820bae19eb71f631a10853'
'260f5fcf9b53ef201a8fb34e7ea90457'
'b6e3549d780355914ae8edd43e15630a'
'72dd63c49fdaea41729a4318d0fbac79'
- '577f1e7caeea31d910f2dc29c28ada7d'
- 'f4162b77d4995c6d080ac34d9fd17c36')
+ '577f1e7caeea31d910f2dc29c28ada7d')
prepare() {
cd $pkgname-$pkgver
diff --git a/community/quagga/fix_readline36.patch b/community/quagga/fix_readline36.patch
deleted file mode 100644
index 710fdf3d0..000000000
--- a/community/quagga/fix_readline36.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/vtysh/vtysh.c
-+++ b/vtysh/vtysh.c
-@@ -2211,9 +2211,9 @@
- vtysh_readline_init (void)
- {
- /* readline related settings. */
-- rl_bind_key ('?', (Function *) vtysh_rl_describe);
-+ rl_bind_key ('?', (rl_command_func_t *) vtysh_rl_describe);
- rl_completion_entry_function = vtysh_completion_entry_function;
-- rl_attempted_completion_function = (CPPFunction *)new_completion;
-+ rl_attempted_completion_function = (rl_completion_func_t *) new_completion;
- /* do not append space after completion. It will be appended
- * in new_completion() function explicitly. */
- rl_completion_append_character = '\0';