From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9625D138239 for ; Fri, 29 Jan 2021 18:59:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFA29E0AB2; Fri, 29 Jan 2021 18:59:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5663E0AB2 for ; Fri, 29 Jan 2021 18:59:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D03E340F83 for ; Fri, 29 Jan 2021 18:58:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24C11476 for ; Fri, 29 Jan 2021 18:58:57 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1611946732.e80f4a61c9de49a7a742ca1b65ce11f99dee0414.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/python-gitlab/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/python-gitlab/Manifest dev-vcs/python-gitlab/python-gitlab-2.6.0.ebuild X-VCS-Directories: dev-vcs/python-gitlab/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: e80f4a61c9de49a7a742ca1b65ce11f99dee0414 X-VCS-Branch: master Date: Fri, 29 Jan 2021 18:58:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0ce854f7-e7fc-4b21-83b7-a43a5553ad7f X-Archives-Hash: 38ff3cc2c019cd0cb077442fe5cc3f65 commit: e80f4a61c9de49a7a742ca1b65ce11f99dee0414 Author: William Hubbs gentoo org> AuthorDate: Fri Jan 29 18:58:00 2021 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Jan 29 18:58:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e80f4a61 dev-vcs/python-gitlab: 2.6.0 bump Signed-off-by: William Hubbs gentoo.org> dev-vcs/python-gitlab/Manifest | 1 + dev-vcs/python-gitlab/python-gitlab-2.6.0.ebuild | 36 ++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-vcs/python-gitlab/Manifest b/dev-vcs/python-gitlab/Manifest index f875efd5448..1a283609216 100644 --- a/dev-vcs/python-gitlab/Manifest +++ b/dev-vcs/python-gitlab/Manifest @@ -1 +1,2 @@ DIST python-gitlab-2.5.0.tar.gz 148916 BLAKE2B f870833a01adac08b71dc402bc11ba9c1be19c920735faf04de9bfca3b1a154706da4bc0475437997e3b03d8c9a56977a6691df05b750d64a1f8b964ecd05612 SHA512 7382f9ea2388c6916f3c7e63df137d73f0fdfb3890a8bbb47e766f3476b6febecd1dcbc588445ae1af1b5f17c9a3e6ed9a931fd9fff010c2c37967eab5440824 +DIST python-gitlab-2.6.0.tar.gz 153577 BLAKE2B 4fa0206faa601061fde257988362eca962c9e20f50e5ad57d602a76618581db646f26b035d4d86b9c460ef75f241fcbcdf360419b2e62ec6f95a664ab237d7d2 SHA512 b63dd4657b44fb484d114ceddc1d67465c17560978a8e6b09a9b14634ae6d80bf864b9b4583ddfc102c27c1082f4a015958c30944a734ec635761af524956fbe diff --git a/dev-vcs/python-gitlab/python-gitlab-2.6.0.ebuild b/dev-vcs/python-gitlab/python-gitlab-2.6.0.ebuild new file mode 100644 index 00000000000..e395f7feed1 --- /dev/null +++ b/dev-vcs/python-gitlab/python-gitlab-2.6.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Python command line interface to gitlab API" +HOMEPAGE="https://github.com/python-gitlab/python-gitlab/" + +if [[ ${PV} = *9999* ]]; then + EGIT_REPO_URI="https://github.com/python-gitlab/python-gitlab" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-3" +SLOT="0" +IUSE="test" + +BDEPEND="test? ( + dev-python/httmock[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] )" + +RDEPEND=">=dev-python/requests-2.25.1[${PYTHON_USEDEP}] + >=dev-python/requests-toolbelt-0.9.1[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest + +python_install_all() { + distutils-r1_python_install_all + dodoc -r *.rst docs +}