diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 16:53:50 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 16:53:50 +0000 |
commit | 301f46665ab380d5e4fe28c5616e26859171b349 (patch) | |
tree | ba4817df439bf623dc8e6501852def99d365ae84 /python-conda-pack.spec | |
parent | 8f5280f4bc96e4c8d880050e8e2df4f11a53b01b (diff) |
automatic import of python-conda-pack
Diffstat (limited to 'python-conda-pack.spec')
-rw-r--r-- | python-conda-pack.spec | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/python-conda-pack.spec b/python-conda-pack.spec new file mode 100644 index 0000000..cd33cd1 --- /dev/null +++ b/python-conda-pack.spec @@ -0,0 +1,126 @@ +%global _empty_manifest_terminate_build 0 +Name: python-conda-pack +Version: 0.6.0 +Release: 1 +Summary: Package conda environments for redistribution +License: BSD +URL: https://conda.github.io/conda-pack/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/65/2c/2b9d8ac4f49049fead592b7d65eb884370b63c1be5b3ae697371fe0dd3d7/conda-pack-0.6.0.tar.gz +BuildArch: noarch + + +%description +# Conda-Pack + +`conda-pack` is a command line tool for creating relocatable conda +environments. This is useful for deploying code in a consistent environment, +potentially in locations where python or conda isn't already installed. + +See the <a href="https://conda.github.io/conda-pack/">documentation</a> +for more information. + +Conda-pack is offered under a New BSD license; see the +<a href="https://github.com/conda/conda-pack/blob/master/LICENSE.txt">license file</a>. + +## Build status + +| [](https://github.com/conda/conda-pack/actions) [](https://codecov.io/gh/conda/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| --- | :-: | +| [`conda install ctools/label/dev::conda-pack`](https://anaconda.org/ctools/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| [`conda install defaults::conda-pack`](https://anaconda.org/anaconda/conda-pack) | [](https://anaconda.org/anaconda/conda-pack) | +| [`conda install conda-forge::conda-pack`](https://anaconda.org/conda-forge/conda-pack) | [](https://anaconda.org/conda-forge/conda-pack) | + +%package -n python3-conda-pack +Summary: Package conda environments for redistribution +Provides: python-conda-pack +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-conda-pack +# Conda-Pack + +`conda-pack` is a command line tool for creating relocatable conda +environments. This is useful for deploying code in a consistent environment, +potentially in locations where python or conda isn't already installed. + +See the <a href="https://conda.github.io/conda-pack/">documentation</a> +for more information. + +Conda-pack is offered under a New BSD license; see the +<a href="https://github.com/conda/conda-pack/blob/master/LICENSE.txt">license file</a>. + +## Build status + +| [](https://github.com/conda/conda-pack/actions) [](https://codecov.io/gh/conda/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| --- | :-: | +| [`conda install ctools/label/dev::conda-pack`](https://anaconda.org/ctools/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| [`conda install defaults::conda-pack`](https://anaconda.org/anaconda/conda-pack) | [](https://anaconda.org/anaconda/conda-pack) | +| [`conda install conda-forge::conda-pack`](https://anaconda.org/conda-forge/conda-pack) | [](https://anaconda.org/conda-forge/conda-pack) | + +%package help +Summary: Development documents and examples for conda-pack +Provides: python3-conda-pack-doc +%description help +# Conda-Pack + +`conda-pack` is a command line tool for creating relocatable conda +environments. This is useful for deploying code in a consistent environment, +potentially in locations where python or conda isn't already installed. + +See the <a href="https://conda.github.io/conda-pack/">documentation</a> +for more information. + +Conda-pack is offered under a New BSD license; see the +<a href="https://github.com/conda/conda-pack/blob/master/LICENSE.txt">license file</a>. + +## Build status + +| [](https://github.com/conda/conda-pack/actions) [](https://codecov.io/gh/conda/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| --- | :-: | +| [`conda install ctools/label/dev::conda-pack`](https://anaconda.org/ctools/conda-pack) | [](https://anaconda.org/ctools/conda-pack) | +| [`conda install defaults::conda-pack`](https://anaconda.org/anaconda/conda-pack) | [](https://anaconda.org/anaconda/conda-pack) | +| [`conda install conda-forge::conda-pack`](https://anaconda.org/conda-forge/conda-pack) | [](https://anaconda.org/conda-forge/conda-pack) | + +%prep +%autosetup -n conda-pack-0.6.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-conda-pack -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.0-1 +- Package Spec generated |