63 lines
2.3 KiB
Bash
63 lines
2.3 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=iana-etc
|
|
pkgver=20240612
|
|
_protocols=protocol-numbers-20240503
|
|
_ports=service-names-port-numbers-${pkgver}
|
|
pkgrel=01
|
|
pkgdesc='/etc/protocols and /etc/services provided by IANA'
|
|
url='https://www.iana.org/protocols'
|
|
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')
|
|
|
|
# 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"
|
|
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('custom:none')
|
|
|
|
sha256sums=(16ad85a7b41d9f4e66d0d874c700ce78b7443804dc871dd398f50754612b8bf1 # service-names-port-numbers-20240612.xml
|
|
08090825eabfc99032614b2b6dbc36ebf64e39e3a2c8d5e0a3af1df4a6d4da66 # protocol-numbers-20240503.xml
|
|
dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb) # LICENSE
|
|
|
|
## ded4220158020c3b23254456402549578bb07e351a50ee0fb8927ad6c29aa249 iana-etc-20240612-01-x86_64.pkg.tar.lz
|
|
|