summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 14:20:32 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 14:20:32 +0000
commit56e384b377eb870054cf7485946e37530437c33d (patch)
treef7b038924af5189862d37b24264301692296cf6c
parent20f4ec46cb156e7aeef731db8b82ec075fc070b2 (diff)
automatic import of python-node-semver
-rw-r--r--.gitignore1
-rw-r--r--python-node-semver.spec73
-rw-r--r--sources1
3 files changed, 75 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f3d0213 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/node-semver-0.9.0.tar.gz
diff --git a/python-node-semver.spec b/python-node-semver.spec
new file mode 100644
index 0000000..f205433
--- /dev/null
+++ b/python-node-semver.spec
@@ -0,0 +1,73 @@
+%global _empty_manifest_terminate_build 0
+Name: python-node-semver
+Version: 0.9.0
+Release: 1
+Summary: port of node-semver
+License: mit
+URL: https://github.com/podhmo/python-node-semver
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/eb/c5/e823658f716b17ab1c52d68ed13a0e09c0130af052401a26b5738e4290cc/node-semver-0.9.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytest
+
+%description
+python version of [node-semver](https://github.com/isaacs/node-semver)
+
+%package -n python3-node-semver
+Summary: port of node-semver
+Provides: python-node-semver
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-node-semver
+python version of [node-semver](https://github.com/isaacs/node-semver)
+
+%package help
+Summary: Development documents and examples for node-semver
+Provides: python3-node-semver-doc
+%description help
+python version of [node-semver](https://github.com/isaacs/node-semver)
+
+%prep
+%autosetup -n node-semver-0.9.0
+
+%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-node-semver -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..0ff2d0e
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+b02700e242fd5cc57b5297b41c535825 node-semver-0.9.0.tar.gz