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 5A7BE158094 for ; Fri, 8 Jul 2022 04:45:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2B38E0CEB; Fri, 8 Jul 2022 04:45:28 +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 63D0DE0CE3 for ; Fri, 8 Jul 2022 04:45:28 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DF9A335DB3 for ; Fri, 8 Jul 2022 04:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96E02528 for ; Fri, 8 Jul 2022 04:45:25 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1657255512.84515c314119ac23cf04b2c2cf1204abece8db0a.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/dsview/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-electronics/dsview/Manifest sci-electronics/dsview/dsview-9999.ebuild X-VCS-Directories: sci-electronics/dsview/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 84515c314119ac23cf04b2c2cf1204abece8db0a X-VCS-Branch: dev Date: Fri, 8 Jul 2022 04:45:25 +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: efcbabc9-2a79-494b-997f-24f2fa2a06af X-Archives-Hash: 4ac8f73021d48f2b5edbf8ebd853e635 commit: 84515c314119ac23cf04b2c2cf1204abece8db0a Author: Huang Rui gmail com> AuthorDate: Fri Jul 8 04:44:05 2022 +0000 Commit: Rui Huang gmail com> CommitDate: Fri Jul 8 04:45:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84515c31 sci-electronics/dsview: fix source dir Signed-off-by: Huang Rui gmail.com> sci-electronics/dsview/Manifest | 1 - sci-electronics/dsview/dsview-9999.ebuild | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sci-electronics/dsview/Manifest b/sci-electronics/dsview/Manifest deleted file mode 100644 index d02f4433f..000000000 --- a/sci-electronics/dsview/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dsview-1.1.2.tar.gz 8150237 BLAKE2B 0f746d0691f006d368cf9f40bf0c1b91223a7f6011d0ce55bdded7924ef940ecb18eec4bfe4cf842eea7eda85e97f3516a6f07e7e361eff991191e6d8bf7628c SHA512 a0b90d654ea64121540815627e8559c147a0b3bb77d10b65d98587b1f67dc3c0ed4d1c022cd686c31aab2879ee602eade69a02f32c5c9947a3bbdf1e7ab475dd diff --git a/sci-electronics/dsview/dsview-9999.ebuild b/sci-electronics/dsview/dsview-9999.ebuild index c378d35fc..b1b34addc 100644 --- a/sci-electronics/dsview/dsview-9999.ebuild +++ b/sci-electronics/dsview/dsview-9999.ebuild @@ -4,7 +4,6 @@ EAPI=8 GITHUB_PN="DSView" -MY_PV="$(ver_rs 2 '')" # 'a.b.c' -> 'a.bc' PYTHON_COMPAT=( python3_{8..11} ) inherit cmake python-r1 udev xdg @@ -19,9 +18,9 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/DreamSourceLab/${GITHUB_PN}.git" else - SRC_URI="https://github.com/DreamSourceLab/${GITHUB_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/DreamSourceLab/${GITHUB_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${GITHUB_PN}-${MY_PV}" + S="${WORKDIR}/${GITHUB_PN}-${PV}" fi LICENSE="GPL-3"