Author: tille
Date: 2014-03-15 12:01:49 +0000 (Sat, 15 Mar 2014)
New Revision: 16445

Added:
   trunk/packages/R/r-cran-optparse/
   trunk/packages/R/r-cran-optparse/trunk/
   trunk/packages/R/r-cran-optparse/trunk/debian/
   trunk/packages/R/r-cran-optparse/trunk/debian/README.test
   trunk/packages/R/r-cran-optparse/trunk/debian/changelog
   trunk/packages/R/r-cran-optparse/trunk/debian/compat
   trunk/packages/R/r-cran-optparse/trunk/debian/control
   trunk/packages/R/r-cran-optparse/trunk/debian/copyright
   trunk/packages/R/r-cran-optparse/trunk/debian/rules
   trunk/packages/R/r-cran-optparse/trunk/debian/source/
   trunk/packages/R/r-cran-optparse/trunk/debian/source/format
   trunk/packages/R/r-cran-optparse/trunk/debian/watch
Log:
Inject precondition for qiime


Added: trunk/packages/R/r-cran-optparse/trunk/debian/README.test
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/README.test                   
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/README.test   2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1,7 @@
+r-cran-optparse for Debian
+--------------------------
+
+This package can be tested by loading it into R with the command
+'library(optparse)' in order to confirm its integrity.
+
+ -- Andreas Tille <[email protected]>  Sat, 15 Mar 2014 11:40:25 +0100

Added: trunk/packages/R/r-cran-optparse/trunk/debian/changelog
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/changelog                     
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/changelog     2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1,5 @@
+r-cran-optparse (1.0.2-1) UNRELEASAED; urgency=low
+
+  * Initial release (Closes: #???)
+
+ -- Andreas Tille <[email protected]>  Sat, 15 Mar 2014 11:40:25 +0100

Added: trunk/packages/R/r-cran-optparse/trunk/debian/compat
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/compat                        
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/compat        2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1 @@
+9

Added: trunk/packages/R/r-cran-optparse/trunk/debian/control
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/control                       
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/control       2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1,25 @@
+Source: r-cran-optparse
+Maintainer: Debian Med Packaging Team 
<[email protected]>
+Uploaders: Ivo Maintz <[email protected]>,
+           Andreas Tille <[email protected]>
+Section: gnu-r
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               cdbs,
+               r-base-dev,
+               r-cran-getopt
+Standards-Version: 3.9.5
+Vcs-Browser: 
http://anonscm.debian.org/viewvc/debian-med/trunk/packages/R/r-cran-optparse/trunk/
+Vcs-Svn: 
svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-optparse/trunk/
+Homepage: http://cran.r-project.org/web/packages/optparse/
+
+Package: r-cran-optparse
+Architecture: all
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         ${R:Depends},
+         r-cran-getopt
+Description: GNU/R Command line option parser
+ A command line parser inspired by Python's 'optparse' library to be
+ used with Rscript to write "#!" shebang scripts that accept short and
+ long flag/options.

Added: trunk/packages/R/r-cran-optparse/trunk/debian/copyright
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/copyright                     
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/copyright     2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1,29 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: optparse
+Upstream-Contact: Trevor L Davis <trevor.l.davis at stanford.edu>
+Source: http://cran.r-project.org/src/contrib/
+
+Files: *
+Copyright: 2011-2013 Trevor L Davis <trevor.l.davis at stanford.edu>
+License: GPL-2.0+
+
+Files: debian/*
+Copyright: 2014 Andreas Tille <[email protected]>
+License: GPL-2.0+
+
+License: GPL-2.0+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package 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 General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General  Public
+ License version 2 can be found in "/usr/share/common-licenses/GPL-2".

Added: trunk/packages/R/r-cran-optparse/trunk/debian/rules
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/rules                         
(rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/rules 2014-03-15 12:01:49 UTC 
(rev 16445)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+include /usr/share/R/debian/r-cran.mk


Property changes on: trunk/packages/R/r-cran-optparse/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/packages/R/r-cran-optparse/trunk/debian/source/format
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/source/format                 
        (rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/source/format 2014-03-15 
12:01:49 UTC (rev 16445)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/packages/R/r-cran-optparse/trunk/debian/watch
===================================================================
--- trunk/packages/R/r-cran-optparse/trunk/debian/watch                         
(rev 0)
+++ trunk/packages/R/r-cran-optparse/trunk/debian/watch 2014-03-15 12:01:49 UTC 
(rev 16445)
@@ -0,0 +1,2 @@
+version=3
+http://cran.r-project.org/src/contrib/optparse_([\d.-]*)\.tar.gz


_______________________________________________
debian-med-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to