[arch-commits] Commit in netctl/repos (3 files)

Florian Pritz bluewind at gemini.archlinux.org
Sun Mar 6 10:05:48 UTC 2022


    Date: Sunday, March 6, 2022 @ 10:05:48
  Author: bluewind
Revision: 439054

archrelease: copy trunk to testing-any

Added:
  netctl/repos/testing-any/
  netctl/repos/testing-any/PKGBUILD
    (from rev 439053, netctl/trunk/PKGBUILD)
  netctl/repos/testing-any/netctl.install
    (from rev 439053, netctl/trunk/netctl.install)

----------------+
 PKGBUILD       |   38 ++++++++++++++++++++++++++++++++++++++
 netctl.install |   10 ++++++++++
 2 files changed, 48 insertions(+)

Copied: netctl/repos/testing-any/PKGBUILD (from rev 439053, netctl/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2022-03-06 10:05:48 UTC (rev 439054)
@@ -0,0 +1,38 @@
+# Maintainer: Jouke Witteveen <j.witteveen at gmail.com>
+
+pkgname=netctl
+pkgver=1.28
+pkgrel=1
+pkgdesc='Profile based systemd network management'
+url='https://gitlab.archlinux.org/archlinux/netctl'
+license=('GPL')
+depends=('coreutils' 'iproute2' 'resolvconf' 'systemd>=233')
+# The source tarball includes pre-built (using asciidoc) documentation.
+makedepends=('pkg-config')
+optdepends=('dialog: for the menu based wifi assistant'
+            'dhclient: for DHCP support (or dhcpcd)'
+            'dhcpcd: for DHCP support (or dhclient)'
+            'wpa_supplicant: for wireless networking support'
+            'ifplugd: for automatic wired connections through netctl-ifplugd'
+            'ppp: for PPP connections'
+            'openvswitch: for Open vSwitch connections'
+            'wireguard-tools: for WireGuard connections'
+           )
+install=netctl.install
+source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig})
+arch=('any')
+md5sums=('ef8f6cb6b2e4e905f2f4ebae828c7d81'
+         'fb9e2a0b7df54a2576fe70d08f22f98d')
+validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E')  # Florian Pritz
+
+package() {
+  cd "$srcdir/netctl-${pkgver}"
+  make DESTDIR="$pkgdir" install
+
+  # Shell Completion
+  install -D -m644 contrib/bash-completion "$pkgdir/usr/share/bash-completion/completions/netctl"
+  ln -s netctl "$pkgdir/usr/share/bash-completion/completions/netctl-auto"
+  ln -s netctl "$pkgdir/usr/share/bash-completion/completions/wifi-menu"
+  install -D -m644 contrib/zsh-completion "$pkgdir/usr/share/zsh/site-functions/_netctl"
+}
+

Copied: netctl/repos/testing-any/netctl.install (from rev 439053, netctl/trunk/netctl.install)
===================================================================
--- testing-any/netctl.install	                        (rev 0)
+++ testing-any/netctl.install	2022-03-06 10:05:48 UTC (rev 439054)
@@ -0,0 +1,10 @@
+post_upgrade() {
+    if [[ $(vercmp 1.18 "$2") -gt 0 ]]; then
+        grep -ls '^.include ' /etc/systemd/system/netctl@*.service | \
+          while read -r unit; do
+            profile=$(systemd-escape --unescape "${unit:27:-8}")
+            echo ":: The unit for profile '$profile' uses deprecated features."
+            echo "   Consider running: netctl reenable $(printf '%q' "$profile")"
+        done
+    fi
+}



More information about the arch-commits mailing list