From 2e4d6cfdacf10b35091c5e2572c6e77a5e1b0db3 Mon Sep 17 00:00:00 2001 From: Bertrand Jacquin Date: Wed, 7 Aug 2013 22:30:40 +0200 Subject: dev-python/matplotlib: Version bump, see #479970 Package-Manager: portage-2.1.13.5 --- dev-python/matplotlib/ChangeLog | 5 + dev-python/matplotlib/Manifest | 5 + .../matplotlib/files/matplotlib-1.2.0-setup.patch | 36 ++++ dev-python/matplotlib/matplotlib-1.3.0.ebuild | 194 +++++++++++++++++++++ dev-python/matplotlib/metadata.xml | 22 +++ 5 files changed, 262 insertions(+) create mode 100644 dev-python/matplotlib/ChangeLog create mode 100644 dev-python/matplotlib/Manifest create mode 100644 dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch create mode 100644 dev-python/matplotlib/matplotlib-1.3.0.ebuild create mode 100644 dev-python/matplotlib/metadata.xml (limited to 'dev-python') diff --git a/dev-python/matplotlib/ChangeLog b/dev-python/matplotlib/ChangeLog new file mode 100644 index 00000000..a8ae4174 --- /dev/null +++ b/dev-python/matplotlib/ChangeLog @@ -0,0 +1,5 @@ +*matplotlib-1.3.0 (07 Aug 2013) + + 07 Aug 2013; Bertrand Jacquin + +files/matplotlib-1.2.0-setup.patch, +matplotlib-1.3.0.ebuild, +metadata.xml: + dev-python/matplotlib: Version bump, see #479970 diff --git a/dev-python/matplotlib/Manifest b/dev-python/matplotlib/Manifest new file mode 100644 index 00000000..00e3848f --- /dev/null +++ b/dev-python/matplotlib/Manifest @@ -0,0 +1,5 @@ +AUX matplotlib-1.2.0-setup.patch 1283 SHA256 e078b2385dc0b882a7df1a13df070ad5ec704e9e18df2f19bd642c7ae40e8a97 WHIRLPOOL eeb0db8a14f33ccfe82ab677c27f92456dd8255b9c0d352d1496b5ab1f9336e643698435d96b6ff2a3657445737105eb060158014001cd0cc3d894c391111ce9 +DIST matplotlib-1.3.0.tar.gz 42098180 SHA256 3e37044911245d7d881ddab0152cfec463c597b9a207c7f87021b8f40e1cbd98 WHIRLPOOL f144b12ec8c0900ae20d39e0b01376ba52886dd7ded2d0b36a16ff0d59c0f9af946c95e3bb3fec7e4a589326ec6986afee70ff0905739e1912469122f45029a6 +EBUILD matplotlib-1.3.0.ebuild 4721 SHA256 6b15a494c812a18a9d3131e63760baab6b31fdf42cbe16b7095530524fe3904c WHIRLPOOL abf2c509add7e1b84ae5c8a1dcfcaf8bc9ac65b4c0d9cdc146eb70f5863684e1f29a7df7b078809c99d4330c24dff5f2767190d313a1b3728e3e39fbb97bbe04 +MISC ChangeLog 217 SHA256 5b9fadb728ec08ef6e7c095c6e87c1d6756b6c92473455a0c95c7c49d095be49 WHIRLPOOL 048abe870140841e08187a02435260c3a92ee774ac9abc3d30c4f9e689c723ada9dc469ea0d1e510c4de6932dcced7086cc77d0d3d17c0a1bfaccde1b0ddadb0 +MISC metadata.xml 810 SHA256 9415358b60b2d0db41f7b11813f4467eb39517b12a575420f57c19df8425e2af WHIRLPOOL f0d50fb7848ec3afada2784af0cdeba1637bd12b3614b1914ad8f01219026294042d31e22185498876d2b9ef028c789d487f6db354b6701a80263a60911af3ea diff --git a/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch b/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch new file mode 100644 index 00000000..ba035184 --- /dev/null +++ b/dev-python/matplotlib/files/matplotlib-1.2.0-setup.patch @@ -0,0 +1,36 @@ +diff -ur matplotlib-1.2.0.orig/setup.py matplotlib-1.2.0/setup.py +--- setup.py 2012-11-08 10:24:12.000000000 +0800 ++++ setup.py 2012-11-25 06:55:27.531042898 +0800 +@@ -171,20 +171,19 @@ + # regardless of the lack of dependencies. If auto, silently skip + # when dependencies are missing. + if options['build_tkagg']: +- if check_for_tk() or (options['build_tkagg'] is True): +- options['build_agg'] = 1 +- build_tkagg(ext_modules, packages) +- rc['backend'] = 'TkAgg' ++ options['build_agg'] = 1 ++ build_tkagg(ext_modules, packages) ++ rc['backend'] = 'TkAgg' + +-hasgtk = check_for_gtk() +-if options['build_gtk']: +- if hasgtk or (options['build_gtk'] is True): +- build_gdk(ext_modules, packages) +-if options['build_gtkagg']: +- if hasgtk or (options['build_gtkagg'] is True): +- options['build_agg'] = 1 +- build_gtkagg(ext_modules, packages) +- rc['backend'] = 'GTKAgg' ++if sys.version_info[0] >= 3: ++ hasgtk = False ++else: ++ hasgtk = True ++if hasgtk and (options['build_gtk'] is True): ++ build_gdk(ext_modules, packages) ++ options['build_agg'] = 1 ++ build_gtkagg(ext_modules, packages) ++ rc['backend'] = 'GTKAgg' + + if options['build_macosx']: + if check_for_macosx() or (options['build_macosx'] is True): diff --git a/dev-python/matplotlib/matplotlib-1.3.0.ebuild b/dev-python/matplotlib/matplotlib-1.3.0.ebuild new file mode 100644 index 00000000..d12bc6b2 --- /dev/null +++ b/dev-python/matplotlib/matplotlib-1.3.0.ebuild @@ -0,0 +1,194 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.2.1.ebuild,v 1.4 2013/06/09 17:47:12 floppym Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) +PYTHON_REQ_USE='tk?' + +inherit distutils-r1 eutils flag-o-matic + +DESCRIPTION="Pure python plotting library with matlab like syntax" +HOMEPAGE="http://matplotlib.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +IUSE="cairo doc excel examples fltk gtk gtk3 latex qt4 test tk" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + +# Main license: matplotlib +# Some modules: BSD +# matplotlib/backends/qt4_editor: MIT +# Fonts: BitstreamVera, OFL-1.1 +LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1" + +# #456704 -- a lot of py2-only deps +PY2_USEDEP=$(python_gen_usedep 'python2*') +PY32_USEDEP=$(python_gen_usedep python{3_2,3_3}) +COMMON_DEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + media-fonts/stix-fonts + media-libs/freetype:2 + media-libs/libpng + gtk? ( dev-python/pygtk[${PY2_USEDEP}] ) + dev-python/wxpython:2.8[${PY2_USEDEP}]" + +# internal copy of pycxx highly patched +# dev-python/pycxx + +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig + doc? ( + app-text/dvipng + virtual/python-imaging[${PY2_USEDEP},${PY32_USEDEP}] + dev-python/ipython + dev-python/xlwt[${PY2_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + dev-texlive/texlive-latexextra + dev-texlive/texlive-fontsrecommended + dev-texlive/texlive-latexrecommended + media-gfx/graphviz[cairo] + ) + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +RDEPEND="${COMMON_DEPEND} + virtual/pyparsing[${PYTHON_USEDEP}] + cairo? ( dev-python/pycairo[${PYTHON_USEDEP}] ) + excel? ( dev-python/xlwt[${PY2_USEDEP}] ) + fltk? ( dev-python/pyfltk[${PY2_USEDEP}] ) + gtk3? ( dev-python/pygobject:3[${PYTHON_USEDEP}] + x11-libs/gtk+:3[introspection] ) + latex? ( + virtual/latex-base + app-text/ghostscript-gpl + app-text/dvipng + app-text/poppler[utils] + dev-texlive/texlive-fontsrecommended + ) + qt4? ( || ( dev-python/PyQt4[X,${PYTHON_USEDEP}] dev-python/pyside[X,${PYTHON_USEDEP}] ) )" + +PY2_FLAGS="|| ( $(python_gen_useflags python2*) )" +REQUIRED_USE="doc? ( ${PY2_FLAGS} ) + excel? ( ${PY2_FLAGS} ) + fltk? ( ${PY2_FLAGS} ) + gtk? ( ${PY2_FLAGS} ) + ${PY2_FLAGS}" + +RESTRICT="mirror" + +# A few C++ source files are written to srcdir. +# Other than that, the ebuild shall be fit for out-of-source build. +DISTUTILS_IN_SOURCE_BUILD=1 + +use_setup() { + local uword="${2:-${1}}" + if use ${1}; then + echo "${uword} = True" + echo "${uword}agg = True" + else + echo "${uword} = False" + echo "${uword}agg = False" + fi +} + +python_prepare_all() { + sed -i -e 's/matplotlib.pyparsing_py[23]/pyparsing/g' \ + lib/matplotlib/{mathtext,fontconfig_pattern}.py \ + || die "sed pyparsing failed" + + distutils-r1_python_prepare_all +} + +python_configure_all() { + append-flags -fno-strict-aliasing +} + +python_configure() { + mkdir -p "${BUILD_DIR}" || die + + # create setup.cfg (see setup.cfg.template for any changes). + + # common switches. + cat > "${BUILD_DIR}"/setup.cfg <<-EOF || die + [provide_packages] + pytz = False + dateutil = False + [gui_support] + $(use_setup cairo) + $(use_setup qt4) + $(use_setup tk) + EOF + + if [[ ${EPYTHON} == python3* ]]; then + cat >> "${BUILD_DIR}"/setup.cfg <<-EOF || die + six = True + fltk = False + fltkagg = False + gtk = False + gtkagg = False + wx = False + wxagg = False + EOF + else + cat >> "${BUILD_DIR}"/setup.cfg <<-EOF || die + six = False + $(use_setup fltk) + $(use_setup gtk) + wx = True + EOF + fi +} + +wrap_setup() { + local MPLSETUPCFG=${BUILD_DIR}/setup.cfg + export MPLSETUPCFG + + # Note: remove build... if switching to out-of-source build + "${@}" build --build-lib="${BUILD_DIR}"/build/lib +} + +python_compile() { + wrap_setup distutils-r1_python_compile +} + +python_compile_all() { + if use doc; then + cd doc || die + + # necessary for in-source build + local -x PYTHONPATH="${BUILD_DIR}"/build/lib:${PYTHONPATH} + + unset DISPLAY # bug #278524 + VARTEXFONTS="${T}"/fonts \ + "${PYTHON}" ./make.py --small html || die + fi +} + +python_test() { + wrap_setup distutils_install_for_testing + + cd "${TMPDIR}" || die + "${PYTHON}" -c " +import sys, matplotlib as m +sys.exit(0 if m.test(verbosity=2) else 1) +" || die "Tests fail with ${EPYTHON}" +} + +python_install() { + wrap_setup distutils-r1_python_install +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/build/html/. ) + + distutils-r1_python_install_all + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} diff --git a/dev-python/matplotlib/metadata.xml b/dev-python/matplotlib/metadata.xml new file mode 100644 index 00000000..54901601 --- /dev/null +++ b/dev-python/matplotlib/metadata.xml @@ -0,0 +1,22 @@ + + + + python + + matplotlib is an interactive library for plotting and doing basic + data analysis in python with a syntax similar to matlab. It provides a + variety of backends and hard copy formats for almost ready + publication plots. + + + + Pull dev-python/xlwt for the exceltools toolkit + + + Use x11-libs/gtk+:3 instead of x11-libs/gtk+:2 + + + + matplotlib + + -- cgit v1.2.3