--- littler-0.0.11.orig/debian/compat +++ littler-0.0.11/debian/compat @@ -0,0 +1 @@ +5 --- littler-0.0.11.orig/debian/changelog +++ littler-0.0.11/debian/changelog @@ -0,0 +1,90 @@ +littler (0.0.11-2) unstable; urgency=low + + * Rebuilt under R 2.6.1 + + -- Dirk Eddelbuettel Thu, 29 Nov 2007 21:07:13 -0600 + +littler (0.0.11-1) unstable; urgency=low + + * New upstream release with the following upstream changes: + + * Makefile.am: Removed use of one GNU extension to Make to + facilitate builds on non-GNU systems + * examples/update.r: Fix by Jeff for file caching issues + + * Built against the new R 2.5.0 released yesterday + * debian/control: Build-Depends: updated to r-base-core (>= 2.5.0) + + -- Dirk Eddelbuettel Wed, 25 Apr 2007 12:46:53 -0500 + +littler (0.0.10-1) unstable; urgency=low + + * New upstream release with the following upstream changes: + + * Minor fix to the build process to overcome a built issue on OpenSUSE + -- configure now checks more of R's *LIBS variables and even has + two additional switches to add Java and Tcl/Tk libs + * Added init_rand() function so that R's tempfile() function works + * Addition to the FAQ to mention the upcoming Rscript, incl. example + * Added Added R version checking to support R 2.4 and 2.5 to littler.c + * tests/ now use ../r as path to r executable + + -- Dirk Eddelbuettel Tue, 20 Feb 2007 22:02:25 -0600 + +littler (0.0.9-1) unstable; urgency=low + + * New upstream release: + + * littler.c: Add call to R_ReplDLLinit at initialization + * examples/update.r: ALways recreate package caches + + * debian/control: Updated (Build-)Depends: to R 2.4.1 + + -- Dirk Eddelbuettel Thu, 4 Jan 2007 19:52:04 -0600 + +littler (0.0.8-1) unstable; urgency=low + + * New upstream release + + * debian/control: Remove Build-Depends: on automake and autotools-dev + (Closes: #394295) + + -- Dirk Eddelbuettel Wed, 25 Oct 2006 22:08:09 -0500 + +littler (0.0.7-1) unstable; urgency=low + + * New upstream release + + -- Dirk Eddelbuettel Thu, 5 Oct 2006 15:04:21 -0500 + +littler (0.0.6-1) unstable; urgency=low + + * New upstream release + + -- Dirk Eddelbuettel Thu, 4 Oct 2006 21:46:07 -0500 + +littler (0.0.5-1) unstable; urgency=low + + * Official first release made earlier today, plus some documentation + fixes checked into SVN during the day + + -- Dirk Eddelbuettel Tue, 26 Sep 2006 22:15:40 -0500 + +littler (0.0.5~20060921-1) unstable; urgency=low + + * Updated pre-release for initial Debian upload + + -- Dirk Eddelbuettel Thu, 21 Sep 2006 22:39:45 -0500 + +littler (0.0.5~20060916-1) unstable; urgency=low + + * Updated pre-release + + -- Dirk Eddelbuettel Sat, 16 Sep 2006 12:13:52 -0500 + +littler (0.0.5~20060914-1) unstable; urgency=low + + * Initial Debian packaging -- no release yet + + -- Dirk Eddelbuettel Thu, 14 Sep 2006 20:46:45 -0500 + --- littler-0.0.11.orig/debian/overrides +++ littler-0.0.11/debian/overrides @@ -0,0 +1 @@ +littler: binary-or-shlib-defines-rpath ./usr/bin/r /usr/lib/R/lib \ No newline at end of file --- littler-0.0.11.orig/debian/rules +++ littler-0.0.11/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux littler package +# Copyright 2006 by Dirk Eddelbuettel + +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/debhelper.mk + +binary-install/littler:: + dh_installexamples examples/* + dh_installdocs tests/ + +## additional chmod to silence lintian (NB -arch or -indep needed!!) +package := $(shell awk '/^Package:/ {print $$2}' debian/control) +lintiandir := $(CURDIR)/debian/$(package)/usr/share/lintian/overrides +common-binary-post-install-arch:: + install -d $(lintiandir) + install -m 0644 debian/overrides $(lintiandir)/$(package) --- littler-0.0.11.orig/debian/copyright +++ littler-0.0.11/debian/copyright @@ -0,0 +1,15 @@ +This is the Debian GNU/Linux littler package, a leightweight wrapper +for shebang-style scripting and pipeline uses for the GNU R language +and environment for statistical computing and graphics. It was written +by Jeffrey Horner and Dirk Eddelbuettel. + +This package was created by Dirk Eddelbuettel . +The sources were downloaded from the SVN archive at + http://littler.googlecode.com/svn/trunk/ littler + +Littler is copyright Jeffey Horner and Dirk Eddelbuettel, and released +under the GNU General Public License (GPL). + +On a Debian GNU/Linux system, the GPL license is included in the file +/usr/share/common-licenses/GPL. + --- littler-0.0.11.orig/debian/control +++ littler-0.0.11/debian/control @@ -0,0 +1,20 @@ +Source: littler +Section: math +Priority: optional +Maintainer: Dirk Eddelbuettel +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 5), cdbs, r-base-dev (>= 2.6.1) + +Package: littler +Architecture: any +Depends: ${shlibs:Depends}, r-base-core (>= 2.6.1) +Description: GNU R scripting and command-line front-end + The 'r' (aka 'littler') program provides a leightweight binary wrapper around + the GNU R language and environment for statistical computing and graphics. + . + While R can be used in batch mode, the r binary adds full support for + both 'shebang'-style scripting (i.e. using a hashmark-exclamation-path + expression as the first line in scripts) as well as command-line use in + standard Unix pipelines. In other words, r provides the R language without + the environment. +