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-footprints/
Date: Sat, 05 Nov 2022 09:10:51
Message-Id: 1667638870.1693760f5a996482804d96deabf8da73aa1e6b3f.matthew@gentoo
1 commit: 1693760f5a996482804d96deabf8da73aa1e6b3f
2 Author: Zoltan Puskas <zoltan <AT> sinustrom <DOT> info>
3 AuthorDate: Sat Oct 8 01:35:15 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 5 09:01:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1693760f
7
8 sci-electronics/kicad-footprints: add 6.0.8
9
10 Signed-off-by: Zoltan Puskas <zoltan <AT> sinustrom.info>
11 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
12
13 sci-electronics/kicad-footprints/Manifest | 1 +
14 .../kicad-footprints/kicad-footprints-6.0.8.ebuild | 36 ++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/sci-electronics/kicad-footprints/Manifest b/sci-electronics/kicad-footprints/Manifest
18 index ea653a2182a4..1b3e91f0e3fe 100644
19 --- a/sci-electronics/kicad-footprints/Manifest
20 +++ b/sci-electronics/kicad-footprints/Manifest
21 @@ -1,3 +1,4 @@
22 DIST kicad-footprints-5.1.12.tar.bz2 3382783 BLAKE2B 6f7725bebd6099d86780ed2582aacfb3abff4db6065a6a17fcd7631782a0c2e1e8a23064f80cd95c79bbaca8da52003f01fce7e398e95596e45f15b144eeef7f SHA512 e717886dc742f37b626226065953a36829b50f9bf203efe1dbeab41d4dbe3a898bd65fbde9fa059ea9374ea92905faeb0ccd19dfb1a62f2d6a445c07f90b89a9
23 DIST kicad-footprints-6.0.6.tar.gz 31647789 BLAKE2B 3af7027987b25c4a3ee19925acaa539cea643656e1662f0b80ec76c807aca9ef7433228fc88cdd0c34b80e7bbb886abd5c11765983e9adc5b347ce01bd4b51c4 SHA512 6d93a90bfc0b246c70b336aa9265a051a33d8b490a81271fb85ab73cd19184a031f3429ce8ae9e1650ece475a30f0f283c43c5bb2d1f427b4129d4ed61480ac0
24 DIST kicad-footprints-6.0.7.tar.gz 31657956 BLAKE2B 127ac81c83841919903b300af89c2126e1f53ff1c03d6dcd2466eac8d4733da4f923831e24aa43fca2b5c6d9ee4389bd67f0bd2b4d300adb5356e261b14e897e SHA512 e0959846e057df46e38385d1fe71895930435fc51ad03bbc893481264d969d9739967b069855b59341388fec5458a4f2c71c527b7af7357437c5606c91f5436d
25 +DIST kicad-footprints-6.0.8.tar.gz 31697942 BLAKE2B f70d818b766ab2175ce638ced1d632b575b59c28167de037048ea49175448920a69458067c3cfe3237cc58ba08157a6fc7ffb34b96d17d64f32dd9bda5dc19e0 SHA512 e839e0b75657c76473cf6455f6c6c32ecd03d049e86ebb4abbf80e02de56e132fa0d32fc2b9e730d24dbd6cf770791589f9a0d8c2341cc8597705bf33edd4687
26
27 diff --git a/sci-electronics/kicad-footprints/kicad-footprints-6.0.8.ebuild b/sci-electronics/kicad-footprints/kicad-footprints-6.0.8.ebuild
28 new file mode 100644
29 index 000000000000..e1268b9afd0d
30 --- /dev/null
31 +++ b/sci-electronics/kicad-footprints/kicad-footprints-6.0.8.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit cmake
39 +
40 +DESCRIPTION="Electronic Schematic and PCB design tools footprint libraries"
41 +HOMEPAGE="https://gitlab.com/kicad/libraries/kicad-footprints"
42 +
43 +if [[ ${PV} == 9999 ]]; then
44 + EGIT_REPO_URI="https://gitlab.com/kicad/libraries/kicad-footprints.git"
45 + inherit git-r3
46 +else
47 + MY_PV="${PV/_rc/-rc}"
48 + MY_P="${PN}-${MY_PV}"
49 + SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${MY_PV}/${MY_P}.tar.gz -> ${P}.tar.gz"
50 +
51 + if [[ ${PV} != *_rc* ]] ; then
52 + KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
53 + fi
54 +
55 + S="${WORKDIR}/${PN}-${MY_PV}"
56 +fi
57 +
58 +LICENSE="CC-BY-SA-4.0"
59 +SLOT="0"
60 +IUSE=""
61 +
62 +DEPEND=""
63 +RDEPEND=">=sci-electronics/kicad-6.0.0"
64 +
65 +if [[ ${PV} == 9999 ]] ; then
66 +# x11-misc-util/macros only required on live ebuilds
67 + BDEPEND+=" >=x11-misc/util-macros-1.18"
68 +fi