Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-templates/
Date: Sun, 06 Nov 2022 08:53:45
Message-Id: 1667724761.12977a1737a894fae0fc2aad32203e4cd62abacb.matthew@gentoo
1 commit: 12977a1737a894fae0fc2aad32203e4cd62abacb
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 08:45:32 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 08:52:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12977a17
7
8 sci-electronics/kicad-templates: add 6.0.9
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 sci-electronics/kicad-templates/Manifest | 1 +
13 .../kicad-templates/kicad-templates-6.0.9.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/sci-electronics/kicad-templates/Manifest b/sci-electronics/kicad-templates/Manifest
17 index fa2906ea17ed..b5bc4b9a64b9 100644
18 --- a/sci-electronics/kicad-templates/Manifest
19 +++ b/sci-electronics/kicad-templates/Manifest
20 @@ -2,3 +2,4 @@ DIST kicad-templates-5.1.12.tar.bz2 1552173 BLAKE2B 51791729e049aa835f15b80f783d
21 DIST kicad-templates-6.0.6.tar.gz 1057646 BLAKE2B 3bca2c6557ea8879d53a24a9a97872235c7d6289259936744a098745d0aaca9c2e397d471aa738d0007813c77e8a299c2975393bc0c0e62212be293cd210c049 SHA512 b9c4df8b7da9f5e3405a942c3afb09f5c387e311927042889211fb3c3a2a4610a1ccdc94ca2c1e1ae06e351617b15882adf5899f6dbfb392611feb5711e5be92
22 DIST kicad-templates-6.0.7.tar.gz 1057666 BLAKE2B 62b6d6b93cf94c6085c69f349259eeaf9d7fdb9aa9faf631c4ee89de20d9f2c3d70e6afa9ff90ccaf9bbb3ad1877907d375ae6777dda3a841d3e263ea9edf2d6 SHA512 c04f2754d2ed8e18fdb054ecaa900a80f8f937096513dbe0a9dbd89c341490657ad673488bf9f3a3d0850861c99524127128b8efb1283e2df3feefcea8806d53
23 DIST kicad-templates-6.0.8.tar.gz 1057692 BLAKE2B bb51c1934d1af16f90b3671ebed67b7bd027f660f3a13c8de29e2ac34dae1e7bacb99bd6398f17fd8a709858128431cb2f898f413c327cfa0acb89a04c3afc05 SHA512 6d7d05eb2482fe326ca242db74b65a1ffe84ca4eddd89ce2bdcb160b85ef94e1835d7ed3c006591fd2e92346c5379b1a4fe3a52dd25947dadbb59ce363aeb2ce
24 +DIST kicad-templates-6.0.9.tar.gz 1057613 BLAKE2B c2c0c78093995629216cbcb93c40a05e1494da90a6cb91909e54fcb115fb7d6e10b3015a94200fef61407a6beccdc0f2bea84319531b39562bdf19ccf243a726 SHA512 f5e82599dc8532b2f286d62e650084b4d0470308a2cf447831027a85ea1028587342d51d4005018449f17fcbc9bd9f6ed850d7e3818c88692906790ef8981471
25
26 diff --git a/sci-electronics/kicad-templates/kicad-templates-6.0.9.ebuild b/sci-electronics/kicad-templates/kicad-templates-6.0.9.ebuild
27 new file mode 100644
28 index 000000000000..fcdb94bb2f13
29 --- /dev/null
30 +++ b/sci-electronics/kicad-templates/kicad-templates-6.0.9.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit cmake
38 +
39 +DESCRIPTION="Electronic Schematic and PCB design tools project templates"
40 +HOMEPAGE="https://github.com/kicad/kicad-templates"
41 +if [[ ${PV} == 9999 ]]; then
42 + EGIT_REPO_URI="https://gitlab.com/kicad/libraries/${PN}.git"
43 + inherit git-r3
44 +else
45 + MY_PV="${PV/_rc/-rc}"
46 + MY_P="${PN}-${MY_PV}"
47 + SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${MY_PV}/${MY_P}.tar.gz -> ${P}.tar.gz"
48 +
49 + if [[ ${PV} != *_rc* ]] ; then
50 + KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
51 + fi
52 +
53 + S="${WORKDIR}/${PN}-${MY_PV}"
54 +fi
55 +
56 +LICENSE="CC-BY-SA-4.0"
57 +SLOT="0"
58 +
59 +RDEPEND=">=sci-electronics/kicad-6.0.0"