public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-08-21  6:26 Tim Harder (radhermit)
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Harder (radhermit) @ 2012-08-21  6:26 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/08/21 06:26:58

  Modified:             ChangeLog
  Added:                beautifulsoup-4.1.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)

Revision  Changes    Path
1.71                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	17 Aug 2012 17:08:02 -0000	1.70
+++ ChangeLog	21 Aug 2012 06:26:58 -0000	1.71
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.70 2012/08/17 17:08:02 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.71 2012/08/21 06:26:58 radhermit Exp $
+
+*beautifulsoup-4.1.3 (21 Aug 2012)
+
+  21 Aug 2012; Tim Harder <radhermit@gentoo.org> +beautifulsoup-4.1.3.ebuild:
+  Version bump.
 
 *beautifulsoup-4.1.2 (17 Aug 2012)
 



1.1                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.1 2012/08/21 06:26:58 radhermit Exp $

EAPI="4"

PYTHON_DEPEND="*:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5"
PYTHON_TESTS_RESTRICTED_ABIS="*-pypy-*"
DISTUTILS_SRC_TEST="nosetests"

inherit distutils

MY_PN="${PN}4"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Provides pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree"
HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/
	http://pypi.python.org/pypi/beautifulsoup4"
SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc test"

DEPEND="doc? ( dev-python/sphinx )
	test? ( dev-python/lxml )"
RDEPEND=""

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

src_compile() {
	distutils_src_compile
	if use doc; then
		emake -C doc html
	fi
}

