Compare commits

...

11 Commits

Author SHA1 Message Date
openeuler-ci-bot
73a2e1bcd6
!27 [sync] PR-26: upgrade version to 3.9.0
From: @openeuler-sync-bot 
Reviewed-by: @zhuchunyi 
Signed-off-by: @zhuchunyi
2024-04-07 09:01:23 +00:00
ut001695
94800e9458 update version 3.9.0
(cherry picked from commit 2a6df95e21cc882758b144431eafa7f1db71983f)
2024-04-07 14:58:29 +08:00
openeuler-ci-bot
b1f84a77f5
!25 Update package to version 3.8.0
From: @kirin_2_0 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2023-07-12 08:40:32 +00:00
kirin_2_0
f366fab867 updated to latest:3.8.0 2023-07-12 13:58:54 +08:00
openeuler-ci-bot
658ef143b6
!24 Use pyproject to compile package
From: @jxy_git 
Reviewed-by: @yangzhao_kl, @dillon_chen 
Signed-off-by: @yangzhao_kl, @dillon_chen
2023-06-20 06:59:32 +00:00
jxy_git
b8f29a7ba1 Use pyproject to compile package 2023-04-28 10:16:18 +08:00
openeuler-ci-bot
ed823467c2
!20 Upgrade to latest release [python-prettytable -> 3.6.0]
From: @Wangjunqi123 
Reviewed-by: @gaoruoshu 
Signed-off-by: @gaoruoshu
2023-03-27 03:23:32 +00:00
Wangjunqi123
9a6caac8d8 update version to 3.6.0 2023-01-31 11:08:50 +08:00
Wangjunqi123
a6d29ebc3a update version to 3.5.0 2022-11-25 15:25:31 +08:00
openeuler-ci-bot
f7acfcc543
!18 [sync] PR-16: 【轻量级 PR】:Rebuild for next release
From: @openeuler-sync-bot 
Reviewed-by: @xiezhipeng1 
Signed-off-by: @xiezhipeng1
2022-11-03 02:27:50 +00:00
张瑞方
d6af34b23f Rebuild for next release
Signed-off-by: 张瑞方 <xdzhangruifang@163.com>
(cherry picked from commit ea548f1c6cd4cda88175681351daab057bfe52dc)
2022-10-29 09:49:15 +08:00
3 changed files with 53 additions and 27 deletions

Binary file not shown.

BIN
prettytable-3.9.0.tar.gz Normal file

Binary file not shown.

View File

@ -1,13 +1,12 @@
Name: python-prettytable
Version: 2.4.0
Release: 1
Summary: Display tabular data in a visually appealing ASCII table format.
License: BSD
URL: http://pypi.python.org/pypi/PrettyTable
Source0: https://files.pythonhosted.org/packages/source/p/prettytable/prettytable-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel python3-setuptools python3-setuptools_scm
%global _empty_manifest_terminate_build 0
Name: python-prettytable
Version: 3.9.0
Release: 1
Summary: Display tabular data in a visually appealing ASCII table format.
License: BSD-3-Clause
URL: https://github.com/jazzband/prettytable
Source0: https://files.pythonhosted.org/packages/e1/c0/5e9c4d2a643a00a6f67578ef35485173de273a4567279e4f0c200c01386b/prettytable-3.9.0.tar.gz
BuildArch: noarch
%description
PrettyTable is a simple Python library designed to make it quick and easy to
@ -17,12 +16,15 @@ selection of which columns are to be printed, independent alignment of columns
(left or right justified or centred) and printing of "sub-tables" by specifying
a row range.
%package_help
%package -n python3-prettytable
Summary: Display tabular data in a visually appealing ASCII table format.
%{?python_provide:%python_provide python3-prettytable}
Summary: Display tabular data in a visually appealing ASCII table format.
Provides: python-prettytable = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-pip python3-wheel python3-flit
BuildRequires: python3-hatchling python3-hatch-vcs
BuildRequires: python3-setuptools_scm
Requires: python3-importlib-metadata
Requires: python3-wcwidth
%description -n python3-prettytable
PrettyTable is a simple Python library designed to make it quick and easy to
represent tabular data in visually appealing ASCII tables. It was inspired by
@ -30,29 +32,53 @@ the ASCII tables used in the PostgreSQL shell psql. PrettyTable allows for
selection of which columns are to be printed, independent alignment of columns
(left or right justified or centred) and printing of "sub-tables" by specifying
a row range.
This package is for python3.
%package help
Summary: Development documents and examples for prettytable
Provides: python3-prettytable-doc
%description help
PrettyTable is a simple Python library designed to make it quick and easy to
represent tabular data in visually appealing ASCII tables. It was inspired by
the ASCII tables used in the PostgreSQL shell psql. PrettyTable allows for
selection of which columns are to be printed, independent alignment of columns
(left or right justified or centred) and printing of "sub-tables" by specifying
a row range.
%prep
%autosetup -n prettytable-%{version}
%build
%{__python3} setup.py build
%pyproject_build
%install
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
%files help
%defattr(-,root,root)
%doc README.md CHANGELOG.md
%pyproject_install prettytable==%{version}
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
%files -n python3-prettytable
%defattr(-,root,root)
%license COPYING
%{python3_sitelib}/prettytable*
%{python3_sitelib}/prettytable-%{version}*
%{python3_sitelib}/*
%files help
%{_docdir}/*
%changelog
* Mon Jan 15 2024 zhangkea <zhangkea@uniontech.com> - 3.9.0-1
- Update package to version 3.9.0
* Wed Jul 12 2023 niuyaru <niuyaru@kylinos.cn> - 3.8.0-1
- Update package to version 3.8.0
* Fri Apr 28 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 3.6.0-2
- Use pyproject to compile package
* Tue Jan 31 2023 wangjunqi <wangjunqi@kylinos.cn> - 3.6.0-1
- Update package to version 3.6.0
* Wed Oct 26 2022 zhangruifang <zhangruifang1@h-partners.com> - 2.4.0-2
- Rebuild for next release
* Mon Dec 27 2021 yanglongkang <yanglongkang@huawei.com> -2.4.0-1
- upadate to 2.4.0