public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/redis-py: redis-py-2.10.1.ebuild redis-py-2.10.3.ebuild ChangeLog
@ 2014-10-14 12:06 Ian Delaney (idella4)
  0 siblings, 0 replies; only message in thread
From: Ian Delaney (idella4) @ 2014-10-14 12:06 UTC (permalink / raw
  To: gentoo-commits

idella4     14/10/14 12:06:19

  Modified:             redis-py-2.10.1.ebuild ChangeLog
  Added:                redis-py-2.10.3.ebuild
  Log:
  bump; fix, upgrade and refine test phase
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.3                  dev-python/redis-py/redis-py-2.10.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild?r1=1.2&r2=1.3

Index: redis-py-2.10.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- redis-py-2.10.1.ebuild	14 Oct 2014 06:39:44 -0000	1.2
+++ redis-py-2.10.1.ebuild	14 Oct 2014 12:06:19 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild,v 1.2 2014/10/14 06:39:44 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.10.1.ebuild,v 1.3 2014/10/14 12:06:19 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -47,7 +47,7 @@
 }
 
 src_test() {
-#	local DISTUTILS_NO_PARALLEL_BUILD=1
+	local DISTUTILS_NO_PARALLEL_BUILD=1
 
 	distutils-r1_src_test
 }



1.50                 dev-python/redis-py/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	14 Oct 2014 06:39:44 -0000	1.49
+++ ChangeLog	14 Oct 2014 12:06:19 -0000	1.50
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/redis-py
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.49 2014/10/14 06:39:44 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/ChangeLog,v 1.50 2014/10/14 12:06:19 idella4 Exp $
+
+*redis-py-2.10.3 (14 Oct 2014)
+
+  14 Oct 2014; Ian Delaney <idella4@gentoo.org> +redis-py-2.10.3.ebuild,
+  redis-py-2.10.1.ebuild:
+  bump; fix, upgrade and refine test phase
 
   14 Oct 2014; Ian Delaney <idella4@gentoo.org> redis-py-2.10.1.ebuild:
   correction to deps, noted by Arfrever



1.1                  dev-python/redis-py/redis-py-2.10.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/redis-py-2.10.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/redis-py/redis-py-2.10.3.ebuild?rev=1.1&content-type=text/plain

Index: redis-py-2.10.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/redis-py/redis-py-2.10.3.ebuild,v 1.1 2014/10/14 12:06:19 idella4 Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )

inherit distutils-r1

MY_PN="redis"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Python client for Redis key-value store"
HOMEPAGE="http://github.com/andymccurdy/redis-py"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
IUSE="test"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	test? ( dev-db/redis
		>=dev-python/pytest-2.5.0[${PYTHON_USEDEP}] )"

S="${WORKDIR}/${MY_P}"

python_prepare_all() {
	# Make sure that tests will be used from BUILD_DIR rather than cwd.
	mv tests tests-hidden || die

	# Correct local import patch syntax
	sed -e 's:from .conftest:from conftest:' \
		-i tests-hidden/{test_connection_pool.py,test_commands.py,test_encoding.py,test_pubsub.py} \
		|| die

	distutils-r1_python_prepare_all
}

python_compile() {
	distutils-r1_python_compile

	if use test; then
		cp -r tests-hidden "${BUILD_DIR}"/tests || die
	fi
}

src_test() {
	# testsuite fails miserably under multiprocessing
	local DISTUTILS_NO_PARALLEL_BUILD=1
	distutils-r1_src_test
}

python_test() {

	local sock="${T}/redis.sock"

	"${EPREFIX}/usr/sbin/redis-server" - <<- EOF
		daemonize yes
		pidfile ${T}/redis.pid
		unixsocket ${sock}
		EOF

	PYTHONPATH="${S}:${S}/tests-hidden"
	esetup.py test
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-10-14 12:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-14 12:06 [gentoo-commits] gentoo-x86 commit in dev-python/redis-py: redis-py-2.10.1.ebuild redis-py-2.10.3.ebuild ChangeLog Ian Delaney (idella4)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox