Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/scponly: scponly-4.8-r5.ebuild ChangeLog
Date: Tue, 11 Feb 2014 18:42:34
Message-Id: 20140211184230.240C92004C@flycatcher.gentoo.org
1 mr_bones_ 14/02/11 18:42:30
2
3 Modified: scponly-4.8-r5.ebuild ChangeLog
4 Log:
5 use has_version instead of built_with_use
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.7 net-misc/scponly/scponly-4.8-r5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild?r1=1.6&r2=1.7
15
16 Index: scponly-4.8-r5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- scponly-4.8-r5.ebuild 26 Jan 2014 12:17:45 -0000 1.6
23 +++ scponly-4.8-r5.ebuild 11 Feb 2014 18:42:29 -0000 1.7
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild,v 1.6 2014/01/26 12:17:45 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-4.8-r5.ebuild,v 1.7 2014/02/11 18:42:29 mr_bones_ Exp $
29
30 EAPI=5
31 inherit eutils multilib readme.gentoo toolchain-funcs user
32 @@ -94,44 +94,44 @@
33 einfo "Collecting binaries and libraries..."
34
35 # Binaries launched in sftp compat mode
36 - if built_with_use =${CATEGORY}/${PF} sftp; then
37 + if has_version "=${CATEGORY}/${PF}[sftp]" ; then
38 BINARIES="/usr/$(get_libdir)/misc/sftp-server"
39 fi
40
41 # Binaries launched by vanilla- and WinSCP modes
42 - if built_with_use =${CATEGORY}/${PF} scp || \
43 - built_with_use =${CATEGORY}/${PF} winscp; then
44 + if has_version "=${CATEGORY}/${PF}[scp]" || \
45 + has_version "=${CATEGORY}/${PF}[winscp]" ; then
46 BINARIES="${BINARIES} /usr/bin/scp /bin/ls /bin/rm /bin/ln /bin/mv"
47 BINARIES="${BINARIES} /bin/chmod /bin/chown /bin/chgrp /bin/mkdir /bin/rmdir"
48 fi
49
50 # Binaries launched in WinSCP compatibility mode
51 - if built_with_use =${CATEGORY}/${PF} winscp; then
52 + if has_version "=${CATEGORY}/${PF}[winscp]" ; then
53 BINARIES="${BINARIES} /bin/pwd /bin/groups /usr/bin/id /bin/echo"
54 fi
55
56 # Rsync compatability mode
57 - if built_with_use =${CATEGORY}/${PF} rsync; then
58 + if has_version "=${CATEGORY}/${PF}[rsync]" ; then
59 BINARIES="${BINARIES} /usr/bin/rsync"
60 fi
61
62 # Unison compatability mode
63 - if built_with_use =${CATEGORY}/${PF} unison; then
64 + if has_version "=${CATEGORY}/${PF}[unison]" ; then
65 BINARIES="${BINARIES} /usr/bin/unison"
66 fi
67
68 # subversion cli/svnserv compatibility
69 - if built_with_use =${CATEGORY}/${PF} subversion; then
70 + if has_version "=${CATEGORY}/${PF}[subversion]" ; then
71 BINARIES="${BINARIES} /usr/bin/svn /usr/bin/svnserve"
72 fi
73
74 # passwd compatibility
75 - if built_with_use =${CATEGORY}/${PF} passwd; then
76 + if has_version "=${CATEGORY}/${PF}[passwd]" ; then
77 BINARIES="${BINARIES} /bin/passwd"
78 fi
79
80 # quota compatibility
81 - if built_with_use =${CATEGORY}/${PF} quota; then
82 + if has_version "=${CATEGORY}/${PF}[quota]" ; then
83 BINARIES="${BINARIES} /usr/bin/quota"
84 fi
85
86
87
88
89 1.62 net-misc/scponly/ChangeLog
90
91 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/ChangeLog?rev=1.62&view=markup
92 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/ChangeLog?rev=1.62&content-type=text/plain
93 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/scponly/ChangeLog?r1=1.61&r2=1.62
94
95 Index: ChangeLog
96 ===================================================================
97 RCS file: /var/cvsroot/gentoo-x86/net-misc/scponly/ChangeLog,v
98 retrieving revision 1.61
99 retrieving revision 1.62
100 diff -u -r1.61 -r1.62
101 --- ChangeLog 11 Feb 2014 18:38:37 -0000 1.61
102 +++ ChangeLog 11 Feb 2014 18:42:29 -0000 1.62
103 @@ -1,6 +1,9 @@
104 # ChangeLog for net-misc/scponly
105 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
106 -# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/ChangeLog,v 1.61 2014/02/11 18:38:37 mr_bones_ Exp $
107 +# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/ChangeLog,v 1.62 2014/02/11 18:42:29 mr_bones_ Exp $
108 +
109 + 11 Feb 2014; Michael Sterrett <mr_bones_@g.o> scponly-4.8-r5.ebuild:
110 + use has_version instead of built_with_use
111
112 11 Feb 2014; Michael Sterrett <mr_bones_@g.o> -scponly-4.8-r4.ebuild:
113 old