Hello community, here is the log from the commit of package asciidoc for openSUSE:Factory checked in at 2020-07-13 09:03:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/asciidoc (Old) and /work/SRC/openSUSE:Factory/.asciidoc.new.3060 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "asciidoc" Mon Jul 13 09:03:43 2020 rev:45 rq:819046 version:9.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/asciidoc/asciidoc.changes 2020-06-14 18:13:37.626504700 +0200 +++ /work/SRC/openSUSE:Factory/.asciidoc.new.3060/asciidoc.changes 2020-07-13 09:03:48.707840644 +0200 @@ -1,0 +2,6 @@ +Fri Jul 3 07:25:59 UTC 2020 - Ismail Dönmez <[email protected]> + +- Update to version 9.0.1: + * Fix a2x crashing on decoding generated HTML pages + +------------------------------------------------------------------- Old: ---- asciidoc-9.0.0.tar.gz New: ---- asciidoc-9.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ asciidoc.spec ++++++ --- /var/tmp/diff_new_pack.DzUrGN/_old 2020-07-13 09:03:49.331842141 +0200 +++ /var/tmp/diff_new_pack.DzUrGN/_new 2020-07-13 09:03:49.335842151 +0200 @@ -17,7 +17,7 @@ Name: asciidoc -Version: 9.0.0 +Version: 9.0.1 Release: 0 Summary: Text-Based Document Generation License: GPL-2.0-or-later ++++++ asciidoc-9.0.0.tar.gz -> asciidoc-9.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/.travis.yml new/asciidoc-py3-9.0.1/.travis.yml --- old/asciidoc-py3-9.0.0/.travis.yml 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/.travis.yml 2020-06-26 21:00:25.000000000 +0200 @@ -5,6 +5,11 @@ - 3.6 - 3.7 - 3.8 + - 3.9-dev + +jobs: + allow_failures: + - python: 3.9-dev addons: apt: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/CHANGELOG.txt new/asciidoc-py3-9.0.1/CHANGELOG.txt --- old/asciidoc-py3-9.0.0/CHANGELOG.txt 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/CHANGELOG.txt 2020-06-26 21:00:25.000000000 +0200 @@ -3,6 +3,17 @@ :website: https://asciidoc.org/ +Version 9.0.1 (2020-06-26) +-------------------------- +.Bug fixes +- Fix a2x crashing on decoding generated HTML pages + +.Building +- Fix generated tar.gz not having files under top-level asciidoc folder + +.Testing +- Test against Python 3.9 + Version 9.0.0 (2020-06-02) -------------------------- .Additions and changes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/Makefile.in new/asciidoc-py3-9.0.1/Makefile.in --- old/asciidoc-py3-9.0.0/Makefile.in 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/Makefile.in 2020-06-26 21:00:25.000000000 +0200 @@ -256,15 +256,20 @@ rm -f $(manp) MANIFEST: MANIFEST.in - bash build_dist.sh + bash build_manifest.sh ##. ## dist: creates the zip and tarball for release .PHONY: dist dist: vers_update manpages MANIFEST - @mkdir -p build - tar -czf build/asciidoc-$(ASCIIDOCVERSION).tar.gz -T MANIFEST - zip build/asciidoc-$(ASCIIDOCVERSION).zip -@ < MANIFEST + rm -rf build + mkdir -p build + tar -czf build/asciidoc-tmp.tar.gz -T MANIFEST + mkdir -p build/asciidoc-$(ASCIIDOCVERSION) + tar -xf build/asciidoc-tmp.tar.gz -C build/asciidoc-$(ASCIIDOCVERSION) + cd build && tar -czf asciidoc-$(ASCIIDOCVERSION).tar.gz asciidoc-$(ASCIIDOCVERSION) && zip -r asciidoc-$(ASCIIDOCVERSION).zip asciidoc-$(ASCIIDOCVERSION) + rm -rf build/asciidoc-tmp.tar.gz + rm -rf build/asciidoc-$(ASCIIDOCVERSION) ##. ## test: run the asciidoc test suite diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/a2x.py new/asciidoc-py3-9.0.1/a2x.py --- old/asciidoc-py3-9.0.0/a2x.py 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/a2x.py 2020-06-26 21:00:25.000000000 +0200 @@ -42,7 +42,7 @@ import mimetypes PROG = os.path.basename(os.path.splitext(__file__)[0]) -VERSION = '9.0.0' +VERSION = '9.0.1' # AsciiDoc global configuration file directory. # NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax. @@ -303,6 +303,8 @@ with open(filename, 'rb') as open_file: contents = open_file.read() mo = re.search(b'\A<\?xml.* encoding="(.*?)"', contents) + if mo is None: + mo = re.search(br'<meta http\-equiv="Content\-Type" content="text\/html; charset=(.*?)">', contents) contents = contents.decode(mo.group(1).decode('utf-8') if mo else 'utf-8') parser.feed(contents) parser.close() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/asciidoc.py new/asciidoc-py3-9.0.1/asciidoc.py --- old/asciidoc-py3-9.0.0/asciidoc.py 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/asciidoc.py 2020-06-26 21:00:25.000000000 +0200 @@ -33,7 +33,7 @@ from collections import OrderedDict # Used by asciidocapi.py # -VERSION = '9.0.0' # See CHANGELOG file for version history. +VERSION = '9.0.1' # See CHANGELOG file for version history. MIN_PYTHON_VERSION = '3.5' # Require this version of Python or better. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/build_dist.sh new/asciidoc-py3-9.0.1/build_dist.sh --- old/asciidoc-py3-9.0.0/build_dist.sh 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/build_dist.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -rm -f MANIFEST -while read in; do - if [ ! -z "${in}" ]; then - ls -1A ${in} >> MANIFEST - fi -done < MANIFEST.in -echo "MANIFEST" >> MANIFEST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/build_manifest.sh new/asciidoc-py3-9.0.1/build_manifest.sh --- old/asciidoc-py3-9.0.0/build_manifest.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/asciidoc-py3-9.0.1/build_manifest.sh 2020-06-26 21:00:25.000000000 +0200 @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +rm -f MANIFEST +while read in; do + if [ ! -z "${in}" ]; then + ls -1A ${in} >> MANIFEST + fi +done < MANIFEST.in +echo "MANIFEST" >> MANIFEST diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/asciidoc-py3-9.0.0/configure.ac new/asciidoc-py3-9.0.1/configure.ac --- old/asciidoc-py3-9.0.0/configure.ac 2020-06-02 07:11:24.000000000 +0200 +++ new/asciidoc-py3-9.0.1/configure.ac 2020-06-26 21:00:25.000000000 +0200 @@ -1,6 +1,6 @@ -AC_INIT(asciidoc, 9.0.0) +AC_INIT(asciidoc, 9.0.1) -AC_SUBST([PACKAGE_DATE], ['02 June 2020']) +AC_SUBST([PACKAGE_DATE], ['26 June 2020']) AC_CONFIG_FILES(Makefile)
