[arch-commits] Commit in iana-etc/repos (4 files)

Jelle van der Waa jelle at gemini.archlinux.org
Sat Sep 18 21:11:19 UTC 2021


    Date: Saturday, September 18, 2021 @ 21:11:19
  Author: jelle
Revision: 424350

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
    (from rev 424349, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
    (from rev 424349, iana-etc/trunk/PKGBUILD)
  iana-etc/repos/testing-any/sources.tar.xz
    (from rev 424349, iana-etc/trunk/sources.tar.xz)

----------+
 LICENSE  |    1 +
 PKGBUILD |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 424349, iana-etc/trunk/LICENSE)
===================================================================
--- testing-any/LICENSE	                        (rev 0)
+++ testing-any/LICENSE	2021-09-18 21:11:19 UTC (rev 424350)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 424349, iana-etc/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2021-09-18 21:11:19 UTC (rev 424350)
@@ -0,0 +1,52 @@
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Contributor: Gaetan Bisson <bisson at archlinux.org>
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+
+pkgname=iana-etc
+pkgver=20210903
+_ports=service-names-port-numbers-${pkgver}
+_protocols=protocol-numbers-20210718
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='https://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=("https://sources.archlinux.org/other/packages/iana-etc/${_ports}.xml"
+        "https://sources.archlinux.org/other/packages/iana-etc/${_protocols}.xml"
+        'LICENSE')
+sha256sums=('6494fad554c009fa75499d71b1c4f9a4d9385baa08e454113e2f5d1d1efcf8f6'
+            '1a9570d4a35702a2b5fcb010701a607d874fc08e51d496c5e893e5881ea2837b'
+            'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+# Original but unversioned IANA files:
+# https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml
+# https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml
+
+package() {
+	cd "${srcdir}"
+
+	install -d "${pkgdir}/etc"
+	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+	install -Dm644 ${_ports}.xml "${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+	install -Dm644 ${_protocols}.xml "${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+
+	gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n" }
+(/<record/) { v=n="" }
+(/<value/) { v=$3 }
+(/<name/ && $3!~/ /) { n=$3 }
+(/<\/record/ && n && v!="") { printf "%-12s %3i %s\n", tolower(n),v,n }
+' ${_protocols}.xml > "${pkgdir}/etc/protocols"
+
+	gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/port-numbers.iana\n" }
+(/<record/) { n=u=p=c="" }
+(/<name/ && !/\(/) { n=$3 }
+(/<number/) { u=$3 }
+(/<protocol/) { p=$3 }
+(/Unassigned/ || /Reserved/ || /historic/) { c=1 }
+(/<\/record/ && n && u && p && !c) { printf "%-15s %5i/%s\n", n,u,p }
+' ${_ports}.xml > "${pkgdir}/etc/services"
+
+}

Copied: iana-etc/repos/testing-any/sources.tar.xz (from rev 424349, iana-etc/trunk/sources.tar.xz)
===================================================================
(Binary files differ)



More information about the arch-commits mailing list