Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-power/thermald: ChangeLog thermald-1.3.ebuild thermald-1.2.01.ebuild
Date: Thu, 02 Apr 2015 05:32:50
Message-Id: 20150402053244.2E7501509F@oystercatcher.gentoo.org
1 dlan 15/04/02 05:32:43
2
3 Modified: ChangeLog
4 Added: thermald-1.3.ebuild
5 Removed: thermald-1.2.01.ebuild
6 Log:
7 bump & drop old, bug 544886
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
10
11 Revision Changes Path
12 1.2 sys-power/thermald/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/thermald/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/thermald/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/thermald/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-power/thermald/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 17 Jul 2014 22:16:03 -0000 1.1
25 +++ ChangeLog 2 Apr 2015 05:32:42 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-power/thermald
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-power/thermald/ChangeLog,v 1.1 2014/07/17 22:16:03 dlan Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sys-power/thermald/ChangeLog,v 1.2 2015/04/02 05:32:42 dlan Exp $
32 +
33 +*thermald-1.3 (02 Apr 2015)
34 +
35 + 02 Apr 2015; Yixun Lan <dlan@g.o> -thermald-1.2.01.ebuild,
36 + +thermald-1.3.ebuild:
37 + bump & drop old, bug 544886
38
39 *thermald-1.2.01 (17 Jul 2014)
40
41
42
43
44 1.1 sys-power/thermald/thermald-1.3.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/thermald/thermald-1.3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/thermald/thermald-1.3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: thermald-1.3.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-power/thermald/thermald-1.3.ebuild,v 1.1 2015/04/02 05:32:42 dlan Exp $
54
55 EAPI=5
56
57 AUTOTOOLS_AUTORECONF=1
58 AUTOTOOLS_IN_SOURCE_BUILD=1
59 inherit autotools-utils systemd
60
61 DESCRIPTION="Thermal daemon for Intel architectures"
62 HOMEPAGE="https://01.org/linux-thermal-daemon"
63 SRC_URI="https://github.com/01org/thermal_daemon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64
65 LICENSE="GPL-2+"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68
69 IUSE=""
70 S=${WORKDIR}/thermal_daemon-${PV}
71
72 CDEPEND="dev-libs/dbus-glib
73 dev-libs/libxml2"
74 DEPEND="${CDEPEND}
75 sys-apps/sed"
76 RDEPEND="${CDEPEND}"
77
78 DOCS=( thermal_daemon_usage.txt README.txt )
79
80 src_configure() {
81 local myeconfargs=(
82 --with-systemdsystemunitdir=$(systemd_get_unitdir)
83 )
84 autotools-utils_src_configure
85 }
86
87 src_install() {
88 autotools-utils_src_install
89 rm -rf "${D}"/etc/init || die
90 doinitd "${FILESDIR}"/thermald
91 }