summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 07:25:29 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 07:25:29 +0000
commit8d0d8e32042aa442e2d7e3125e7ded1d430d78ee (patch)
tree13feb9f88b1bb1fe9c0895ca4c1045042589b35c
parent1edcfbe84dcd157f88b95f2ee4ea5b90595024ce (diff)
automatic import of python-pygtfs
-rw-r--r--.gitignore1
-rw-r--r--python-pygtfs.spec79
-rw-r--r--sources1
3 files changed, 81 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..3eb15f1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pygtfs-0.1.7.tar.gz
diff --git a/python-pygtfs.spec b/python-pygtfs.spec
new file mode 100644
index 0000000..2da1111
--- /dev/null
+++ b/python-pygtfs.spec
@@ -0,0 +1,79 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pygtfs
+Version: 0.1.7
+Release: 1
+Summary: Models GTFS data in a database.
+License: MIT
+URL: https://github.com/jarondl/pygtfs
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/00/55/57c4aec826f9e2d7bc7a43cfd030f298f8cd62783a0b2ed4b22d694d2a20/pygtfs-0.1.7.tar.gz
+BuildArch: noarch
+
+Requires: python3-sqlalchemy
+Requires: python3-pytz
+Requires: python3-six
+Requires: python3-docopt
+
+%description
+[![Travis](https://img.shields.io/travis/jarondl/pygtfs/master.svg?style=flat-square)](https://travis-ci.org/jarondl/pygtfs)
+[![PyPI](https://img.shields.io/pypi/v/pygtfs.svg)](https://pypi.python.org/pypi/pygtfs)
+
+%package -n python3-pygtfs
+Summary: Models GTFS data in a database.
+Provides: python-pygtfs
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pygtfs
+[![Travis](https://img.shields.io/travis/jarondl/pygtfs/master.svg?style=flat-square)](https://travis-ci.org/jarondl/pygtfs)
+[![PyPI](https://img.shields.io/pypi/v/pygtfs.svg)](https://pypi.python.org/pypi/pygtfs)
+
+%package help
+Summary: Development documents and examples for pygtfs
+Provides: python3-pygtfs-doc
+%description help
+[![Travis](https://img.shields.io/travis/jarondl/pygtfs/master.svg?style=flat-square)](https://travis-ci.org/jarondl/pygtfs)
+[![PyPI](https://img.shields.io/pypi/v/pygtfs.svg)](https://pypi.python.org/pypi/pygtfs)
+
+%prep
+%autosetup -n pygtfs-0.1.7
+
+%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-pygtfs -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.7-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..c83f0c5
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d6c9b89ed775bb94ffeef8bb8f6a0d6c pygtfs-0.1.7.tar.gz