Sync from SUSE:SLFO:Main asciidoc revision 7b7cbd04c9d26965ed62eb5e050828e2
This commit is contained in:
parent
859ef14518
commit
8a93acedff
BIN
asciidoc-10.2.0.tar.gz
(Stored with Git LFS)
BIN
asciidoc-10.2.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
asciidoc-10.2.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
asciidoc-10.2.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 22 08:56:48 UTC 2024 - jun wang <jgwang@suse.com>
|
||||||
|
|
||||||
|
- Update to version 10.2.1
|
||||||
|
+ Bug fixes:
|
||||||
|
* Fix deprecation warning on escaping table separators
|
||||||
|
+ Miscellaneous:
|
||||||
|
* Include manpage source files to sdist archive
|
||||||
|
* Fix setting up debian backports in Dockerfile
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 11 07:50:00 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
- Remove python3 shebang from sitelib files (bsc#1212476)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 23 11:33:12 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
Thu Jun 23 11:33:12 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file for package asciidoc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -22,7 +22,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: asciidoc%{?name_suffix}
|
Name: asciidoc%{?name_suffix}
|
||||||
Version: 10.2.0
|
Version: 10.2.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Text-Based Document Generation
|
Summary: Text-Based Document Generation
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -82,7 +82,9 @@ latex dependencies that we don't want to have by default. So this package is opt
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n asciidoc-%{version}
|
%setup -q -n asciidoc-%{version}
|
||||||
# do not use env
|
# do not use env
|
||||||
find ./ -name \*.py -exec sed -i -e 's:/usr/bin/env\ :%{_bindir}/:g' {} \;
|
# Remove python shebang from sitelib files, this will remove the
|
||||||
|
# automatic dependency on /usr/bin/python3
|
||||||
|
find asciidoc -name \*.py -exec sed -i -e '/\/usr\/bin\/env/d' {} \;
|
||||||
|
|
||||||
%if "%{flavor}" == "latextest"
|
%if "%{flavor}" == "latextest"
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user