From 617165aa938e607df70d88e6ede405898c25d6c1 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Thu, 18 May 2023 03:32:45 +0000 Subject: automatic import of python-conan-sword-and-sorcery --- .gitignore | 1 + python-conan-sword-and-sorcery.spec | 111 ++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 113 insertions(+) create mode 100644 python-conan-sword-and-sorcery.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..8b09cdf 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/conan_sword_and_sorcery-0.0.dev134.tar.gz diff --git a/python-conan-sword-and-sorcery.spec b/python-conan-sword-and-sorcery.spec new file mode 100644 index 0000000..9fc2399 --- /dev/null +++ b/python-conan-sword-and-sorcery.spec @@ -0,0 +1,111 @@ +%global _empty_manifest_terminate_build 0 +Name: python-conan_sword_and_sorcery +Version: 0.0.dev134 +Release: 1 +Summary: Utilities to work with conan.io stuf +License: MIT +URL: https://gitlab.com/jgsogo/conan-sword-and-sorcery +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/35/c9/53ca9e5ae6b5b8b6649cc03097055a2f6dad3a5f3c1a059d48b2a8b35c4d/conan_sword_and_sorcery-0.0.dev134.tar.gz +BuildArch: noarch + + +%description +[![coverage](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/coverage.svg?job=coverage)](http://jgsogo.gitlab.io/conan-sword-and-sorcery/) +[![pipeline](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/pipeline.svg)](https://gitlab.com/jgsogo/conan-sword-and-sorcery/commits/master) +> **Status**: beta version. Under development +Utilities for [Conan The Frogarian](https://conan.io). At this moment it addressed +following tasks for your conan recipes: + * [Travis CI](https://travis-ci.org/) integration (with docker). + * [Appveyor](http://www.appveyor.com/) integration. + * Batch build for all local profiles. +This project is just a refurbish of [conan-package-tools](https://github.com/conan-io/conan-package-tools) +which is officially maintained by conan team. +To install, just type (or clone and install this repo): +```shell +$ pip install conan_sword_and_sorcery +``` + +%package -n python3-conan_sword_and_sorcery +Summary: Utilities to work with conan.io stuf +Provides: python-conan_sword_and_sorcery +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-conan_sword_and_sorcery +[![coverage](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/coverage.svg?job=coverage)](http://jgsogo.gitlab.io/conan-sword-and-sorcery/) +[![pipeline](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/pipeline.svg)](https://gitlab.com/jgsogo/conan-sword-and-sorcery/commits/master) +> **Status**: beta version. Under development +Utilities for [Conan The Frogarian](https://conan.io). At this moment it addressed +following tasks for your conan recipes: + * [Travis CI](https://travis-ci.org/) integration (with docker). + * [Appveyor](http://www.appveyor.com/) integration. + * Batch build for all local profiles. +This project is just a refurbish of [conan-package-tools](https://github.com/conan-io/conan-package-tools) +which is officially maintained by conan team. +To install, just type (or clone and install this repo): +```shell +$ pip install conan_sword_and_sorcery +``` + +%package help +Summary: Development documents and examples for conan_sword_and_sorcery +Provides: python3-conan_sword_and_sorcery-doc +%description help +[![coverage](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/coverage.svg?job=coverage)](http://jgsogo.gitlab.io/conan-sword-and-sorcery/) +[![pipeline](https://gitlab.com/jgsogo/conan-sword-and-sorcery/badges/master/pipeline.svg)](https://gitlab.com/jgsogo/conan-sword-and-sorcery/commits/master) +> **Status**: beta version. Under development +Utilities for [Conan The Frogarian](https://conan.io). At this moment it addressed +following tasks for your conan recipes: + * [Travis CI](https://travis-ci.org/) integration (with docker). + * [Appveyor](http://www.appveyor.com/) integration. + * Batch build for all local profiles. +This project is just a refurbish of [conan-package-tools](https://github.com/conan-io/conan-package-tools) +which is officially maintained by conan team. +To install, just type (or clone and install this repo): +```shell +$ pip install conan_sword_and_sorcery +``` + +%prep +%autosetup -n conan_sword_and_sorcery-0.0.dev134 + +%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-conan_sword_and_sorcery -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot - 0.0.dev134-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..5442b01 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +6e30c7e34523c85797f89cfe36055309 conan_sword_and_sorcery-0.0.dev134.tar.gz -- cgit v1.2.3