1 |
commit: 64a753cf21a0dc7f85f971bff4e7e6c7f992019e |
2 |
Author: Michał Górny <mgorny <AT> gentoo <DOT> org> |
3 |
AuthorDate: Mon Nov 28 06:04:12 2022 +0000 |
4 |
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> |
5 |
CommitDate: Mon Nov 28 06:05:34 2022 +0000 |
6 |
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64a753cf |
7 |
|
8 |
app-portage/pycargoebuild: Bump to 0.5.1 |
9 |
|
10 |
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> |
11 |
|
12 |
app-portage/pycargoebuild/Manifest | 1 + |
13 |
.../pycargoebuild/pycargoebuild-0.5.1.ebuild | 32 ++++++++++++++++++++++ |
14 |
2 files changed, 33 insertions(+) |
15 |
|
16 |
diff --git a/app-portage/pycargoebuild/Manifest b/app-portage/pycargoebuild/Manifest |
17 |
index f6551d9e7b6a..7308492c546b 100644 |
18 |
--- a/app-portage/pycargoebuild/Manifest |
19 |
+++ b/app-portage/pycargoebuild/Manifest |
20 |
@@ -1,3 +1,4 @@ |
21 |
DIST pycargoebuild-0.3.0.gh.tar.gz 17362 BLAKE2B 5258aa85191a5b9d8c5fb9c0761e90d1c77642cb9a1c4b892ef0cbfcebfb6c24518cd56844658b8814bad969efe2b6389444d2432eed5eb5ba5254f143ead4bd SHA512 ea6519ba774d44ae7aa5420ce9b48f06d3be24615a431b29cdd4fafaa74f11abaac89cc605513ad40e0bba5f4b319655b350281ea0596a903ad9a4d24eb98040 |
22 |
DIST pycargoebuild-0.4.0.gh.tar.gz 16285 BLAKE2B 338657db39fd8b94d87eaa7b1d5d48972d26cad351e632f2815140d08004658c260ab6c0d4bd7068f2215a17c1dae23b47b9408949f5fc35f62ef68ec91b52fe SHA512 d0716caea751c0ed97be094d7438b71fbf78c767f9e8bc89dc798722979bda5ea99f65352332a97906b85d86eabdc0d170a808b687cbb88525fdbe85393649e2 |
23 |
DIST pycargoebuild-0.5.0.gh.tar.gz 17528 BLAKE2B af87adeb2dedf6d6b8b6feab78aafba49c4480b2e09f0bb1e39812c7e1a34010594c3641de99c08c83f1e826725ef7fa077d0bc15a3acbc35cdc2211600a819a SHA512 ceceeecb49ea101c7a191c1c608a77a6a95d17f293a8dde2fcc1ec5d5fbe7034671eb7662c0d4e167c990ec9a9e6af95845e20a483c3ae667624da0121430642 |
24 |
+DIST pycargoebuild-0.5.1.gh.tar.gz 17587 BLAKE2B f5c35acc43cfcc1a844f9bf0f01b72ca62ff07531dba8911e9a4ec672586760c9fee93ae9b9a9cb4becd4702d2caabc8f1a02a4b702356708ec4cf3f1780b577 SHA512 eb35ddc93a34fd0a857f28166a5e1cdb64f3e9b13f8182fde79292e93f30d6218eec2f0f2933c763c37f398b09952550e208a3914fb47d8d2b6a755ae003a983 |
25 |
|
26 |
diff --git a/app-portage/pycargoebuild/pycargoebuild-0.5.1.ebuild b/app-portage/pycargoebuild/pycargoebuild-0.5.1.ebuild |
27 |
new file mode 100644 |
28 |
index 000000000000..ddee9ac385b4 |
29 |
--- /dev/null |
30 |
+++ b/app-portage/pycargoebuild/pycargoebuild-0.5.1.ebuild |
31 |
@@ -0,0 +1,32 @@ |
32 |
+# Copyright 2022 Gentoo Authors |
33 |
+# Distributed under the terms of the GNU General Public License v2 |
34 |
+ |
35 |
+EAPI=8 |
36 |
+ |
37 |
+DISTUTILS_USE_PEP517=flit |
38 |
+PYTHON_COMPAT=( python3_{8..11} pypy3 ) |
39 |
+ |
40 |
+inherit distutils-r1 |
41 |
+ |
42 |
+DESCRIPTION="A generator for Rust/Cargo ebuilds written in Python" |
43 |
+HOMEPAGE=" |
44 |
+ https://github.com/projg2/pycargoebuild/ |
45 |
+ https://pypi.org/project/pycargoebuild/ |
46 |
+" |
47 |
+SRC_URI=" |
48 |
+ https://github.com/projg2/pycargoebuild/archive/v${PV}.tar.gz |
49 |
+ -> ${P}.gh.tar.gz |
50 |
+" |
51 |
+ |
52 |
+LICENSE="MIT" |
53 |
+SLOT="0" |
54 |
+KEYWORDS="~amd64" |
55 |
+ |
56 |
+RDEPEND=" |
57 |
+ dev-python/license-expression[${PYTHON_USEDEP}] |
58 |
+ $(python_gen_cond_dep ' |
59 |
+ dev-python/tomli[${PYTHON_USEDEP}] |
60 |
+ ' 3.8 3.9 3.10) |
61 |
+" |
62 |
+ |
63 |
+distutils_enable_tests pytest |