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 9B6F9158086 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 960BBE087A; 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 7A831E087A 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 954A9342F85 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 4EC031DD 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: <1637687738.aa1cf9ffa3b13805d1eaef1727161b98d707e00d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad-symbols/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/kicad-symbols/kicad-symbols-9999.ebuild X-VCS-Directories: sci-electronics/kicad-symbols/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aa1cf9ffa3b13805d1eaef1727161b98d707e00d 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: 4683094a-ae9f-4ca6-8fb3-a1c70930f79f X-Archives-Hash: d7b1b5074769fbe2be668d2d2855f9e3 commit: aa1cf9ffa3b13805d1eaef1727161b98d707e00d Author: JonRB gmail com> AuthorDate: Mon Nov 22 19:03:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 23 17:15:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa1cf9ff sci-electronics/kicad-symbols: add live 9999 version Signed-off-by: JonRB gmail.com> Signed-off-by: Sam James gentoo.org> .../kicad-symbols/kicad-symbols-9999.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/sci-electronics/kicad-symbols/kicad-symbols-9999.ebuild b/sci-electronics/kicad-symbols/kicad-symbols-9999.ebuild new file mode 100644 index 000000000000..35b4c0a47f9d --- /dev/null +++ b/sci-electronics/kicad-symbols/kicad-symbols-9999.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 symbol libraries" +HOMEPAGE="https://gitlab.com/kicad/libraries/kicad-symbols" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.com/kicad/libraries/kicad-symbols.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"