src_test() {
	testing() {
		cd "build-${PYTHON_ABI}/lib"
		nosetests --verbosity="${PYTHON_TEST_VERBOSITY}"
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install
	if use doc; then
		dohtml -r doc/build/html/*
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-11-11 11:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-11 11:25 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/11 11:25:07

  Modified:             ChangeLog beautifulsoup-4.1.3.ebuild
  Log:
  Stable for amd64, wrt bug #441272
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.73                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	13 Oct 2012 18:41:14 -0000	1.72
+++ ChangeLog	11 Nov 2012 11:25:06 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.72 2012/10/13 18:41:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.73 2012/11/11 11:25:06 ago Exp $
+
+  11 Nov 2012; <ago@gentoo.org> beautifulsoup-4.1.3.ebuild:
+  Stable for amd64, wrt bug #441272
 
   13 Oct 2012; Raúl Porcel <armin76@gentoo.org>
   beautifulsoup-3.1.0.1-r1.ebuild, beautifulsoup-3.2.0.ebuild,



1.3                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- beautifulsoup-4.1.3.ebuild	13 Oct 2012 18:41:14 -0000	1.2
+++ beautifulsoup-4.1.3.ebuild	11 Nov 2012 11:25:06 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.2 2012/10/13 18:41:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.3 2012/11/11 11:25:06 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc test"
 
 DEPEND="doc? ( dev-python/sphinx )





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

* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-11-12 13:26 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-12 13:26 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/12 13:26:29

  Modified:             ChangeLog beautifulsoup-4.1.3.ebuild
  Log:
  Stable for HPPA (bug #441272).
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.74                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	11 Nov 2012 11:25:06 -0000	1.73
+++ ChangeLog	12 Nov 2012 13:26:29 -0000	1.74
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.73 2012/11/11 11:25:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.74 2012/11/12 13:26:29 jer Exp $
+
+  12 Nov 2012; Jeroen Roovers <jer@gentoo.org> beautifulsoup-4.1.3.ebuild:
+  Stable for HPPA (bug #441272).
 
   11 Nov 2012; <ago@gentoo.org> beautifulsoup-4.1.3.ebuild:
   Stable for amd64, wrt bug #441272



1.4                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- beautifulsoup-4.1.3.ebuild	11 Nov 2012 11:25:06 -0000	1.3
+++ beautifulsoup-4.1.3.ebuild	12 Nov 2012 13:26:29 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.3 2012/11/11 11:25:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.4 2012/11/12 13:26:29 jer Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc test"
 
 DEPEND="doc? ( dev-python/sphinx )





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

* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-11-20 20:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-20 20:52 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/20 20:52:35

  Modified:             ChangeLog beautifulsoup-4.1.3.ebuild
  Log:
  Stable for x86, wrt bug #441272
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.75                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	12 Nov 2012 13:26:29 -0000	1.74
+++ ChangeLog	20 Nov 2012 20:52:35 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.74 2012/11/12 13:26:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.75 2012/11/20 20:52:35 ago Exp $
+
+  20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> beautifulsoup-4.1.3.ebuild:
+  Stable for x86, wrt bug #441272
 
   12 Nov 2012; Jeroen Roovers <jer@gentoo.org> beautifulsoup-4.1.3.ebuild:
   Stable for HPPA (bug #441272).



1.5                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- beautifulsoup-4.1.3.ebuild	12 Nov 2012 13:26:29 -0000	1.4
+++ beautifulsoup-4.1.3.ebuild	20 Nov 2012 20:52:35 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.4 2012/11/12 13:26:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.5 2012/11/20 20:52:35 ago Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc test"
 
 DEPEND="doc? ( dev-python/sphinx )





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

* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-11-21 21:46 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2012-11-21 21:46 UTC (permalink / raw
  To: gentoo-commits

maekke      12/11/21 21:46:56

  Modified:             ChangeLog beautifulsoup-4.1.3.ebuild
  Log:
  arm stable, bug #441272
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.76                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	20 Nov 2012 20:52:35 -0000	1.75
+++ ChangeLog	21 Nov 2012 21:46:56 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.75 2012/11/20 20:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.76 2012/11/21 21:46:56 maekke Exp $
+
+  21 Nov 2012; Markus Meier <maekke@gentoo.org> beautifulsoup-4.1.3.ebuild:
+  arm stable, bug #441272
 
   20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> beautifulsoup-4.1.3.ebuild:
   Stable for x86, wrt bug #441272



1.6                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- beautifulsoup-4.1.3.ebuild	20 Nov 2012 20:52:35 -0000	1.5
+++ beautifulsoup-4.1.3.ebuild	21 Nov 2012 21:46:56 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.5 2012/11/20 20:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.6 2012/11/21 21:46:56 maekke Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc test"
 
 DEPEND="doc? ( dev-python/sphinx )





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

* [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild
@ 2012-12-27 10:57 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2012-12-27 10:57 UTC (permalink / raw
  To: gentoo-commits

armin76     12/12/27 10:57:07

  Modified:             ChangeLog beautifulsoup-4.1.3.ebuild
  Log:
  alpha/s390/sh/sparc stable wrt #441272
  
  (Portage version: 2.1.11.38/cvs/Linux ia64, signed Manifest commit with key F6AD3240)

Revision  Changes    Path
1.79                 dev-python/beautifulsoup/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	13 Dec 2012 22:16:56 -0000	1.78
+++ ChangeLog	27 Dec 2012 10:57:06 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/beautifulsoup
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.78 2012/12/13 22:16:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.79 2012/12/27 10:57:06 armin76 Exp $
+
+  27 Dec 2012; Raúl Porcel <armin76@gentoo.org> beautifulsoup-4.1.3.ebuild:
+  alpha/s390/sh/sparc stable wrt #441272
 
   13 Dec 2012; Agostino Sarubbo <ago@gentoo.org> beautifulsoup-4.1.3.ebuild:
   Stable for ia64, wrt bug #441272



1.9                  dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild

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

Index: beautifulsoup-4.1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- beautifulsoup-4.1.3.ebuild	13 Dec 2012 22:16:56 -0000	1.8
+++ beautifulsoup-4.1.3.ebuild	27 Dec 2012 10:57:06 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.8 2012/12/13 22:16:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-4.1.3.ebuild,v 1.9 2012/12/27 10:57:06 armin76 Exp $
 
 EAPI="4"
 
@@ -21,7 +21,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc test"
 
 DEPEND="doc? ( dev-python/sphinx )





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

end of thread, other threads:[~2012-12-27 10:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-21 21:46 [gentoo-commits] gentoo-x86 commit in dev-python/beautifulsoup: ChangeLog beautifulsoup-4.1.3.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2012-12-27 10:57 Raul Porcel (armin76)
2012-11-20 20:52 Agostino Sarubbo (ago)
2012-11-12 13:26 Jeroen Roovers (jer)
2012-11-11 11:25 Agostino Sarubbo (ago)
2012-08-21  6:26 Tim Harder (radhermit)

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