From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E7E09158086 for ; Tue, 23 Nov 2021 17:16:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3DBDE08F0; Tue, 23 Nov 2021 17:16:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A05B1E08F0 for ; Tue, 23 Nov 2021 17:16:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85DD5342F89 for ; Tue, 23 Nov 2021 17:16:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AFA061E6 for ; Tue, 23 Nov 2021 17:15:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1637687744.7b73273ac3cb9c5faead13e674ee42a9581138ff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-footprints/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/kicad-footprints/kicad-footprints-6.0.0_rc1.ebuild X-VCS-Directories: sci-electronics/kicad-footprints/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7b73273ac3cb9c5faead13e674ee42a9581138ff X-VCS-Branch: master Date: Tue, 23 Nov 2021 17:15:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f2200b61-fdaf-4c5f-a759-e7e9e87d2e66 X-Archives-Hash: 9d67a901de35385bde33d673c4f0c4be commit: 7b73273ac3cb9c5faead13e674ee42a9581138ff Author: JonRB gmail com> AuthorDate: Mon Nov 22 19:28:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 23 17:15:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b73273a sci-electronics/kicad-footprints: add 6.0.0_rc1 Signed-off-by: JonRB gmail.com> Signed-off-by: Sam James gentoo.org> .../kicad-footprints-6.0.0_rc1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/sci-electronics/kicad-footprints/kicad-footprints-6.0.0_rc1.ebuild b/sci-electronics/kicad-footprints/kicad-footprints-6.0.0_rc1.ebuild new file mode 100644 index 000000000000..ab47f7390bea --- /dev/null +++ b/sci-electronics/kicad-footprints/kicad-footprints-6.0.0_rc1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Electronic Schematic and PCB design tools footprint libraries" +HOMEPAGE="https://gitlab.com/kicad/libraries/kicad-footprints" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.com/kicad/libraries/kicad-footprints.git" + inherit git-r3 + # x11-misc-util/macros only required on live ebuilds + LIVE_DEPEND=">=x11-misc/util-macros-1.18" +else + MY_PV="${PV/_rc/-rc}" + MY_P="${PN}-${MY_PV}" + SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${MY_PV}/${MY_P}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" + S="${WORKDIR}/${PN}-${MY_PV}" +fi + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND=">=sci-electronics/kicad-5.99"