Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/capi4k-utils: ChangeLog capi4k-utils-20050718-r6.ebuild
Date: Sun, 22 Jun 2014 15:34:10
Message-Id: 20140622153404.DDD622004E@flycatcher.gentoo.org
1 pinkbyte 14/06/22 15:34:04
2
3 Modified: ChangeLog capi4k-utils-20050718-r6.ebuild
4 Log:
5 Improve fix for bug #511800 by utilizing versionator eclass
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
8
9 Revision Changes Path
10 1.78 net-dialup/capi4k-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/ChangeLog?rev=1.78&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/ChangeLog?rev=1.78&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/ChangeLog?r1=1.77&r2=1.78
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/ChangeLog,v
19 retrieving revision 1.77
20 retrieving revision 1.78
21 diff -u -r1.77 -r1.78
22 --- ChangeLog 16 Jun 2014 12:19:03 -0000 1.77
23 +++ ChangeLog 22 Jun 2014 15:34:04 -0000 1.78
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-dialup/capi4k-utils
26 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/ChangeLog,v 1.77 2014/06/16 12:19:03 pinkbyte Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/ChangeLog,v 1.78 2014/06/22 15:34:04 pinkbyte Exp $
29 +
30 + 22 Jun 2014; Sergey Popov <pinkbyte@g.o>
31 + capi4k-utils-20050718-r6.ebuild:
32 + Improve fix for bug #511800 by utilizing versionator eclass
33
34 16 Jun 2014; Sergey Popov <pinkbyte@g.o>
35 capi4k-utils-20050718-r6.ebuild:
36
37
38
39 1.3 net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild?r1=1.2&r2=1.3
44
45 Index: capi4k-utils-20050718-r6.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- capi4k-utils-20050718-r6.ebuild 16 Jun 2014 12:19:03 -0000 1.2
52 +++ capi4k-utils-20050718-r6.ebuild 22 Jun 2014 15:34:04 -0000 1.3
53 @@ -1,10 +1,10 @@
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild,v 1.2 2014/06/16 12:19:03 pinkbyte Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r6.ebuild,v 1.3 2014/06/22 15:34:04 pinkbyte Exp $
58
59 EAPI=5
60
61 -inherit eutils linux-info multilib
62 +inherit eutils linux-info multilib versionator
63
64 YEAR_PV="${PV:0:4}"
65 MON_PV="${PV:4:2}"
66 @@ -50,6 +50,7 @@
67 if use pppd; then
68 local INSTALLED_PPP="$(best_version net-dialup/ppp)"
69 PPPVERSION="${INSTALLED_PPP#net-dialup/ppp-}"
70 + PPPVERSION="$(version_format_string '$1.$2.$3' ${PPPVERSION})"
71 if [ -z "${PPPVERSION}" ]; then
72 die "No pppd installation found"
73 fi
74 @@ -101,7 +102,7 @@
75 # workaround for bug #511800
76 if has_version \>=net-dialup/ppp-2.4.6; then
77 pushd pppdcapiplugin &>/dev/null || die
78 - ln -s ppp-2.4.5 "ppp-${PPPVERSION}" || die
79 + mv ppp-2.4.5 "ppp-${PPPVERSION}" || die
80 popd &>/dev/null
81 fi
82 else