r44117 - in /packages/arpack/trunk: ARMAKES/ ARPACK/ ARmake.inc BLAS/ DOCUMENTS/ EXAMPLES/ LAPACK/ PARPACK/ SRC/ UTIL/ debian/changelog debian/control debian/rules debian/watch

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Sat Dec 10 22:47:59 UTC 2011


Author: sylvestre
Date: Sat Dec 10 22:47:58 2011
New Revision: 44117

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=44117
Log:

  * Switch to arpack-ng since upstream is dead.
  * New upstream release
  * Daniel Leidert removed from the uploaders (Closes: #651351)

Removed:
    packages/arpack/trunk/ARMAKES/
    packages/arpack/trunk/ARPACK/
    packages/arpack/trunk/ARmake.inc
    packages/arpack/trunk/BLAS/
    packages/arpack/trunk/DOCUMENTS/
    packages/arpack/trunk/EXAMPLES/
    packages/arpack/trunk/LAPACK/
    packages/arpack/trunk/PARPACK/
    packages/arpack/trunk/SRC/
    packages/arpack/trunk/UTIL/
Modified:
    packages/arpack/trunk/debian/changelog
    packages/arpack/trunk/debian/control
    packages/arpack/trunk/debian/rules
    packages/arpack/trunk/debian/watch

Modified: packages/arpack/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/arpack/trunk/debian/changelog?rev=44117&op=diff
==============================================================================
--- packages/arpack/trunk/debian/changelog (original)
+++ packages/arpack/trunk/debian/changelog Sat Dec 10 22:47:58 2011
@@ -1,3 +1,11 @@
+arpack (3.0-1) unstable; urgency=low
+
+  * Switch to arpack-ng since upstream is dead.
+  * New upstream release
+  * Daniel Leidert removed from the uploaders (Closes: #651351)
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Sat, 10 Dec 2011 20:32:45 +0100
+
 arpack (2.1+parpack96.dfsg-4) unstable; urgency=low
 
   [ Daniel Leidert (dale) ]

Modified: packages/arpack/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-science/packages/arpack/trunk/debian/control?rev=44117&op=diff
==============================================================================
--- packages/arpack/trunk/debian/control (original)
+++ packages/arpack/trunk/debian/control Sat Dec 10 22:47:58 2011
@@ -3,14 +3,14 @@
 Priority: optional
 Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
 Uploaders: Christophe Prud'homme <prudhomm at debian.org>,
- Daniel Leidert (dale) <daniel.leidert at wgdd.de>,
- "Adam C. Powell, IV" <hazelsct at debian.org>
+ "Adam C. Powell, IV" <hazelsct at debian.org>,
+ Sylvestre Ledru <sylvestre at debian.org>
 Build-Depends: quilt, cdbs, debhelper (>= 5), gfortran (>= 4.3.0-3),
  libblas-dev, liblapack-dev, mpi-default-dev (>= 0.3)
 Standards-Version: 3.9.2
 Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/arpack/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/arpack/
-Homepage: http://www.caam.rice.edu/software/ARPACK/
+Homepage: http://forge.scilab.org/index.php/p/arpack-ng/
 
 Package: libarpack2
 Section: libs

Modified: packages/arpack/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/arpack/trunk/debian/rules?rev=44117&op=diff
==============================================================================
--- packages/arpack/trunk/debian/rules (original)
+++ packages/arpack/trunk/debian/rules Sat Dec 10 22:47:58 2011
@@ -1,54 +1,13 @@
 #!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
 
-include /usr/share/mpi-default-dev/debian_defaults
+#%:
+#	dh  $@ --with autoreconf
 
-include /usr/share/cdbs/1/class/makefile.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+#override_dh_auto_configure:
+#	dh_auto_configure -- --enable-maintainer-mode
 
-DEB_AUTO_CLEANUP_RCS := yes
-DEB_SRCDIR := $(CURDIR)/
-DEB_BUILDDIR := $(DEB_SRCDIR)/
-
-DEB_MAKE_CLEAN_TARGET    := clean PSRCdir="SRC" PUTILdir="UTIL"
-DEB_MAKE_BUILD_TARGET    := default FC="gfortran"
-DEB_MAKE_ENVVARS         += FC="gfortran" FFLAGS="-O3 -fPIC -pipe"
-DEB_COMPRESS_EXCLUDE     := .pdf
-#DH_COMPAT=5
-
-DEB_INSTALL_EXAMPLES_libarpack2-dev := EXAMPLES/* -X.svn
-
-DEB_DH_MAKESHLIBS_ARGS := --version-info="libarpack2 (>= 2.1+parpack96-5)"
-
-CFLAGS = -fPIC -fexceptions -Wall -O3
-ifeq ($(DEB_HOST_ARCH_CPU),amd64)
- CFLAGS += -m64
-endif
-
-ifneq (,$(findstring openmpi,$(ARCH_DEFAULT_MPI_IMPL)))
- openmpilib = -lmpi_f77
-endif
-
-package=arpack
-
-version=2.1 #$(shell expr `pwd` : '.*-\([0-9.]*\)')
-version_major=2 #$(shell expr `pwd` : '.*-\([0-9]*\).[0-9.]*')
-
-build/libarpack2::
-	-mkdir -p objs pobjs
-	-(cd objs && $(MAKE) -f ../UTIL/Makefile VPATH="../UTIL" srcdir="../UTIL" $(DEB_MAKE_ENVVARS) single double complex complex16; )
-	-(cd objs && $(MAKE) -f ../SRC/Makefile VPATH="../SRC" srcdir="../SRC" $(DEB_MAKE_ENVVARS) single double complex complex16; )
-	-(cd objs && gcc -shared -Wl,-soname,lib$(package).so.$(version_major) -o lib$(package).so.$(version) `ls *.o`  -L/usr/lib/atlas -llapack -lblas -lm -lgfortran)
-	-(cd objs && ln -sf lib$(package).so.$(version) lib$(package).so.$(version_major) )
-	-(cd objs && ln -sf lib$(package).so.$(version) lib$(package).so )
-	-(cd objs && ar rv lib$(package).a `ls *.o`; ranlib lib$(package).a )
-	-(cd pobjs && $(MAKE) -f ../PARPACK/UTIL/MPI/Makefile VPATH="../PARPACK/UTIL/MPI/" srcdir="../PARPACK/UTIL/MPI/" $(DEB_MAKE_ENVVARS) single double complex complex16; )
-	-(cd pobjs && $(MAKE) -f ../PARPACK/SRC/MPI/Makefile VPATH="../PARPACK/SRC/MPI/" srcdir="../PARPACK/SRC/MPI/" $(DEB_MAKE_ENVVARS) single double complex complex16; )
-	-(cd pobjs && gcc -shared -Wl,-soname,libp$(package).so.$(version_major) -o libp$(package).so.$(version) `ls *.o`  -L/usr/lib/atlas -llapack -lblas -lmpi $(openmpilib) -lm -lgfortran -L../objs -l$(package) )
-	-(cd pobjs && ln -sf libp$(package).so.$(version) libp$(package).so.$(version_major) )
-	-(cd pobjs && ln -sf libp$(package).so.$(version) libp$(package).so )
-	-(cd pobjs && ar rv libp$(package).a `ls *.o`; ranlib libp$(package).a )
-
-clean::
-	-$(RM) -r objs pobjs
-	-find $(DEB_BUILDDIR) \( -name "*.a" -o -name "*.so" -o -name "*.so.*" \) -delete
+#override_dh_auto_build:
+#	dh_auto_build -- all html

Modified: packages/arpack/trunk/debian/watch
URL: http://svn.debian.org/wsvn/debian-science/packages/arpack/trunk/debian/watch?rev=44117&op=diff
==============================================================================
--- packages/arpack/trunk/debian/watch (original)
+++ packages/arpack/trunk/debian/watch Sat Dec 10 22:47:58 2011
@@ -1,5 +1,3 @@
-# This is a dummy debian/watch file, to make Lintian happy.
-#
-# Currently, upstream uses a distribution mechanism that cannot be
-# meaningfully monitored by uscan and the Debian External Health Status
-# project.
+version=3
+http://forge.scilab.org/index.php/p/arpack-ng/downloads/direct/ \
+  .*/arpack-ng-(.*).tar.gz




More information about the debian-science-commits mailing list