summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <copr-devel@lists.fedorahosted.org>2023-02-24 04:30:26 +0000
committerCoprDistGit <copr-devel@lists.fedorahosted.org>2023-02-24 04:30:26 +0000
commitac91765f1c029465ef9def68d5a5449b81a8bc7d (patch)
treeb8cc19249317d15a77edc791ef4ee1390432b77c
parentb5b247fdb8bbfdf00eb062a35a1b1c38cbcf98a7 (diff)
automatic import of python3-colcon-cdopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-colcon-cd.spec73
-rw-r--r--sources1
3 files changed, 75 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f4d3d69 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/colcon-cd-0.1.1.tar.gz
diff --git a/python-colcon-cd.spec b/python-colcon-cd.spec
new file mode 100644
index 0000000..08616bf
--- /dev/null
+++ b/python-colcon-cd.spec
@@ -0,0 +1,73 @@
+%global _empty_manifest_terminate_build 0
+Name: python-colcon-cd
+Version: 0.1.1
+Release: 1
+Summary: A shell function for colcon to change the current working directory.
+License: Apache License, Version 2.0
+URL: https://colcon.readthedocs.io
+Source0: https://files.pythonhosted.org/packages/63/17/2ae72bad0acf22cc6dc1d0665cd3b8343629cba2e591e78d15d2c65dd9bc/colcon-cd-0.1.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-colcon-core
+Requires: python3-colcon-package-information
+
+%description
+A shell function for `colcon-core <https://github.com/colcon/colcon-core>`_ to change the current working directory.
+
+%package -n python3-colcon-cd
+Summary: A shell function for colcon to change the current working directory.
+Provides: python-colcon-cd
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+%description -n python3-colcon-cd
+A shell function for `colcon-core <https://github.com/colcon/colcon-core>`_ to change the current working directory.
+
+%package help
+Summary: Development documents and examples for colcon-cd
+Provides: python3-colcon-cd-doc
+%description help
+A shell function for `colcon-core <https://github.com/colcon/colcon-core>`_ to change the current working directory.
+
+%prep
+%autosetup -n colcon-cd-0.1.1
+
+%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-cd -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri Feb 24 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8dcd4ae
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+90be8dc9deb2420bb295e897b0b7cab2 colcon-cd-0.1.1.tar.gz