public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2012-06-18 10:16 Patrick Lauer (patrick)
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Lauer (patrick) @ 2012-06-18 10:16 UTC (permalink / raw
  To: gentoo-commits

patrick     12/06/18 10:16:15

  Modified:             ChangeLog
  Added:                visual-5.74.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.59                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	14 Jun 2012 18:43:35 -0000	1.58
+++ ChangeLog	18 Jun 2012 10:16:15 -0000	1.59
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/visual
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.58 2012/06/14 18:43:35 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.59 2012/06/18 10:16:15 patrick Exp $
+
+*visual-5.74 (18 Jun 2012)
+
+  18 Jun 2012; Patrick Lauer <patrick@gentoo.org> +visual-5.74.ebuild:
+  Bump
 
   14 Jun 2012; Jeff Horelick <jdhore@gentoo.org> visual-5.72-r2.ebuild:
   marked x86 per bug 413815



1.1                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.1 2012/06/18 10:16:15 patrick Exp $

EAPI="4"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5 3.* *-jython 2.7-pypy-*"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"

inherit flag-o-matic multilib python versionator

MY_P="${PN}-$(delete_version_separator 2)_release"

DESCRIPTION="Real-time 3D graphics library for Python"
HOMEPAGE="http://www.vpython.org/"
SRC_URI="http://www.vpython.org/contents/download/${MY_P}.tar.bz2"

LICENSE="visual"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"

RDEPEND=">=dev-cpp/gtkglextmm-1.2
	dev-cpp/libglademm
	>=dev-libs/boost-1.48[python]
	dev-python/numpy
	dev-python/polygon:2
	dev-python/ttfquery"
DEPEND="${RDEPEND}
	virtual/pkgconfig"

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

src_prepare() {
	# Delete redundant file, which causes compilation failure.
	rm -f src/gtk2/random_device.cpp
	sed -i \
		-e "s/ random_device.l\?o//" \
		src/Makefile.in src/gtk2/makefile || die

	# Verbose build.
	sed -i \
		-e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \
		src/Makefile.in || die

	python_clean_py-compile_files
	python_src_prepare

	preparation() {
		sed -i \
			-e "s/-lboost_python/-lboost_python-${PYTHON_ABI}/" \
			-e "s/libboost_python/libboost_python-${PYTHON_ABI}/" \
			src/Makefile.in src/gtk2/makefile
	}
	python_execute_function -s preparation
}

src_configure() {
	BOOST_PKG="$(best_version ">=dev-libs/boost-1.48")"
	BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
	BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
	BOOST_INC="${EPREFIX}/usr/include/boost-${BOOST_VER}"
	BOOST_LIB="${EPREFIX}/usr/$(get_libdir)/boost-${BOOST_VER}"

	# Specify the include and lib directory for Boost.
	append-cxxflags -I${BOOST_INC}
	append-ldflags -L${BOOST_LIB}

	python_src_configure \
		--with-example-dir="${EPREFIX}/usr/share/doc/${PF}/examples" \
		--with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html" \
		$(use_enable doc docs) \
		$(use_enable examples)
}

src_install() {
	python_src_install
	python_clean_installation_image

	dodoc authors.txt HACKING.txt NEWS.txt

	# Don't install useless vpython script.
	rm -fr "${ED}usr/bin"
}

pkg_postinst() {
	python_mod_optimize vis visual
}

pkg_postrm() {
	python_mod_cleanup vis visual
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2012-06-18 15:38 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2012-06-18 15:38 UTC (permalink / raw
  To: gentoo-commits

floppym     12/06/18 15:38:51

  Modified:             visual-5.74.ebuild ChangeLog
  Log:
  Remove workarounds due to changes in build system upstream. Thanks Arfrever.
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- visual-5.74.ebuild	18 Jun 2012 10:16:15 -0000	1.1
+++ visual-5.74.ebuild	18 Jun 2012 15:38:51 -0000	1.2
@@ -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/visual/visual-5.74.ebuild,v 1.1 2012/06/18 10:16:15 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.2 2012/06/18 15:38:51 floppym Exp $
 
 EAPI="4"
 SUPPORT_PYTHON_ABIS="1"
@@ -32,12 +32,6 @@
 S="${WORKDIR}/${MY_P}"
 
 src_prepare() {
-	# Delete redundant file, which causes compilation failure.
-	rm -f src/gtk2/random_device.cpp
-	sed -i \
-		-e "s/ random_device.l\?o//" \
-		src/Makefile.in src/gtk2/makefile || die
-
 	# Verbose build.
 	sed -i \
 		-e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \
@@ -78,9 +72,6 @@
 	python_clean_installation_image
 
 	dodoc authors.txt HACKING.txt NEWS.txt
-
-	# Don't install useless vpython script.
-	rm -fr "${ED}usr/bin"
 }
 
 pkg_postinst() {



1.60                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	18 Jun 2012 10:16:15 -0000	1.59
+++ ChangeLog	18 Jun 2012 15:38:51 -0000	1.60
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/visual
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.59 2012/06/18 10:16:15 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.60 2012/06/18 15:38:51 floppym Exp $
+
+  18 Jun 2012; Mike Gilbert <floppym@gentoo.org> visual-5.74.ebuild:
+  Remove workarounds due to changes in build system upstream. Thanks Arfrever.
 
 *visual-5.74 (18 Jun 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2012-07-07 19:19 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2012-07-07 19:19 UTC (permalink / raw
  To: gentoo-commits

floppym     12/07/07 19:19:25

  Modified:             visual-5.74.ebuild ChangeLog
  Log:
  Fix build failure with Boost 1.50. Patch by Arfrever.
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- visual-5.74.ebuild	18 Jun 2012 15:38:51 -0000	1.2
+++ visual-5.74.ebuild	7 Jul 2012 19:19:25 -0000	1.3
@@ -1,13 +1,13 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.2 2012/06/18 15:38:51 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.3 2012/07/07 19:19:25 floppym Exp $
 
 EAPI="4"
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="2.5 3.* *-jython 2.7-pypy-*"
 PYTHON_EXPORT_PHASE_FUNCTIONS="1"
 
-inherit flag-o-matic multilib python versionator
+inherit eutils flag-o-matic multilib python versionator
 
 MY_P="${PN}-$(delete_version_separator 2)_release"
 
@@ -37,6 +37,8 @@
 		-e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \
 		src/Makefile.in || die
 
+	epatch "${FILESDIR}/${P}-boost-1.50.patch"
+
 	python_clean_py-compile_files
 	python_src_prepare
 



1.61                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	18 Jun 2012 15:38:51 -0000	1.60
+++ ChangeLog	7 Jul 2012 19:19:25 -0000	1.61
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/visual
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.60 2012/06/18 15:38:51 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.61 2012/07/07 19:19:25 floppym Exp $
+
+  07 Jul 2012; Mike Gilbert <floppym@gentoo.org>
+  +files/visual-5.74-boost-1.50.patch, visual-5.74.ebuild:
+  Fix build failure with Boost 1.50. Patch by Arfrever.
 
   18 Jun 2012; Mike Gilbert <floppym@gentoo.org> visual-5.74.ebuild:
   Remove workarounds due to changes in build system upstream. Thanks Arfrever.
@@ -248,4 +252,3 @@
 
   01 Jun 2005; <tercel@gentoo.org> +metadata.xml, +visual-3.2.1.ebuild:
   Initial commit.
-






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

* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2012-11-11 13:35 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 6+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-11 13:35 UTC (permalink / raw
  To: gentoo-commits

blueness    12/11/11 13:35:54

  Modified:             visual-5.74.ebuild ChangeLog
  Log:
  Rapid stabilization to heal tree, bug #442318
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.5                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- visual-5.74.ebuild	11 Nov 2012 13:24:02 -0000	1.4
+++ visual-5.74.ebuild	11 Nov 2012 13:35:54 -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/visual/visual-5.74.ebuild,v 1.4 2012/11/11 13:24:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.5 2012/11/11 13:35:54 blueness Exp $
 
 EAPI="4"
 SUPPORT_PYTHON_ABIS="1"
@@ -17,7 +17,7 @@
 
 LICENSE="visual"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="doc examples"
 
 RDEPEND=">=dev-cpp/gtkglextmm-1.2



1.63                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	11 Nov 2012 13:24:02 -0000	1.62
+++ ChangeLog	11 Nov 2012 13:35:54 -0000	1.63
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/visual
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.62 2012/11/11 13:24:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.63 2012/11/11 13:35:54 blueness Exp $
+
+  11 Nov 2012; Anthony G. Basile <blueness@gentoo.org> visual-5.72-r2.ebuild,
+  visual-5.74.ebuild:
+  Rapid stabilization to heal tree, bug #442318
 
   11 Nov 2012; Anthony G. Basile <blueness@gentoo.org> -visual-5.4.ebuild,
   visual-5.72-r2.ebuild, visual-5.74.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2013-09-14 17:39 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-14 17:39 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/14 17:39:23

  Modified:             visual-5.74.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #460384
  
  (Portage version: 2.2.2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- visual-5.74.ebuild	16 Nov 2012 13:38:45 -0000	1.6
+++ visual-5.74.ebuild	14 Sep 2013 17:39:23 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.6 2012/11/16 13:38:45 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.7 2013/09/14 17:39:23 ago Exp $
 
 EAPI="4"
 SUPPORT_PYTHON_ABIS="1"
@@ -17,7 +17,7 @@
 
 LICENSE="HPND Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="doc examples"
 
 RDEPEND=">=dev-cpp/gtkglextmm-1.2



1.65                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	16 Nov 2012 13:38:45 -0000	1.64
+++ ChangeLog	14 Sep 2013 17:39:23 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/visual
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.64 2012/11/16 13:38:45 idella4 Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.65 2013/09/14 17:39:23 ago Exp $
+
+  14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> visual-5.74.ebuild:
+  Stable for amd64, wrt bug #460384
 
   17 Nov 2012; Ian Delaney <idella4@gentoo.org> visual-5.72-r2.ebuild,
   visual-5.74.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog
@ 2013-09-22  6:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-22  6:50 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/22 06:50:05

  Modified:             visual-5.74.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #460384
  
  (Portage version: 2.2.2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-python/visual/visual-5.74.ebuild

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

Index: visual-5.74.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- visual-5.74.ebuild	14 Sep 2013 17:39:23 -0000	1.7
+++ visual-5.74.ebuild	22 Sep 2013 06:50:05 -0000	1.8
@@ -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/visual/visual-5.74.ebuild,v 1.7 2013/09/14 17:39:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/visual-5.74.ebuild,v 1.8 2013/09/22 06:50:05 ago Exp $
 
 EAPI="4"
 SUPPORT_PYTHON_ABIS="1"
@@ -17,7 +17,7 @@
 
 LICENSE="HPND Boost-1.0"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc examples"
 
 RDEPEND=">=dev-cpp/gtkglextmm-1.2



1.66                 dev-python/visual/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	14 Sep 2013 17:39:23 -0000	1.65
+++ ChangeLog	22 Sep 2013 06:50:05 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/visual
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.65 2013/09/14 17:39:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/visual/ChangeLog,v 1.66 2013/09/22 06:50:05 ago Exp $
+
+  22 Sep 2013; Agostino Sarubbo <ago@gentoo.org> visual-5.74.ebuild:
+  Stable for x86, wrt bug #460384
 
   14 Sep 2013; Agostino Sarubbo <ago@gentoo.org> visual-5.74.ebuild:
   Stable for amd64, wrt bug #460384





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

end of thread, other threads:[~2013-09-22  6:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-18 10:16 [gentoo-commits] gentoo-x86 commit in dev-python/visual: visual-5.74.ebuild ChangeLog Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-18 15:38 Mike Gilbert (floppym)
2012-07-07 19:19 Mike Gilbert (floppym)
2012-11-11 13:35 Anthony G. Basile (blueness)
2013-09-14 17:39 Agostino Sarubbo (ago)
2013-09-22  6:50 Agostino Sarubbo (ago)

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