public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog
@ 2013-08-11 11:56 Michal Gorny (mgorny)
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Gorny (mgorny) @ 2013-08-11 11:56 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/08/11 11:56:23

  Modified:             ChangeLog
  Added:                python-memcached-1.53-r1.ebuild
  Log:
  Migrate to distutils-r1. Disable broken tests.
  
  (Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)

Revision  Changes    Path
1.29                 dev-python/python-memcached/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	8 Jul 2013 06:19:37 -0000	1.28
+++ ChangeLog	11 Aug 2013 11:56:23 -0000	1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-memcached
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.28 2013/07/08 06:19:37 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.29 2013/08/11 11:56:23 mgorny Exp $
+
+*python-memcached-1.53-r1 (11 Aug 2013)
+
+  11 Aug 2013; Michał Górny <mgorny@gentoo.org>
+  +python-memcached-1.53-r1.ebuild:
+  Migrate to distutils-r1. Disable broken tests.
 
 *python-memcached-1.53 (08 Jul 2013)
 



1.1                  dev-python/python-memcached/python-memcached-1.53-r1.ebuild

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

Index: python-memcached-1.53-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.1 2013/08/11 11:56:23 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )

inherit distutils-r1

DESCRIPTION="Pure python memcached client"
HOMEPAGE="http://www.tummy.com/Community/software/python-memcached/ http://pypi.python.org/pypi/python-memcached"
SRC_URI="ftp://ftp.tummy.com/pub/python-memcached/old-releases/${P}.tar.gz"

LICENSE="OSL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE="test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	test? ( net-misc/memcached )"
RDEPEND=""

# 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
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog
@ 2013-10-22 14:23 Fabian Groffen (grobian)
  0 siblings, 0 replies; 5+ messages in thread
From: Fabian Groffen (grobian) @ 2013-10-22 14:23 UTC (permalink / raw
  To: gentoo-commits

grobian     13/10/22 14:23:40

  Modified:             python-memcached-1.53-r1.ebuild ChangeLog
  Log:
  Marked ~x64-macos, bug #487670
  
  (Portage version: 2.2.7-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)

Revision  Changes    Path
1.2                  dev-python/python-memcached/python-memcached-1.53-r1.ebuild

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

Index: python-memcached-1.53-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-memcached-1.53-r1.ebuild	11 Aug 2013 11:56:23 -0000	1.1
+++ python-memcached-1.53-r1.ebuild	22 Oct 2013 14:23:40 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.1 2013/08/11 11:56:23 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.2 2013/10/22 14:23:40 grobian Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="OSL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.31                 dev-python/python-memcached/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	5 Sep 2013 18:47:00 -0000	1.30
+++ ChangeLog	22 Oct 2013 14:23:40 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-memcached
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.30 2013/09/05 18:47:00 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.31 2013/10/22 14:23:40 grobian Exp $
+
+  22 Oct 2013; Fabian Groffen <grobian@gentoo.org>
+  python-memcached-1.53-r1.ebuild:
+  Marked ~x64-macos, bug #487670
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> python-memcached-1.48-r1.ebuild:
   Clean up PYTHON_COMPAT from old implementations.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog
@ 2014-02-24  0:20 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-02-24  0:20 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/02/24 00:20:32

  Modified:             python-memcached-1.53-r1.ebuild ChangeLog
  Log:
  x86 stable wrt bug #495632
  
  (Portage version: 2.2.7/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.3                  dev-python/python-memcached/python-memcached-1.53-r1.ebuild

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

Index: python-memcached-1.53-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- python-memcached-1.53-r1.ebuild	22 Oct 2013 14:23:40 -0000	1.2
+++ python-memcached-1.53-r1.ebuild	24 Feb 2014 00:20:32 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.2 2013/10/22 14:23:40 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.3 2014/02/24 00:20:32 phajdan.jr Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="OSL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.32                 dev-python/python-memcached/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	22 Oct 2013 14:23:40 -0000	1.31
+++ ChangeLog	24 Feb 2014 00:20:32 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-memcached
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.31 2013/10/22 14:23:40 grobian Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.32 2014/02/24 00:20:32 phajdan.jr Exp $
+
+  23 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  python-memcached-1.53-r1.ebuild:
+  x86 stable wrt bug #495632
 
   22 Oct 2013; Fabian Groffen <grobian@gentoo.org>
   python-memcached-1.53-r1.ebuild:





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog
@ 2014-03-02 22:20 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-02 22:20 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/02 22:20:39

  Modified:             python-memcached-1.53-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #495632
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  dev-python/python-memcached/python-memcached-1.53-r1.ebuild

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

Index: python-memcached-1.53-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- python-memcached-1.53-r1.ebuild	24 Feb 2014 00:20:32 -0000	1.3
+++ python-memcached-1.53-r1.ebuild	2 Mar 2014 22:20:39 -0000	1.4
@@ -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/python-memcached/python-memcached-1.53-r1.ebuild,v 1.3 2014/02/24 00:20:32 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.4 2014/03/02 22:20:39 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="OSL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.33                 dev-python/python-memcached/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	24 Feb 2014 00:20:32 -0000	1.32
+++ ChangeLog	2 Mar 2014 22:20:39 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-memcached
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.32 2014/02/24 00:20:32 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.33 2014/03/02 22:20:39 pacho Exp $
+
+  02 Mar 2014; Pacho Ramos <pacho@gentoo.org> python-memcached-1.53-r1.ebuild:
+  amd64 stable, bug #495632
 
   23 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   python-memcached-1.53-r1.ebuild:





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog
@ 2014-03-05 15:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-05 15:41 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/05 15:41:14

  Modified:             python-memcached-1.53-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #495632
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-python/python-memcached/python-memcached-1.53-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild?r1=1.4&r2=1.5

Index: python-memcached-1.53-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-memcached-1.53-r1.ebuild	2 Mar 2014 22:20:39 -0000	1.4
+++ python-memcached-1.53-r1.ebuild	5 Mar 2014 15:41:14 -0000	1.5
@@ -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/python-memcached/python-memcached-1.53-r1.ebuild,v 1.4 2014/03/02 22:20:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/python-memcached-1.53-r1.ebuild,v 1.5 2014/03/05 15:41:14 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="OSL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



1.34                 dev-python/python-memcached/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	2 Mar 2014 22:20:39 -0000	1.33
+++ ChangeLog	5 Mar 2014 15:41:14 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-memcached
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.33 2014/03/02 22:20:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-memcached/ChangeLog,v 1.34 2014/03/05 15:41:14 ago Exp $
+
+  05 Mar 2014; Agostino Sarubbo <ago@gentoo.org>
+  python-memcached-1.53-r1.ebuild:
+  Stable for ppc, wrt bug #495632
 
   02 Mar 2014; Pacho Ramos <pacho@gentoo.org> python-memcached-1.53-r1.ebuild:
   amd64 stable, bug #495632





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-03-05 15:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-24  0:20 [gentoo-commits] gentoo-x86 commit in dev-python/python-memcached: python-memcached-1.53-r1.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-05 15:41 Agostino Sarubbo (ago)
2014-03-02 22:20 Pacho Ramos (pacho)
2013-10-22 14:23 Fabian Groffen (grobian)
2013-08-11 11:56 Michal Gorny (mgorny)

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