public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-memcached/
Date: Sun, 12 Jun 2016 18:47:44 +0000 (UTC)	[thread overview]
Message-ID: <1465757242.75f718032408676c1f02dff0b07248abc0e9e762.patrick@gentoo> (raw)

commit:     75f718032408676c1f02dff0b07248abc0e9e762
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 12 18:43:23 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 18:47:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75f71803

dev-python/python-memcached: Bump

Package-Manager: portage-2.3.0_rc1

 dev-python/python-memcached/Manifest               |  1 +
 .../python-memcached/python-memcached-1.58.ebuild  | 46 ++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/python-memcached/Manifest b/dev-python/python-memcached/Manifest
index 16f144d..89b0e7f 100644
--- a/dev-python/python-memcached/Manifest
+++ b/dev-python/python-memcached/Manifest
@@ -1,3 +1,4 @@
 DIST python-memcached-1.53.tar.gz 35025 SHA256 af04ea031b271a54f085166773e028fe053fc1d9a58cd8b3c3a57945990bfb48 SHA512 33ffd2778025a8e15beddf1660c4b5c9f1ba144adab5c36fd679e15508015c00e3e1185b5cc179cfcfc556b7c3ab44ed9914089e5ce9db66a04d0a658dd38bb3 WHIRLPOOL 81b80a05010eec576ce8eb00ac4c799213bfc82af4dd3d3da138d02337d28dcb5fbefcbdf11e8d9344b307ba8b1ab2a770b8130fce2f732e484f283e2fe85aae
 DIST python-memcached-1.54.tar.gz 36662 SHA256 df21d1431424c512901ecc3cd244039833aebc4bc7d345af403d4abdace20081 SHA512 e66684fba5ac638efef971df14f4049f1aeae1a84a9c530f26560c1150d7b136746daa164754a0e451ee1caf0b24fd856083aa23f42be1bd4e90a6943d9e45ad WHIRLPOOL a2d1c60fba41002c03718a75659ff1c3944e32b3c900643af2ed227e6280af2635f068f27923ed1722ae1407cd3a1e9696e6c628e4898aaf73451105846c31cb
 DIST python-memcached-1.57.tar.gz 22620 SHA256 3b689a135afb2fdb6da2298d5213780f43a3f210cf8c960d50b252acb3f62902 SHA512 1862d9a5c7c29c8956384e1b951b59dba1fb2bbaeb1c3a99b1b917a93e04e0d86f4b38022a4b0146889448a2d2152e7282cdf33d0240126350dc88d34f216ad4 WHIRLPOOL cda22d597848bf2ca138f0cc9cfedb9d1b58cf217568d6bf8ffe6b7ca2b9771f079db76e1b0fc577b079e717fd851007ec65859454ae6fc5eb369394bc205a6b
+DIST python-memcached-1.58.tar.gz 30562 SHA256 2775829cb54b9e4c5b3bbd8028680f0c0ab695db154b9c46f0f074ff97540eb6 SHA512 48f933f095751b476c122473fa1d9767cfe5c6c339a9ba71825a50cec23cbfc7b6493716458bfb1f2451c634c517519152105a2000be66bd0d389f94ea312138 WHIRLPOOL 391d91a7d40f1d85febf7f90f0593d315854caa6dac0c4f70c2c3ee7af79b049099406683436df6af0e879626d6b42f95eed6a0153ae3874a9b746998cd02b88

diff --git a/dev-python/python-memcached/python-memcached-1.58.ebuild b/dev-python/python-memcached/python-memcached-1.58.ebuild
new file mode 100644
index 0000000..a330a18
--- /dev/null
+++ b/dev-python/python-memcached/python-memcached-1.58.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure python memcached client"
+HOMEPAGE="http://www.tummy.com/Community/software/python-memcached/ https://pypi.python.org/pypi/python-memcached"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		net-misc/memcached
+		dev-python/nose[${PYTHON_USEDEP}]
+	)"
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+# Tests try to connect to memcached via TCP/IP. Please do not re-enable
+# until you get them all to pass properly while using the UNIX socket
+# only and not even trying to connect to memcached over TCP/IP.
+RESTRICT=test
+
+python_test() {
+	# Note: partial. Needs fixing. Stuff like that.
+
+	cd "${TMPDIR}" || die
+
+	local memcached_opts=( -d -P memcached.pid -s memcached.socket )
+	[[ ${EUID} == 0 ]] && memcached_opts+=( -u portage )
+
+	memcached "${memached_opts[@]}" || die
+
+	"${PYTHON}" memcache.py --do-unix || die "Tests fail with ${EPYTHON}"
+
+	kill "$(<memcached.pid)" || die
+	rm memcached.pid || die
+}


             reply	other threads:[~2016-06-12 18:47 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-12 18:47 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-16 19:56 [gentoo-commits] repo/gentoo:master commit in: dev-python/python-memcached/ Petr Vaněk
2024-02-03 11:44 Michał Górny
2024-02-03 10:10 Arthur Zamarin
2024-01-15  7:18 Michał Górny
2024-01-13  9:33 Michał Górny
2024-01-13  9:29 Arthur Zamarin
2023-12-29  4:38 Michał Górny
2023-12-25  7:06 Michał Górny
2023-11-24 15:45 Arthur Zamarin
2023-06-22 14:36 Michał Górny
2023-04-06 13:25 Michał Górny
2023-04-06  8:23 Arthur Zamarin
2023-03-06 15:22 Michał Górny
2023-03-06 15:22 Michał Górny
2023-03-06 15:22 Michał Górny
2023-03-06 15:22 Michał Górny
2023-03-06 15:22 Michał Górny
2021-06-05 17:59 Michał Górny
2020-11-04  7:34 Michał Górny
2020-11-04  1:05 Sam James
2020-11-02 11:19 Michał Górny
2020-09-30  7:14 Michał Górny
2020-09-29 22:41 Louis Sautier
2020-09-29 22:08 Louis Sautier
2020-07-21 19:17 Kent Fredric
2020-03-17 19:52 Michał Górny
2020-03-17 19:52 Michał Górny
2018-03-24 13:10 Michał Górny
2017-06-04  7:30 Justin Lecher
2017-05-19 21:44 Michael Weber
2017-05-02 17:43 Michał Górny
2016-03-25  4:51 Matt Thode
2016-02-28  7:15 Matt Thode
2015-11-16 16:26 Agostino Sarubbo
2015-11-16 16:15 Agostino Sarubbo
2015-10-15  5:25 Matt Thode
2015-09-03 21:29 Matt Thode

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1465757242.75f718032408676c1f02dff0b07248abc0e9e762.patrick@gentoo \
    --to=patrick@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox