public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-01-26  6:02 Patrick Lauer (patrick)
  0 siblings, 0 replies; 9+ messages in thread
From: Patrick Lauer (patrick) @ 2015-01-26  6:02 UTC (permalink / raw
  To: gentoo-commits

patrick     15/01/26 06:02:14

  Modified:             ChangeLog
  Added:                pylint-1.4.1.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.115                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	15 Dec 2014 10:39:06 -0000	1.114
+++ ChangeLog	26 Jan 2015 06:02:14 -0000	1.115
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pylint
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.114 2014/12/15 10:39:06 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.115 2015/01/26 06:02:14 patrick Exp $
+
+*pylint-1.4.1 (26 Jan 2015)
+
+  26 Jan 2015; Patrick Lauer <patrick@gentoo.org> +pylint-1.4.1.ebuild:
+  Bump
 
   15 Dec 2014; Ian Delaney <idella4@gentoo.org> -pylint-0.28.0.ebuild,
   -pylint-1.1.0.ebuild, -pylint-1.2.1.ebuild, pylint-1.4.0.ebuild:



1.1                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.1 2015/01/26 06:02:14 patrick Exp $

EAPI=5

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

inherit distutils-r1

RESTRICT="test" # needs pygtk

DESCRIPTION="Python code static checker"
HOMEPAGE="http://www.logilab.org/project/pylint http://pypi.python.org/pypi/pylint"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="doc examples test"

RDEPEND="
	>=dev-python/logilab-common-0.53.0[${PYTHON_USEDEP}]
	>=dev-python/astroid-1.3[${PYTHON_USEDEP}]
	dev-python/six[${PYTHON_USEDEP}]"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
	test? ( "${RDEPEND}" )"

# Usual. Requ'd for impl specific failures in test phase
DISTUTILS_IN_SOURCE_BUILD=1

python_compile_all() {
	# selection of straight html triggers a trivial annoying bug, we skirt it
	use doc && emake -C doc singlehtml
}

python_test() {
	# Test suite appears not to work under Python 3.
	# https://bitbucket.org/logilab/pylint/issue/240/
	local msg="Test suite broken with ${EPYTHON}"
	if python_is_python3; then
		einfo "${msg}"
		return 0
	fi

	pytest || die "Tests failed under ${EPYTHON}"
}

python_install_all() {
	doman man/{pylint,pyreverse}.1
	use examples && local EXAMPLES=( examples/. )
	use doc && local HTML_DOCS=( doc/_build/singlehtml/. )
	distutils-r1_python_install_all
}

pkg_postinst() {
	# Optional dependency on "tk" USE flag would break support for Jython.
	elog "pylint-gui script requires dev-lang/python with \"tk\" USE flag enabled."
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-01-27 22:50 Mike Frysinger (vapier)
  0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2015-01-27 22:50 UTC (permalink / raw
  To: gentoo-commits

vapier      15/01/27 22:50:34

  Modified:             pylint-1.4.1.ebuild ChangeLog
  Log:
  Fix dependencies to reflect the source requirements.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.2                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pylint-1.4.1.ebuild	26 Jan 2015 06:02:14 -0000	1.1
+++ pylint-1.4.1.ebuild	27 Jan 2015 22:50:34 -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/pylint/pylint-1.4.1.ebuild,v 1.1 2015/01/26 06:02:14 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.2 2015/01/27 22:50:34 vapier Exp $
 
 EAPI=5
 
@@ -21,11 +21,11 @@
 
 RDEPEND="
 	>=dev-python/logilab-common-0.53.0[${PYTHON_USEDEP}]
-	>=dev-python/astroid-1.3[${PYTHON_USEDEP}]
+	>=dev-python/astroid-1.3.3[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? ( "${RDEPEND}" )"
+	test? ( ${RDEPEND} )"
 
 # Usual. Requ'd for impl specific failures in test phase
 DISTUTILS_IN_SOURCE_BUILD=1



1.116                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	26 Jan 2015 06:02:14 -0000	1.115
+++ ChangeLog	27 Jan 2015 22:50:34 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.115 2015/01/26 06:02:14 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.116 2015/01/27 22:50:34 vapier Exp $
+
+  27 Jan 2015; Mike Frysinger <vapier@gentoo.org> pylint-1.4.1.ebuild:
+  Fix dependencies to reflect the source requirements.
 
 *pylint-1.4.1 (26 Jan 2015)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-03-06 22:33 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:33 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:33:45

  Modified:             pylint-1.4.1.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.3                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pylint-1.4.1.ebuild	27 Jan 2015 22:50:34 -0000	1.2
+++ pylint-1.4.1.ebuild	6 Mar 2015 22:33:45 -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/pylint/pylint-1.4.1.ebuild,v 1.2 2015/01/27 22:50:34 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.3 2015/03/06 22:33:45 pacho Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.117                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	27 Jan 2015 22:50:34 -0000	1.116
+++ ChangeLog	6 Mar 2015 22:33:45 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.116 2015/01/27 22:50:34 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.117 2015/03/06 22:33:45 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
+  amd64 stable, bug 540290
 
   27 Jan 2015; Mike Frysinger <vapier@gentoo.org> pylint-1.4.1.ebuild:
   Fix dependencies to reflect the source requirements.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-03-07  0:18 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07  0:18 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/07 00:18:07

  Modified:             pylint-1.4.1.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.4                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pylint-1.4.1.ebuild	6 Mar 2015 22:33:45 -0000	1.3
+++ pylint-1.4.1.ebuild	7 Mar 2015 00:18:07 -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/pylint/pylint-1.4.1.ebuild,v 1.3 2015/03/06 22:33:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.4 2015/03/07 00:18:07 pacho Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.118                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	6 Mar 2015 22:33:45 -0000	1.117
+++ ChangeLog	7 Mar 2015 00:18:07 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.117 2015/03/06 22:33:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.118 2015/03/07 00:18:07 pacho Exp $
+
+  07 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
+  ppc64 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
   amd64 stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-03-07  8:19 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-07  8:19 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/07 08:19:42

  Modified:             pylint-1.4.1.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.5                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pylint-1.4.1.ebuild	7 Mar 2015 00:18:07 -0000	1.4
+++ pylint-1.4.1.ebuild	7 Mar 2015 08:19:42 -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/pylint/pylint-1.4.1.ebuild,v 1.4 2015/03/07 00:18:07 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.5 2015/03/07 08:19:42 pacho Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.119                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	7 Mar 2015 00:18:07 -0000	1.118
+++ ChangeLog	7 Mar 2015 08:19:42 -0000	1.119
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.118 2015/03/07 00:18:07 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.119 2015/03/07 08:19:42 pacho Exp $
+
+  07 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
+  ppc stable, bug 540290
 
   07 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
   ppc64 stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-03-08 23:56 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:56 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:56:18

  Modified:             pylint-1.4.1.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.6                  dev-python/pylint/pylint-1.4.1.ebuild

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

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pylint-1.4.1.ebuild	7 Mar 2015 08:19:42 -0000	1.5
+++ pylint-1.4.1.ebuild	8 Mar 2015 23:56:18 -0000	1.6
@@ -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/pylint/pylint-1.4.1.ebuild,v 1.5 2015/03/07 08:19:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.6 2015/03/08 23:56:18 pacho Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.120                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	7 Mar 2015 08:19:42 -0000	1.119
+++ ChangeLog	8 Mar 2015 23:56:18 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.119 2015/03/07 08:19:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.120 2015/03/08 23:56:18 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
+  x86 stable, bug 540290
 
   07 Mar 2015; Pacho Ramos <pacho@gentoo.org> pylint-1.4.1.ebuild:
   ppc stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-04-13  9:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-13  9:26 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/13 09:26:30

  Modified:             pylint-1.4.1.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.7                  dev-python/pylint/pylint-1.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?r1=1.6&r2=1.7

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pylint-1.4.1.ebuild	8 Mar 2015 23:56:18 -0000	1.6
+++ pylint-1.4.1.ebuild	13 Apr 2015 09:26:30 -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/pylint/pylint-1.4.1.ebuild,v 1.6 2015/03/08 23:56:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.7 2015/04/13 09:26:30 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.124                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog	23 Mar 2015 05:28:21 -0000	1.123
+++ ChangeLog	13 Apr 2015 09:26:30 -0000	1.124
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.123 2015/03/23 05:28:21 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.124 2015/04/13 09:26:30 ago Exp $
+
+  13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> pylint-1.4.1.ebuild:
+  Stable for alpha, wrt bug #540290
 
 *pylint-0.25.2 (23 Mar 2015)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-04-14 12:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:50 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/14 12:50:48

  Modified:             pylint-1.4.1.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.8                  dev-python/pylint/pylint-1.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?r1=1.7&r2=1.8

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pylint-1.4.1.ebuild	13 Apr 2015 09:26:30 -0000	1.7
+++ pylint-1.4.1.ebuild	14 Apr 2015 12:50:48 -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/pylint/pylint-1.4.1.ebuild,v 1.7 2015/04/13 09:26:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.8 2015/04/14 12:50:48 ago Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.125                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog	13 Apr 2015 09:26:30 -0000	1.124
+++ ChangeLog	14 Apr 2015 12:50:48 -0000	1.125
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.124 2015/04/13 09:26:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.125 2015/04/14 12:50:48 ago Exp $
+
+  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> pylint-1.4.1.ebuild:
+  Stable for ia64, wrt bug #540290
 
   13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> pylint-1.4.1.ebuild:
   Stable for alpha, wrt bug #540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog
@ 2015-06-02  5:12 Jack Morgan (jmorgan)
  0 siblings, 0 replies; 9+ messages in thread
From: Jack Morgan (jmorgan) @ 2015-06-02  5:12 UTC (permalink / raw
  To: gentoo-commits

jmorgan     15/06/02 05:12:38

  Modified:             pylint-1.4.1.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.9                  dev-python/pylint/pylint-1.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild?r1=1.8&r2=1.9

Index: pylint-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pylint-1.4.1.ebuild	14 Apr 2015 12:50:48 -0000	1.8
+++ pylint-1.4.1.ebuild	2 Jun 2015 05:12:37 -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/pylint/pylint-1.4.1.ebuild,v 1.8 2015/04/14 12:50:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/pylint-1.4.1.ebuild,v 1.9 2015/06/02 05:12:37 jmorgan Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="



1.130                dev-python/pylint/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog	27 Apr 2015 05:46:42 -0000	1.129
+++ ChangeLog	2 Jun 2015 05:12:37 -0000	1.130
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pylint
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.129 2015/04/27 05:46:42 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pylint/ChangeLog,v 1.130 2015/06/02 05:12:37 jmorgan Exp $
+
+  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> pylint-1.4.1.ebuild:
+  sparc stable wrt bug #540290
 
 *pylint-0.25.2 (27 Apr 2015)
 





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

end of thread, other threads:[~2015-06-02  5:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-07  0:18 [gentoo-commits] gentoo-x86 commit in dev-python/pylint: pylint-1.4.1.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-02  5:12 Jack Morgan (jmorgan)
2015-04-14 12:50 Agostino Sarubbo (ago)
2015-04-13  9:26 Agostino Sarubbo (ago)
2015-03-08 23:56 Pacho Ramos (pacho)
2015-03-07  8:19 Pacho Ramos (pacho)
2015-03-06 22:33 Pacho Ramos (pacho)
2015-01-27 22:50 Mike Frysinger (vapier)
2015-01-26  6:02 Patrick Lauer (patrick)

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