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

Gaëtan Bisson bisson at archlinux.org
Sat Sep 2 06:24:41 UTC 2017


    Date: Saturday, September 2, 2017 @ 06:24:40
  Author: bisson
Revision: 304445

archrelease: copy trunk to testing-any

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

----------+
 LICENSE  |    2 -
 PKGBUILD |  102 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2017-09-02 06:20:03 UTC (rev 304444)
+++ LICENSE	2017-09-02 06:24:40 UTC (rev 304445)
@@ -1 +0,0 @@
-The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/LICENSE (from rev 304444, iana-etc/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2017-09-02 06:24:40 UTC (rev 304445)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2017-09-02 06:20:03 UTC (rev 304444)
+++ PKGBUILD	2017-09-02 06:24:40 UTC (rev 304445)
@@ -1,51 +0,0 @@
-# $Id$
-# Contributor: Thomas Bächler <thomas at archlinux.org>
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-
-pkgname=iana-etc
-pkgver=20170824
-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')
-sha256sums=('222bfbe9b4d7834b387a7cfa7223f717be48dc7f1d5eadc79979ef07a743a69a'
-            '5f1868355c828163dbfd61161e4f4050e026a28076fdd9a7c89ac54da7a71abd'
-            'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
-
-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 -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 }
-' protocol-numbers.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 }
-' service-names-port-numbers.xml > "${pkgdir}/etc/services"
-
-}

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 304444, iana-etc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2017-09-02 06:24:40 UTC (rev 304445)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Thomas Bächler <thomas at archlinux.org>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=iana-etc
+pkgver=20170824
+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')
+sha256sums=('222bfbe9b4d7834b387a7cfa7223f717be48dc7f1d5eadc79979ef07a743a69a'
+            '5f1868355c828163dbfd61161e4f4050e026a28076fdd9a7c89ac54da7a71abd'
+            'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+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 -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 }
+' protocol-numbers.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 }
+' service-names-port-numbers.xml > "${pkgdir}/etc/services"
+
+}



More information about the arch-commits mailing list