dev-vcs/pwclient: add 2.6.2, revive this package

add myself as maintainer

Signed-off-by: Yixun Lan <dlan@gentoo.org>
This commit is contained in:
Yixun Lan
2023-09-18 10:50:59 +00:00
parent af53d46388
commit e80d0942ce
3 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pwclient-2.6.2.gh.tar.gz 33813 BLAKE2B 2bbd9deb9d3550d8e38e8552012cc206ce6a36f6c9c98418fa161daa6ec81b9ef36ec621126b9619ef4209914e23a051a8516f2e9f6c5ba2f21af50bf2ba7b97 SHA512 2763004b97de3c2801ade91df69fdda537d1b7fd39be69b9ca0857a0c0f0a535fb1f42783a073838d535d12f2a58983319ba36f8e869b194233adda617cdd0c6

View File

@@ -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>dlan@gentoo.org</email>
<name>Yixun Lan</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="github">getpatchwork/pwclient</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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
}