diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-01-17 16:00:20 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-01-17 16:00:20 +0000 |
commit | 5a7cc41b8501eed5a8dc040f891d597c52e1a998 (patch) | |
tree | da295523a9808e9852615d0837dfe84659083e96 /textproc | |
parent | 8f3436a1ce64ec9da06328131ed0dc168bd0a9f6 (diff) | |
download | pkgsrc-5a7cc41b8501eed5a8dc040f891d597c52e1a998.tar.gz |
Update to 2.0alpha2:
Released on 2004/01/17, its state was alpha.
* Fixes to allow multiple entries with the same content in both SGML and
XML catalog files. Sorry but this may break command line compatibility
with old versions in some scenarios; that is, the "remove" action now
takes pairs of values. Even though, if just one argument is given to
"remove", it behaves as before to help the transition to newer versions.
* New catalogs are created now in memory before writting them to disk.
This ensures that they will look exactly the same after creation and
after some manipulation (addition and removal of entries).
* Added an option to configure, '-n doc', to disable installation of
distribution documentation files in the system.
* Some bug fixes.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xmlcatmgr/Makefile | 4 | ||||
-rw-r--r-- | textproc/xmlcatmgr/distinfo | 6 | ||||
-rw-r--r-- | textproc/xmlcatmgr/files/deinstall.tmpl | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/textproc/xmlcatmgr/Makefile b/textproc/xmlcatmgr/Makefile index 99582f3cfdb..058d1f0ef7a 100644 --- a/textproc/xmlcatmgr/Makefile +++ b/textproc/xmlcatmgr/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2004/01/05 23:43:06 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2004/01/17 16:00:20 jmmv Exp $ # -DISTNAME= xmlcatmgr-2.0alpha1 +DISTNAME= xmlcatmgr-2.0alpha2 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xmlcatmgr/} diff --git a/textproc/xmlcatmgr/distinfo b/textproc/xmlcatmgr/distinfo index 8210927774d..05edf01b8df 100644 --- a/textproc/xmlcatmgr/distinfo +++ b/textproc/xmlcatmgr/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2003/12/23 11:45:05 jmmv Exp $ +$NetBSD: distinfo,v 1.8 2004/01/17 16:00:20 jmmv Exp $ -SHA1 (xmlcatmgr-2.0alpha1.tar.gz) = ad6f449cdfbb217abed6f0bdf63f1e02e3a09262 -Size (xmlcatmgr-2.0alpha1.tar.gz) = 21392 bytes +SHA1 (xmlcatmgr-2.0alpha2.tar.gz) = cb23ae6e32f138dd3b3fb60d905380713ad6272c +Size (xmlcatmgr-2.0alpha2.tar.gz) = 22647 bytes diff --git a/textproc/xmlcatmgr/files/deinstall.tmpl b/textproc/xmlcatmgr/files/deinstall.tmpl index 9e21d7deb19..c7e7045498a 100644 --- a/textproc/xmlcatmgr/files/deinstall.tmpl +++ b/textproc/xmlcatmgr/files/deinstall.tmpl @@ -1,4 +1,4 @@ -# $NetBSD: deinstall.tmpl,v 1.3 2003/09/08 12:26:22 jmmv Exp $ +# $NetBSD: deinstall.tmpl,v 1.4 2004/01/17 16:00:20 jmmv Exp $ # # Unregister SGML/XML catalog entries. # @@ -14,14 +14,14 @@ DEINSTALL) if [ -n "${SGML_ENTRIES}" ]; then set -- ${SGML_ENTRIES} while [ $# -gt 0 ]; do - ${XMLCATMGR} -sc ${SGML_CATALOG} remove "$2" + ${XMLCATMGR} -sc ${SGML_CATALOG} remove "$1" "$2" shift; shift; shift done fi if [ -n "${XML_ENTRIES}" ]; then set -- ${XML_ENTRIES} while [ $# -gt 0 ]; do - ${XMLCATMGR} -c ${XML_CATALOG} remove "$2" + ${XMLCATMGR} -c ${XML_CATALOG} remove "$1" "$2" shift; shift; shift done fi |