diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-03-27 08:17:06 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-03-27 08:17:06 +0000 |
commit | 166ce79a85da94f5688243608dc5feb3a7e43a8e (patch) | |
tree | abc294d486a6fc43277e8bf098ddcfa0d075eb9f /net-proxy | |
parent | Bump to latest aufs, genpatches and linux release; drop old (diff) | |
download | gentoo-2-166ce79a85da94f5688243608dc5feb3a7e43a8e.tar.gz gentoo-2-166ce79a85da94f5688243608dc5feb3a7e43a8e.tar.bz2 gentoo-2-166ce79a85da94f5688243608dc5feb3a7e43a8e.zip |
revbump; conversion -> distutils-r1, rm old ebuild
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/sshproxy/ChangeLog | 8 | ||||
-rw-r--r-- | net-proxy/sshproxy/sshproxy-0.6.0_beta2-r2.ebuild (renamed from net-proxy/sshproxy/sshproxy-0.6.0_beta2-r1.ebuild) | 19 |
2 files changed, 16 insertions, 11 deletions
diff --git a/net-proxy/sshproxy/ChangeLog b/net-proxy/sshproxy/ChangeLog index ebb5e27f7137..11ec2aec25b0 100644 --- a/net-proxy/sshproxy/ChangeLog +++ b/net-proxy/sshproxy/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-proxy/sshproxy # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/sshproxy/ChangeLog,v 1.18 2015/01/07 14:03:58 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/sshproxy/ChangeLog,v 1.19 2015/03/27 08:17:06 idella4 Exp $ + +*sshproxy-0.6.0_beta2-r2 (27 Mar 2015) + + 27 Mar 2015; Ian Delaney <idella4@gentoo.org> +sshproxy-0.6.0_beta2-r2.ebuild, + -sshproxy-0.6.0_beta2-r1.ebuild: + revbump; conversion -> distutils-r1, rm old ebuild 07 Jan 2015; Pacho Ramos <pacho@gentoo.org> metadata.xml: Reassign and cleanup as discussed at https://www.mail-archive.com/gentoo- diff --git a/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r1.ebuild b/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r2.ebuild index 90be07f51183..74aecd0c106b 100644 --- a/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r1.ebuild +++ b/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r2.ebuild @@ -1,11 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r1.ebuild,v 1.6 2014/01/08 06:24:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/sshproxy/sshproxy-0.6.0_beta2-r2.ebuild,v 1.1 2015/03/27 08:17:06 idella4 Exp $ EAPI="5" -PYTHON_DEPEND="2" +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 -inherit distutils eutils user +inherit distutils-r1 eutils user DESCRIPTION="sshproxy is an ssh gateway to apply ACLs on ssh connections" HOMEPAGE="http://sshproxy-project.org/" @@ -21,16 +22,14 @@ IUSE="client-only mysql minimal" # client-only: install only the client wrappers DEPEND="!client-only? ( - >=dev-python/paramiko-1.6.3 - mysql? ( >=dev-python/mysql-python-1.2.0 ) + >=dev-python/paramiko-1.6.3[${PYTHON_USEDEP}] + mysql? ( >=dev-python/mysql-python-1.2.0[${PYTHON_USEDEP}] ) )" RDEPEND="${DEPEND} net-misc/openssh" pkg_setup() { - python_set_active_version 2 - python_pkg_setup - + python-single-r1_pkg_setup enewgroup sshproxy enewuser sshproxy -1 -1 /var/lib/sshproxy sshproxy } @@ -55,7 +54,7 @@ src_install () { dobin bin/spssh if ! use client-only; then - distutils_src_install + distutils-r1_src_install diropts -o sshproxy -g sshproxy -m0750 keepdir /var/lib/sshproxy |