OBS User unknown 2009-01-08 13:50:47 +00:00 committed by Git OBS Bridge
parent 65bfa17823
commit 5b6b9f16a8
7 changed files with 32 additions and 35 deletions

View File

@ -1,5 +1,5 @@
--- asciidoc.py-dist 2008-06-11 12:48:36.000000000 +0200
+++ asciidoc.py 2008-06-11 12:48:40.000000000 +0200
--- a/asciidoc.py-dist 2008-06-11 12:48:36.000000000 +0200
+++ b/asciidoc.py 2008-06-11 12:48:40.000000000 +0200
@@ -152,9 +152,9 @@
if not os.path.isfile(fname):
warning('include file not found: %s' % fname)

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c880fb88b3d870dc5b1d7422a5a4a4fb12caae96cfe6f234f4b9884b29e7a7a8
size 672445

3
asciidoc-8.3.3.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76be5b9acbe2e0f960d6493176992a9d51d19c6e0717ba1964ad5f40989f1e0c
size 857554

View File

@ -1,16 +0,0 @@
---
docbook-xsl/manpage.xsl | 3 +++
1 file changed, 3 insertions(+)
--- a/docbook-xsl/manpage.xsl
+++ b/docbook-xsl/manpage.xsl
@@ -21,6 +21,9 @@
</xsl:template>
<!-- Don't automatically generate the REFERENCES section -->
+<xsl:template name="endnotes.list">
+</xsl:template>
+<!-- Next entry for backward compatibility with old docbook-xsl versions -->
<xsl:template name="format.links.list">
</xsl:template>

View File

@ -1,5 +1,5 @@
--- vim/ftdetect/asciidoc_filetype.vim-dist 2008-06-10 16:07:02.000000000 +0200
+++ vim/ftdetect/asciidoc_filetype.vim 2008-06-10 16:07:51.000000000 +0200
--- a/vim/ftdetect/asciidoc_filetype.vim-dist 2008-06-10 16:07:02.000000000 +0200
+++ b/vim/ftdetect/asciidoc_filetype.vim 2008-06-10 16:07:51.000000000 +0200
@@ -10,8 +10,8 @@
" The first sets asciidoc syntax highlighting on all .txt files, the second
" only existing files *.txt that appear to be AsciiDoc files.

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Thu Jan 8 14:18:28 CET 2009 - bbrunner@suse.de
- updated to version 8.3.3
* The broken and confusing numeration and numeration2 numbered list
attributes have been dropped, use the style attribute instead.
* SidebarBlock element can be rendered with an abstract style.
* (see CHANGELOG)
-------------------------------------------------------------------
Sun Nov 2 15:36:41 CET 2008 - bwalle@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package asciidoc (Version 8.2.7)
# spec file for package asciidoc (Version 8.3.3)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -20,8 +20,8 @@
Name: asciidoc
Summary: Text-Based Document Generation
Version: 8.2.7
Release: 29
Version: 8.3.3
Release: 1
License: GPL v2 or later
Group: Development/Tools/Doc Generators
Requires: python >= 2.3, fop
@ -34,8 +34,7 @@ Source0: %{name}-%{version}.tar.bz2
Patch0: asciidoc-vim-fix.diff
Patch1: asciidoc-8.2.6-no-safe-check.diff
Patch2: asciidoc-a2x-fop-fix.diff
Patch3: asciidoc-fix-manpage-references.diff
Patch4: asciidoc-ignore-deprecation.diff
Patch3: asciidoc-ignore-deprecation.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@ -66,11 +65,10 @@ Authors:
%prep
%setup -q
%patch
%patch1
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%build
@ -79,8 +77,8 @@ mkdir -p $RPM_BUILD_ROOT/etc/asciidoc/filters
mkdir -p $RPM_BUILD_ROOT%{_datadir}/asciidoc
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
install -m 0644 *.conf $RPM_BUILD_ROOT/etc/asciidoc
install -m 0644 filters/*.conf $RPM_BUILD_ROOT/etc/asciidoc/filters/
install -m 0755 filters/*.py $RPM_BUILD_ROOT/etc/asciidoc/filters/
install -m 0644 filters/*/*.conf $RPM_BUILD_ROOT/etc/asciidoc/filters/
install -m 0755 filters/*/*.py $RPM_BUILD_ROOT/etc/asciidoc/filters/
install -m 0755 -D asciidoc.py $RPM_BUILD_ROOT%{_bindir}/asciidoc
install -m 0755 -D a2x $RPM_BUILD_ROOT%{_bindir}/a2x
install -m 0644 doc/*.1 $RPM_BUILD_ROOT%{_mandir}/man1/
@ -98,7 +96,7 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
/etc/asciidoc
%config /etc/asciidoc
%{_datadir}/asciidoc
%{_bindir}/*
%{_datadir}/vim
@ -110,6 +108,12 @@ rm -rf $RPM_BUILD_ROOT
%doc doc examples
%changelog
* Thu Jan 08 2009 bbrunner@suse.de
- updated to version 8.3.3
* The broken and confusing numeration and numeration2 numbered list
attributes have been dropped, use the style attribute instead.
* SidebarBlock element can be rendered with an abstract style.
* (see CHANGELOG)
* Sun Nov 02 2008 bwalle@suse.de
- Call Python with -Wignore::DeprecationWarning to hide deprecation
warnings from the user.