Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
3de488e480
!31 Fixed the packaging process does not include __pycache__ tests
From: @wk333 
Reviewed-by: @cherry530 
Signed-off-by: @cherry530
2025-03-12 08:40:02 +00:00
wk333
dd64f501d6 Fixed the packaging process does not include __pycache__ tests 2025-03-12 16:20:02 +08:00
openeuler-ci-bot
1dfc71dccf
!15 [sync] PR-14: upgrade the version to 3.17.6
From: @openeuler-sync-bot 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2022-10-26 12:02:29 +00:00
yuqi
a2621e9a7d upgrade the version to 3.17.6
(cherry picked from commit 9f11f99e62154f38d4c463f95ee17285409fbb1e)
2022-10-26 14:17:44 +08:00
openeuler-ci-bot
65d2c88a65 !8 upgrade version to 3.17.2 for python-simplejson
From: @yaozc701
Reviewed-by: @shinwell_hu
Signed-off-by: @shinwell_hu,@shinwell_hu
2021-08-10 13:26:34 +00:00
yaozc701
e74b12057c upgrade version to 3.17.2 2021-08-07 14:22:39 +08:00
openeuler-ci-bot
91be041955 !7 python-simplejson delete BuildRequires gdb
From: @chenyanpanHW
Reviewed-by: @yangzhao_kl
Signed-off-by: @yangzhao_kl
2021-08-05 03:35:26 +00:00
chenyanpanHW
04c38e26eb
delete BuildRequires gdb 2021-08-04 21:20:06 +08:00
openeuler-ci-bot
c693ea8982 !1 Package init
Merge pull request !1 from huanghaitao/master
2020-08-11 18:22:03 +08:00
hht8
8097666af4 add yaml 2020-08-06 14:09:58 +08:00
4 changed files with 42 additions and 54 deletions

View File

@ -1,34 +1,30 @@
%global _empty_manifest_terminate_build 0
Name: python-simplejson
Version: 3.17.0
Release: 1
Summary: Simple, fast, extensible JSON encoder/decoder for Python
License: MIT License
URL: https://github.com/simplejson/simplejson
Source0: https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-%{version}.tar.gz
Name: python-simplejson
Version: 3.17.6
Release: 2
Summary: Simple, fast, extensible JSON encoder/decoder for Python
License: MIT
URL: https://github.com/simplejson/simplejson
Source0: https://files.pythonhosted.org/packages/7a/47/c7cc3d4ed15f09917838a2fb4e1759eafb6d2f37ebf7043af984d8b36cf7/simplejson-3.17.6.tar.gz
%description
simplejson is a simple, fast, complete, correct and extensible
JSON encoder and decoder for Python 3.
Simple, fast, extensible JSON encoder/decoder for Python
%package -n python3-simplejson
Summary: Simple, fast, extensible JSON encoder/decoder for Python
Provides: python-simplejson
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-cffi
BuildRequires: gcc
BuildRequires: gdb
%description -n python3-simplejson
simplejson is a simple, fast, complete, correct and extensible
JSON encoder and decoder for Python 3.
Summary: Simple, fast, extensible JSON encoder/decoder for Python
Provides: python-simplejson
Obsoletes: python-simplejson-help <= %{version}-%{release}
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-cffi
BuildRequires: gcc
%package help
Summary: Development documents and examples for simplejson
Provides: python3-simplejson-doc
%description help
Development documents and examples for simplejson.
%description -n python3-simplejson
Simple, fast, extensible JSON encoder/decoder for Python
%prep
%autosetup -n simplejson-%{version} -p1
@ -38,38 +34,26 @@ Development documents and examples for simplejson.
%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-simplejson -f filelist.lst
%dir %{python3_sitearch}/*
%check
%{__python3} setup.py test
%files help -f doclist.lst
%{_pkgdocdir}
%files -n python3-simplejson
%{python3_sitearch}/*
%changelog
* Wed Mar 12 2025 wangkai <13474090681@163.com> - 3.17.6-2
- Fixed the packaging process does not include __pycache__ tests
- Obsoletes empty package python-simplejson-help
* Wed May 25 2022 OpenStack_SIG <openstack@openeuler.org> - 3.17.6-1
- Upgrade the version to 3.17.6
* Fri Aug 06 2021 OpenStack_SIG <openstack@openeuler.org> - 3.17.2-1
- Upgrade version to 3.17.2
* Wed Aug 04 2021 chenyanpanHW <chenyanpan@huawei.com> - 3.17.0-2
- DESC: delete BuildRequires gdb
* Fri Jun 19 2020 Python_Bot <Python_Bot@openeuler.org>
- Package Spec generated

4
python-simplejson.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: pypi
src_repo: simplejson
tag_prefix: "v"
seperator: ""

Binary file not shown.

BIN
simplejson-3.17.6.tar.gz Normal file

Binary file not shown.