Compare commits
30 Commits
FC-4-split
...
el5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4956ab1103 | ||
|
|
b655eaf82c | ||
|
|
d17747e737 | ||
|
|
d1c4cd1908 | ||
|
|
0cf42e9bb5 | ||
|
|
1b8ee7d032 | ||
|
|
6c8d3d7c93 | ||
|
|
64495b54b0 | ||
|
|
dca202b645 | ||
|
|
849c7c59cd | ||
|
|
93be916102 | ||
|
|
08fd22c559 | ||
|
|
e197124cb4 | ||
|
|
145fd38ec7 | ||
|
|
ee9ff45a3e | ||
|
|
644f5c067d | ||
|
|
54692bdea6 | ||
|
|
ccda7c8dee | ||
|
|
31c351b56c | ||
|
|
8217450a70 | ||
|
|
b64d991dd9 | ||
|
|
ea640f8f04 | ||
|
|
899948a65f | ||
|
|
6883dbf626 | ||
|
|
111a53d743 | ||
|
|
d22666d509 | ||
|
|
4ba8ff1ff9 | ||
|
|
ff18059e59 | ||
|
|
53d60f262b | ||
|
|
daf5031fac |
@@ -1 +0,0 @@
|
||||
matplotlib-0.83.1.tar.gz
|
||||
21
Makefile
21
Makefile
@@ -1,21 +0,0 @@
|
||||
# Makefile for source rpm: python-matplotlib
|
||||
# $Id$
|
||||
NAME := python-matplotlib
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
3
dead.package
Normal file
3
dead.package
Normal file
@@ -0,0 +1,3 @@
|
||||
2016-11-20: Retired orphaned package, because it was orphaned for
|
||||
more than six weeks.
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
|
||||
Name: python-matplotlib
|
||||
Version: 0.83.1
|
||||
Release: 2%{?dist}
|
||||
Summary: Python plotting library
|
||||
|
||||
Group: Development/Libraries
|
||||
License: Python Software Foundation License
|
||||
URL: http://sourceforge.net/projects/matplotlib
|
||||
Source0: http://dl.sf.net/matplotlib/matplotlib-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: python-devel, freetype-devel, libpng-devel, zlib-devel
|
||||
BuildRequires: python-numeric, pygtk2-devel, gtk2-devel
|
||||
BuildRequires: pytz, python-dateutil
|
||||
|
||||
%description
|
||||
Matplotlib is a pure python plotting library with the goal of making
|
||||
publication quality plots using a syntax familiar to matlab users. The
|
||||
library uses Numeric for handling large data sets and supports a variety
|
||||
of output backends
|
||||
|
||||
%prep
|
||||
%setup -q -n matplotlib-%{version}
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%{__python} setup.py install -O1 --skip-build --root=$RPM_BUILD_ROOT
|
||||
chmod +x $RPM_BUILD_ROOT%{python_sitearch}/matplotlib/dates.py
|
||||
chmod -x $RPM_BUILD_ROOT%{_datadir}/matplotlib/*.svg
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README license/LICENSE license/LICENSE_enthought.txt
|
||||
%doc license/LICENSE_PAINT license/LICENSE_PIL
|
||||
%doc API_CHANGES CHANGELOG CXX INSTALL INTERACTIVE KNOWN_BUGS
|
||||
%doc NUMARRAY_ISSUES PKG-INFO TODO
|
||||
%{python_sitearch}/matplotlib/
|
||||
%{python_sitearch}/pylab.py*
|
||||
%{_datadir}/matplotlib/
|
||||
|
||||
%changelog
|
||||
* Thu Jul 28 2005 Orion Poplawski <orion@cora.nwra.com> 0.83.1-2
|
||||
- Bump rel to fix botched tag
|
||||
|
||||
* Thu Jul 28 2005 Orion Poplawski <orion@cora.nwra.com> 0.83.1-1
|
||||
- New upstream version matplotlib 0.83.1
|
||||
|
||||
* Tue Jul 05 2005 Orion Poplawski <orion@cora.nwra.com> 0.82-4
|
||||
- BuildRequires: pytz, python-dateutil - use upstream
|
||||
- Don't use INSTALLED_FILES, list dirs
|
||||
- Fix execute permissions
|
||||
|
||||
* Fri Jul 01 2005 Orion Poplawski <orion@cora.nwra.com> 0.82-3
|
||||
- Use %%{python_sitearch}
|
||||
|
||||
* Thu Jun 30 2005 Orion Poplawski <orion@cora.nwra.com> 0.82-2
|
||||
- Rename to python-matplotlib
|
||||
- Remove unneeded Requires: python
|
||||
- Add private directories to %files
|
||||
|
||||
* Tue Jun 28 2005 Orion Poplawski <orion@cora.nwra.com> 0.82-1
|
||||
- Initial package for Fedora Extras
|
||||
Reference in New Issue
Block a user