Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/isatapd: isatapd-0.9.7-r2.ebuild ChangeLog isatapd-0.9.6.ebuild isatapd-0.9.7-r1.ebuild isatapd-0.9.7.ebuild
Date: Fri, 27 Feb 2015 09:56:15
Message-Id: 20150227094600.4534712A6F@oystercatcher.gentoo.org
1 xmw 15/02/27 09:46:00
2
3 Modified: ChangeLog
4 Added: isatapd-0.9.7-r2.ebuild
5 Removed: isatapd-0.9.6.ebuild isatapd-0.9.7-r1.ebuild
6 isatapd-0.9.7.ebuild
7 Log:
8 Revbump to fix typo in service file (bug 539178, thanks Markus Kaindl for the report).
9
10 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
11
12 Revision Changes Path
13 1.4 net-misc/isatapd/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?rev=1.4&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?rev=1.4&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?r1=1.3&r2=1.4
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v
22 retrieving revision 1.3
23 retrieving revision 1.4
24 diff -u -r1.3 -r1.4
25 --- ChangeLog 30 Mar 2014 10:09:14 -0000 1.3
26 +++ ChangeLog 27 Feb 2015 09:46:00 -0000 1.4
27 @@ -1,6 +1,14 @@
28 # ChangeLog for net-misc/isatapd
29 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v 1.3 2014/03/30 10:09:14 pacho Exp $
31 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v 1.4 2015/02/27 09:46:00 xmw Exp $
33 +
34 +*isatapd-0.9.7-r2 (27 Feb 2015)
35 +
36 + 27 Feb 2015; Michael Weber <xmw@g.o> +files/isatapd.service-r2,
37 + +isatapd-0.9.7-r2.ebuild, -files/isatapd.service, -files/isatapd.service-r1,
38 + -isatapd-0.9.6.ebuild, -isatapd-0.9.7-r1.ebuild, -isatapd-0.9.7.ebuild:
39 + Revbump to fix typo in service file (bug 539178, thanks Markus Kaindl for the
40 + report).
41
42 *isatapd-0.9.7-r1 (30 Mar 2014)
43
44
45
46
47 1.1 net-misc/isatapd/isatapd-0.9.7-r2.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: isatapd-0.9.7-r2.ebuild
53 ===================================================================
54 # Copyright 1999-2015 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r2.ebuild,v 1.1 2015/02/27 09:46:00 xmw Exp $
57
58 EAPI=5
59 inherit linux-info systemd
60
61 DESCRIPTION="creates and maintains an ISATAP tunnel (rfc5214)"
62 HOMEPAGE="http://www.saschahlusiak.de/linux/isatap.htm"
63 SRC_URI="http://www.saschahlusiak.de/linux/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND=""
71 RDEPEND=""
72
73 CONFIG_CHECK="~TUN"
74 ERROR_TUN="CONFIG_TUN is needed for isatapd to work"
75
76 src_prepare() {
77 sed -e '/^opts/s:opts:extra_started_commands:' \
78 -i openrc/isatapd.init.d || die
79 }
80
81 src_install() {
82 default
83
84 newinitd openrc/isatapd.init.d isatapd
85 newconfd openrc/isatapd.conf.d isatapd
86 systemd_newunit "${FILESDIR}"/${PN}.service-r2 ${PN}.service
87 systemd_install_serviced "${FILESDIR}"/${PN}.service.conf
88 }