Browse Source

NEW: libktorrent, avogadro, numpy

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@1636 ec354946-7b23-47d6-9f5a-488ba84defc7
inagaki 14 years ago
parent
commit
936223b347
3 changed files with 616 additions and 0 deletions
  1. 233 0
      a/avogadro/avogadro-vl.spec
  2. 103 0
      lib/libk/libktorrent/libktorrent-vl.spec
  3. 280 0
      n/numpy/numpy-vl.spec

+ 233 - 0
a/avogadro/avogadro-vl.spec

@@ -0,0 +1,233 @@
+%define _qt4_version %(pkg-config --modversion --silence-errors Qt 2>/dev/null || echo 4.6.3)
+%define _qt4_prefix %(pkg-config --variable prefix --silence-errors Qt 2>/dev/null || echo %{_libdir}/qt-%{qt4_ver})
+
+%define ENABLE_TESTS -DENABLE_TESTS:BOOL=ON
+
+Name:           avogadro
+Summary:        An advanced molecular editor for chemical purposes
+Version:        1.0.1
+Release:        4%{?_dist_release}
+
+Group:          Applications/Editors
+License:        GPLv2
+URL:            http://avogadro.openmolecules.net/
+Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
+
+BuildRequires:  cmake >= 2.6.0
+BuildRequires:  qt4-designer >= 4.5.1
+BuildRequires:  qt4-devel >= 4.5.1
+BuildRequires:  eigen2-devel >= 2.0.3
+BuildRequires:  openbabel-devel >= 2.2.2
+BuildRequires:  libboost-devel >= 1.35
+BuildRequires:  glew-devel >= 1.5.0
+BuildRequires:  desktop-file-utils
+BuildRequires:  docbook-utils
+BuildRequires:  sip-devel
+BuildRequires:  numpy
+
+Requires: %{name}-libs = %{version}-%{release}
+
+%description
+An advanced molecular editor designed for 
+cross-platform use in computational chemistry,
+molecular modeling, bioinformatics, materials science,
+and related areas, which offers flexible rendering and
+a powerful plugin architecture.
+
+
+%package libs
+Summary: Shared libraries for Avogadro
+Group: System Environment/Libraries
+Requires: sip
+
+%description libs
+This package contains the shared libraries for the
+molecular editor Avogadro.
+
+
+%package devel
+Summary: Development files for Avogadro
+Group: Development/Libraries
+Requires: %{name}-libs = %{version}-%{release} 
+Requires: qt4-devel
+
+%description devel
+This package contains files to develop applications using 
+Avogadros libraries.
+
+
+%prep
+%setup -q
+
+# nuke unpatched copy, use working version included in cmake instead -- Rex
+rm -f cmake/modules/FindPythonLibs.cmake
+
+
+%build
+mkdir -p %{_target_platform}
+pushd %{_target_platform}
+cmake -Wno-dev \
+    -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
+    -DBIN_INSTALL_DIR:PATH=bin \
+    -DLIB_INSTALL_DIR:PATH=%{_lib} \
+    -DENABLE_GLSL:BOOL=ON \
+    -DENABLE_PYTHON:BOOL=ON \
+    %{?ENABLE_TESTS} ..
+popd
+make %{?_smp_mflags} -C %{_target_platform}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
+
+
+%check
+desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/avogadro.desktop
+# all of these currently require an active X session, so will fail
+# in mock
+%{?ENABLE_TESTS:make test -C %{_target_platform} ||:}
+
+
+%post libs -p /sbin/ldconfig
+
+%postun libs -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING
+%{_bindir}/avogadro
+%{_bindir}/avopkg
+# TODO: %lang'ify stuff under %%{_datadir}/avogadro/i18n/
+%{_datadir}/avogadro/
+%{_datadir}/pixmaps/avogadro-icon.png
+%{_datadir}/applications/avogadro.desktop
+%{_mandir}/man1/avogadro.1*
+%{_mandir}/man1/avopkg.1*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/avogadro/
+%{_libdir}/libavogadro.so
+%{_libdir}/avogadro/*.cmake
+%{_libdir}/avogadro/1_0/*.cmake
+# these look like dups of system copies?, take a closer look and/or ask upstream -- Rex
+%{_libdir}/avogadro/1_0/cmake/
+%{_qt4_prefix}/mkspecs/features/avogadro.prf
+
+%files libs
+%defattr(-,root,root,-)
+%{python_sitelib}/Avogadro.so
+%{_datadir}/libavogadro/
+%{_libdir}/libavogadro.so.1*
+%dir %{_libdir}/avogadro/
+%dir %{_libdir}/avogadro/1_0/
+%{_libdir}/avogadro/1_0/colors/
+%{_libdir}/avogadro/1_0/extensions/
+%{_libdir}/avogadro/1_0/engines/
+%{_libdir}/avogadro/1_0/tools/
+
+
+%changelog
+* Fri Aug 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.0.1-4
+- Initial build for Vine Linux
+
+* Wed Aug 04 2010 Rahul Sundaram <sundaram@fedoraproject.org> - 1.0.1-3
+- Rebuild for Boost soname bump
+- Update to match current guidelines
+
+* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.0.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Mon May 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.1-1
+- avogadro-1.0.1
+- -devel: move cmake-related files here
+- -devel: Req: qt4-devel
+- %%files: track lib sonames
+- %%check section
+
+* Wed Feb 10 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.0.0-6
+- reenable plugin builds and libs subpackage
+- fix their build with sip 4.10
+
+* Fri Jan 08 2010 Sebastian Dziallas <sebastian@when.com> - 1.0.0-5
+- disable plugin builds and libs subpackage
+
+* Thu Jan 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.0-4
+- rebuild (sip)
+
+* Mon Nov 23 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.0-3 
+- rebuild (for qt-4.6.0-rc1, f13+)
+
+* Mon Nov 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.0-2 
+- -libs: Requires: sip-api(%%_sip_api_major) >= %%_sip_api (#538124)
+- Requires: %%{name}-libs ...
+
+* Thu Oct 29 2009 Sebastian Dziallas <sebastian@when.com> 1.0.0-1
+- update to new upstream release
+
+* Tue Oct 20 2009 Rex Dieter <rdieter@fedoraproject.org> 0.9.8-3 
+- rebuild (eigen2)
+
+* Sat Sep 26 2009 Sebastian Dziallas <sebastian@when.com> 0.9.8-2
+- fix typo in file list
+
+* Sat Sep 26 2009 Sebastian Dziallas <sebastian@when.com> 0.9.8-1
+- update to new upstream release
+- enable python and glsl support again
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Sat Jun 06 2009 Sebastian Dziallas <sebastian@when.com> 0.9.6-1
+- new upstream release to fix issue with qt 4.5.0 and earlier
+
+* Wed Jun 03 2009 Sebastian Dziallas <sebastian@when.com> 0.9.5-3
+- remove remaining python parts
+- fix files section finally
+
+* Wed Jun 03 2009 Sebastian Dziallas <sebastian@when.com> 0.9.5-2
+- disable python and glsl for now
+- fix files section
+
+* Wed Jun 03 2009 Sebastian Dziallas <sebastian@when.com> 0.9.5-1
+- update to new release
+
+* Tue May 12 2009 Sebastian Dziallas <sebastian@when.com> 0.9.4-1
+- update to new release
+
+* Fri Apr 10 2009 Sebastian Dziallas <sebastian@when.com> 0.9.3-1
+- update to new release
+
+* Sat Mar 21 2009 Sebastian Dziallas <sebastian@when.com> 0.9.2-2
+- get desktop file properly installed
+
+* Sat Mar 14 2009 Sebastian Dziallas <sebastian@when.com> 0.9.2-1
+- update to new release
+
+* Wed Feb 25 2009 Sebastian Dziallas <sebastian@when.com> 0.9.1-1
+- update to new release
+
+* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Jan 22 2009 Sebastian Dziallas <sebastian@when.com> 0.9.0-1
+- update to new release
+
+* Sun Sep 14 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-6
+- add handbook to docs
+
+* Sun Sep 14 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-5
+- add build requirements and fix group names
+
+* Wed Aug 13 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-4
+- fix typos
+
+* Sat Aug  9 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-3
+- reorganize spec file
+
+* Sat Aug  9 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-2
+- rename shared library package and structure spec file
+
+* Sun Aug  3 2008 Sebastian Dziallas <sebastian@when.com> 0.8.1-1
+- initial pacakging release based on PackMan release

+ 103 - 0
lib/libk/libktorrent/libktorrent-vl.spec

@@ -0,0 +1,103 @@
+Name:    libktorrent
+Summary: Library providing torrent downloading code
+Version: 1.0.2
+Release: 3%{?_dist_release}
+
+Group:   System Environment/Libraries
+License: GPLv2+
+URL:     http://ktorrent.org/
+
+Source0: http://ktorrent.org/downloads/4.0.2/libktorrent-%{version}.tar.bz2 
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+BuildRequires: libboost-devel
+BuildRequires: gettext
+BuildRequires: gmp-devel
+BuildRequires: kdelibs4-devel >= 4.5.0
+BuildRequires: qca2-devel
+
+%description
+%{summary}.
+
+%package devel
+Summary: Developer files for %{name}
+Group:   Development/Libraries
+Obsoletes: ktorrent-devel <= 4.0
+Requires: %{name} = %{version}-%{release}
+Requires: kdelibs4-devel >= 4.5.0
+
+%description devel
+%{summary}.
+
+
+
+%prep
+%setup -q -n %{name}-%{version}
+
+%build
+mkdir -p %{_target_platform}
+pushd %{_target_platform}
+unset QTDIR || : ; . /etc/profile.d/qt4.sh
+%cmake \
+    -DCMAKE_BUILD_TYPE=release \
+    -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
+    -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
+    -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
+    ..
+popd
+
+make %{?_smp_mflags} -C %{_target_platform}
+
+
+%install
+rm -rf %{buildroot}
+
+make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
+
+%find_lang %{name} --with-kde
+
+
+%clean
+rm -rf %{buildroot} 
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files -f %{name}.lang
+%defattr(-,root,root,-)
+%doc ChangeLog COPYING
+%{_libdir}/libktorrent.so.2*
+
+%files devel
+%defattr(-,root,root,-)
+%{_datadir}/kde4/apps/cmake/modules/FindKTorrent.cmake
+%{_includedir}/kde4/libktorrent/
+%{_libdir}/libktorrent.so
+
+
+%changelog
+* Tue Aug 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.0.2-3
+- initial build for Vine Linux
+
+* Fri Jul  9 2010 Alexey Kurov <nucleo@fedoraproject.org> - 1.0.2-2
+- fixed license tag
+- added license text
+
+* Thu Jul  8 2010 Alexey Kurov <nucleo@fedoraproject.org> - 1.0.2-1
+- libktorrent-1.0.2
+
+* Tue Jun 15 2010 Alexey Kurov <nucleo@fedoraproject.org> - 1.0.1-1
+- libktorrent-1.0.1
+
+* Mon May 24 2010 Rex Dieter <rdieter@fedoraproject.org> 1.0.0-1
+- libktorrent-1.0.0
+
+* Wed May 05 2010 Rex Dieter <rdieter@fedoraproject.org> 1.0-0.2.rc1
+- -devel: Obsoletes: ktorrent-devel
+
+* Mon May 03 2010 Rex Dieter <rdieter@fedoraproject.org> 1.0-0.1.rc1
+- libktorrent-1.0rc1
+

+ 280 - 0
n/numpy/numpy-vl.spec

@@ -0,0 +1,280 @@
+%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
+# eval to 2.3 if python isn't yet present, workaround for no python in fc4 minimal buildroot
+%{!?python_version: %define python_version %(%{__python} -c 'import sys; print sys.version.split(" ")[0]' || echo "2.3")}
+
+Name:           numpy
+Summary:        A fast multidimensional array facility for Python
+Version:        1.4.1
+Release:        7%{?_dist_release}
+
+Group:          Development/Languages
+License:        BSD
+URL:            http://numeric.scipy.org/
+
+Source0:        http://downloads.sourceforge.net/numpy/%{name}-%{version}.tar.gz
+Patch0:         numpy-1.0.1-f2py.patch
+Patch1:         numpy_doublefree.patch
+
+# PyOS_ascii_strtod is deprecated in python 2.7, and the deprecation warning
+# outside of the GIL causes python to segfault (rhbz#617384)
+# Patch is a combination of upstream changeset 7926 followed by 8387
+Patch2:         numpy-1.4.1-remove-PyOS_ascii_strtod.patch
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-root
+
+#BuildRequires:  python-devel lapack-devel python-setuptools gcc-gfortran atlas-devel python-nose
+BuildRequires:  python-devel lapack-devel python-setuptools gcc-gfortran python-nose
+Requires:	python-nose
+
+%description
+NumPy is a general-purpose array-processing package designed to
+efficiently manipulate large multi-dimensional arrays of arbitrary
+records without sacrificing too much speed for small multi-dimensional
+arrays.  NumPy is built on the Numeric code base and adds features
+introduced by numarray as well as an extended C-API and the ability to
+create arrays of arbitrary type.
+
+There are also basic facilities for discrete fourier transform,
+basic linear algebra and random number generation. Also included in
+this package is a version of f2py that works properly with NumPy.
+
+%package f2py
+Summary:        f2py for numpy
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release}
+Requires:       python-devel
+Provides:       f2py
+Obsoletes:      f2py <= 2.45.241_1927
+
+%description f2py
+This package includes a version of f2py that works properly with NumPy.
+
+%prep
+%setup -q -n %{name}-%{version}
+%patch0 -p1 -b .f2py
+%patch1 -p0 
+%patch2 -p1 -b .remove-PyOS_ascii_strtod
+
+%build
+env FFTW=%{_libdir} BLAS=%{_libdir} \
+    LAPACK=%{_libdir} CFLAGS="$RPM_OPT_FLAGS" \
+    %{__python} setup.py build --fcompiler=gnu95
+
+%install
+rm -rf $RPM_BUILD_ROOT
+#%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+# skip-build currently broken, this works around it for now
+env ATLAS=%{_libdir} FFTW=%{_libdir} BLAS=%{_libdir} \
+    LAPACK=%{_libdir} CFLAGS="$RPM_OPT_FLAGS" \
+    %{__python} setup.py install --root $RPM_BUILD_ROOT
+rm -rf docs-f2py ; mv $RPM_BUILD_ROOT%{python_sitearch}/%{name}/f2py/docs docs-f2py
+mv -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/f2py/f2py.1 f2py.1
+rm -rf doc ; mv -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/doc .
+install -D -p -m 0644 f2py.1 $RPM_BUILD_ROOT%{_mandir}/man1/f2py.1
+pushd $RPM_BUILD_ROOT%{_bindir} &> /dev/null
+# symlink for anyone who was using f2py.numpy
+ln -s f2py f2py.numpy
+popd &> /dev/null
+
+#symlink for includes, BZ 185079
+mkdir -p $RPM_BUILD_ROOT/usr/include
+ln -s %{python_sitearch}/%{name}/core/include/numpy/ $RPM_BUILD_ROOT/usr/include/numpy
+
+# Remove doc files. They should in in %doc
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/COMPATIBILITY
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/DEV_README.txt
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/INSTALL.txt
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/LICENSE.txt
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/README.txt
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/THANKS.txt
+rm -f $RPM_BUILD_ROOT%{python_sitearch}/%{name}/site.cfg.example
+
+%check
+pushd doc &> /dev/null
+PYTHONPATH="%{buildroot}%{python_sitearch}" %{__python} -c "import pkg_resources, numpy ; numpy.test()" \
+%ifarch s390 s390x
+|| :
+%endif
+# don't remove this comment
+popd &> /dev/null
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc docs-f2py doc/* LICENSE.txt README.txt THANKS.txt DEV_README.txt COMPATIBILITY site.cfg.example
+%dir %{python_sitearch}/%{name}
+%{python_sitearch}/%{name}/*.py*
+%{python_sitearch}/%{name}/core
+%{python_sitearch}/%{name}/distutils
+%{python_sitearch}/%{name}/fft
+%{python_sitearch}/%{name}/lib
+%{python_sitearch}/%{name}/linalg
+%{python_sitearch}/%{name}/ma
+%{python_sitearch}/%{name}/numarray
+%{python_sitearch}/%{name}/oldnumeric
+%{python_sitearch}/%{name}/random
+%{python_sitearch}/%{name}/testing
+%{python_sitearch}/%{name}/tests
+%{python_sitearch}/%{name}/compat
+%{python_sitearch}/%{name}/matrixlib
+%{python_sitearch}/%{name}/polynomial
+%{python_sitearch}/%{name}-*.egg-info
+%{_includedir}/numpy
+
+%files f2py
+%defattr(-,root,root,-)
+%{_mandir}/man*/*
+%{_bindir}/f2py
+%{_bindir}/f2py.numpy
+%{python_sitearch}/%{name}/f2py
+
+
+%changelog
+* Fri Aug 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.1-7
+- Initial build for Vine Linux
+
+* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-6
+- actually add the patch this time
+
+* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-5
+- fix segfault within %check on 2.7 (patch 2)
+
+* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1:1.4.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Sun Jul 18 2010 Dan Horák <dan[at]danny.cz> 1.4.1-3
+- ignore the "Ticket #1299 second test" failure on s390(x)
+
+* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-2
+- source commit fix 
+
+* Thu Jun 24 2010 Jef Spaleta <jspaleta@fedoraprject.org> 1.4.1-1
+- New upstream release. Include backported doublefree patch
+
+* Mon Apr 26 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-8
+- Moved distutils back to the main package, BZ 572820.
+
+* Thu Apr 08 2010 Jon Ciesla <limb@jcomserv.net> 1.3.0-7
+- Reverted to 1.3.0 after upstream pulled 1.4.0, BZ 579065.
+
+* Tue Mar 02 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-5
+- Linking /usr/include/numpy to .h files, BZ 185079.
+
+* Tue Feb 16 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-4
+- Re-enabling atlas BR, dropping lapack Requires.
+
+* Wed Feb 10 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-3
+- Since the previous didn't work, Requiring lapack.
+
+* Tue Feb 09 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-2
+- Temporarily dropping atlas BR to work around 562577.
+
+* Fri Jan 22 2010 Jon Ciesla <limb@jcomserv.net> 1.4.0-1
+- 1.4.0.
+- Dropped ARM patch, ARM support added upstream.
+
+* Tue Nov 17 2009 Jitesh Shah <jiteshs@marvell.com> - 1.3.0-6.fa1
+- Add ARM support
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Jun 11 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-5
+- Fixed atlas BR, BZ 505376.
+
+* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-4
+- EVR bump for pygame chainbuild.
+
+* Fri Apr 17 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-3
+- Moved linalg, fft back to main package.
+
+* Tue Apr 14 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-2
+- Split out f2py into subpackage, thanks Peter Robinson pbrobinson@gmail.com.
+
+* Tue Apr 07 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-1
+- Update to latest upstream.
+- Fixed Source0 URL.
+
+* Thu Apr 02 2009 Jon Ciesla <limb@jcomserv.net> 1.3.0-0.rc1
+- Update to latest upstream.
+
+* Thu Mar 05 2009 Jon Ciesla <limb@jcomserv.net> 1.2.1-3
+- Require python-devel, BZ 488464.
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Dec 19 2008 Jon Ciesla <limb@jcomserv.net> 1.2.1-1
+- Update to 1.2.1.
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.2.0-2
+- Rebuild for Python 2.6
+
+* Tue Oct 07 2008 Jon Ciesla <limb@jcomserv.net> 1.2.0-1
+- New upstream release, added python-nose BR. BZ 465999.
+- Using atlas blas, not blas-devel. BZ 461472.
+
+* Wed Aug 06 2008 Jon Ciesla <limb@jcomserv.net> 1.1.1-1
+- New upstream release
+
+* Thu May 29 2008 Jarod Wilson <jwilson@redhat.com> 1.1.0-1
+- New upstream release
+
+* Tue May 06 2008 Jarod Wilson <jwilson@redhat.com> 1.0.4-1
+- New upstream release
+
+* Mon Feb 11 2008 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-2
+- Add python egg to %%files on f9+
+
+* Wed Aug 22 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3.1-1
+- New upstream release
+
+* Wed Jun 06 2007 Jarod Wilson <jwilson@redhat.com> 1.0.3-1
+- New upstream release
+
+* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-2
+- Drop BR: atlas-devel, since it just provides binary-compat
+  blas and lapack libs. Atlas can still be optionally used
+  at runtime. (Note: this is all per the atlas maintainer).
+
+* Mon May 14 2007 Jarod Wilson <jwilson@redhat.com> 1.0.2-1
+- New upstream release
+
+* Tue Apr 17 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-4
+- Update gfortran patch to recognize latest gfortran f95 support 
+- Resolves rhbz#236444
+
+* Fri Feb 23 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-3
+- Fix up cpuinfo bug (#229753). Upstream bug/change:
+  http://projects.scipy.org/scipy/scipy/ticket/349
+
+* Thu Jan 04 2007 Jarod Wilson <jwilson@redhat.com> 1.0.1-2
+- Per discussion w/Jose Matos, Obsolete/Provide f2py, as the
+  stand-alone one is no longer supported/maintained upstream
+
+* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> 1.0.1-1
+- New upstream release
+
+* Tue Dec 12 2006 Jarod Wilson <jwilson@redhat.com> 1.0-2
+- Rebuild for python 2.5
+
+* Wed Oct 25 2006 Jarod Wilson <jwilson@redhat.com> 1.0-1
+- New upstream release
+
+* Tue Sep 06 2006 Jarod Wilson <jwilson@redhat.com> 0.9.8-1
+- New upstream release
+
+* Wed Apr 26 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.6-1
+- Upstream update
+
+* Thu Feb 16 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.5-1
+- Upstream update
+
+* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-2
+- Rebuild for Fedora Extras 5
+
+* Thu Feb  2 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.9.4-1
+- Initial RPM release
+- Added gfortran patch from Neal Becker