[arch-commits] Commit in bird/repos/extra-x86_64 (4 files)

Felix Yan felixonmars at gemini.archlinux.org
Sun Mar 20 18:26:00 UTC 2022


    Date: Sunday, March 20, 2022 @ 18:26:00
  Author: felixonmars
Revision: 440326

archrelease: copy trunk to extra-x86_64

Added:
  bird/repos/extra-x86_64/PKGBUILD
    (from rev 440324, bird/trunk/PKGBUILD)
  bird/repos/extra-x86_64/bird.service
    (from rev 440324, bird/trunk/bird.service)
Deleted:
  bird/repos/extra-x86_64/PKGBUILD
  bird/repos/extra-x86_64/bird.service

--------------+
 PKGBUILD     |  106 ++++++++++++++++++++++++++++-----------------------------
 bird.service |   48 ++++++++++++-------------
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-20 18:25:59 UTC (rev 440325)
+++ PKGBUILD	2022-03-20 18:26:00 UTC (rev 440326)
@@ -1,53 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=bird
-pkgver=2.0.8
-pkgrel=3
-pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babel routing daemon'
-arch=('x86_64')
-url='https://bird.network.cz/'
-license=('GPL2')
-backup=('etc/bird.conf')
-depends=('glibc' 'readline' 'ncurses' 'libssh')
-replaces=('bird6')
-options=(!emptydirs)
-source=("https://bird.network.cz/download/$pkgname-$pkgver.tar.gz"
-        'bird.service')
-sha256sums=('19d2de83ee25a307b9e5b9e58797dd68766d439bcee33e3ac617ed502370e7f6'
-            '4aa1e8d41229badd276aa3747f613e7df34761892add2258c63bdb5097dfeb2b')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-    if [[ "$filename" =~ \.patch$ ]]; then
-      msg2 "Applying patch ${filename##*/}"
-      patch -p1 -N -i "$srcdir/${filename##*/}"
-    fi
-  done
-  :
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure \
-    --prefix=/usr \
-    --sbindir=/usr/bin \
-    --sysconfdir=/etc \
-    --localstatedir=/var \
-    --runstatedir=/run/$pkgname \
-    --docdir=/usr/share/doc/$pkgname
-  make
-}
-
-package () {
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # systemd
-  install -D -m 644 "$srcdir/bird.service" "$pkgdir/usr/lib/systemd/system/bird.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bird/repos/extra-x86_64/PKGBUILD (from rev 440324, bird/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-03-20 18:26:00 UTC (rev 440326)
@@ -0,0 +1,53 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=bird
+pkgver=2.0.9
+pkgrel=1
+pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babel routing daemon'
+arch=('x86_64')
+url='https://bird.network.cz/'
+license=('GPL2')
+backup=('etc/bird.conf')
+depends=('glibc' 'readline' 'ncurses' 'libssh')
+replaces=('bird6')
+options=(!emptydirs)
+source=("https://bird.network.cz/download/$pkgname-$pkgver.tar.gz"
+        'bird.service')
+sha256sums=('504a0f313c74238d16d7c6000fabeee02adf116b78ddb805696d9e7abb8a0b7d'
+            '4aa1e8d41229badd276aa3747f613e7df34761892add2258c63bdb5097dfeb2b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+    if [[ "$filename" =~ \.patch$ ]]; then
+      msg2 "Applying patch ${filename##*/}"
+      patch -p1 -N -i "$srcdir/${filename##*/}"
+    fi
+  done
+  :
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --localstatedir=/var \
+    --runstatedir=/run/$pkgname \
+    --docdir=/usr/share/doc/$pkgname
+  make
+}
+
+package () {
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # systemd
+  install -D -m 644 "$srcdir/bird.service" "$pkgdir/usr/lib/systemd/system/bird.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: bird.service
===================================================================
--- bird.service	2022-03-20 18:25:59 UTC (rev 440325)
+++ bird.service	2022-03-20 18:26:00 UTC (rev 440326)
@@ -1,24 +0,0 @@
-[Unit]
-Description=BIRD routing daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/bird
-ExecReload=/usr/bin/birdc configure
-ExecStop=/usr/bin/birdc down
-RuntimeDirectory=bird
-RuntimeDirectoryMode=0750
-DynamicUser=true
-User=bird
-ProtectSystem=strict
-ProtectHome=true
-ProtectKernelTunables=true
-ProtectControlGroups=true
-PrivateTmp=true
-PrivateDevices=true
-CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW
-AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW
-
-[Install]
-WantedBy=multi-user.target

Copied: bird/repos/extra-x86_64/bird.service (from rev 440324, bird/trunk/bird.service)
===================================================================
--- bird.service	                        (rev 0)
+++ bird.service	2022-03-20 18:26:00 UTC (rev 440326)
@@ -0,0 +1,24 @@
+[Unit]
+Description=BIRD routing daemon
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/bird
+ExecReload=/usr/bin/birdc configure
+ExecStop=/usr/bin/birdc down
+RuntimeDirectory=bird
+RuntimeDirectoryMode=0750
+DynamicUser=true
+User=bird
+ProtectSystem=strict
+ProtectHome=true
+ProtectKernelTunables=true
+ProtectControlGroups=true
+PrivateTmp=true
+PrivateDevices=true
+CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW
+AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list