forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-portage/pycargoebuild: Bump to 0.5.3
Signed-off-by: Michał Górny <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST pycargoebuild-0.5.1.gh.tar.gz 17587 BLAKE2B f5c35acc43cfcc1a844f9bf0f01b72ca62ff07531dba8911e9a4ec672586760c9fee93ae9b9a9cb4becd4702d2caabc8f1a02a4b702356708ec4cf3f1780b577 SHA512 eb35ddc93a34fd0a857f28166a5e1cdb64f3e9b13f8182fde79292e93f30d6218eec2f0f2933c763c37f398b09952550e208a3914fb47d8d2b6a755ae003a983 | ||
DIST pycargoebuild-0.5.2.gh.tar.gz 18304 BLAKE2B f9150ee2532b9683be9c504397f6c396956aefd285784ff156aaec5d8ab7cb9bb71643271463dd237c357dd6d061fe67cc5dd2470085cf1faf79b4c62d839135 SHA512 56099598a6b97929029e7cb8f3d67c81d187b2a9811e78de384ab37ec28aec8649bfe61ca987ace82fc18925d77ba19c7c6e89d8537f37ea65bb0127566a6c2f | ||
DIST pycargoebuild-0.5.3.gh.tar.gz 19180 BLAKE2B 56d93ca65abd68e0c3f0b715ae9811f8428a8de99ff7f2689e42da4c1dfe5f74526014e7a91232602fec8dce4f329359cdeafdf47e9a9004898a3c731003acd3 SHA512 038759d67e4c45542fa07b21aa9f2237457ccb4d74565e3a8e744b3a978c38d5cbf2d86c28acba53c08062ad70a7a2ef45659129855b7242257b8ca4d2d69111 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=flit | ||
PYTHON_COMPAT=( python3_{8..11} pypy3 ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="A generator for Rust/Cargo ebuilds written in Python" | ||
HOMEPAGE=" | ||
https://github.com/projg2/pycargoebuild/ | ||
https://pypi.org/project/pycargoebuild/ | ||
" | ||
SRC_URI=" | ||
https://github.com/projg2/pycargoebuild/archive/v${PV}.tar.gz | ||
-> ${P}.gh.tar.gz | ||
" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND=" | ||
dev-python/license-expression[${PYTHON_USEDEP}] | ||
$(python_gen_cond_dep ' | ||
dev-python/tomli[${PYTHON_USEDEP}] | ||
' 3.8 3.9 3.10) | ||
" | ||
|
||
distutils_enable_tests pytest |