* [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/
@ 2016-01-02 17:42 Justin Lecher
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2016-01-02 17:42 UTC (permalink / raw
To: gentoo-commits
commit: 104550b95288c8006f02c3867e1cefdcb5283e4e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 2 17:42:00 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jan 2 17:42:00 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104550b9
dev-python/visual: Bump to EAPI=5 and python-single-r1.eclass
Fix for libsigc++-2.6
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=570618
Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/visual/visual-5.74-r1.ebuild | 72 +++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/dev-python/visual/visual-5.74-r1.ebuild b/dev-python/visual/visual-5.74-r1.ebuild
new file mode 100644
index 0000000..a2d6d23
--- /dev/null
+++ b/dev-python/visual/visual-5.74-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils flag-o-matic multilib python-single-r1 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="HPND Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc examples"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ >=dev-cpp/gtkglextmm-1.2
+ dev-cpp/libglademm
+ >=dev-libs/boost-1.48[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/polygon:2[${PYTHON_USEDEP}]
+ dev-python/ttfquery[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ # Verbose build.
+ sed -i \
+ -e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \
+ src/Makefile.in || die
+
+ epatch "${FILESDIR}/${P}-boost-1.50.patch"
+
+ sed \
+ -e "s/-lboost_python/-lboost_python-${EPYTHON#python}/" \
+ -e "s/libboost_python/libboost_python-${EPYTHON#python}/" \
+ -i src/Makefile.in src/gtk2/makefile || die
+}
+
+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} -std=c++11
+ append-ldflags -L${BOOST_LIB}
+
+ econf \
+ --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() {
+ default
+
+ dodoc authors.txt HACKING.txt NEWS.txt
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/
@ 2016-01-23 16:59 Agostino Sarubbo
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo @ 2016-01-23 16:59 UTC (permalink / raw
To: gentoo-commits
commit: e5258c7caf4fe2da190bd5dbce905a0c3d2becc0
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 23 16:58:44 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jan 23 16:59:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5258c7c
dev-python/visual: amd64 stable wrt bug #570648
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/visual/visual-5.74-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/visual/visual-5.74-r1.ebuild b/dev-python/visual/visual-5.74-r1.ebuild
index a2d6d23..e8381b7 100644
--- a/dev-python/visual/visual-5.74-r1.ebuild
+++ b/dev-python/visual/visual-5.74-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://www.vpython.org/contents/download/${MY_P}.tar.bz2"
LICENSE="HPND Boost-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="doc examples"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/
@ 2016-01-30 9:40 Pacho Ramos
0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2016-01-30 9:40 UTC (permalink / raw
To: gentoo-commits
commit: c40f285cbb3e9a1c54a22ebe0af20b8e26068775
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 30 09:39:10 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jan 30 09:39:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40f285c
dev-python/visual: x86 stable, bug #570648
Package-Manager: portage-2.2.26
dev-python/visual/visual-5.74-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/visual/visual-5.74-r1.ebuild b/dev-python/visual/visual-5.74-r1.ebuild
index e8381b7..5790096 100644
--- a/dev-python/visual/visual-5.74-r1.ebuild
+++ b/dev-python/visual/visual-5.74-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://www.vpython.org/contents/download/${MY_P}.tar.bz2"
LICENSE="HPND Boost-1.0"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="doc examples"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/
@ 2016-05-05 21:11 David Seifert
0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2016-05-05 21:11 UTC (permalink / raw
To: gentoo-commits
commit: a711d55260da4d33c1c2996f7c0e5323fae34931
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu May 5 19:35:06 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May 5 21:11:01 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a711d552
dev-python/visual: Require USE="threads" for dev-libs/boost
Gentoo-Bug: 581126
Package-Manager: portage-2.2.28
dev-python/visual/visual-5.74-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/visual/visual-5.74-r1.ebuild b/dev-python/visual/visual-5.74-r1.ebuild
index fa88051..74a9712 100644
--- a/dev-python/visual/visual-5.74-r1.ebuild
+++ b/dev-python/visual/visual-5.74-r1.ebuild
@@ -24,7 +24,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=dev-cpp/gtkglextmm-1.2
dev-cpp/libglademm
- >=dev-libs/boost-1.48[python,${PYTHON_USEDEP}]
+ >=dev-libs/boost-1.48:=[threads,python,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/polygon:2[${PYTHON_USEDEP}]
dev-python/ttfquery[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/
@ 2016-09-05 16:40 Manuel Rüger
0 siblings, 0 replies; 5+ messages in thread
From: Manuel Rüger @ 2016-09-05 16:40 UTC (permalink / raw
To: gentoo-commits
commit: ac40477c169947c524c081e43907781aaea5c1d8
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 5 16:38:20 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Sep 5 16:38:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac40477c
dev-python/visual: Remove old
Package-Manager: portage-2.3.0
dev-python/visual/visual-5.74.ebuild | 85 ------------------------------------
1 file changed, 85 deletions(-)
diff --git a/dev-python/visual/visual-5.74.ebuild b/dev-python/visual/visual-5.74.ebuild
deleted file mode 100644
index 5ac636d..00000000
--- a/dev-python/visual/visual-5.74.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.5 3.* *-jython 2.7-pypy-*"
-PYTHON_EXPORT_PHASE_FUNCTIONS="1"
-
-inherit eutils 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="HPND Boost-1.0"
-SLOT="0"
-KEYWORDS="amd64 ppc 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() {
- # Verbose build.
- sed -i \
- -e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \
- src/Makefile.in || die
-
- epatch "${FILESDIR}/${P}-boost-1.50.patch"
-
- 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
-}
-
-pkg_postinst() {
- python_mod_optimize vis visual
-}
-
-pkg_postrm() {
- python_mod_cleanup vis visual
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-09-05 16:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-23 16:59 [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2016-09-05 16:40 Manuel Rüger
2016-05-05 21:11 David Seifert
2016-01-30 9:40 Pacho Ramos
2016-01-02 17:42 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox