Compare commits

...

12 Commits

Author SHA1 Message Date
openeuler-ci-bot
be5e1f3763
!39 update packages version 0.20.1 of python-docutils
From: @luolu12 
Reviewed-by: @licihua 
Signed-off-by: @licihua
2023-09-14 07:02:07 +00:00
luolu12
a809ee259d upgrade package to version 0.20.1 2023-09-01 10:06:58 +08:00
openeuler-ci-bot
96d3b14ce4
!36 update version to 0.20
From: @zhuofeng6 
Reviewed-by: @zengwefeng 
Signed-off-by: @zengwefeng
2023-07-27 13:04:51 +00:00
zhuofeng
81fb9adcb9 update version to 0.20 2023-07-27 20:53:36 +08:00
openeuler-ci-bot
0e8e013201
!30 add requires python3-lxml
From: @markeryang 
Reviewed-by: @zhuchunyi, @licihua, @gaoruoshu 
Signed-off-by: @gaoruoshu, @zhuchunyi, @licihua
2023-03-04 06:49:31 +00:00
markeryang
6acaa26dfd add requires python3-lxml 2023-03-04 10:55:28 +08:00
openeuler-ci-bot
04c2d1efa2
!28 优化二进制打包方式以供6.1内核编译用
From: @markeryang 
Reviewed-by: @zengwefeng 
Signed-off-by: @zengwefeng
2023-01-12 01:48:00 +00:00
markeryang
d3a969eeb2 Changing the binary packing mode 2023-01-12 09:19:44 +08:00
openeuler-ci-bot
ade17bf1ea
!27 rollback to old release [python-docutils -> 0.17.1]
From: @Wangjunqi123 
Reviewed-by: @Charlie_li 
Signed-off-by: @Charlie_li
2022-12-24 02:46:25 +00:00
Wangjunqi123
bdc6187f4b update version to 0.17.1 2022-12-19 11:03:05 +08:00
openeuler-ci-bot
72eef6df93
!26 Update package
From: @Wangjunqi123 
Reviewed-by: @yangzhao_kl, @zengwefeng 
Signed-off-by: @yangzhao_kl, @zengwefeng
2022-12-13 11:52:51 +00:00
openeuler-ci-bot
05088d8355
!22 License compliance rectification
From: @bzg1107 
Reviewed-by: @zengwefeng 
Signed-off-by: @zengwefeng
2022-06-30 11:50:10 +00:00
3 changed files with 34 additions and 10 deletions

Binary file not shown.

BIN
docutils-0.20.1.tar.gz Normal file

Binary file not shown.

View File

@ -7,12 +7,12 @@ open-document or XML. It includes reStructuredText, the easy to read, easy\
to use, what-you-see-is-what-you-get plaintext markup language. to use, what-you-see-is-what-you-get plaintext markup language.
Name: python-docutils Name: python-docutils
Version: 0.19 Version: 0.20.1
Release: 1 Release: 1
Summary: Documentation Utilities Written in Python, for General- and Special-Purpose Use Summary: Documentation Utilities Written in Python, for General- and Special-Purpose Use
License: Public Domain and BSD-2-Clause and Python and GPL-3.0-or-later License: Public Domain and BSD-2-Clause and Python and GPL-3.0-or-later
URL: http://docutils.sourceforge.net URL: http://docutils.sourceforge.net
Source0: https://files.pythonhosted.org/packages/6b/5c/330ea8d383eb2ce973df34d1239b3b21e91cd8c865d21ff82902d952f91f/%{modname}-0.19.tar.gz Source0: https://files.pythonhosted.org/packages/1f/53/a5da4f2c5739cf66290fac1431ee52aff6851c7c8ffd8264f13affd7bcdd/docutils-0.20.1.tar.gz
BuildArch: noarch BuildArch: noarch
%description %description
@ -20,8 +20,15 @@ BuildArch: noarch
%package -n python3-docutils %package -n python3-docutils
Summary: Documentation Utilities Written in Python, for General- and Special-Purpose Use Summary: Documentation Utilities Written in Python, for General- and Special-Purpose Use
Requires: python3-lxml
Provides: python-docutils = %{version}-%{release} Provides: python-docutils = %{version}-%{release}
BuildRequires: python3-devel BuildRequires: python3-devel
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-hatchling
%description -n python3-docutils %description -n python3-docutils
%{_description} %{_description}
@ -35,10 +42,10 @@ Provides: python3-docutils-doc
%autosetup -n docutils-%{version} %autosetup -n docutils-%{version}
%build %build
%py3_build %pyproject_build
%install %install
%py3_install %pyproject_install
install -d -m755 %{buildroot}/%{_pkgdocdir} install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
@ -54,17 +61,16 @@ fi
if [ -d usr/lib64 ]; then if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst touch doclist.lst
if [ -d usr/share/man ]; then if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi fi
popd popd
for file in %{buildroot}%{_bindir}/*.py;do
mv $file $(dirname $file)/$(basename $file .py)
done
mv %{buildroot}/filelist.lst . mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst . mv %{buildroot}/doclist.lst .
@ -73,6 +79,9 @@ python3 test/alltests.py
%files -n python3-docutils -f filelist.lst %files -n python3-docutils -f filelist.lst
%dir %{python3_sitelib}/* %dir %{python3_sitelib}/*
%{_bindir}/rst*
%{_bindir}/docutils
%{python3_sitelib}/docutils
%files help -f doclist.lst %files help -f doclist.lst
%{_docdir}/* %{_docdir}/*
@ -80,6 +89,21 @@ python3 test/alltests.py
%license COPYING.txt licenses/*.txt %license COPYING.txt licenses/*.txt
%changelog %changelog
* Fri Sep 1 2023 luluoc <luluoc@isoftstone.com> - 0.20.1-1
- upgrade package to version 0.20.1
* Thu Jul 27 2023 zhuofeng <zhuofeng2@huawei.com> - 0.20-1
- Update package to version 0.20
* Sat Mar 4 2023 yanglongkang <yanglongkang@h-partners.com> - 0.17.1-3
- add requires python3-lxml
* Thu Jan 12 2023 yanglongkang <yanglongkang@h-partners.com> - 0.17.1-2
- Changing the binary packing mode
* Mon Dec 19 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.17.1-1
- Update package to version 0.17.1
* Mon Dec 05 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.19-1 * Mon Dec 05 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.19-1
- Update package to version 0.19 - Update package to version 0.19