commit b4d4bac22c088214aeb3fccccb5c1c33b8e7c953 Author: Sergey Cherevko Date: Fri Dec 13 12:07:20 2024 +0300 import rubygem-asciidoctor-2.0.20-4.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd2677c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/asciidoctor-2.0.20.tar.gz diff --git a/.rubygem-asciidoctor.metadata b/.rubygem-asciidoctor.metadata new file mode 100644 index 0000000..0716220 --- /dev/null +++ b/.rubygem-asciidoctor.metadata @@ -0,0 +1 @@ +fd5519d6eea6f91f334ccce4bef3039da2578190 SOURCES/asciidoctor-2.0.20.tar.gz diff --git a/SOURCES/0001-use-single-line-block-in-manify-method-in-manpage-co.patch b/SOURCES/0001-use-single-line-block-in-manify-method-in-manpage-co.patch new file mode 100644 index 0000000..2db9cdb --- /dev/null +++ b/SOURCES/0001-use-single-line-block-in-manify-method-in-manpage-co.patch @@ -0,0 +1,25 @@ +From cc9a8d3cd12f2c15e43bd263b8b8a9b32d097831 Mon Sep 17 00:00:00 2001 +From: Dan Allen +Date: Thu, 25 May 2023 18:39:56 -0600 +Subject: [PATCH] use single-line block in manify method in manpage converter + to make it easier to patch + +--- + lib/asciidoctor/converter/manpage.rb | 4 +--- + 1 file changed, 1 insertion(+), 3 deletions(-) + +diff --git a/lib/asciidoctor/converter/manpage.rb b/lib/asciidoctor/converter/manpage.rb +index bcf2b784..a7aba996 100644 +--- a/lib/asciidoctor/converter/manpage.rb ++++ b/lib/asciidoctor/converter/manpage.rb +@@ -716,9 +716,7 @@ def manify str, opts = {} + .gsub(LiteralBackslashRx) { $1 ? $& : '\\(rs' } # literal backslash (not a troff escape sequence) + .gsub(EllipsisCharRefRx, '...') # horizontal ellipsis + .gsub(LeadingPeriodRx, '\\\&.') # leading . is used in troff for macro call or other formatting; replace with \&. +- .gsub(EscapedMacroRx) do # drop orphaned \c escape lines, unescape troff macro, quote adjacent character, isolate macro line +- (rest = $3.lstrip).empty? ? %(.#{$1}"#{$2}") : %(.#{$1}"#{$2.rstrip}"#{LF}#{rest}) +- end ++ .gsub(EscapedMacroRx) { (rest = $3.lstrip).empty? ? %(.#{$1}"#{$2}") : %(.#{$1}"#{$2.rstrip}"#{LF}#{rest}) } # drop orphaned \c escape lines, unescape troff macro, quote adjacent character, isolate macro line + .gsub('-', '\-') + .gsub('<', '<') + .gsub('>', '>') diff --git a/SOURCES/0002-change-dot-layout-in-chained-method-call-to-be-compa.patch b/SOURCES/0002-change-dot-layout-in-chained-method-call-to-be-compa.patch new file mode 100644 index 0000000..351d5cc --- /dev/null +++ b/SOURCES/0002-change-dot-layout-in-chained-method-call-to-be-compa.patch @@ -0,0 +1,85 @@ +From b7c03964cfc96af9ced5db3c1a6c7a7663de5cb2 Mon Sep 17 00:00:00 2001 +From: Dan Allen +Date: Fri, 26 May 2023 01:44:09 -0600 +Subject: [PATCH] change dot layout in chained method call to be compatible + with rdoc generator from Ruby 2.5 + +--- + lib/asciidoctor/converter/manpage.rb | 64 ++++++++++++++-------------- + 1 file changed, 32 insertions(+), 32 deletions(-) + +diff --git a/lib/asciidoctor/converter/manpage.rb b/lib/asciidoctor/converter/manpage.rb +index a7aba996..be52e9be 100644 +--- a/lib/asciidoctor/converter/manpage.rb ++++ b/lib/asciidoctor/converter/manpage.rb +@@ -712,38 +712,38 @@ def manify str, opts = {} + else + str = str.tr_s WHITESPACE, ' ' + end +- str = str +- .gsub(LiteralBackslashRx) { $1 ? $& : '\\(rs' } # literal backslash (not a troff escape sequence) +- .gsub(EllipsisCharRefRx, '...') # horizontal ellipsis +- .gsub(LeadingPeriodRx, '\\\&.') # leading . is used in troff for macro call or other formatting; replace with \&. +- .gsub(EscapedMacroRx) { (rest = $3.lstrip).empty? ? %(.#{$1}"#{$2}") : %(.#{$1}"#{$2.rstrip}"#{LF}#{rest}) } # drop orphaned \c escape lines, unescape troff macro, quote adjacent character, isolate macro line +- .gsub('-', '\-') +- .gsub('<', '<') +- .gsub('>', '>') +- .gsub('+', '+') # plus sign; alternately could use \c(pl +- .gsub(' ', '\~') # non-breaking space +- .gsub('©', '\(co') # copyright sign +- .gsub('®', '\(rg') # registered sign +- .gsub('™', '\(tm') # trademark sign +- .gsub('°', '\(de') # degree sign +- .gsub(' ', ' ') # thin space +- .gsub('–', '\(en') # en dash +- .gsub(EmDashCharRefRx, '\(em') # em dash +- .gsub('‘', '\(oq') # left single quotation mark +- .gsub('’', '\(cq') # right single quotation mark +- .gsub('“', '\(lq') # left double quotation mark +- .gsub('”', '\(rq') # right double quotation mark +- .gsub('←', '\(<-') # leftwards arrow +- .gsub('→', '\(->') # rightwards arrow +- .gsub('⇐', '\(lA') # leftwards double arrow +- .gsub('⇒', '\(rA') # rightwards double arrow +- .gsub('​', '\:') # zero width space +- .gsub('&', '&') # literal ampersand (NOTE must take place after any other replacement that includes &) +- .gsub('\'', '\*(Aq') # apostrophe / neutral single quote +- .gsub(MockMacroRx, '\1') # mock boundary +- .gsub(ESC_BS, '\\') # unescape troff backslash (NOTE update if more escapes are added) +- .gsub(ESC_FS, '.') # unescape full stop in troff commands (NOTE must take place after gsub(LeadingPeriodRx)) +- .rstrip # strip trailing space ++ str = str. ++ gsub(LiteralBackslashRx) { $1 ? $& : '\\(rs' }. # literal backslash (not a troff escape sequence) ++ gsub(EllipsisCharRefRx, '...'). # horizontal ellipsis ++ gsub(LeadingPeriodRx, '\\\&.'). # leading . is used in troff for macro call or other formatting; replace with \&. ++ gsub(EscapedMacroRx) { (rest = $3.lstrip).empty? ? %(.#{$1}"#{$2}") : %(.#{$1}"#{$2.rstrip}"#{LF}#{rest}) }. # drop orphaned \c escape lines, unescape troff macro, quote adjacent character, isolate macro line ++ gsub('-', '\-'). ++ gsub('<', '<'). ++ gsub('>', '>'). ++ gsub('+', '+'). # plus sign; alternately could use \c(pl ++ gsub(' ', '\~'). # non-breaking space ++ gsub('©', '\(co'). # copyright sign ++ gsub('®', '\(rg'). # registered sign ++ gsub('™', '\(tm'). # trademark sign ++ gsub('°', '\(de'). # degree sign ++ gsub(' ', ' '). # thin space ++ gsub('–', '\(en'). # en dash ++ gsub(EmDashCharRefRx, '\(em'). # em dash ++ gsub('‘', '\(oq'). # left single quotation mark ++ gsub('’', '\(cq'). # right single quotation mark ++ gsub('“', '\(lq'). # left double quotation mark ++ gsub('”', '\(rq'). # right double quotation mark ++ gsub('←', '\(<-'). # leftwards arrow ++ gsub('→', '\(->'). # rightwards arrow ++ gsub('⇐', '\(lA'). # leftwards double arrow ++ gsub('⇒', '\(rA'). # rightwards double arrow ++ gsub('​', '\:'). # zero width space ++ gsub('&', '&'). # literal ampersand (NOTE must take place after any other replacement that includes &) ++ gsub('\'', '\*(Aq'). # apostrophe / neutral single quote ++ gsub(MockMacroRx, '\1'). # mock boundary ++ gsub(ESC_BS, '\\'). # unescape troff backslash (NOTE update if more escapes are added) ++ gsub(ESC_FS, '.'). # unescape full stop in troff commands (NOTE must take place after gsub(LeadingPeriodRx)) ++ rstrip # strip trailing space + opts[:append_newline] ? %(#{str}#{LF}) : str + end + diff --git a/SOURCES/0003-support-ruby33-Logger.patch b/SOURCES/0003-support-ruby33-Logger.patch new file mode 100644 index 0000000..eadf945 --- /dev/null +++ b/SOURCES/0003-support-ruby33-Logger.patch @@ -0,0 +1,39 @@ +From 4c93df1eeff84463c6fc299b62b78c20c3163a09 Mon Sep 17 00:00:00 2001 +From: Mamoru TASAKA +Date: Fri, 29 Sep 2023 15:00:12 +0900 +Subject: [PATCH] Support ruby3.3 Logger by properly initialize super class + +Upcoming ruby3.3 will have enhanced Logger class: +https://github.com/ruby/ruby/commit/194520f80e1cdb71faa055d731450855a1ddb8d1 +which initializes newly added instance variables. +Without initializing such variables (in super class), now using +subclass of Logger will cause exception. + +To avoid this, first call super, then execute additional subclass +initialization. + +Closes #4493 . +--- + lib/asciidoctor/logging.rb | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/lib/asciidoctor/logging.rb b/lib/asciidoctor/logging.rb +index 7664c7e75d..1f846c4fba 100644 +--- a/lib/asciidoctor/logging.rb ++++ b/lib/asciidoctor/logging.rb +@@ -42,6 +42,7 @@ class MemoryLogger < ::Logger + attr_reader :messages + + def initialize ++ super nil + self.level = WARN + @messages = [] + end +@@ -69,6 +70,7 @@ class NullLogger < ::Logger + attr_reader :max_severity + + def initialize ++ super nil + self.level = WARN + end + diff --git a/SOURCES/rubygem-asciidoctor.rpmlintrc b/SOURCES/rubygem-asciidoctor.rpmlintrc new file mode 100644 index 0000000..49fecec --- /dev/null +++ b/SOURCES/rubygem-asciidoctor.rpmlintrc @@ -0,0 +1,7 @@ +from Config import * + +# the dictionary is a bit limited +addFilter("rubygem-asciidoctor\..*: W: spelling-error %description -l en_US toolchain") + +# the asciidoctor-safe command is removed upstream for the next major release +addFilter("rubygem-asciidoctor\..*: W: no-manual-page-for-binary asciidoctor-safe") diff --git a/SOURCES/test-install b/SOURCES/test-install new file mode 100755 index 0000000..9dc3ff2 --- /dev/null +++ b/SOURCES/test-install @@ -0,0 +1,19 @@ +#!/usr/bin/env ruby + +# A sanity check to ensure that gem is functional after installing the package. + +require 'asciidoctor' + +source = < + +http://asciidoctor.org[Asciidoctor] is an _open source_ implementation of +http://asciidoc.org[AsciiDoc] in [.red]*Ruby*. + +== Sample section + +Sample section content +EOS + +puts Asciidoctor.render(source, :backend => :html5, :header_footer => true, :safe => :safe, :attributes => 'idprefix= idseparator=-') diff --git a/SPECS/rubygem-asciidoctor.spec b/SPECS/rubygem-asciidoctor.spec new file mode 100644 index 0000000..1334a6d --- /dev/null +++ b/SPECS/rubygem-asciidoctor.spec @@ -0,0 +1,296 @@ +%global gem_name asciidoctor +%global mandir %{_mandir}/man1 + +%define pre %nil +%global gittag v%{version}%{pre} + +Summary: A fast, open source AsciiDoc implementation in Ruby +Name: rubygem-%{gem_name} +Version: 2.0.20 +Release: 4%{?dist} +License: MIT +URL: https://asciidoctor.org +Source0: https://github.com/asciidoctor/asciidoctor/archive/%{gittag}/%{gem_name}-%{version}%{pre}.tar.gz +# improve ruby-2.5 compatibility +# https://github.com/asciidoctor/asciidoctor/issues/4462 +# https://github.com/asciidoctor/asciidoctor/commit/cc9a8d3c +Patch0: 0001-use-single-line-block-in-manify-method-in-manpage-co.patch +# https://github.com/asciidoctor/asciidoctor/commit/b7c03964 +Patch1: 0002-change-dot-layout-in-chained-method-call-to-be-compa.patch +# https://github.com/asciidoctor/asciidoctor/pull/4494 +Patch2: 0003-support-ruby33-Logger.patch +%if 0%{?el7} +Requires: ruby(release) +BuildRequires: ruby(release) +%endif +BuildRequires: rubygems-devel +BuildRequires: ruby(rubygems) +%if ! 0%{?rhel} +# Dependencies aren't available on EPEL +BuildRequires: rubygem(coderay) +BuildRequires: rubygem(concurrent-ruby) +BuildRequires: rubygem(erubi) +BuildRequires: rubygem(haml) +BuildRequires: rubygem(minitest) +BuildRequires: rubygem(nokogiri) +BuildRequires: rubygem(rouge) +BuildRequires: rubygem(slim) +BuildRequires: rubygem(tilt) +%endif +BuildArch: noarch +Provides: asciidoctor = %{version} +%if 0%{?el7} +Provides: rubygem(%{gem_name}) = %{version} +%endif + +%if %{?pre:1} +%global gem_instdir %{gem_dir}/gems/%{gem_name}-%{version}%{pre} +%global gem_cache %{gem_dir}/cache/%{gem_name}-%{version}%{pre}.gem +%global gem_spec %{gem_dir}/specifications/%{gem_name}-%{version}%{pre}.gemspec +%global gem_docdir %{gem_dir}/doc/%{gem_name}-%{version}%{pre} +%endif + +%description +A fast, open source text processor and publishing toolchain, written in Ruby, +for transforming AsciiDoc markup into HTML 5, DocBook 4.5, DocBook 5.0 and +custom output formats. The transformation from AsciiDoc to custom output +formats is performed by running the nodes in the parsed document tree through a +collection of templates written in a template language supported by Tilt. + +%package doc +Summary: Documentation for %{name} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation for %{name} + +%prep +%autosetup -n %{gem_name}-%{version}%{pre} -p1 + +# Include tests in the gem, they're disabled by default +sed -i -e 's/#\(s\.test_files\)/\1/' %{gem_name}.gemspec + +# Fix shebang (avoid Requires: /usr/bin/env) +sed -i -e 's|#!/usr/bin/env ruby|#!/usr/bin/ruby|' bin/%{gem_name} + +%build +gem build %{gem_name}.gemspec +%gem_install -n %{gem_name}-%{version}%{pre}.gem + +%check +pushd .%{gem_instdir} + +%if ! 0%{?rhel} +# Asciidoctor tests require Minitest 5, so we can't run them on EPEL +# +# disable tests which require open-uri-cached gem +sed -Ei "/test 'should cache remote (SVG|image) when allow-uri-read, cache-uri, and (inline option|data-uri) are set' do/a \\ + skip('open-uri-cached gem is not avaiable on Fedora')" test/blocks_test.rb +LANG=C.UTF-8 ruby -I"lib:test" -e 'Dir.glob "./test/**/*_test.rb", &method(:require)' +%endif +popd + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ + +mkdir -p %{buildroot}%{_bindir} +cp -a .%{_bindir}/* \ + %{buildroot}%{_bindir}/ + +mkdir -p %{buildroot}%{mandir} +cp -a .%{gem_instdir}/man/*.1 \ + %{buildroot}%{mandir}/ + +%files +%dir %{gem_instdir} +%exclude %{gem_cache} +%exclude %{gem_instdir}/asciidoctor.gemspec +%exclude %{gem_instdir}/man +%exclude %{gem_instdir}/test +%exclude %{gem_instdir}/features +%license %{gem_instdir}/LICENSE +%doc %{gem_instdir}/CHANGELOG.adoc +%doc %{gem_instdir}/README.* +%lang(de) %doc %{gem_instdir}/README-de.* +%lang(fr) %doc %{gem_instdir}/README-fr.* +%lang(ja) %doc %{gem_instdir}/README-jp.* +%lang(zh_CN) %doc %{gem_instdir}/README-zh_CN.* +%{gem_instdir}/data +%{_bindir}/* +%{gem_instdir}/bin +%{gem_libdir} +%{mandir}/* +%{gem_spec} + +%files doc +%doc %{gem_docdir} + +%changelog +* Fri Dec 13 2024 Sergey Cherevko - 2.0.20-4 +- Rebuilt for MSVSphere 10 + +* Fri Sep 29 2023 Mamoru TASAKA - 2.0.20-4 +- Apply the upstream PR to support ruby 3.3 Logger + +* Fri Jul 21 2023 Fedora Release Engineering - 2.0.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu May 25 2023 Todd Zullinger - 2.0.20-2 +- improve ruby-2.5 compatibility (epel8) + +* Thu May 18 2023 Todd Zullinger - 2.0.20-1 +- update to asciidoctor 2.0.20 (rhbz#2208089) + +* Wed May 17 2023 Todd Zullinger - 2.0.19-1 +- update to asciidoctor 2.0.19 (rhbz#2208089) + +* Mon Feb 20 2023 Todd Zullinger - 2.0.18-3 +- fixes for ruby-3.2.x and rouge-4.1.0 (rhbz#2171711) + +* Fri Jan 20 2023 Fedora Release Engineering - 2.0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Oct 15 2022 Todd Zullinger - 2.0.18-1 +- update to asciidoctor 2.0.18 (rhbz#1989716) + +* Tue Aug 02 2022 Todd Zullinger - 2.0.17-1 +- update to asciidoctor 2.0.17 (rhbz#2113688) +- disable tests which require open-uri-cached gem + +* Sat Jul 23 2022 Fedora Release Engineering - 2.0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Jan 21 2022 Neal Gompa - 2.0.15-3 +- Simplify RHEL conditionals + +* Fri Jul 23 2021 Fedora Release Engineering - 2.0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Apr 27 2021 Todd Zullinger - 2.0.15-1 +- update to asciidoctor 2.0.15 + Resolves: rhbz#1954314 +- remove el6 conditionals + +* Mon Apr 19 2021 Todd Zullinger - 2.0.14-1 +- Update to asciidoctor 2.0.14 + Resolves: rhbz#1950947 + +* Sat Apr 10 2021 Todd Zullinger - 2.0.13-1 +- Update to asciidoctor 2.0.13 + Resolves: rhbz#1948231 + +* Wed Jan 27 2021 Pavel Valena - 2.0.12-1 +- Update to asciidoctor 2.0.12. + Resolves: rhbz#1893940 + +* Wed Jan 27 2021 Fedora Release Engineering - 2.0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Aug 19 2020 Vít Ondruch - 2.0.10-4 +- Replace build time Erubis dependency by Erubi. + +* Wed Jul 29 2020 Fedora Release Engineering - 2.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jan 30 2020 Fedora Release Engineering - 2.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sun Sep 22 2019 Todd Zullinger - 2.0.10-1 +- Update to Asciidoctor 2.0.10 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Mar 19 2019 Todd Zullinger - 1.5.8-1 +- Update to Asciidoctor 1.5.8 (resolves CVE-2018-18385) + +* Sat Feb 02 2019 Fedora Release Engineering - 1.5.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek - 1.5.6.1-5 +- Use C.UTF-8 locale + See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot + +* Sat Jul 14 2018 Fedora Release Engineering - 1.5.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed May 23 2018 Vít Ondruch - 1.5.6.1-3 +- Enable entire test suite. + +* Fri Feb 09 2018 Fedora Release Engineering - 1.5.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 24 2017 Fabio Alessandro Locati - 1.5.6.1-1 +- Update to Asciidoctor 1.5.6.1 + +* Thu Jul 27 2017 Fedora Release Engineering - 1.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jun 05 2017 Vít Ondruch - 1.5.5-2 +- Fix FTBFS. + +* Sat Feb 11 2017 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Oct 14 2016 Fabio Alessandro Locati - 1.5.5-1 +- Update to Asciidoctor 1.5.5 + +* Thu Feb 04 2016 Fedora Release Engineering - 1.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Jan 05 2016 Ken Dreyer - 1.5.4-1 +- Update to Asciidoctor 1.5.4 (rhbz#1295758) +- Use %%license macro +- Drop unnecessary "-p" flag to cp during %%install ("-a" already preserves + timestamps) + +* Mon Nov 02 2015 Ken Dreyer - 1.5.3-1 +- Update to Asciidoctor 1.5.3 (rhbz#1276851) +- Drop Fedora 19 and 20 macros (these distros are EOL) + +* Thu Jun 18 2015 Fedora Release Engineering - 1.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Fri Dec 05 2014 Ken Dreyer - 1.5.2-1 +- Update to Asciidoctor 1.5.2 + +* Fri Sep 19 2014 Ken Dreyer - 1.5.1-1 +- Update to Asciidoctor 1.5.1 + +* Tue Sep 09 2014 Ken Dreyer - 1.5.0-1 +- Update to Asciidoctor 1.5.0 final + +* Fri Jun 06 2014 Ken Dreyer - 1.5.0-0.4.preview.7 +- Add %%{version} number to Provides: asciidoctor + +* Fri Jun 06 2014 Ken Dreyer - 1.5.0-0.3.preview.7 +- Provide: asciidoctor + https://github.com/asciidoctor/rubygem-asciidoctor-rpm/issues/5 + +* Tue May 20 2014 Ken Dreyer - 1.5.0-0.2.preview.7 +- Update to Asciidoctor 0.1.5.preview.7 +- Drop unused patch + +* Thu May 15 2014 Ken Dreyer - 1.5.0-0.1.preview.6 +- Update to Asciidoctor 0.1.5.preview.6 +- Use HTTPS URLs +- Support Minitest 5 +- Adjustments for https://fedoraproject.org/wiki/Changes/Ruby_2.1 +- Mark CHANGELOG, LICENSE, READMEs as %%doc +- Remove Rakefile in %%prep +- Remove Requires: /usr/bin/env + +* Sun Sep 22 2013 Dan Allen - 0.1.4-1 +- Update to Asciidoctor 0.1.4 + +* Sun Aug 04 2013 Fedora Release Engineering - 0.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Jun 08 2013 Dan Allen - 0.1.3-1 +- Update to Asciidoctor 0.1.3 + +* Fri Mar 01 2013 Dan Allen - 0.1.1-1 +- Initial package