forked from pool/python-matplotlib
Accepting request 60257 from devel:languages:python
Accepted submit request 60257 from user lrupp OBS-URL: https://build.opensuse.org/request/show/60257 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-matplotlib?expand=0&rev=7
This commit is contained in:
parent
deefd15674
commit
eeba0ec08b
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c44af56cf5a63d4c39106a6731f1531ce47d3e11b569f3e8f4b2ee6914753751
|
||||
size 11855851
|
3
matplotlib-1.0.1.tar.bz2
Normal file
3
matplotlib-1.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08529d50edfb36393699b10832154eff79d3eac2523fb526e00c0bd12fab969d
|
||||
size 12214424
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 24 12:58:1 UTC 2011 - toddrme2178@gmail.com
|
||||
|
||||
- new version 1.0.1
|
||||
|
||||
This is a bugfix release:
|
||||
+ Fixed error with Hammer projection.
|
||||
+ Fixed the placement and angle of axis labels in 3D plots.
|
||||
+ New rc parameters examples.download and examples.directory
|
||||
allow bypassing the download mechanism in get_sample_data.
|
||||
+ Change Axis.set_view_interval() so that when updating an
|
||||
existing interval, it respects the orientation of that
|
||||
interval, and can enlarge but not reduce the interval.
|
||||
+ Handle NaN's correctly in path analysis routines.
|
||||
+ Fix bug in patch alpha handling, and in bar color kwarg
|
||||
+ Return Qt4's default cursor when leaving the canvas
|
||||
|
||||
- cleanup specfile
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 29 15:03:06 CET 2010 - sbrabec@suse.cz
|
||||
|
||||
|
@ -18,11 +18,10 @@
|
||||
|
||||
|
||||
Name: python-matplotlib
|
||||
Version: 1.0.1
|
||||
Release: 3
|
||||
License: BSD
|
||||
Group: Development/Libraries/Python
|
||||
Version: 1.0.0
|
||||
Release: 3
|
||||
AutoReqProv: on
|
||||
|
||||
Summary: Plotting Library for Python
|
||||
Url: http://sourceforge.net/projects/matplotlib
|
||||
@ -30,19 +29,30 @@ Source: matplotlib-%{version}.tar.bz2
|
||||
Source1: matplotlib-setup.cfg
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Prefix: %{_prefix}
|
||||
|
||||
%py_requires
|
||||
Requires: python-numpy >= 1.2.1
|
||||
Requires: python-configobj python-dateutil python-tz
|
||||
BuildRequires: fltk-devel
|
||||
BuildRequires: freetype2-devel
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: python-gtk
|
||||
BuildRequires: python-numpy-devel >= 1.2.1
|
||||
BuildRequires: gcc-c++ tcl tk
|
||||
BuildRequires: freetype2-devel gtk2-devel libpng-devel tcl-devel tk-devel
|
||||
BuildRequires: fltk-devel python-gtk python-tk
|
||||
BuildRequires: python-tk
|
||||
BuildRequires: tcl
|
||||
BuildRequires: tcl-devel
|
||||
BuildRequires: tk
|
||||
BuildRequires: tk-devel
|
||||
Requires: python-configobj
|
||||
Requires: python-dateutil
|
||||
Requires: python-numpy >= 1.2.1
|
||||
Requires: python-tz
|
||||
%py_requires
|
||||
%if %suse_version > 1130
|
||||
BuildRequires: python-wxWidgets wxWidgets-devel
|
||||
BuildRequires: python-wxWidgets
|
||||
BuildRequires: wxWidgets-devel
|
||||
%else
|
||||
BuildRequires: python-wxGTK wxGTK-devel
|
||||
BuildRequires: python-wxGTK
|
||||
BuildRequires: wxGTK-devel
|
||||
%endif
|
||||
BuildRequires: python-gtk-devel
|
||||
%if 0%{?suse_version} >= 1120
|
||||
@ -60,11 +70,13 @@ BuildRequires: gnome-libs-devel
|
||||
%define __find_requires %wx_requires
|
||||
%endif
|
||||
|
||||
## These packages are required to prevent that matplotlib installs it's
|
||||
## These packages are required to prevent that matplotlib installs it's
|
||||
## own versions of the packages from the lib directory
|
||||
BuildRequires: python-configobj python-dateutil python-tz
|
||||
BuildRequires: python-configobj
|
||||
BuildRequires: python-dateutil
|
||||
BuildRequires: python-tz
|
||||
|
||||
%description
|
||||
%description
|
||||
matplotlib is a python 2D plotting library which produces publication
|
||||
quality figures in a variety of hardcopy formats and interactive
|
||||
environments across platforms. matplotlib can be used in python
|
||||
@ -75,7 +87,7 @@ application servers, and six graphical user interface toolkits.
|
||||
License: BSD
|
||||
Summary: Tk backend for python-matplotlib
|
||||
Group: Development/Libraries/Python
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name} = %{version}
|
||||
Requires: python-tk
|
||||
|
||||
%description tk
|
||||
@ -85,7 +97,7 @@ Tk backend for python-matplotlib plotting package
|
||||
License: BSD
|
||||
Summary: Wx backend for python-matplotlib
|
||||
Group: Development/Libraries/Python
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name} = %{version}
|
||||
Requires: python-wxGTK
|
||||
|
||||
%description wx
|
||||
@ -100,15 +112,15 @@ cp %{SOURCE1} ./setup.cfg
|
||||
python setup.py build
|
||||
|
||||
%install
|
||||
python setup.py install --root=$RPM_BUILD_ROOT \
|
||||
python setup.py install --root=%{buildroot} \
|
||||
--record-rpm=INSTALLED_FILES --prefix=%{_prefix}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.txt CHANGELOG INSTALL INTERACTIVE KNOWN_BUGS
|
||||
%doc README.txt CHANGELOG INSTALL INTERACTIVE KNOWN_BUGS
|
||||
%doc PKG-INFO TODO CXX examples license
|
||||
%{py_sitedir}/*
|
||||
%exclude %{py_sitedir}/matplotlib/backends/backend_tkagg.*
|
||||
|
Loading…
x
Reference in New Issue
Block a user