Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
f54aad9130
!6 Update package to version 2.1.1
From: @ccdxx 
Reviewed-by: @shinwell_hu 
Signed-off-by: @shinwell_hu
2023-06-25 00:47:07 +00:00
chendexi
e5d6fe1f58 Update package to version 2.1.1 2023-06-21 14:28:19 +08:00
openeuler-ci-bot
4b6004d4dc
!5 Upgrade to latest release [python-pallets-sphinx-themes -> 2.1.0]
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-05-09 01:39:35 +00:00
wubijie
b58e5551b0 update version to 2.1.0 2023-05-05 13:43:21 +08:00
openeuler-ci-bot
11b50aa9e2
!4 Update package to version 2.0.3
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-02-20 01:54:04 +00:00
wubijie
bf02cce387 Update package to version 2.0.3 2023-02-14 14:37:51 +08:00
openeuler-ci-bot
77e24ceeca
!2 Package upgrade
From: @caodongxia 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-07-01 03:03:12 +00:00
caodongxia
05d91d005c Package upgrade 2022-06-29 16:37:04 +08:00
openeuler-ci-bot
d7d63799e5 !1 python-pallets-sphinx-themes打包材料上传
From: @the-moon-is-blue
Reviewed-by: @myeuler
Signed-off-by: @myeuler
2021-01-25 14:20:59 +08:00
gaos50@chinaunicom.cn
908075758a Upload rpmbuild elements 2021-01-25 10:11:50 +08:00
2 changed files with 106 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,106 @@
%global _empty_manifest_terminate_build 0
Name: python-pallets-sphinx-themes
Version: 2.1.1
Release: 1
Summary: Sphinx themes for Pallets and related projects.
License: BSD-3-Clause
URL: https://github.com/pallets/pallets-sphinx-themes/
Source0: https://files.pythonhosted.org/packages/d2/33/95be76c25ed7b853f61cd7afbb5a2c1e17cca5fb39ca3f0f485a6d206358/Pallets-Sphinx-Themes-2.1.1.tar.gz
BuildArch: noarch
%description
Themes for the Pallets projects. If you're writing an extension, use the
appropriate theme to make your documentation look consistent.
Available themes:
- flask
- jinja
- werkzeug
- click
%package -n python3-pallets-sphinx-themes
Summary: Sphinx themes for Pallets and related projects.
Provides: python-pallets-sphinx-themes = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-setuptools
Requires: python3-packaging
Requires: python3-sphinx
Requires: python3-importlib-metadata
%description -n python3-pallets-sphinx-themes
Themes for the Pallets projects. If you're writing an extension, use the
appropriate theme to make your documentation look consistent.
Available themes:
- flask
- jinja
- werkzeug
- click
%package help
Summary: Development documents and examples for Pallets-Sphinx-Themes
Provides: python3-pallets-sphinx-themes-doc
%description help
Themes for the Pallets projects. If you're writing an extension, use the
appropriate theme to make your documentation look consistent.
Available themes:
- flask
- jinja
- werkzeug
- click
%prep
%autosetup -n Pallets-Sphinx-Themes-%{version}
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
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
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-pallets-sphinx-themes -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Wed Jun 21 2023 chendexi <chendexi@kylinos.cn> - 2.1.1-1
- Update package to version 2.1.1
* Fri May 05 2023 wubijie <wubijie@kylinos.cn> - 2.1.0-1
- Update package to version 2.1.0
* Tue Feb 14 2023 wubijie <wubijie@kylinos.cn> - 2.0.3-1
- Update package to version 2.0.3
* Wed Jun 29 2022 caodongxia <caodongxia@h-partners.com> - 2.0.2-1
- Update to 2.0.2
* Wed Nov 25 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated