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 7BEC8138334 for ; Fri, 19 Jul 2019 16:34:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 965DCE01E4; Fri, 19 Jul 2019 16:34:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 797C3E01E4 for ; Fri, 19 Jul 2019 16:34:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 73B923480F8 for ; Fri, 19 Jul 2019 16:34:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86A805FD for ; Fri, 19 Jul 2019 16:34:38 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1563554053.596aef4ad0d83ab31cdafb083f0cc26a892abd11.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/hddtemp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild X-VCS-Directories: app-admin/hddtemp/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 596aef4ad0d83ab31cdafb083f0cc26a892abd11 X-VCS-Branch: master Date: Fri, 19 Jul 2019 16:34:38 +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: 0b567b4e-cba9-453b-83d7-d9c912ee47e6 X-Archives-Hash: e1ff07933100e4c2e1e829eda87d1832 commit: 596aef4ad0d83ab31cdafb083f0cc26a892abd11 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jul 19 16:27:44 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jul 19 16:34:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596aef4a app-admin/hddtemp: [QA] Remove pkg_config(). This tried to download the latest version of hddtemp.db, which should be done in a live ebuild instead. Besides, there appears to be no upstream activity, and (as of today) the "latest" version is from 2007. No revbump, because installed files don't change. Bug: https://bugs.gentoo.org/116348 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Ulrich Müller gentoo.org> app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild b/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild index 8fdad17d02b..c1ffdee13a6 100644 --- a/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild +++ b/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild @@ -102,13 +102,3 @@ update_db() { grep "${id}" "${dst}" 2>&1 >/dev/null || echo "${line}" >> "${dst}" done < "${src}" } - -pkg_config() { - cd "${ROOT}"/usr/share/hddtemp || die - - einfo "Trying to download the latest hddtemp.db file" - wget http://download.savannah.nongnu.org/releases/hddtemp/hddtemp.db -O hddtemp.db \ - || die "failed to download hddtemp.db" - - update_db "hddgentoo.db" "hddtemp.db" -}