summaryrefslogtreecommitdiff
path: root/python-inmanta-dev-dependencies.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-17 03:17:08 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-17 03:17:08 +0000
commit7ce899f111fb8d2c3e7eafec1dd210b4573fc67f (patch)
treed665169073bc3b445836818e33b91501523f6cbc /python-inmanta-dev-dependencies.spec
parentda7d34d97e62945c19c6034e0d614480d996686c (diff)
automatic import of python-inmanta-dev-dependencies
Diffstat (limited to 'python-inmanta-dev-dependencies.spec')
-rw-r--r--python-inmanta-dev-dependencies.spec105
1 files changed, 105 insertions, 0 deletions
diff --git a/python-inmanta-dev-dependencies.spec b/python-inmanta-dev-dependencies.spec
new file mode 100644
index 0000000..8625399
--- /dev/null
+++ b/python-inmanta-dev-dependencies.spec
@@ -0,0 +1,105 @@
+%global _empty_manifest_terminate_build 0
+Name: python-inmanta-dev-dependencies
+Version: 2.70.0
+Release: 1
+Summary: Package collecting all common dev dependencies of inmanta modules and extensions to synchronize dependency versions.
+License: Apache-2.0
+URL: https://pypi.org/project/inmanta-dev-dependencies/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/48/d5/1d6d7b45914659bdf89e6ff476fd050acd7199b2a23cf62a299e12fff4b5/inmanta_dev_dependencies-2.70.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-Sphinx
+Requires: python3-asyncpg
+Requires: python3-black
+Requires: python3-flake8
+Requires: python3-flake8-black
+Requires: python3-flake8-copyright
+Requires: python3-flake8-isort
+Requires: python3-inmanta-sphinx
+Requires: python3-isort
+Requires: python3-lxml
+Requires: python3-mypy
+Requires: python3-myst_parser
+Requires: python3-pep8-naming
+Requires: python3-psycopg
+Requires: python3-pyadr
+Requires: python3-pytest
+Requires: python3-pytest-asyncio
+Requires: python3-pytest-cover
+Requires: python3-pytest-env
+Requires: python3-pytest-inmanta
+Requires: python3-pytest-inmanta-extensions
+Requires: python3-pytest-instafail
+Requires: python3-pytest-postgresql
+Requires: python3-pytest-randomly
+Requires: python3-pytest-sugar
+Requires: python3-pytest-timeout
+Requires: python3-pytest-xdist
+Requires: python3-sphinx-argparse
+Requires: python3-sphinx-autodoc-annotation
+Requires: python3-sphinx-click
+Requires: python3-sphinxcontrib-redoc
+Requires: python3-sphinxcontrib-serializinghtml
+Requires: python3-tornado
+
+%description
+
+
+%package -n python3-inmanta-dev-dependencies
+Summary: Package collecting all common dev dependencies of inmanta modules and extensions to synchronize dependency versions.
+Provides: python-inmanta-dev-dependencies
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-inmanta-dev-dependencies
+
+
+%package help
+Summary: Development documents and examples for inmanta-dev-dependencies
+Provides: python3-inmanta-dev-dependencies-doc
+%description help
+
+
+%prep
+%autosetup -n inmanta-dev-dependencies-2.70.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-inmanta-dev-dependencies -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 17 2023 Python_Bot <Python_Bot@openeuler.org> - 2.70.0-1
+- Package Spec generated