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

Gaëtan Bisson bisson at archlinux.org
Thu Nov 10 02:53:29 UTC 2016


    Date: Thursday, November 10, 2016 @ 02:53:28
  Author: bisson
Revision: 280279

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
    (from rev 280278, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
    (from rev 280278, iana-etc/trunk/PKGBUILD)

----------+
 LICENSE  |    1 
 PKGBUILD |   62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 280278, iana-etc/trunk/LICENSE)
===================================================================
--- testing-any/LICENSE	                        (rev 0)
+++ testing-any/LICENSE	2016-11-10 02:53:28 UTC (rev 280279)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 280278, iana-etc/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2016-11-10 02:53:28 UTC (rev 280279)
@@ -0,0 +1,62 @@
+# $Id$
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=iana-etc
+pkgver=20161101
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='http://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
+        'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
+        'LICENSE')
+sha1sums=('ce42b8fbf310be48a0fbd9462aaaa5db8ca1a480'
+          'bc8e9ba9e25cdcb83d63e90f34f92b5b74a6336a'
+          'ef54e7a2182f1ab7c1d2d4c9e1ab2bcc5ec65b66')
+
+pkgver() {
+	cd "${srcdir}"
+	awk -F"[<>]" '/updated/{print$3;nextfile}' * |
+	sort -n | tail -n 1 | tr -d -
+}
+
+package() {
+	cd "${srcdir}"
+	install -d "${pkgdir}/etc"
+	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+	install -Dm644 protocol-numbers.xml "${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+	install -Dm644 service-names-port-numbers.xml "${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+
+	gawk '
+BEGIN {
+	print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n"
+	FS="[<>]"
+}
+
+{
+	if (/<record/) { v=n=0 }
+	if (/<value/) v=$3
+	if (/<name/ && !($3~/ /)) n=$3
+	if (/<\/record/ && (v || n=="HOPOPT") && n) printf "%-12s %3i %s\n", tolower(n),v,n
+}
+' protocol-numbers.xml > "${pkgdir}/etc/protocols"
+
+	gawk '
+BEGIN {
+	print "# Full data: /usr/share/iana-etc/port-numbers.iana\n"
+	FS="[<>]"
+}
+
+{
+	if (/<record/) { n=u=p=c=0 }
+	if (/<name/ && !/\(/) n=$3
+	if (/<number/) u=$3
+	if (/<protocol/) p=$3
+	if (/Unassigned/ || /Reserved/ || /historic/) c=1
+	if (/<\/record/ && n && u && p && !c) printf "%-15s %5i/%s\n", n,u,p
+}' service-names-port-numbers.xml > "${pkgdir}/etc/services"
+
+}



More information about the arch-commits mailing list