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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7BB83138335 for ; Thu, 12 Sep 2019 14:29:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 873DAE0921; Thu, 12 Sep 2019 14:29:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0455E0924 for ; Thu, 12 Sep 2019 14:28:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0593334B0AC for ; Thu, 12 Sep 2019 14:28:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D1C57EC for ; Thu, 12 Sep 2019 14:28:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1568298510.5491ccb5d4301718dbb72396f80cb032de67a8c2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/lm-sensors/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild X-VCS-Directories: sys-apps/lm-sensors/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5491ccb5d4301718dbb72396f80cb032de67a8c2 X-VCS-Branch: master Date: Thu, 12 Sep 2019 14:28:57 +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: 2c4758fa-eb6d-4a67-b670-c3cc6225ad1d X-Archives-Hash: 421d7d3ac111ba32e44e4372124031c9 commit: 5491ccb5d4301718dbb72396f80cb032de67a8c2 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 11 08:39:18 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 12 14:28:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5491ccb5 sys-apps/lm-sensors: Remove obsolete PN rewrite Signed-off-by: Michał Górny gentoo.org> sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild b/sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild index f84df9880d5..e2d8209c6ad 100644 --- a/sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild +++ b/sys-apps/lm-sensors/lm-sensors-3.5.0_p20190505.ebuild @@ -8,15 +8,13 @@ inherit linux-info systemd toolchain-funcs multilib-minimal DESCRIPTION="Hardware Monitoring user-space utilities" HOMEPAGE="https://hwmon.wiki.kernel.org/ https://github.com/lm-sensors/lm-sensors" -MY_PN="${PN/_/-}" - if [[ "${PV}" =~ .*_p[[:digit:]]{8}.* ]] ; then COMMIT="2c8cca3d6cd60121b401734c1a24cfec7daed4fc" - SRC_URI="https://github.com/lm-sensors/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${MY_PN}-${COMMIT}" + SRC_URI="https://github.com/lm-sensors/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${COMMIT}" else SRC_URI="https://github.com/lm-sensors/lm-sensors/archive/V$(ver_rs 1- -).tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN/_/-}-$(ver_rs 1- -)" + S="${WORKDIR}/${PN}-$(ver_rs 1- -)" fi LICENSE="GPL-2+ LGPL-2.1"