mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 23:08:09 -07:00
dev-python/jenkins-webapi: Drop old
Closes: https://bugs.gentoo.org/628666
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST jenkins-1.596.3.war 68396864 BLAKE2B e391ffd919544f49570ba5bf76d61c91155f193e575b5ff11870153d9bdc3f997560f41de00dda8d1ffec5c5fec544c187442e8a5ff64d249dd8277257339641 SHA512 8652d4d18e3258208fe190c4a6aa5586faa66f690d7d7f7369c5490a587e3ec5e074dc22f2c8caedf5e5335f5b8f511717b2d6eb667a61e9948a703bf80310fe
|
||||
DIST jenkins-webapi-0.3.2.tar.gz 14831 BLAKE2B b2ef90ca3691e1e473b9b628a5be20c935a1ec79a356905f202933fe5b28ef3c8fc24305dda5e5a20b199b624de8538e35356c51abe15da81ad0774b699c91c9 SHA512 2ac59c90bba48406cc9fe5595505d5836eab1147869fbc8c06577767891d37904bffa5516316af0cb25f7f9193ae5277c0219ecc9daf5e0efa093fd449d1f4f0
|
||||
DIST jenkins-webapi-0.4.0.tar.gz 16149 SHA256 7515b1e0503e07d50088e32205873146eda3b1132d8a6508e28f4e935c41e8b2 SHA512 ae40366e6fb6414391287ffa42ec92fba1971f070ac718d521c5b10f6e47d14ceea15a8c71f559380356530fdb2f826e08a6c611813b407dad73dab39fcddfeb WHIRLPOOL 30abf44c7d1ec6884baa3481c9d2f234f46f812d5ee6a8d9e49de8bc367ffef9c58f7653dcd30c24a308372cb8f6211e51f40e441e17f9ef15abd222de5d775b
|
||||
DIST jenkins-webapi-0.5.0.tar.gz 78813 BLAKE2B 0d017fd05a60bcc5d1333215e97c2d2ade658384d75a3dbb41c84e286d2b4c86d8383b28ba75e05b7f1ac5d153a46cb3c165cea063993f7aace79566dd25b4d9 SHA512 dde91231e6fe6713eb5953efa038d44a820b51968c2b0591e5dd064c7a35c7dab4d1780370dc97a0a671b3d3cb7d8a48e571c7c0af4f0d5f8a65430c8c074eb3
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
--- tests/install.py.orig 2014-11-23 21:21:29.000000000 +0100
|
||||
+++ tests/install.py 2015-01-28 18:29:42.750933314 +0100
|
||||
@@ -23,7 +23,7 @@
|
||||
self.destdir = destdir
|
||||
|
||||
self.logfile = logfile if logfile else pjoin(self.destdir, 'jenkins.log')
|
||||
- self.jenkinswar = pjoin(self.destdir, 'jenkins.war')
|
||||
+ self.jenkinswar = pjoin('/opt/jenkins', 'jenkins.war')
|
||||
self.jenkinscli = pjoin(self.destdir, 'jenkins-cli.jar')
|
||||
self.homedir = pjoin(self.destdir, 'home')
|
||||
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
--- tests/conftest.py.orig 2014-11-23 21:21:29.000000000 +0100
|
||||
+++ tests/conftest.py 2015-01-28 18:37:25.388067816 +0100
|
||||
@@ -1,3 +1,4 @@
|
||||
+# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import time
|
||||
import pytest
|
||||
@@ -1,49 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_4} pypy )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Module for interacting with the Jenkins CI server"
|
||||
HOMEPAGE="https://github.com/gvalkov/jenkins-webapi"
|
||||
SRC_URI="https://github.com/gvalkov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc test"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.4.3[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( ${RDEPEND}
|
||||
dev-util/jenkins-bin
|
||||
>=dev-python/pytest-2.6.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/termcolor-1.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pytest-cov-1.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/httmock-1.2.2[${PYTHON_USEDEP}] )
|
||||
doc? (
|
||||
>=dev-python/sphinx-1.2.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/alabaster-0.6.1[${PYTHON_USEDEP}] )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/local_jenkins_war.patch
|
||||
"${FILESDIR}"/tests_py27.patch
|
||||
)
|
||||
|
||||
python_test() {
|
||||
emake test
|
||||
}
|
||||
|
||||
python_compile_all() {
|
||||
use doc && emake -C doc html
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( doc/_build/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
@@ -1,46 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_4} pypy )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Module for interacting with the Jenkins CI server"
|
||||
HOMEPAGE="https://github.com/gvalkov/jenkins-webapi"
|
||||
SRC_URI="https://dev.gentoo.org/~idella4/tarballs/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc test"
|
||||
RESTRICT="mirror"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.4.3[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( ${RDEPEND}
|
||||
dev-util/jenkins-bin
|
||||
>=dev-python/pytest-2.6.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/termcolor-1.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pytest-cov-1.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/httmock-1.2.2[${PYTHON_USEDEP}] )
|
||||
doc? (
|
||||
>=dev-python/sphinx-1.2.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/alabaster-0.6.1[${PYTHON_USEDEP}] )
|
||||
"
|
||||
PATCHES=( "${FILESDIR}"/local_jenkins_war.patch )
|
||||
|
||||
python_test() {
|
||||
emake test
|
||||
}
|
||||
|
||||
python_compile_all() {
|
||||
use doc && emake -C doc html
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( doc/_build/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Reference in New Issue
Block a user