public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-0.91.2.ebuild
@ 2008-01-14 15:50 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2008-01-14 15:50 UTC (permalink / raw
  To: gentoo-commits

bicatali    08/01/14 15:50:03

  Modified:             ChangeLog
  Added:                matplotlib-0.91.2.ebuild
  Log:
  Version bump (closing bug #205713)
  (Portage version: 2.1.4)

Revision  Changes    Path
1.42                 dev-python/matplotlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	4 Jan 2008 14:32:09 -0000	1.41
+++ ChangeLog	14 Jan 2008 15:50:03 -0000	1.42
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/matplotlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.41 2008/01/04 14:32:09 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.42 2008/01/14 15:50:03 bicatali Exp $
+
+*matplotlib-0.91.2 (14 Jan 2008)
+
+  14 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org>
+  +matplotlib-0.91.2.ebuild:
+  Version bump (closing bug #205713)
 
   04 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org>
   -matplotlib-0.80-r1.ebuild:



1.1                  dev-python/matplotlib/matplotlib-0.91.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.1&content-type=text/plain

Index: matplotlib-0.91.2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.1 2008/01/14 15:50:03 bicatali Exp $

NEED_PYTHON=2.3

inherit distutils

DOC_PV=${PV}svn

DESCRIPTION="Pure python plotting library with matlab like syntax"
HOMEPAGE="http://matplotlib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
	doc? ( http://matplotlib.sourceforge.net/users_guide_${DOC_PV}.pdf )"

IUSE="cairo doc examples fltk gtk latex qt3 qt4 tk wxwindows"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="PYTHON BSD stix bakoma"

DEPEND="dev-python/numpy
	>=media-libs/freetype-2
	media-libs/libpng
	dev-python/pytz
	dev-python/python-dateutil
	gtk? ( dev-python/pygtk )
	wxwindows? ( dev-python/wxpython )"

RDEPEND="${DEPEND}
	media-fonts/ttf-bitstream-vera
	latex? ( virtual/latex-base
		virtual/ghostscript
		app-text/dvipng
		app-text/poppler )
	cairo? ( dev-python/pycairo )
	fltk?  ( dev-python/pyfltk )
	qt3?   ( dev-python/PyQt )
	qt4?   ( dev-python/PyQt4 )"

DOCS="INTERACTIVE API_CHANGES"

pkg_setup() {
	use tk && distutils_python_tkinter
}

use_setup() {
	local uword="${2}"
	[ -z "${2}" ] && uword="${1}"
	if use ${1}; then
		echo "${uword} = True"
		echo "${uword}agg = True"
	else
		echo "${uword} = False"
		echo "${uword}agg = False"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	# create setup.cfg (see setup.cfg.template for any changes)
	cat > setup.cfg <<-EOF
		[provide_packages]
		pytz = False
		dateutil = False
		configobj = False
		enthought.traits = False
		[gui_support]
		$(use_setup gtk)
		$(use_setup tk)
		$(use_setup wxwindows wx)
		$(use_setup qt3 qt)
		$(use_setup qt4)
		$(use_setup fltk)
		$(use_setup cairo)
	EOF

	# sed to avoid checks needing a X display
	sed -i \
		-e "s/check_for_gtk()/$(use gtk && echo True || echo False)/" \
		-e "s/check_for_tk()/$(use tk && echo True || echo False)/" \
		setup.py || die "sed setup.py failed"

	# respect FHS: put mpl-data in /usr/share/matplotlib
	# and config files in /etc/matplotlib
	sed -i \
		-e "/'mpl-data\/matplotlibrc',/d" \
		-e "/'mpl-data\/matplotlib.conf',/d" \
		-e "s:'lib/matplotlib/mpl-data/matplotlibrc':'matplotlibrc':" \
		-e "s:'lib/matplotlib/mpl-data/matplotlib.conf':'matplotlib.conf':" \
		setup.py \
		|| die "sed setup.py for FHS failed"

	sed -i \
		-e "s:path =  get_data_path():path = '/etc/matplotlib':" \
		-e "s:os.path.dirname(__file__):'/usr/share/${PN}':g"  \
		lib/matplotlib/{__init__,config/cutils}.py \
		|| die "sed init for FHS failed"

	# remove vera fonts (they are now a dependency)
	cd lib/matplotlib/mpl-data
	rm -f ttf/Vera*.ttf ttf/*.TXT ttf/local.conf pdfcorefonts/readme.txt
}

src_install() {
	distutils_src_install

	# respect FHS
	dodir /usr/share/${PN}
	mv "${D}"/usr/*/*/site-packages/${PN}/{mpl-data,backends/Matplotlib.nib} "${D}"/usr/share/${PN}

	insinto /etc/matplotlib
	doins matplotlibrc matplotlib.conf \
		|| die "installing config files failed"

	insinto /usr/share/doc/${PF}
	use doc && newins "${DISTDIR}"/users_guide_${DOC_PV}.pdf ${P}-users-guide.pdf
	use examples && doins -r examples
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-0.91.2.ebuild
@ 2008-03-01 18:24 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 4+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-03-01 18:24 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/03/01 18:24:05

  Modified:             ChangeLog matplotlib-0.91.2.ebuild
  Log:
  Added ~ppc wrt bug 211751
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.43                 dev-python/matplotlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	14 Jan 2008 15:50:03 -0000	1.42
+++ ChangeLog	1 Mar 2008 18:24:04 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/matplotlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.42 2008/01/14 15:50:03 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.43 2008/03/01 18:24:04 nixnut Exp $
+
+  01 Mar 2008; nixnut <nixnut@gentoo.org> matplotlib-0.91.2.ebuild:
+  Added ~ppc wrt bug 211751
 
 *matplotlib-0.91.2 (14 Jan 2008)
 



1.2                  dev-python/matplotlib/matplotlib-0.91.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?r1=1.1&r2=1.2

Index: matplotlib-0.91.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- matplotlib-0.91.2.ebuild	14 Jan 2008 15:50:03 -0000	1.1
+++ matplotlib-0.91.2.ebuild	1 Mar 2008 18:24:04 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.1 2008/01/14 15:50:03 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.2 2008/03/01 18:24:04 nixnut Exp $
 
 NEED_PYTHON=2.3
 
@@ -15,7 +15,7 @@
 
 IUSE="cairo doc examples fltk gtk latex qt3 qt4 tk wxwindows"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 LICENSE="PYTHON BSD stix bakoma"
 
 DEPEND="dev-python/numpy



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-0.91.2.ebuild
@ 2008-05-09 20:26 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2008-05-09 20:26 UTC (permalink / raw
  To: gentoo-commits

maekke      08/05/09 20:26:13

  Modified:             ChangeLog matplotlib-0.91.2.ebuild
  Log:
  amd64/x86 stable, bug #221085
  (Portage version: 2.1.5_rc8)

Revision  Changes    Path
1.44                 dev-python/matplotlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	1 Mar 2008 18:24:04 -0000	1.43
+++ ChangeLog	9 May 2008 20:26:13 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/matplotlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.43 2008/03/01 18:24:04 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.44 2008/05/09 20:26:13 maekke Exp $
+
+  09 May 2008; Markus Meier <maekke@gentoo.org> matplotlib-0.91.2.ebuild:
+  amd64/x86 stable, bug #221085
 
   01 Mar 2008; nixnut <nixnut@gentoo.org> matplotlib-0.91.2.ebuild:
   Added ~ppc wrt bug 211751



1.3                  dev-python/matplotlib/matplotlib-0.91.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?r1=1.2&r2=1.3

Index: matplotlib-0.91.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- matplotlib-0.91.2.ebuild	1 Mar 2008 18:24:04 -0000	1.2
+++ matplotlib-0.91.2.ebuild	9 May 2008 20:26:13 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.2 2008/03/01 18:24:04 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.3 2008/05/09 20:26:13 maekke Exp $
 
 NEED_PYTHON=2.3
 
@@ -15,7 +15,7 @@
 
 IUSE="cairo doc examples fltk gtk latex qt3 qt4 tk wxwindows"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 LICENSE="PYTHON BSD stix bakoma"
 
 DEPEND="dev-python/numpy



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-0.91.2.ebuild
@ 2008-05-10 10:34 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 4+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-05-10 10:34 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/05/10 10:34:30

  Modified:             ChangeLog matplotlib-0.91.2.ebuild
  Log:
  Stable on ppc wrt bug 221085
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.45                 dev-python/matplotlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	9 May 2008 20:26:13 -0000	1.44
+++ ChangeLog	10 May 2008 10:34:30 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/matplotlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.44 2008/05/09 20:26:13 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.45 2008/05/10 10:34:30 nixnut Exp $
+
+  10 May 2008; nixnut <nixnut@gentoo.org> matplotlib-0.91.2.ebuild:
+  Stable on ppc wrt bug 221085
 
   09 May 2008; Markus Meier <maekke@gentoo.org> matplotlib-0.91.2.ebuild:
   amd64/x86 stable, bug #221085



1.4                  dev-python/matplotlib/matplotlib-0.91.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild?r1=1.3&r2=1.4

Index: matplotlib-0.91.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- matplotlib-0.91.2.ebuild	9 May 2008 20:26:13 -0000	1.3
+++ matplotlib-0.91.2.ebuild	10 May 2008 10:34:30 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.3 2008/05/09 20:26:13 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.91.2.ebuild,v 1.4 2008/05/10 10:34:30 nixnut Exp $
 
 NEED_PYTHON=2.3
 
@@ -15,7 +15,7 @@
 
 IUSE="cairo doc examples fltk gtk latex qt3 qt4 tk wxwindows"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 LICENSE="PYTHON BSD stix bakoma"
 
 DEPEND="dev-python/numpy



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-05-10 10:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-10 10:34 [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-0.91.2.ebuild Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-09 20:26 Markus Meier (maekke)
2008-03-01 18:24 Gysbert Wassenaar (nixnut)
2008-01-14 15:50 Sebastien Fabbro (bicatali)

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