diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-download-jenkins-build-log.spec | 235 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 237 insertions, 0 deletions
@@ -0,0 +1 @@ +/download-jenkins-build-log-0.0.1a7.tar.gz diff --git a/python-download-jenkins-build-log.spec b/python-download-jenkins-build-log.spec new file mode 100644 index 0000000..d9eeecb --- /dev/null +++ b/python-download-jenkins-build-log.spec @@ -0,0 +1,235 @@ +%global _empty_manifest_terminate_build 0 +Name: python-download-jenkins-build-log +Version: 0.0.1a7 +Release: 1 +Summary: Command-line utility for downloading Jenkins job console logs +License: Apache Software License +URL: https://github.com/bertold/download-jenkins-build-log +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1f/b5/fe49c704737e2c13103313c777fbaabc44893c67b917d1e4e2b0ccda91ab/download-jenkins-build-log-0.0.1a7.tar.gz +BuildArch: noarch + +Requires: python3-requests + +%description +# download-jenkins-build-log utility + + + +This is a simple tool that enables downloading console output files +from Jenkins jobs. Freestyle, pipeline and matrix jobs are supported. + +## Pre-requisites + +Python 3.3 or later + +## Installation + +``` +pip3 install download-jenkins-build-log +``` + + + +## Basic Usage + +Use +```bash +download-jenkins-build-log -h +``` +to see all the available options. + +For example, to download the console log of a freestyle project `my-freestyle-job` +with the build number `123` into the target directory of `logs` from the Jenkins +instance at `https://myjenkins.example.com:8080`, use the following command line: +```bash +download-jenkins-build-log --url https://myjenkins.example.com:8080 --build 123 --directory logs my-freestyle-job +``` + +## Authentication + +You may use the ```--login``` to set the user name and the ```--token``` to set +the password or API token to access Jenkins. Jenkins documentation recommends +creating an [API token](https://wiki.jenkins.io/display/JENKINS/Authenticating+scripted+clients) +to use with tools. + +Alternatively, you can also provide credentials with the following environment +variables. + +| Environment variable name | Description | +|--------------------------------------------|-----------------------| +| ```DOWNLOAD_JENKINS_BUILD_LOG_LOGIN``` | login name | +| ```DOWNLOAD_JENKINS_BUILD_LOG_API_TOKEN``` | password or API token | + +## Return Codes + +The tool will return `0` in case of successful execution, and `-1` in case of an error. + + + + +%package -n python3-download-jenkins-build-log +Summary: Command-line utility for downloading Jenkins job console logs +Provides: python-download-jenkins-build-log +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-download-jenkins-build-log +# download-jenkins-build-log utility + + + +This is a simple tool that enables downloading console output files +from Jenkins jobs. Freestyle, pipeline and matrix jobs are supported. + +## Pre-requisites + +Python 3.3 or later + +## Installation + +``` +pip3 install download-jenkins-build-log +``` + + + +## Basic Usage + +Use +```bash +download-jenkins-build-log -h +``` +to see all the available options. + +For example, to download the console log of a freestyle project `my-freestyle-job` +with the build number `123` into the target directory of `logs` from the Jenkins +instance at `https://myjenkins.example.com:8080`, use the following command line: +```bash +download-jenkins-build-log --url https://myjenkins.example.com:8080 --build 123 --directory logs my-freestyle-job +``` + +## Authentication + +You may use the ```--login``` to set the user name and the ```--token``` to set +the password or API token to access Jenkins. Jenkins documentation recommends +creating an [API token](https://wiki.jenkins.io/display/JENKINS/Authenticating+scripted+clients) +to use with tools. + +Alternatively, you can also provide credentials with the following environment +variables. + +| Environment variable name | Description | +|--------------------------------------------|-----------------------| +| ```DOWNLOAD_JENKINS_BUILD_LOG_LOGIN``` | login name | +| ```DOWNLOAD_JENKINS_BUILD_LOG_API_TOKEN``` | password or API token | + +## Return Codes + +The tool will return `0` in case of successful execution, and `-1` in case of an error. + + + + +%package help +Summary: Development documents and examples for download-jenkins-build-log +Provides: python3-download-jenkins-build-log-doc +%description help +# download-jenkins-build-log utility + + + +This is a simple tool that enables downloading console output files +from Jenkins jobs. Freestyle, pipeline and matrix jobs are supported. + +## Pre-requisites + +Python 3.3 or later + +## Installation + +``` +pip3 install download-jenkins-build-log +``` + + + +## Basic Usage + +Use +```bash +download-jenkins-build-log -h +``` +to see all the available options. + +For example, to download the console log of a freestyle project `my-freestyle-job` +with the build number `123` into the target directory of `logs` from the Jenkins +instance at `https://myjenkins.example.com:8080`, use the following command line: +```bash +download-jenkins-build-log --url https://myjenkins.example.com:8080 --build 123 --directory logs my-freestyle-job +``` + +## Authentication + +You may use the ```--login``` to set the user name and the ```--token``` to set +the password or API token to access Jenkins. Jenkins documentation recommends +creating an [API token](https://wiki.jenkins.io/display/JENKINS/Authenticating+scripted+clients) +to use with tools. + +Alternatively, you can also provide credentials with the following environment +variables. + +| Environment variable name | Description | +|--------------------------------------------|-----------------------| +| ```DOWNLOAD_JENKINS_BUILD_LOG_LOGIN``` | login name | +| ```DOWNLOAD_JENKINS_BUILD_LOG_API_TOKEN``` | password or API token | + +## Return Codes + +The tool will return `0` in case of successful execution, and `-1` in case of an error. + + + + +%prep +%autosetup -n download-jenkins-build-log-0.0.1a7 + +%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-download-jenkins-build-log -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.1a7-1 +- Package Spec generated @@ -0,0 +1 @@ +70b83f53b05df0d547b4599854ef9214 download-jenkins-build-log-0.0.1a7.tar.gz |