diff --git a/dev-vcs/pwclient/Manifest b/dev-vcs/pwclient/Manifest new file mode 100644 index 0000000000000..f002c21317941 --- /dev/null +++ b/dev-vcs/pwclient/Manifest @@ -0,0 +1 @@ +DIST pwclient-2.6.2.gh.tar.gz 33813 BLAKE2B 2bbd9deb9d3550d8e38e8552012cc206ce6a36f6c9c98418fa161daa6ec81b9ef36ec621126b9619ef4209914e23a051a8516f2e9f6c5ba2f21af50bf2ba7b97 SHA512 2763004b97de3c2801ade91df69fdda537d1b7fd39be69b9ca0857a0c0f0a535fb1f42783a073838d535d12f2a58983319ba36f8e869b194233adda617cdd0c6 diff --git a/dev-vcs/pwclient/metadata.xml b/dev-vcs/pwclient/metadata.xml new file mode 100644 index 0000000000000..1b713c1e2270d --- /dev/null +++ b/dev-vcs/pwclient/metadata.xml @@ -0,0 +1,16 @@ + + + + + pwclient is a VCS-agnostic tool for interacting with Patchwork, + the web-based patch tracking system. + + + dlan@gentoo.org + Yixun Lan + + + + getpatchwork/pwclient + + diff --git a/dev-vcs/pwclient/pwclient-2.6.2.ebuild b/dev-vcs/pwclient/pwclient-2.6.2.ebuild new file mode 100644 index 0000000000000..6ffd451e343d5 --- /dev/null +++ b/dev-vcs/pwclient/pwclient-2.6.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="The command-line client for the patchwork patch tracking tool" +HOMEPAGE="https://github.com/getpatchwork/pwclient" +SRC_URI="https://github.com/getpatchwork/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="dev-python/pbr[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +src_compile() { + export PBR_VERSION=${PV} + distutils-r1_src_compile +}