idella4 14/05/17 07:04:06 Modified: ChangeLog Added: pyftpdlib-1.3.0.ebuild Log: bump; drop py2.6 pypy2_0 add py3.3 support, upgrade test phase, minor tidy (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.38 dev-python/pyftpdlib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyftpdlib/ChangeLog?rev=1.38&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyftpdlib/ChangeLog?rev=1.38&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyftpdlib/ChangeLog?r1=1.37&r2=1.38 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyftpdlib/ChangeLog,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- ChangeLog 31 Mar 2014 21:10:59 -0000 1.37 +++ ChangeLog 17 May 2014 07:04:06 -0000 1.38 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyftpdlib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyftpdlib/ChangeLog,v 1.37 2014/03/31 21:10:59 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyftpdlib/ChangeLog,v 1.38 2014/05/17 07:04:06 idella4 Exp $ + +*pyftpdlib-1.3.0 (17 May 2014) + + 17 May 2014; Ian Delaney <[email protected]> +pyftpdlib-1.3.0.ebuild: + bump; drop py2.6 pypy2_0 add py3.3 support, upgrade test phase, minor tidy 31 Mar 2014; Michał Górny <[email protected]> pyftpdlib-1.0.1-r1.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/pyftpdlib/pyftpdlib-1.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyftpdlib/pyftpdlib-1.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyftpdlib/pyftpdlib-1.3.0.ebuild?rev=1.1&content-type=text/plain Index: pyftpdlib-1.3.0.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyftpdlib/pyftpdlib-1.3.0.ebuild,v 1.1 2014/05/17 07:04:06 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3} pypy ) PYTHON_REQ_USE="ssl(+)" inherit distutils-r1 DESCRIPTION="Python FTP server library" HOMEPAGE="http://code.google.com/p/pyftpdlib/ http://pypi.python.org/pypi/pyftpdlib" SRC_URI="http://pyftpdlib.googlecode.com/files/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" IUSE="examples ssl" DEPEND="ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )" RDEPEND="${DEPEND}" # Usual; requ'd for a sane testsuite run DISTUTILS_NO_PARALLEL_BUILD=1 python_prepare_all() { # http://code.google.com/p/pyftpdlib/issues/detail?id=292&thanks=292&ts=1400308829 # Disable failing test sed -e 's:test_on_incomplete_file_received:_&:' -i test/test_ftpd.py || die distutils-r1_python_prepare_all } python_test() { "${PYTHON}" test/test_ftpd.py || die } python_install_all() { use examples && local EXAMPLES=( demo/. ) distutils-r1_python_install_all }
