docbook-xml: install catalogs with http URI

It appears an overzealous conversion of http to https inadvertently
changed this, breaking the catalog registration.

Fixes #2834
This commit is contained in:
Jeremy Drake 2022-01-30 15:08:50 -08:00
parent 8800ddb6b0
commit 4f5c942710
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
pkgname=docbook-xml
pkgver=4.5
pkgrel=3
pkgrel=4
pkgdesc="A widely used XML scheme for writing documentation and help"
arch=('any')
url="https://www.oasis-open.org/docbook/"

View File

@ -13,11 +13,11 @@ post_install() {
"file:///etc/xml/docbook-xml" \
etc/xml/catalog
usr/bin/xmlcatalog --noout --add "delegateSystem" \
"https://www.oasis-open.org/docbook/" \
"http://www.oasis-open.org/docbook/" \
"file:///etc/xml/docbook-xml" \
etc/xml/catalog
usr/bin/xmlcatalog --noout --add "delegateURI" \
"https://www.oasis-open.org/docbook/" \
"http://www.oasis-open.org/docbook/" \
"file:///etc/xml/docbook-xml" \
etc/xml/catalog
}