--- symeig-1.5.orig/debian/compat +++ symeig-1.5/debian/compat @@ -0,0 +1 @@ +5 --- symeig-1.5.orig/debian/copyright +++ symeig-1.5/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Yaroslav Halchenko on +Sat, 22 Jan 2008 16:41:20 -0500. + +It was downloaded from http://mdp-toolkit.sourceforge.net/symeig.html + +Upstream Authors: + + Pietro Berkes + Tiziano Zito + +Copyright: + + 2003-2008, Pietro Berkes and + Tiziano Zito + +License: + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA, or see + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-3'. + +The Debian packaging is (C) 2008, Yaroslav Halchenko and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- symeig-1.5.orig/debian/NEWS +++ symeig-1.5/debian/NEWS @@ -0,0 +1,12 @@ +symeig (1.5-2) unstable; urgency=low + + symeig as a separate project/package has been deprecated -- its functionality + became absorbed withing scipy since beta1 of 0.7.0 release, which should be + available in current sid and squeeze. Current binary package becomes just a + dummy transitional package to enforce installation of proper version of scipy + and provide this note. Therefore, do not backport this package to + earlier releases since it would make no sense ;) + + In scipy functionality is available within scipy.linalg.eigh + + -- Yaroslav Halchenko Mon, 16 Nov 2009 09:00:42 -0500 --- symeig-1.5.orig/debian/control +++ symeig-1.5/debian/control @@ -0,0 +1,37 @@ +Source: symeig +Section: python +Priority: optional +Maintainer: Yaroslav Halchenko +Build-Depends: cdbs (>=0.4.49), debhelper (>= 5.0.38) +Standards-Version: 3.8.3 +Vcs-Browser: http://git.onerussian.com/?p=symeig +Vcs-git: http://git.onerussian.com/vcs/symeig +Homepage: http://mdp-toolkit.sourceforge.net/symeig.html + +Package: python-symeig +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, python-scipy (>=0.7.0~) +Description: Symmetrical eigenvalue routines for NumPy + A Python wrapper for the LAPACK functions to solve the standard and + generalized eigenvalue problems for symmetric (hermitian) positive definite + matrices. Those specialized algorithms give an important speed-up with respect + to the generic LAPACK eigenvalue problem solver used by NumPy (linalg.eig and + linalg.eigh). + . + This is dummy transitional package -- please use scipy's scipy.linalg.eigh + for symeig functionality. + +Package: python-symeig-dbg +Architecture: all +Section: debug +Priority: extra +Depends: ${misc:Depends}, python-symeig (= ${binary:Version}) +Description: Symmetrical eigenvalue routines for NumPy (debug symbols) + A Python wrapper for the LAPACK functions to solve the standard and + generalized eigenvalue problems for symmetric (hermitian) positive definite + matrices. Those specialized algorithms give an important speed-up with respect + to the generic LAPACK eigenvalue problem solver used by NumPy (linalg.eig and + linalg.eigh). + . + This is dummy transitional package -- please use scipy's scipy.linalg.eigh + for symeig functionality. --- symeig-1.5.orig/debian/changelog +++ symeig-1.5/debian/changelog @@ -0,0 +1,41 @@ +symeig (1.5-2) unstable; urgency=low + + * Deprecating symeig as a separate package -- functionality was included in + scipy (>=0.7.0), please use scipy.linalg.eigh instead. + * Transitional packages became architecture 'all' instead of 'any' + * Boosted policy to 3.8.3: + - -dbg got correct "section: debug" and "priority: extra" + + -- Yaroslav Halchenko Mon, 16 Nov 2009 08:55:44 -0500 + +symeig (1.5-1) unstable; urgency=low + + * New Upstream Version + + -- Yaroslav Halchenko Mon, 24 Nov 2008 14:07:08 -0500 + +symeig (1.4-4) unstable; urgency=low + + * Adding -dbg package with symbols to ease the debugging. + + -- Yaroslav Halchenko Wed, 29 Oct 2008 10:33:57 -0400 + +symeig (1.4-3) unstable; urgency=low + + * Made Build-Depends friendly to older distributions (in regards to lapack + and atlas packages) for easy backporting. + + -- Yaroslav Halchenko Thu, 19 Jun 2008 16:06:36 -0400 + +symeig (1.4-2) unstable; urgency=low + + * Updated years and email in copyright + * removed not needed libatlas-base-dev build-depends + + -- Yaroslav Halchenko Fri, 30 May 2008 09:47:24 -0400 + +symeig (1.4-1) unstable; urgency=low + + * Initial release (Closes: #462107) + + -- Yaroslav Halchenko Fri, 16 May 2008 12:45:10 -0400 --- symeig-1.5.orig/debian/docs +++ symeig-1.5/debian/docs @@ -0,0 +1 @@ +README --- symeig-1.5.orig/debian/pycompat +++ symeig-1.5/debian/pycompat @@ -0,0 +1 @@ +2 --- symeig-1.5.orig/debian/watch +++ symeig-1.5/debian/watch @@ -0,0 +1,6 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://sf.net/mdp-toolkit/symeig-(.*)\.tar\.gz + + --- symeig-1.5.orig/debian/rules +++ symeig-1.5/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +#DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +#include /usr/share/cdbs/1/class/python-distutils.mk + +# Fix for fragile distutils. If LDFLAGS remains emtpy, as set by dpkg-buildpackage +# -shared is not added and build fails +#LDFLAGS=-shared + +# To force location of binaries in case of both original and -dbg packages +DEB_DESTDIR = $(CURDIR)/debian/python-symeig +