* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-01-26 17:00 Mike Frysinger (vapier)
0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2015-01-26 17:00 UTC (permalink / raw
To: gentoo-commits
vapier 15/01/26 17:00:30
Modified: ChangeLog
Added: logilab-common-0.63.2.ebuild
Log:
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.148 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.147&r2=1.148
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog 26 Dec 2014 18:06:40 -0000 1.147
+++ ChangeLog 26 Jan 2015 17:00:30 -0000 1.148
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/logilab-common
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.147 2014/12/26 18:06:40 maekke Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.148 2015/01/26 17:00:30 vapier Exp $
+
+*logilab-common-0.63.2 (26 Jan 2015)
+
+ 26 Jan 2015; Mike Frysinger <vapier@gentoo.org> +logilab-common-0.63.2.ebuild:
+ Version bump.
26 Dec 2014; Markus Meier <maekke@gentoo.org> logilab-common-0.62.1.ebuild:
arm stable, bug #532490
1.1 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.1&content-type=text/plain
Index: logilab-common-0.63.2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.1 2015/01/26 17:00:30 vapier Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
inherit distutils-r1 eutils
DESCRIPTION="Useful miscellaneous modules used by Logilab projects"
HOMEPAGE="http://www.logilab.org/project/logilab-common http://pypi.python.org/pypi/logilab-common"
SRC_URI="ftp://ftp.logilab.org/pub/common/${P}.tar.gz mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# Tests using dev-python/psycopg are skipped when dev-python/psycopg isn't installed.
# egenix-mx-base tests are optional and supports python2 only.
DEPEND="${RDEPEND}
test? (
$(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7)
dev-python/pytz[${PYTHON_USEDEP}]
!dev-python/psycopg[-mxdatetime]
)
doc? ( $(python_gen_cond_dep 'dev-python/epydoc[${PYTHON_USEDEP}]' python2_7) )"
PATCHES=(
# Make sure setuptools does not create a zip file in python_test;
# this is buggy and causes tests to fail.
"${FILESDIR}/${PN}-0.59.1-zipsafe.patch"
)
# Req'd for impl specific failures in the testsuite
DISTUTILS_IN_SOURCE_BUILD=1
python_prepare_all() {
sed -e 's:(CURDIR):{S}/${P}:' -i doc/makefile || die
distutils-r1_python_prepare_all
}
python_compile_all() {
if use doc; then
# Based on the doc build in Arfrever's ebuild. It works
pushd doc > /dev/null
mkdir -p apidoc || die
epydoc --parse-only -o apidoc --html -v --no-private --exclude=__pkginfo__ --exclude=setup --exclude=test \
-n "Logilab's common library" "$(ls -d ../build/lib/logilab/common/)" build \
|| die "Generation of documentation failed"
fi
}
python_test() {
distutils_install_for_testing
# https://www.logilab.org/ticket/149345
# Prevent timezone related failure.
export TZ=UTC
# Make sure that the tests use correct modules.
pushd "${TEST_DIR}"/lib > /dev/null || die
if python_is_python3; then
# http://www.logilab.org/ticket/241813, 241807
# The suite can be made to pass under py3.4 by disabling the class MxDateTC in unittest_date.py
# These are covered by issue 241813. Any and all methods to disable them temporarily
# (assuming they will ever be fixed) are simply cumbersome in the extreme, thus impractical.
# The failures are specific to py3.4's unittest's parameters in _addSkip and not the package itself.
if [[ "${EPYTHON}" == "python3.4" ]]; then
sed -e 's:test_any:_&:' \
-i $(find . -name unittest_compat.py) || die
sed -e 's:test_add_days_worked:_&:' \
-i $(find . -name unittest_date.py) || die
fi
# Still one related failure under py3.4
# Returns a clean run under py3.3, though leaving fails exposed in this bump of 0.62.1
# https://www.logilab.org/ticket/269904
# Also unittest_date.py known to fail related to absence of installed egenix-mx-base
# rm $(find . -name unittest_umessage.py) || die
fi
"${TEST_DIR}"/scripts/pytest || die "Tests fail with ${EPYTHON}"
popd > /dev/null || die
}
python_install_all() {
distutils-r1_python_install_all
doman doc/pytest.1
use doc && dohtml -r doc/apidoc/.
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-06 22:28 Pacho Ramos (pacho)
0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:28 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/06 22:28:45
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
amd64 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.2 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.1&r2=1.2
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- logilab-common-0.63.2.ebuild 26 Jan 2015 17:00:30 -0000 1.1
+++ logilab-common-0.63.2.ebuild 6 Mar 2015 22:28:45 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.1 2015/01/26 17:00:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.2 2015/03/06 22:28:45 pacho Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.149 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.148&r2=1.149
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog 26 Jan 2015 17:00:30 -0000 1.148
+++ ChangeLog 6 Mar 2015 22:28:45 -0000 1.149
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.148 2015/01/26 17:00:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.149 2015/03/06 22:28:45 pacho Exp $
+
+ 06 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
+ amd64 stable, bug 540290
*logilab-common-0.63.2 (26 Jan 2015)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-07 0:17 Pacho Ramos (pacho)
0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07 0:17 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/07 00:17:26
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
ppc64 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.3 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.2&r2=1.3
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- logilab-common-0.63.2.ebuild 6 Mar 2015 22:28:45 -0000 1.2
+++ logilab-common-0.63.2.ebuild 7 Mar 2015 00:17:26 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.2 2015/03/06 22:28:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.3 2015/03/07 00:17:26 pacho Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.150 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog 6 Mar 2015 22:28:45 -0000 1.149
+++ ChangeLog 7 Mar 2015 00:17:26 -0000 1.150
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.149 2015/03/06 22:28:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.150 2015/03/07 00:17:26 pacho Exp $
+
+ 07 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
+ ppc64 stable, bug 540290
06 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
amd64 stable, bug 540290
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-07 8:18 Pacho Ramos (pacho)
0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07 8:18 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/07 08:18:13
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
ppc stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.4 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.3&r2=1.4
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- logilab-common-0.63.2.ebuild 7 Mar 2015 00:17:26 -0000 1.3
+++ logilab-common-0.63.2.ebuild 7 Mar 2015 08:18:13 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.3 2015/03/07 00:17:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.4 2015/03/07 08:18:13 pacho Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.151 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.150&r2=1.151
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog 7 Mar 2015 00:17:26 -0000 1.150
+++ ChangeLog 7 Mar 2015 08:18:13 -0000 1.151
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.150 2015/03/07 00:17:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.151 2015/03/07 08:18:13 pacho Exp $
+
+ 07 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
+ ppc stable, bug 540290
07 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
ppc64 stable, bug 540290
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-08 23:52 Pacho Ramos (pacho)
0 siblings, 0 replies; 10+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:52 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/08 23:52:58
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
x86 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.5 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.4&r2=1.5
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- logilab-common-0.63.2.ebuild 7 Mar 2015 08:18:13 -0000 1.4
+++ logilab-common-0.63.2.ebuild 8 Mar 2015 23:52:58 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.4 2015/03/07 08:18:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.5 2015/03/08 23:52:58 pacho Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.152 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.151&r2=1.152
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog 7 Mar 2015 08:18:13 -0000 1.151
+++ ChangeLog 8 Mar 2015 23:52:58 -0000 1.152
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.151 2015/03/07 08:18:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.152 2015/03/08 23:52:58 pacho Exp $
+
+ 08 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
+ x86 stable, bug 540290
07 Mar 2015; Pacho Ramos <pacho@gentoo.org> logilab-common-0.63.2.ebuild:
ppc stable, bug 540290
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-13 23:50 Ian Delaney (idella4)
0 siblings, 0 replies; 10+ messages in thread
From: Ian Delaney (idella4) @ 2015-03-13 23:50 UTC (permalink / raw
To: gentoo-commits
idella4 15/03/13 23:50:54
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
return dep needed for tests
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.7 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.6&r2=1.7
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- logilab-common-0.63.2.ebuild 13 Mar 2015 13:09:34 -0000 1.6
+++ logilab-common-0.63.2.ebuild 13 Mar 2015 23:50:54 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.6 2015/03/13 13:09:34 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.7 2015/03/13 23:50:54 idella4 Exp $
EAPI=5
@@ -21,7 +21,8 @@
# egenix-mx-base tests are optional and supports python2 only.
DEPEND="${RDEPEND}
- test? ( $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) )
+ test? ( $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7)
+ dev-python/pytz[${PYTHON_USEDEP}] )
doc? ( $(python_gen_cond_dep 'dev-python/epydoc[${PYTHON_USEDEP}]' python2_7) )"
PATCHES=(
1.154 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.154&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.154&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.153&r2=1.154
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog 13 Mar 2015 13:09:34 -0000 1.153
+++ ChangeLog 13 Mar 2015 23:50:54 -0000 1.154
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.153 2015/03/13 13:09:34 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.154 2015/03/13 23:50:54 idella4 Exp $
+
+ 13 Mar 2015; Ian Delaney <idella4@gentoo.org> logilab-common-0.63.2.ebuild:
+ return dep needed for tests
13 Mar 2015; Ian Delaney <idella4@gentoo.org> logilab-common-0.61.0.ebuild,
logilab-common-0.62.1.ebuild, logilab-common-0.63.2.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-03-19 5:34 Patrick Lauer (patrick)
0 siblings, 0 replies; 10+ messages in thread
From: Patrick Lauer (patrick) @ 2015-03-19 5:34 UTC (permalink / raw
To: gentoo-commits
patrick 15/03/19 05:34:16
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
Remove obsolete fixes for testphase that now fail themselves #543750
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.8 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.7&r2=1.8
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- logilab-common-0.63.2.ebuild 13 Mar 2015 23:50:54 -0000 1.7
+++ logilab-common-0.63.2.ebuild 19 Mar 2015 05:34:16 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.7 2015/03/13 23:50:54 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.8 2015/03/19 05:34:16 patrick Exp $
EAPI=5
@@ -58,25 +58,6 @@
# Make sure that the tests use correct modules.
pushd "${TEST_DIR}"/lib > /dev/null || die
-
- if python_is_python3; then
- # http://www.logilab.org/ticket/241813, 241807
- # The suite can be made to pass under py3.4 by disabling the class MxDateTC in unittest_date.py
- # These are covered by issue 241813. Any and all methods to disable them temporarily
- # (assuming they will ever be fixed) are simply cumbersome in the extreme, thus impractical.
- # The failures are specific to py3.4's unittest's parameters in _addSkip and not the package itself.
- if [[ "${EPYTHON}" == "python3.4" ]]; then
- sed -e 's:test_any:_&:' \
- -i $(find . -name unittest_compat.py) || die
- sed -e 's:test_add_days_worked:_&:' \
- -i $(find . -name unittest_date.py) || die
- fi
- # Still one related failure under py3.4
- # Returns a clean run under py3.3, though leaving fails exposed in this bump of 0.62.1
- # https://www.logilab.org/ticket/269904
- # Also unittest_date.py known to fail related to absence of installed egenix-mx-base
- # rm $(find . -name unittest_umessage.py) || die
- fi
"${TEST_DIR}"/scripts/pytest || die "Tests fail with ${EPYTHON}"
popd > /dev/null || die
}
1.155 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.155&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.155&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.154&r2=1.155
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog 13 Mar 2015 23:50:54 -0000 1.154
+++ ChangeLog 19 Mar 2015 05:34:16 -0000 1.155
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.154 2015/03/13 23:50:54 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.155 2015/03/19 05:34:16 patrick Exp $
+
+ 19 Mar 2015; Patrick Lauer <patrick@gentoo.org> logilab-common-0.63.2.ebuild:
+ Remove obsolete fixes for testphase that now fail themselves #543750
13 Mar 2015; Ian Delaney <idella4@gentoo.org> logilab-common-0.63.2.ebuild:
return dep needed for tests
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-04-13 9:26 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13 9:26 UTC (permalink / raw
To: gentoo-commits
ago 15/04/13 09:26:05
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #540290
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.8&r2=1.9
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- logilab-common-0.63.2.ebuild 19 Mar 2015 05:34:16 -0000 1.8
+++ logilab-common-0.63.2.ebuild 13 Apr 2015 09:26:05 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.8 2015/03/19 05:34:16 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.9 2015/04/13 09:26:05 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.156 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.156&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.156&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.155&r2=1.156
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog 19 Mar 2015 05:34:16 -0000 1.155
+++ ChangeLog 13 Apr 2015 09:26:05 -0000 1.156
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.155 2015/03/19 05:34:16 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.156 2015/04/13 09:26:05 ago Exp $
+
+ 13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> logilab-common-0.63.2.ebuild:
+ Stable for alpha, wrt bug #540290
19 Mar 2015; Patrick Lauer <patrick@gentoo.org> logilab-common-0.63.2.ebuild:
Remove obsolete fixes for testphase that now fail themselves #543750
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-04-14 12:50 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:50 UTC (permalink / raw
To: gentoo-commits
ago 15/04/14 12:50:03
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #540290
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.9&r2=1.10
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- logilab-common-0.63.2.ebuild 13 Apr 2015 09:26:05 -0000 1.9
+++ logilab-common-0.63.2.ebuild 14 Apr 2015 12:50:03 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.9 2015/04/13 09:26:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.10 2015/04/14 12:50:03 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.157 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.157&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.157&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.156&r2=1.157
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -r1.156 -r1.157
--- ChangeLog 13 Apr 2015 09:26:05 -0000 1.156
+++ ChangeLog 14 Apr 2015 12:50:03 -0000 1.157
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.156 2015/04/13 09:26:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.157 2015/04/14 12:50:03 ago Exp $
+
+ 14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> logilab-common-0.63.2.ebuild:
+ Stable for ia64, wrt bug #540290
13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> logilab-common-0.63.2.ebuild:
Stable for alpha, wrt bug #540290
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog
@ 2015-06-02 5:11 Jack Morgan (jmorgan)
0 siblings, 0 replies; 10+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-06-02 5:11 UTC (permalink / raw
To: gentoo-commits
jmorgan 15/06/02 05:11:19
Modified: logilab-common-0.63.2.ebuild ChangeLog
Log:
sparc stable wrt bug #540290
(Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key )
Revision Changes Path
1.11 dev-python/logilab-common/logilab-common-0.63.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild?r1=1.10&r2=1.11
Index: logilab-common-0.63.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- logilab-common-0.63.2.ebuild 14 Apr 2015 12:50:03 -0000 1.10
+++ logilab-common-0.63.2.ebuild 2 Jun 2015 05:11:19 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.10 2015/04/14 12:50:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.11 2015/06/02 05:11:19 jmorgan Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
1.158 dev-python/logilab-common/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.158&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?rev=1.158&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/logilab-common/ChangeLog?r1=1.157&r2=1.158
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog 14 Apr 2015 12:50:03 -0000 1.157
+++ ChangeLog 2 Jun 2015 05:11:19 -0000 1.158
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/logilab-common
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.157 2015/04/14 12:50:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.158 2015/06/02 05:11:19 jmorgan Exp $
+
+ 02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> logilab-common-0.63.2.ebuild:
+ sparc stable wrt bug #540290
14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> logilab-common-0.63.2.ebuild:
Stable for ia64, wrt bug #540290
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-06-02 5:11 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-07 0:17 [gentoo-commits] gentoo-x86 commit in dev-python/logilab-common: logilab-common-0.63.2.ebuild ChangeLog Pacho Ramos (pacho)
-- strict thread matches above, loose matches on Subject: below --
2015-06-02 5:11 Jack Morgan (jmorgan)
2015-04-14 12:50 Agostino Sarubbo (ago)
2015-04-13 9:26 Agostino Sarubbo (ago)
2015-03-19 5:34 Patrick Lauer (patrick)
2015-03-13 23:50 Ian Delaney (idella4)
2015-03-08 23:52 Pacho Ramos (pacho)
2015-03-07 8:18 Pacho Ramos (pacho)
2015-03-06 22:28 Pacho Ramos (pacho)
2015-01-26 17:00 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox