Compare commits
No commits in common. "73a2e1bcd634aaa2e5335b527716c9be5d586c12" and "f616723ef06138d8b79a4f9aeaad96a1435a96f4" have entirely different histories.
73a2e1bcd6
...
f616723ef0
BIN
prettytable-2.4.0.tar.gz
Normal file
BIN
prettytable-2.4.0.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
@ -1,12 +1,13 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
Name: python-prettytable
|
||||||
Name: python-prettytable
|
Version: 2.4.0
|
||||||
Version: 3.9.0
|
Release: 1
|
||||||
Release: 1
|
Summary: Display tabular data in a visually appealing ASCII table format.
|
||||||
Summary: Display tabular data in a visually appealing ASCII table format.
|
License: BSD
|
||||||
License: BSD-3-Clause
|
URL: http://pypi.python.org/pypi/PrettyTable
|
||||||
URL: https://github.com/jazzband/prettytable
|
Source0: https://files.pythonhosted.org/packages/source/p/prettytable/prettytable-%{version}.tar.gz
|
||||||
Source0: https://files.pythonhosted.org/packages/e1/c0/5e9c4d2a643a00a6f67578ef35485173de273a4567279e4f0c200c01386b/prettytable-3.9.0.tar.gz
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: python3-devel python3-setuptools python3-setuptools_scm
|
||||||
|
|
||||||
%description
|
%description
|
||||||
PrettyTable is a simple Python library designed to make it quick and easy to
|
PrettyTable is a simple Python library designed to make it quick and easy to
|
||||||
@ -16,15 +17,12 @@ 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
|
(left or right justified or centred) and printing of "sub-tables" by specifying
|
||||||
a row range.
|
a row range.
|
||||||
|
|
||||||
|
%package_help
|
||||||
|
|
||||||
%package -n python3-prettytable
|
%package -n python3-prettytable
|
||||||
Summary: Display tabular data in a visually appealing ASCII table format.
|
Summary: Display tabular data in a visually appealing ASCII table format.
|
||||||
Provides: python-prettytable = %{version}-%{release}
|
%{?python_provide:%python_provide python3-prettytable}
|
||||||
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
|
%description -n python3-prettytable
|
||||||
PrettyTable is a simple Python library designed to make it quick and easy to
|
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
|
represent tabular data in visually appealing ASCII tables. It was inspired by
|
||||||
@ -32,53 +30,29 @@ the ASCII tables used in the PostgreSQL shell psql. PrettyTable allows for
|
|||||||
selection of which columns are to be printed, independent alignment of columns
|
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
|
(left or right justified or centred) and printing of "sub-tables" by specifying
|
||||||
a row range.
|
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
|
%prep
|
||||||
%autosetup -n prettytable-%{version}
|
%autosetup -n prettytable-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_build
|
%{__python3} setup.py build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%pyproject_install prettytable==%{version}
|
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||||
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
|
|
||||||
%{python3_sitelib}/*
|
|
||||||
|
|
||||||
%files help
|
%files help
|
||||||
%{_docdir}/*
|
%defattr(-,root,root)
|
||||||
|
%doc README.md CHANGELOG.md
|
||||||
|
|
||||||
|
%files -n python3-prettytable
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%license COPYING
|
||||||
|
%{python3_sitelib}/prettytable*
|
||||||
|
%{python3_sitelib}/prettytable-%{version}*
|
||||||
|
|
||||||
%changelog
|
%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
|
* Mon Dec 27 2021 yanglongkang <yanglongkang@huawei.com> -2.4.0-1
|
||||||
- upadate to 2.4.0
|
- upadate to 2.4.0
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user