diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 02:06:47 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-09 02:06:47 +0000 |
commit | 40b49fe743105991b8476f58945c2ffc16e3e6a9 (patch) | |
tree | b136c55c901708c4d741cd7371ec359ba9354409 | |
parent | 0127c286a9ffa0af3fb6eb45a82ffbba2dea1f9e (diff) |
automatic import of python-colcon-bazel
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-colcon-bazel.spec | 84 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 86 insertions, 0 deletions
@@ -0,0 +1 @@ +/colcon-bazel-0.1.0.tar.gz diff --git a/python-colcon-bazel.spec b/python-colcon-bazel.spec new file mode 100644 index 0000000..30be9e7 --- /dev/null +++ b/python-colcon-bazel.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: python-colcon-bazel +Version: 0.1.0 +Release: 1 +Summary: Extension for colcon to support Bazel packages. +License: Apache License, Version 2.0 +URL: https://colcon.readthedocs.io +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/03/58/2349cd0cac78e7164c946788324c9944e705c2af28d00c056ac03f6fc901/colcon-bazel-0.1.0.tar.gz +BuildArch: noarch + + +%description +[](https://travis-ci.org/colcon/colcon-bazel) +[](https://ci.appveyor.com/project/Theosakamg/colcon-bazel) +[](https://codecov.io/gh/colcon/colcon-bazel) +[](https://pypi.python.org/pypi/colcon_bazel/) +An extension for [colcon-core](https://github.com/colcon/colcon-core) to support [Bazel](https://bazel.build) projects. + +%package -n python3-colcon-bazel +Summary: Extension for colcon to support Bazel packages. +Provides: python-colcon-bazel +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-colcon-bazel +[](https://travis-ci.org/colcon/colcon-bazel) +[](https://ci.appveyor.com/project/Theosakamg/colcon-bazel) +[](https://codecov.io/gh/colcon/colcon-bazel) +[](https://pypi.python.org/pypi/colcon_bazel/) +An extension for [colcon-core](https://github.com/colcon/colcon-core) to support [Bazel](https://bazel.build) projects. + +%package help +Summary: Development documents and examples for colcon-bazel +Provides: python3-colcon-bazel-doc +%description help +[](https://travis-ci.org/colcon/colcon-bazel) +[](https://ci.appveyor.com/project/Theosakamg/colcon-bazel) +[](https://codecov.io/gh/colcon/colcon-bazel) +[](https://pypi.python.org/pypi/colcon_bazel/) +An extension for [colcon-core](https://github.com/colcon/colcon-core) to support [Bazel](https://bazel.build) projects. + +%prep +%autosetup -n colcon-bazel-0.1.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-colcon-bazel -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +25ec6b7588aec189a35481432430df95 colcon-bazel-0.1.0.tar.gz |