!2 初始化python-cson仓库

From: @benjamin_now
Reviewed-by: @shinwell_hu
Signed-off-by: @shinwell_hu
This commit is contained in:
openeuler-ci-bot 2021-06-30 09:12:12 +00:00 committed by Gitee
commit b572c0114e
2 changed files with 42 additions and 0 deletions

BIN
pycson-0.8.tar.gz Normal file

Binary file not shown.

42
python-cson.spec Normal file
View File

@ -0,0 +1,42 @@
%global srcname cson
Name: python-%{srcname}
Version: 0.8
Release: 1
Summary: A Coffescript Object Notation (CSON) parser for Python 3
License: MIT
URL: https://github.com/avakar/pycson
Source0: https://github.com/avakar/pycson/archive/%{version}/pycson-%{version}.tar.gz
BuildArch: noarch
%description
A python parser for the Coffeescript Object Notation (CSON).
%package -n python3-%{srcname}
Summary: %{summary}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%{?python_provide:%python_provide python3-%{srcname}}
%description -n python3-%{srcname}
A python parser for the Coffeescript Object Notation (CSON).
%prep
%autosetup -n pycson-%{version}
%build
%py3_build
%install
%py3_install
# Note that there is no %%files section for the unversioned python module
%files -n python3-%{srcname}
%license LICENSE
%doc README.md
%{python3_sitelib}/%{srcname}-*.egg-info/
%{python3_sitelib}/%{srcname}/
%changelog
* Thu Jun 24 2021 Li Jiaan <lijiaan@kylinos.cn> - 0.8-1
- Init project