Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-laptop/tpacpi-bat: tpacpi-bat-1.1-r1.ebuild ChangeLog tpacpi-bat-1.1.ebuild
Date: Fri, 06 Dec 2013 14:49:22
Message-Id: 20131206144915.5352E2004E@flycatcher.gentoo.org
1 ottxor 13/12/06 14:49:15
2
3 Modified: ChangeLog
4 Added: tpacpi-bat-1.1-r1.ebuild
5 Removed: tpacpi-bat-1.1.ebuild
6 Log:
7 fixed init.d script (bug #493398)
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2000586)
10
11 Revision Changes Path
12 1.7 app-laptop/tpacpi-bat/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 4 Nov 2013 18:56:09 -0000 1.6
25 +++ ChangeLog 6 Dec 2013 14:49:15 -0000 1.7
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-laptop/tpacpi-bat
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog,v 1.6 2013/11/04 18:56:09 ottxor Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/tpacpi-bat/ChangeLog,v 1.7 2013/12/06 14:49:15 ottxor Exp $
31 +
32 +*tpacpi-bat-1.1-r1 (06 Dec 2013)
33 +
34 + 06 Dec 2013; Christoph Junghans <ottxor@g.o> +tpacpi-bat-1.1-r1.ebuild,
35 + -tpacpi-bat-1.1.ebuild, files/tpacpi-bat.initd.1:
36 + fixed init.d script (bug #493398)
37
38 04 Nov 2013; Christoph Junghans <ottxor@g.o> -files/tpacpi-bat.initd.0,
39 -tpacpi-bat-1.0-r1.ebuild:
40
41
42
43 1.1 app-laptop/tpacpi-bat/tpacpi-bat-1.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/tpacpi-bat/tpacpi-bat-1.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-laptop/tpacpi-bat/tpacpi-bat-1.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tpacpi-bat-1.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-laptop/tpacpi-bat/tpacpi-bat-1.1-r1.ebuild,v 1.1 2013/12/06 14:49:15 ottxor Exp $
53
54 EAPI=5
55
56 inherit eutils systemd
57
58 if [ "${PV}" = "9999" ]; then
59 inherit git-2
60 EGIT_REPO_URI="git://github.com/teleshoes/tpacpi-bat.git http://github.com/teleshoes/tpacpi-bat.git"
61 KEYWORDS=""
62 else
63 SRC_URI="https://github.com/teleshoes/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64 KEYWORDS="~amd64"
65 fi
66 DESCRIPTION="Control battery thresholds of recent ThinkPads, which are not supported by tp_smapi"
67 HOMEPAGE="https://github.com/teleshoes/tpacpi-bat"
68
69 LICENSE="GPL-3"
70 SLOT="0"
71 IUSE=""
72
73 DEPEND=""
74 RDEPEND="sys-power/acpi_call
75 dev-lang/perl"
76
77 src_install() {
78 dodoc README battery_asl
79 dobin tpacpi-bat
80 newinitd "${FILESDIR}"/${PN}.initd.1 ${PN}
81 newconfd "${FILESDIR}"/${PN}.confd.0 ${PN}
82 systemd_newunit tpacpi.service ${PN}.service
83 }