Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/hddtemp/
Date: Fri, 19 Jul 2019 16:34:42
Message-Id: 1563554053.596aef4ad0d83ab31cdafb083f0cc26a892abd11.ulm@gentoo
1 commit: 596aef4ad0d83ab31cdafb083f0cc26a892abd11
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 19 16:27:44 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 19 16:34:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596aef4a
7
8 app-admin/hddtemp: [QA] Remove pkg_config().
9
10 This tried to download the latest version of hddtemp.db, which should
11 be done in a live ebuild instead. Besides, there appears to be no
12 upstream activity, and (as of today) the "latest" version is from 2007.
13
14 No revbump, because installed files don't change.
15
16 Bug: https://bugs.gentoo.org/116348
17 Package-Manager: Portage-2.3.69, Repoman-2.3.16
18 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
19
20 app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild | 10 ----------
21 1 file changed, 10 deletions(-)
22
23 diff --git a/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild b/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild
24 index 8fdad17d02b..c1ffdee13a6 100644
25 --- a/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild
26 +++ b/app-admin/hddtemp/hddtemp-0.3_beta15-r27.ebuild
27 @@ -102,13 +102,3 @@ update_db() {
28 grep "${id}" "${dst}" 2>&1 >/dev/null || echo "${line}" >> "${dst}"
29 done < "${src}"
30 }
31 -
32 -pkg_config() {
33 - cd "${ROOT}"/usr/share/hddtemp || die
34 -
35 - einfo "Trying to download the latest hddtemp.db file"
36 - wget http://download.savannah.nongnu.org/releases/hddtemp/hddtemp.db -O hddtemp.db \
37 - || die "failed to download hddtemp.db"
38 -
39 - update_db "hddgentoo.db" "hddtemp.db"
40 -}