[r-cran-jsonlite] 02/06: Import Debian patch 0.9.19-1~bpo8+1

Andreas Tille tille at debian.org
Wed Nov 16 08:46:44 UTC 2016


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

tille pushed a commit to branch master
in repository r-cran-jsonlite.

commit e11202b66280165dc59fe97fd880897ef048d3f6
Author: Andreas Tille <tille at debian.org>
Date:   Mon Apr 11 20:52:35 2016 +0200

    Import Debian patch 0.9.19-1~bpo8+1
---
 debian/changelog     | 17 +++++++++++++++++
 debian/compat        |  1 +
 debian/control       | 25 +++++++++++++++++++++++++
 debian/copyright     | 30 ++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         | 21 +++++++++++++++++++++
 debian/source/format |  1 +
 debian/watch         |  2 ++
 8 files changed, 98 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0209bc7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,17 @@
+r-cran-jsonlite (0.9.19-1~bpo8+1) jessie-backports; urgency=medium
+
+  * Rebuild for jessie-backports.
+
+ -- Andreas Tille <tille at debian.org>  Mon, 11 Apr 2016 20:52:35 +0200
+
+r-cran-jsonlite (0.9.19-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Chris Lawrence <lawrencc at debian.org>  Sat, 28 Nov 2015 03:59:16 -0500
+
+r-cran-jsonlite (0.9.17-1) unstable; urgency=low
+
+  * Initial release (Closes: #805256).
+
+ -- Chris Lawrence <lawrencc at debian.org>  Sun, 15 Nov 2015 19:48:03 -0500
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..f566ed4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: r-cran-jsonlite
+Section: gnu-r
+Priority: optional
+Maintainer: Chris Lawrence <lawrencc at debian.org>
+Build-Depends: debhelper (>= 9), r-base-dev, cdbs
+Standards-Version: 3.9.6
+Homepage: https://cran.r-project.org/web/packages/jsonlite/index.html
+
+Package: r-cran-jsonlite
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${R:Depends}
+Description: Robust, High Performance JSON Parser and Generator for R
+ A fast JSON parser and generator optimized for statistical data and
+ the web. Started out as a fork of 'RJSONIO', but has been completely
+ rewritten in recent versions. The package offers flexible, robust,
+ high performance tools for working with JSON in R and is particularly
+ powerful for building pipelines and interacting with a web API. The
+ implementation is based on the mapping described in the vignette
+ (Ooms, 2014). In addition to converting JSON data from/to R objects,
+ 'jsonlite' contains functions to stream, validate, and prettify JSON
+ data. The unit tests included with the package verify that all edge
+ cases are encoded and decoded consistently for use with dynamic data
+ in systems and applications.
+
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..159b1db
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: r-cran-jsonlite
+Source: https://cran.r-project.org/src/contrib/jsonlite_0.9.17.tar.gz
+
+Files: *
+Copyright: 2015 Jeroen Ooms <jeroen.ooms at stat.ucla.edu>
+License: MIT
+
+Files: debian/*
+Copyright: 2015 Chris Lawrence <lawrencc at debian.org>
+License: MIT
+
+License: MIT
+ 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 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/docs b/debian/docs
new file mode 100644
index 0000000..edc0071
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+NEWS
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c74269c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# 							-*- makefile -*-
+# debian/rules file for the Debian/GNU Linux r-cran-jsonlite package
+
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
+PKG_CFLAGS=$(CFLAGS)
+PKG_CXXFLAGS=$(CXXFLAGS)
+PKG_CPPFLAGS=$(CPPFLAGS)
+PKG_FFLAGS=$(FFLAGS)
+
+export PKG_CFLAGS PKG_CXXFLAGS PKG_CPPFLAGS PKG_FFLAGS
+
+makeFlags="LDFLAGS=$(LDFLAGS)"
+
+include /usr/share/R/debian/r-cran.mk
+
+## Remove extra license file
+common-install-arch::
+	rm -vf debian/r-cran-jsonlite/usr/lib/R/site-library/jsonlite/LICENSE
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..2cd18fd
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://cran.r-project.org/src/contrib/jsonlite_(.*)\.tar\.(gz|bz2|xz)

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



More information about the debian-science-commits mailing list