summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-11-18 07:45:17 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-11-18 07:45:17 -0500
commitd0e8a9fc67c51bb40689fd2759320fa85bcaad9f (patch)
treed737fc2d013ef65f32bd7637c140cfabf7885dc6
parent449fe5f9896b695c7d47e4398fd8549922515128 (diff)
Removing babeld: This package is in [community] repo
-rw-r--r--pcr/babeld/PKGBUILD36
-rw-r--r--pcr/babeld/babeld.conf52
-rw-r--r--pcr/babeld/babeld.service14
3 files changed, 0 insertions, 102 deletions
diff --git a/pcr/babeld/PKGBUILD b/pcr/babeld/PKGBUILD
deleted file mode 100644
index 5918166fb..000000000
--- a/pcr/babeld/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# Maintainer: Baptiste Jonglez <baptiste--aur at jonglez dot org>
-# Contributor: Yann Lopez <arch at lonewulf dot net>
-pkgname=babeld
-pkgver=1.8.0
-pkgrel=1
-pkgdesc="A loop-avoiding distance-vector routing protocol"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://www.pps.univ-paris-diderot.fr/~jch/software/babel/"
-license=('MIT')
-depends=('glibc')
-optdepends=('ahcpd: for autoconfiguration of addresses and other informations')
-backup=('etc/babeld.conf')
-source=("http://www.pps.univ-paris-diderot.fr/~jch/software/files/$pkgname-$pkgver.tar.gz"
- "http://www.pps.univ-paris-diderot.fr/~jch/software/files/$pkgname-$pkgver.tar.gz.asc"
- "babeld.conf"
- "babeld.service")
-validpgpkeys=(F8E70AAD74D32CAC27B9AFD62652C881EADB5526)
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make PREFIX="/usr" CFLAGS="$CFLAGS"
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make PREFIX="/usr" TARGET="$pkgdir" install
-
- install -Dm644 ../babeld.conf "${pkgdir}"/etc/babeld.conf
- install -Dm644 ../babeld.service "${pkgdir}"/usr/lib/systemd/system/babeld.service
-}
-sha512sums=('6665ea5108200fe9d158a221ee5697c35fa1bf1d59e99a354aabea844342505731d77c1e3dff3917d048c2154bbadcdda5904ad6e46f16c43f52b5c297480b7d'
- 'SKIP'
- '1232684447b4409d6e3813041f4ab1158faa844b5ac65441b5f299f1e353f48679aacbce9cc79e6714e9a3e1b17d2cfa4963c1388dba225ee342ea3cdb7f1194'
- '01e69d19a6176a6bf26ee703939c5bdea3f1245464ed5d3863dc5867a76b8b6a6fc7324912aee17458a0c6275ccdfa5abe63b88f7503c8d4dfd37d3f15f42700')
diff --git a/pcr/babeld/babeld.conf b/pcr/babeld/babeld.conf
deleted file mode 100644
index 278297ef1..000000000
--- a/pcr/babeld/babeld.conf
+++ /dev/null
@@ -1,52 +0,0 @@
-# Configuration for babeld. See the man page babeld(8) for
-# details on the configuration format.
-
-# Works on Linux > 3.11
-ipv6-subtrees true
-
-# You must provide at least one interface for babeld to operate on.
-#interface eth0
-#interface wlan0
-
-# Global options you might want to set. There are many more, see the man page.
-#debug 1
-#local-port 33123
-#diversity true
-#random-id true
-
-# Per-interface configuration. Note that each interface referenced here
-# will be used by babeld.
-#interface eth1 rxcost 10
-#interface tun0 faraway true
-#interface wlan0 hello-interval 1
-
-# Since 1.4.2, you can also specify defaults for interface parameters, which
-# will be used for all interfaces except specified otherwise (see above).
-#default rxcost 42
-#default hello-interval 5
-
-# Since 1.5.0, you can use the RTT-based metric, most useful for a network
-# with tunnels (overlay network).
-#default enable-timestamps true
-#interface tun0 max-rtt-penalty 150
-#interface tun0 rtt-max 100
-
-
-# Filtering rules.
-
-# Only accept routes included in a specific prefix.
-#in ip 192.168.42.0/24 allow
-#in ip 2001:db8:cafe:cafe::/64 allow
-#in deny
-
-# Only redistribute addresses from a given prefix, to avoid redistributing
-# all local addresses
-#redistribute ip 192.168.1.0/24 local allow
-#redistribute ip 2001:db8:cafe:cafe::/64 local allow
-#redistribute local deny
-
-# Redistribute a default route obtained otherwise (here, through DHCP or
-# configured statically).
-# Note that babeld ignores kernel routes with proto 3 (boot) by default.
-#redistribute proto 3 ip 0.0.0.0/0 eq 0 metric 50
-#redistribute proto 3 ip ::/0 eq 0 metric 50
diff --git a/pcr/babeld/babeld.service b/pcr/babeld/babeld.service
deleted file mode 100644
index f3c1d284c..000000000
--- a/pcr/babeld/babeld.service
+++ /dev/null
@@ -1,14 +0,0 @@
-[Unit]
-Description=Babel routing daemon
-Documentation=man:babeld(8) http://www.pps.univ-paris-diderot.fr/~jch/software/babel/
-After=network.target
-
-[Service]
-Type=simple
-# Don't write a PID file, since it prevents babeld from starting again
-# in case of crash.
-ExecStart=/usr/bin/babeld -I ''
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target