commit: e80d0942ce0c775565100b2cb184ce5ff21e375b Author: Yixun Lan <dlan <AT> gentoo <DOT> org> AuthorDate: Mon Sep 18 10:50:59 2023 +0000 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org> CommitDate: Mon Sep 18 10:53:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e80d0942
dev-vcs/pwclient: add 2.6.2, revive this package add myself as maintainer Signed-off-by: Yixun Lan <dlan <AT> gentoo.org> dev-vcs/pwclient/Manifest | 1 + dev-vcs/pwclient/metadata.xml | 16 ++++++++++++++++ dev-vcs/pwclient/pwclient-2.6.2.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-vcs/pwclient/Manifest b/dev-vcs/pwclient/Manifest new file mode 100644 index 000000000000..f002c2131794 --- /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 000000000000..1b713c1e2270 --- /dev/null +++ b/dev-vcs/pwclient/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <longdescription> + pwclient is a VCS-agnostic tool for interacting with Patchwork, + the web-based patch tracking system. + </longdescription> + <maintainer type="person"> + <email>[email protected]</email> + <name>Yixun Lan</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="github">getpatchwork/pwclient</remote-id> + </upstream> +</pkgmetadata> 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 000000000000..6ffd451e343d --- /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 +}
