r45884 - in /packages/R/r-cran-deldir/trunk/debian: changelog patches/ patches/prevent_csh.patch rules

tille at users.alioth.debian.org tille at users.alioth.debian.org
Thu May 16 07:31:51 UTC 2013


Author: tille
Date: Thu May 16 07:31:50 2013
New Revision: 45884

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=45884
Log:
Final polishing; ITP bug; Upload to unstable

Added:
    packages/R/r-cran-deldir/trunk/debian/patches/
    packages/R/r-cran-deldir/trunk/debian/patches/prevent_csh.patch
Modified:
    packages/R/r-cran-deldir/trunk/debian/changelog
    packages/R/r-cran-deldir/trunk/debian/rules

Modified: packages/R/r-cran-deldir/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/R/r-cran-deldir/trunk/debian/changelog?rev=45884&op=diff
==============================================================================
--- packages/R/r-cran-deldir/trunk/debian/changelog (original)
+++ packages/R/r-cran-deldir/trunk/debian/changelog Thu May 16 07:31:50 2013
@@ -1,5 +1,5 @@
-r-cran-deldir (0.0-22-1) UNRELEASED; urgency=low
+r-cran-deldir (0.0-22-1) unstable; urgency=low
 
-  * Initial release (Closes: #).
+  * Initial release (Closes: #708395).
 
  -- Andreas Tille <tille at debian.org>  Wed, 15 May 2013 15:12:06 +0200

Added: packages/R/r-cran-deldir/trunk/debian/patches/prevent_csh.patch
URL: http://svn.debian.org/wsvn/debian-science/packages/R/r-cran-deldir/trunk/debian/patches/prevent_csh.patch?rev=45884&op=file
==============================================================================
--- packages/R/r-cran-deldir/trunk/debian/patches/prevent_csh.patch (added)
+++ packages/R/r-cran-deldir/trunk/debian/patches/prevent_csh.patch Thu May 16 07:31:50 2013
@@ -1,0 +1,23 @@
+Author: Andreas Tille <tille at debian.org>
+Description: Convert simple csh script to POSIX shell to silence lintian.
+ However, this is not needed inside the binary package so simply removing
+ the ratfor code from binary seems to be the more sane solution.  Leave it
+ here for reference might not harm anyway
+LastChanged: Wed, 15 May 2013 15:12:06 +0200
+
+--- a/inst/ratfor/makefor
++++ b/inst/ratfor/makefor
+@@ -1,7 +1,7 @@
+-#! /bin/csh
++#!/bin/sh
+ 
+-foreach file (*.r)
+-set stem = `basename $file .r`
+-ratfor $file > $stem.f
+-/bin/mv $stem.f ../../src
+-end
++for file in `ls *.r` ; do
++	stem=`basename $file .r`
++	ratfor $file > $stem.f
++	/bin/mv $stem.f ../../src
++done

Modified: packages/R/r-cran-deldir/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/R/r-cran-deldir/trunk/debian/rules?rev=45884&op=diff
==============================================================================
--- packages/R/r-cran-deldir/trunk/debian/rules (original)
+++ packages/R/r-cran-deldir/trunk/debian/rules Thu May 16 07:31:50 2013
@@ -4,3 +4,6 @@
 # Copyright 2009 by Andreas Tille <tille at debian.org>
 
 include /usr/share/R/debian/r-cran.mk
+
+install/$(package)::
+	rm -rf debian/$(package)/usr/lib/R/site-library/deldir/ratfor




More information about the debian-science-commits mailing list