From baeb22f6382bd70372b06c9a2147cdcda25303fb6aae3908c570b219f421a636 Mon Sep 17 00:00:00 2001 From: Frank Sundermeyer Date: Thu, 11 Jun 2015 14:00:39 +0000 Subject: [PATCH 1/5] New release 2.0-rc6: * added SUSEdoc, a fully DocBook 5 compatible schema with a subset of DocBook commands (like NovDoc for DocBook 4) * package now supports installation of different schema/DTD versions in parallel * schemas are located at /usr/share/xml/suse/schema OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/suse-xsl-stylesheets?expand=0&rev=91 --- suse-xsl-stylesheets-2.0~rc5.tar.bz2 | 3 - suse-xsl-stylesheets-2.0~rc6.tar.bz2 | 3 + suse-xsl-stylesheets.changes | 11 ++++ suse-xsl-stylesheets.spec | 98 ++++++++++++++++------------ 4 files changed, 69 insertions(+), 46 deletions(-) delete mode 100644 suse-xsl-stylesheets-2.0~rc5.tar.bz2 create mode 100644 suse-xsl-stylesheets-2.0~rc6.tar.bz2 diff --git a/suse-xsl-stylesheets-2.0~rc5.tar.bz2 b/suse-xsl-stylesheets-2.0~rc5.tar.bz2 deleted file mode 100644 index 3613e40..0000000 --- a/suse-xsl-stylesheets-2.0~rc5.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b67128ecac9591794fbbcb4e1ab6cd7267d81d6419dba7fa1302f07d6fa592e -size 1796630 diff --git a/suse-xsl-stylesheets-2.0~rc6.tar.bz2 b/suse-xsl-stylesheets-2.0~rc6.tar.bz2 new file mode 100644 index 0000000..0dde8e8 --- /dev/null +++ b/suse-xsl-stylesheets-2.0~rc6.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05866c91acb6fec4daa5190cf707c96692f50e0f8a776e7675b49c293dd3ea51 +size 1797184 diff --git a/suse-xsl-stylesheets.changes b/suse-xsl-stylesheets.changes index 8c6523b..7848187 100644 --- a/suse-xsl-stylesheets.changes +++ b/suse-xsl-stylesheets.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Thu Jun 11 13:55:14 UTC 2015 - fsundermeyer@opensuse.org + +New release 2.0-rc6: + +* added SUSEdoc, a fully DocBook 5 compatible schema with a subset + of DocBook commands (like NovDoc for DocBook 4) +* package now supports installation of different schema/DTD versions + in parallel +* schemas are located at /usr/share/xml/suse/schema + ------------------------------------------------------------------- Mon Apr 27 12:00:09 UTC 2015 - fsundermeyer@opensuse.org diff --git a/suse-xsl-stylesheets.spec b/suse-xsl-stylesheets.spec index dff52a9..22cd0e2 100644 --- a/suse-xsl-stylesheets.spec +++ b/suse-xsl-stylesheets.spec @@ -17,7 +17,7 @@ Name: suse-xsl-stylesheets -Version: 2.0~rc5 +Version: 2.0~rc6 Release: 0 ############################################################### @@ -33,12 +33,18 @@ Release: 0 # ################################################################ -%define dtdversion 1.0 -%define dtdname novdoc +%define novdocversion 1.0 +%define novdocname novdoc %define regcat %{_bindir}/sgml-register-catalog %define dbstyles %{_datadir}/xml/docbook/stylesheet/nwalsh/current -%define novdoc_catalog for-catalog-%{dtdname}-%{dtdversion}.xml -%define susexsl_catalog for-catalog-%{name}.xml +%define suse_schemas_catalog catalog-for-suse_schemas.xml +%define susexsl_catalog catalog-for-%{name}.xml +%define suse_schemas_groupname suse_schemas + +%define suse_xml_dir %{_datadir}/xml/suse +%define db_xml_dir %{_datadir}/xml/docbook +%define suse_schema_dir %{suse_xml_dir}/schema +%define suse_styles_dir %{db_xml_dir}/stylesheet Summary: SUSE-branded Docbook stylesheets for XSLT 1.0 License: GPL-2.0 or GPL-3.0 @@ -134,7 +140,7 @@ SUSE-branded DocBook stylesheets for XSLT 1.0 Extensions for the DocBook XSLT 1.0 stylesheets that provide SUSE branding for PDF, HTML, and ePUB. This package also provides the NovDoc DTD, a subset of -the DocBook 4 DTD. +the DocBook 4 DTD and SUSEdoc, a subset of the DocBook 5 schema. #-------------------------------------------------------------------------- %prep @@ -158,7 +164,7 @@ make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%_libdir # SGML CATALOG # if [ -x %{regcat} ]; then - %{regcat} -a %{_datadir}/sgml/CATALOG.%{dtdname}-%{dtdversion} >/dev/null 2>&1 || true + %{regcat} -a %{_datadir}/sgml/CATALOG.%{novdocname}-%{novdocversion} >/dev/null 2>&1 || true fi # XML Catalogs # @@ -166,17 +172,17 @@ fi # zypper in, since it does not call postun # delete ... if [ "2" = "$1" ]; then - edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ - --del %{dtdname}-%{dtdversion} || true - edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ + edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ + --del %{suse_schemas_groupname} || true + edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ --del %{name} || true fi # ... and (re)add it again -edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ - --add /etc/xml/%{novdoc_catalog} -edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ - --add /etc/xml/%{susexsl_catalog} +edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ + --add %{_sysconfdir}/xml/%{suse_schemas_catalog} +edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ + --add %{_sysconfdir}/xml/%{susexsl_catalog} %reconfigure_fonts_post exit 0 @@ -191,15 +197,15 @@ exit 0 # in case of an update # if [ "0" = "$1" ]; then - if [ ! -f %{_sysconfdir}/xml/%{novdoc_catalog} -a -x /usr/bin/edit-xml-catalog ] ; then + if [ ! -f %{_sysconfdir}/xml/%{suse_schemas_catalog} -a -x /usr/bin/edit-xml-catalog ] ; then # SGML: novdoc dtd entry - %{regcat} -r %{_datadir}/sgml/CATALOG.%{dtdname}-%{dtdversion} >/dev/null 2>&1 || true + %{regcat} -r %{_datadir}/sgml/CATALOG.%{novdocname}-%{novdocversion} >/dev/null 2>&1 || true # XML - # novdoc dtd entry - edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ - --del %{dtdname}-%{dtdversion} + # schemas entry + edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ + --del %{suse_schemas_groupname} # susexsl entry - edit-xml-catalog --group --catalog /etc/xml/suse-catalog.xml \ + edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \ --del %{name} fi %reconfigure_fonts_post @@ -218,37 +224,43 @@ exit 0 # Directories %dir %{_datadir}/suse-xsl-stylesheets %dir %{_datadir}/suse-xsl-stylesheets/aspell -%dir %{_datadir}/xml/docbook/stylesheet/suse -%dir %{_datadir}/xml/docbook/stylesheet/suse-ns -%dir %{_datadir}/xml/docbook/stylesheet/suse2013 -%dir %{_datadir}/xml/docbook/stylesheet/suse2013-ns -%dir %{_datadir}/xml/docbook/stylesheet/daps2013 -%dir %{_datadir}/xml/docbook/stylesheet/daps2013-ns -%dir %{_datadir}/xml/docbook/stylesheet/opensuse2013 -%dir %{_datadir}/xml/docbook/stylesheet/opensuse2013-ns -%dir %{_datadir}/xml/%{dtdname} -%dir %{_datadir}/xml/%{dtdname}/schema -%dir %{_datadir}/xml/%{dtdname}/schema/* -%dir %{_datadir}/xml/%{dtdname}/schema/*/%{dtdversion} +%dir %{suse_xml_dir} + +%dir %{suse_styles_dir} +%dir %{suse_styles_dir}/suse +%dir %{suse_styles_dir}/suse-ns +%dir %{suse_styles_dir}/suse2013 +%dir %{suse_styles_dir}/suse2013-ns +%dir %{suse_styles_dir}/daps2013 +%dir %{suse_styles_dir}/daps2013-ns +%dir %{suse_styles_dir}/opensuse2013 +%dir %{suse_styles_dir}/opensuse2013-ns + +%dir %{suse_schema_dir} +%dir %{suse_schema_dir}/dtd +%dir %{suse_schema_dir}/rng +%dir %{suse_schema_dir}/dtd/1.0 +%dir %{suse_schema_dir}/rng/0.9 +%dir %{suse_schema_dir}/rng/1.0 %dir %{_ttfontsdir} %dir %{_defaultdocdir}/%{name} # stylesheets -%{_datadir}/xml/docbook/stylesheet/suse/* -%{_datadir}/xml/docbook/stylesheet/suse-ns/* -%{_datadir}/xml/docbook/stylesheet/suse2013/* -%{_datadir}/xml/docbook/stylesheet/suse2013-ns/* -%{_datadir}/xml/docbook/stylesheet/daps2013/* -%{_datadir}/xml/docbook/stylesheet/daps2013-ns/* -%{_datadir}/xml/docbook/stylesheet/opensuse2013/* -%{_datadir}/xml/docbook/stylesheet/opensuse2013-ns/* +%{suse_styles_dir}/suse/* +%{suse_styles_dir}/suse-ns/* +%{suse_styles_dir}/suse2013/* +%{suse_styles_dir}/suse2013-ns/* +%{suse_styles_dir}/daps2013/* +%{suse_styles_dir}/daps2013-ns/* +%{suse_styles_dir}/opensuse2013/* +%{suse_styles_dir}/opensuse2013-ns/* -# NovDoc Schemas -%{_datadir}/xml/%{dtdname}/schema/dtd/%{dtdversion}/* -%{_datadir}/xml/%{dtdname}/schema/rng/%{dtdversion}/* +# SUSE Schemas +%{suse_schema_dir}/dtd/* +%{suse_schema_dir}/rng/* # Catalogs %config /var/lib/sgml/CATALOG.* From eabdb8da005b1847073f2058a2cd37e4591ed32de2e26240760c7bc1507d6618 Mon Sep 17 00:00:00 2001 From: Frank Sundermeyer Date: Fri, 19 Jun 2015 12:59:32 +0000 Subject: [PATCH 2/5] Stable release 2.0 - added latest products to .js file to create correct Bugzilla links in Draft mode OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/suse-xsl-stylesheets?expand=0&rev=92 --- suse-xsl-stylesheets-2.0.tar.bz2 | 3 +++ suse-xsl-stylesheets-2.0~rc6.tar.bz2 | 3 --- suse-xsl-stylesheets.changes | 8 ++++++++ suse-xsl-stylesheets.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 suse-xsl-stylesheets-2.0.tar.bz2 delete mode 100644 suse-xsl-stylesheets-2.0~rc6.tar.bz2 diff --git a/suse-xsl-stylesheets-2.0.tar.bz2 b/suse-xsl-stylesheets-2.0.tar.bz2 new file mode 100644 index 0000000..3891816 --- /dev/null +++ b/suse-xsl-stylesheets-2.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d1f71399c9b0d132c45530b9482c269ce6847e928164bb2ebafbb3007fd64f +size 1798867 diff --git a/suse-xsl-stylesheets-2.0~rc6.tar.bz2 b/suse-xsl-stylesheets-2.0~rc6.tar.bz2 deleted file mode 100644 index 0dde8e8..0000000 --- a/suse-xsl-stylesheets-2.0~rc6.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05866c91acb6fec4daa5190cf707c96692f50e0f8a776e7675b49c293dd3ea51 -size 1797184 diff --git a/suse-xsl-stylesheets.changes b/suse-xsl-stylesheets.changes index 7848187..6d340eb 100644 --- a/suse-xsl-stylesheets.changes +++ b/suse-xsl-stylesheets.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri Jun 19 12:47:56 UTC 2015 - fsundermeyer@opensuse.org + +Stable release 2.0 + +- added latest products to .js file to create correct Bugzilla + links in Draft mode + ------------------------------------------------------------------- Thu Jun 11 13:55:14 UTC 2015 - fsundermeyer@opensuse.org diff --git a/suse-xsl-stylesheets.spec b/suse-xsl-stylesheets.spec index 22cd0e2..5dea3c8 100644 --- a/suse-xsl-stylesheets.spec +++ b/suse-xsl-stylesheets.spec @@ -17,7 +17,7 @@ Name: suse-xsl-stylesheets -Version: 2.0~rc6 +Version: 2.0 Release: 0 ############################################################### From 8d14f7a6396680215f833d23f805992c6f34cdf4ce580e4bbfa86f2f4b79696d Mon Sep 17 00:00:00 2001 From: Thomas Schraitle Date: Wed, 1 Jul 2015 08:57:46 +0000 Subject: [PATCH 3/5] Stable release 2.0.1 - Schema . Enabled subtitle and textobject (susedoc5.rnc) - Stylesheets . Changed bugzilla component to 'Documentation' for SLERT (suse2013/static/js/script.js) . Added missing subtitle for articles suse2013/fo/article.titlepage.templates.xsl - Infrastructure . Trying to fix an undef value error (bin/xslns-build) OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/suse-xsl-stylesheets?expand=0&rev=93 --- suse-xsl-stylesheets-2.0.1.tar.bz2 | 3 +++ suse-xsl-stylesheets.changes | 16 ++++++++++++++++ suse-xsl-stylesheets.spec | 2 +- susexsl-fetch-source-git | 1 + 4 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 suse-xsl-stylesheets-2.0.1.tar.bz2 diff --git a/suse-xsl-stylesheets-2.0.1.tar.bz2 b/suse-xsl-stylesheets-2.0.1.tar.bz2 new file mode 100644 index 0000000..7ff9c66 --- /dev/null +++ b/suse-xsl-stylesheets-2.0.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59524e3b4b965959ddf89242e0f18f0266cf1aa22e7e8b98282d22a8e2acee52 +size 1798393 diff --git a/suse-xsl-stylesheets.changes b/suse-xsl-stylesheets.changes index 6d340eb..e4ed0cc 100644 --- a/suse-xsl-stylesheets.changes +++ b/suse-xsl-stylesheets.changes @@ -1,3 +1,19 @@ +Wed Jul 1 08:23:44 UTC 2015 - toms@opensuse.org + +Stable release 2.0.1 + +- Schema + . Enabled subtitle and textobject (susedoc5.rnc) + +- Stylesheets + . Changed bugzilla component to 'Documentation' for SLERT + (suse2013/static/js/script.js) + . Added missing subtitle for articles + suse2013/fo/article.titlepage.templates.xsl + +- Infrastructure + . Trying to fix an undef value error (bin/xslns-build) + ------------------------------------------------------------------- Fri Jun 19 12:47:56 UTC 2015 - fsundermeyer@opensuse.org diff --git a/suse-xsl-stylesheets.spec b/suse-xsl-stylesheets.spec index 5dea3c8..1142bf5 100644 --- a/suse-xsl-stylesheets.spec +++ b/suse-xsl-stylesheets.spec @@ -17,7 +17,7 @@ Name: suse-xsl-stylesheets -Version: 2.0 +Version: 2.0.1 Release: 0 ############################################################### diff --git a/susexsl-fetch-source-git b/susexsl-fetch-source-git index 87215f7..f980349 100644 --- a/susexsl-fetch-source-git +++ b/susexsl-fetch-source-git @@ -10,6 +10,7 @@ # Author: # Frank Sundermeyer # +# NAME=suse-xsl PNAME=suse-xsl-stylesheets From b1974e8a9828503a93772bdb2cd77ba141c0b58456f0e809366c42b56df2c983 Mon Sep 17 00:00:00 2001 From: Thomas Schraitle Date: Wed, 1 Jul 2015 14:52:25 +0000 Subject: [PATCH 4/5] Stable release 2.0.1 - Schema . Enabled subtitle and textobject (susedoc5.rnc) - Stylesheets . Changed bugzilla component to 'Documentation' for SLERT (suse2013/static/js/script.js) . Added missing subtitle for articles suse2013/fo/article.titlepage.templates.xsl - Infrastructure . Trying to fix an undef value error (bin/xslns-build) . Fixed bin/xslns-build for building ns variant . Partly refactored to use functions (susexsl-fetch-source-git) OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/suse-xsl-stylesheets?expand=0&rev=94 --- .gitattributes | 2 ++ suse-xsl-stylesheets-2.0.1.tar | 3 ++ susexsl-fetch-source-git | 55 +++++++++++++++++++++++----------- 3 files changed, 42 insertions(+), 18 deletions(-) create mode 100644 suse-xsl-stylesheets-2.0.1.tar diff --git a/.gitattributes b/.gitattributes index 9b03811..412c287 100644 --- a/.gitattributes +++ b/.gitattributes @@ -21,3 +21,5 @@ *.xz filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text +## Specific LFS patterns +suse-xsl-stylesheets-2.0.1.tar filter=lfs diff=lfs merge=lfs -text diff --git a/suse-xsl-stylesheets-2.0.1.tar b/suse-xsl-stylesheets-2.0.1.tar new file mode 100644 index 0000000..a9bf552 --- /dev/null +++ b/suse-xsl-stylesheets-2.0.1.tar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d32042b77170f9eb87db03dc616276104cfe942806142a01bba8603754414dc +size 8519680 diff --git a/susexsl-fetch-source-git b/susexsl-fetch-source-git index f980349..dc08b4a 100644 --- a/susexsl-fetch-source-git +++ b/susexsl-fetch-source-git @@ -34,6 +34,35 @@ function help { echo -e "$(basename $0) \n" } +function download_archive { + echo "Downloading archive:" + (cd $TMPDIR && wget -nv $ARCHIVE_URL) || exit_on_error "Download of $ARCHIVE_URL failed" +} + +function copy_archive { + echo "Copying archive:" + cp -v $ARCHIVE_URL $TMPDIR || exit_on_error "Copying of $ARCHIVE_URL failed" +} + +function unpack_archive { +case ${ARCHIVE_NAME##*.} in + zip) + UNPACK="unzip" + ARCHIVE_DIR=$(basename $ARCHIVE_NAME .zip) + ;; + gz) + UNPACK="tar xfz" + ARCHIVE_DIR=$(basename $ARCHIVE_NAME .tar.gz) + ;; + bz2) + UNPACK="tar xfj" + ARCHIVE_DIR=$(basename $ARCHIVE_NAME .tar.bz2) + ;; + *) + exit_on_error "Unknown archive format" +esac +} + #----- # MAIN #----- @@ -61,29 +90,19 @@ fi #----------- # Download archive # -echo "Downloading archive:" -(cd $TMPDIR && wget -nv $ARCHIVE_URL) || exit_on_error "Download of $ARCHIVE_URL failed" + +if [[ ${ARCHIVE_URL} == http* ]]; then + download_archive + unpack_archive +else + copy_tar +fi #----------- # Unpack archive # -case ${ARCHIVE_NAME##*.} in - zip) - UNPACK="unzip" - ARCHIVE_DIR=$(basename $ARCHIVE_NAME .zip) - ;; - gz) - UNPACK="tar xfz" - ARCHIVE_DIR=$(basename $ARCHIVE_NAME .tar.gz) - ;; - bz2) - UNPACK="tar xfj" - ARCHIVE_DIR=$(basename $ARCHIVE_NAME .tar.bz2) - ;; - *) - exit_on_error "Unknown archive format" -esac + SRC_DIR=${TMPDIR}/${PNAME} EXCLUDES=${SRC_DIR}/packaging/exclude-files_for_susexsl_package.txt From 3588853746c7b0aa88623f72503f0a6f158a49b8e1083ba5d8e67143dd586b1b Mon Sep 17 00:00:00 2001 From: Thomas Schraitle Date: Thu, 2 Jul 2015 07:49:28 +0000 Subject: [PATCH 5/5] Stable release 2.0.1 * Schema * Enabled subtitle and textobject (`susedoc5.rnc`) * Stylesheets * Changed bugzilla component to 'Documentation' for SLERT (`suse2013/static/js/script.js`) * Added missing subtitle for articles `suse2013/fo/article.titlepage.templates.xsl` * Infrastructure * Trying to fix an undef value error (`bin/xslns-build`) * Fixed bin/xslns-build for building ns variant OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/suse-xsl-stylesheets?expand=0&rev=95 --- .gitattributes | 2 -- suse-xsl-stylesheets-2.0.1.tar | 3 --- suse-xsl-stylesheets-2.0.1.tar.bz2 | 4 ++-- suse-xsl-stylesheets-2.0.tar.bz2 | 3 --- suse-xsl-stylesheets.changes | 3 ++- 5 files changed, 4 insertions(+), 11 deletions(-) delete mode 100644 suse-xsl-stylesheets-2.0.1.tar delete mode 100644 suse-xsl-stylesheets-2.0.tar.bz2 diff --git a/.gitattributes b/.gitattributes index 412c287..9b03811 100644 --- a/.gitattributes +++ b/.gitattributes @@ -21,5 +21,3 @@ *.xz filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text -## Specific LFS patterns -suse-xsl-stylesheets-2.0.1.tar filter=lfs diff=lfs merge=lfs -text diff --git a/suse-xsl-stylesheets-2.0.1.tar b/suse-xsl-stylesheets-2.0.1.tar deleted file mode 100644 index a9bf552..0000000 --- a/suse-xsl-stylesheets-2.0.1.tar +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d32042b77170f9eb87db03dc616276104cfe942806142a01bba8603754414dc -size 8519680 diff --git a/suse-xsl-stylesheets-2.0.1.tar.bz2 b/suse-xsl-stylesheets-2.0.1.tar.bz2 index 7ff9c66..f3545f7 100644 --- a/suse-xsl-stylesheets-2.0.1.tar.bz2 +++ b/suse-xsl-stylesheets-2.0.1.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59524e3b4b965959ddf89242e0f18f0266cf1aa22e7e8b98282d22a8e2acee52 -size 1798393 +oid sha256:bd475adfc11ed75cd53feb6d32e756ef39923ef65f5582317863230afaf39e9c +size 1797696 diff --git a/suse-xsl-stylesheets-2.0.tar.bz2 b/suse-xsl-stylesheets-2.0.tar.bz2 deleted file mode 100644 index 3891816..0000000 --- a/suse-xsl-stylesheets-2.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08d1f71399c9b0d132c45530b9482c269ce6847e928164bb2ebafbb3007fd64f -size 1798867 diff --git a/suse-xsl-stylesheets.changes b/suse-xsl-stylesheets.changes index e4ed0cc..606c732 100644 --- a/suse-xsl-stylesheets.changes +++ b/suse-xsl-stylesheets.changes @@ -1,4 +1,5 @@ -Wed Jul 1 08:23:44 UTC 2015 - toms@opensuse.org +------------------------------------------------------------------- +Thu Jul 2 07:48:22 UTC 2015 - toms@opensuse.org Stable release 2.0.1