[r-cran-rjsonio] 01/01: Initial packaging

Daniel Pocock pocock at moszumanska.debian.org
Fri Feb 19 09:01:03 UTC 2016


This is an automated email from the git hooks/post-receive script.

pocock pushed a commit to branch master
in repository r-cran-rjsonio.

commit a11146160a309fbc0a40c4bab630a0afc9cf470e
Author: Daniel Pocock <daniel at pocock.pro>
Date:   Thu Feb 18 22:17:49 2016 +0100

    Initial packaging
---
 debian/README.Debian |   6 +++
 debian/changelog     |   5 +++
 debian/compat        |   1 +
 debian/control       |  34 +++++++++++++++
 debian/copyright     | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules         |   3 ++
 debian/source/format |   1 +
 debian/watch         |   3 ++
 8 files changed, 174 insertions(+)

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..429360c
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,6 @@
+
+This package is in non-free because of an invalid license clause in
+some of the source files, see debian/copyright for details.
+
+It is recommended that people use the package r-cran-rjson instead
+of this package for any new projects.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ca755ac
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+r-cran-rjsonio (1.3-0-1) unstable; urgency=medium
+
+  * Initial packaging (Closes: #712159)
+
+ -- Daniel Pocock <daniel at pocock.pro>  Thu, 18 Feb 2016 21:43:55 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e914102
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,34 @@
+Source: r-cran-rjsonio
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Daniel Pocock <daniel at pocock.pro>
+Section: non-free/gnu-r
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               r-base-dev (>= 3.0.0),
+               cdbs
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/cgit/debian-science/r-cran-rjsonio.git
+Vcs-Git: git://anonscm.debian.org/debian-science/r-cran-rjsonio.git
+Homepage: https://cran.r-project.org/web/packages/RJSONIO/index.html
+
+Package: r-cran-rjsonio
+Architecture: all
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         ${R:Depends}
+Description: Serialize R objects to JSON, JavaScript Object Notation
+ Allows conversion to and from data in Javascript object notation (JSON)
+ format. This allows R objects to be inserted into
+ Javascript/ECMAScript/ActionScript code and allows R programmers to read
+ and convert JSON content to R objects. This is an alternative to rjson
+ package. Originally, that was too slow for converting large R objects to
+ JSON and was not extensible. rjson's performance is now similar to this
+ package, and perhaps slightly faster in some cases. This package uses
+ methods and is readily extensible by defining methods for different classes,
+ vectorized operations, and C code and callbacks to R functions for
+ deserializing JSON objects to R. The two packages intentionally share
+ the same basic interface. This package (RJSONIO) has many additional
+ options to allow customizing the generation and processing of JSON
+ content. This package uses libjson rather than implementing yet another
+ JSON parser. The aim is to support other general projects by building
+ on their work, providing feedback and benefit from their ongoing development.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..944299d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,121 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: RJSONIO
+Source: https://cran.r-project.org/src/contrib/RJSONIO_1.3-0.tar.gz
+
+Files: src/libjson/*
+Copyright: 2010, Jonathan Wallace
+License: BSD-2-clause
+
+Files: src/ConvertUTF.*
+Copyright: 2001-2004, Unicode, Inc.
+License: Unicode
+Comment: not clear if this is DFSG compliant
+
+Files: src/JSON_parser.*
+Copyright: 2005, JSON.org
+License: MIT-no-evil
+Comment: non-free, does not belong in main
+
+Files: *
+Copyright: 2014, Duncan Temple Lang <duncan at r-project.org>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2016, Daniel Pocock <daniel at pocock.pro>
+License: BSD-3-clause
+
+License: Unicode
+ Disclaimer
+ .
+ This source code is provided as is by Unicode, Inc. No claims are
+ made as to fitness for any particular purpose. No warranties of any
+ kind are expressed or implied. The recipient agrees to determine
+ applicability of information provided. If this file has been
+ purchased on magnetic or optical media from Unicode, Inc., the
+ sole remedy for any claim will be exchange of defective media
+ within 90 days of receipt.
+ .
+ Limitations on Rights to Redistribute This Code
+ .
+ Unicode, Inc. hereby grants the right to freely use the information
+ supplied in this file in the creation of products supporting the
+ Unicode Standard, and to make copies of this file in any form
+ for internal or external distribution as long as this notice
+ remains attached.
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY JONATHAN WALLACE ``AS IS'' AND ANY EXPRESS
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL JONATHAN WALLACE OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
+ OF SUCH DAMAGE.
+ .
+ The views and conclusions contained in the software and documentation are
+ those of the authors and should not be interpreted as representing official
+ policies, either expressed or implied, of Jonathan Wallace.
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in
+    the documentation and/or other materials provided with the
+    distribution.
+ .
+ 3. Neither the name of the author(s) nor the names of any contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+License: MIT-no-evil
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ The Software shall be used for Good, not Evil.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2fbba2d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,3 @@
+#!/usr/bin/make -f
+
+include /usr/share/R/debian/r-cran.mk
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..992eef9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+http://cran.r-project.org/src/contrib/RJSONIO_([-0-9\.]*)\.tar\.gz
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/r-cran-rjsonio.git



More information about the debian-science-commits mailing list