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 537D3158086 for ; Tue, 23 Nov 2021 17:16:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DD97E0878; Tue, 23 Nov 2021 17:16:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A43CE0878 for ; Tue, 23 Nov 2021 17:16:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6FD0D342F7A for ; Tue, 23 Nov 2021 17:16:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 280C81DA 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: <1637687736.3e4eff973b67436a6d227724008ff6435b6d42e4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-templates/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/kicad-templates/kicad-templates-9999.ebuild X-VCS-Directories: sci-electronics/kicad-templates/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3e4eff973b67436a6d227724008ff6435b6d42e4 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: a8c0a998-beaa-405f-83d5-3e133081cd88 X-Archives-Hash: 6c95eabd22485e6011833d5cb4945f2a commit: 3e4eff973b67436a6d227724008ff6435b6d42e4 Author: JonRB gmail com> AuthorDate: Mon Nov 22 19:02:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 23 17:15:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4eff97 sci-electronics/kicad-templates: add live 9999 version Signed-off-by: JonRB gmail.com> Signed-off-by: Sam James gentoo.org> .../kicad-templates/kicad-templates-9999.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/sci-electronics/kicad-templates/kicad-templates-9999.ebuild b/sci-electronics/kicad-templates/kicad-templates-9999.ebuild new file mode 100644 index 000000000000..348280a3c4d3 --- /dev/null +++ b/sci-electronics/kicad-templates/kicad-templates-9999.ebuild @@ -0,0 +1,24 @@ +# 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 project templates" +HOMEPAGE="https://github.com/kicad/kicad-templates" +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.com/kicad/libraries/${PN}.git" + inherit git-r3 +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" + +RDEPEND=">=sci-electronics/kicad-5.99"