diff -Nru r-cran-redland-1.0.17-13/configure r-cran-redland-1.0.17-14/configure --- r-cran-redland-1.0.17-13/configure 2020-10-09 18:41:22.000000000 +0000 +++ r-cran-redland-1.0.17-14/configure 2020-10-21 18:42:03.000000000 +0000 @@ -20,6 +20,7 @@ platform=`uname` # Use pkg-config if available if [ $R_HAS_PKG_CONFIG ]; then + echo "Found pkg-config ${PKG_CONFIG_NAME}" PKGCONFIG_CFLAGS=`pkg-config --cflags --silence-errors ${PKG_CONFIG_NAME}` PKGCONFIG_LIBS=`pkg-config --libs ${PKG_CONFIG_NAME}` fi @@ -33,15 +34,17 @@ echo "Found pkg-config cflags and libs!" PKG_CFLAGS=${PKGCONFIG_CFLAGS} PKG_LIBS=${PKGCONFIG_LIBS} -elif [ "$PLATFOR" = "Darwin" ]; then - brew --version 2>/dev/null +elif [ "$platform" = "Darwin" ]; then + brew list ${PKG_BREW_NAME} >/dev/null 2>&1 if [ $? -eq 0 ]; then + echo "Configuring with brew." BREWDIR=`brew --prefix` else - curl -sfL "https://jeroen.github.io/autobrew/${PKG_CONFIG_NAME}" > autobrew + echo "Configuring with autobrew." + curl -sfL "https://autobrew.github.io/scripts/${PKG_BREW_NAME}" > autobrew . autobrew fi - + PKG_CFLAGS=`$BREWDIR/opt/pkg-config/bin/pkg-config --cflags ${PKG_CONFIG_NAME}` PKG_LIBS=`$BREWDIR/opt/pkg-config/bin/pkg-config --libs --static ${PKG_CONFIG_NAME}` fi diff -Nru r-cran-redland-1.0.17-13/debian/changelog r-cran-redland-1.0.17-14/debian/changelog --- r-cran-redland-1.0.17-13/debian/changelog 2020-10-13 09:24:19.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/changelog 2020-10-30 10:32:21.000000000 +0000 @@ -1,3 +1,10 @@ +r-cran-redland (1.0.17-14-1) unstable; urgency=medium + + * New upstream version + * Add autopkgtest + + -- Andreas Tille Fri, 30 Oct 2020 11:32:21 +0100 + r-cran-redland (1.0.17-13-1) unstable; urgency=medium * New upstream version diff -Nru r-cran-redland-1.0.17-13/debian/docs r-cran-redland-1.0.17-14/debian/docs --- r-cran-redland-1.0.17-13/debian/docs 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/docs 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,2 @@ +debian/tests/run-unit-test +tests diff -Nru r-cran-redland-1.0.17-13/debian/tests/control r-cran-redland-1.0.17-14/debian/tests/control --- r-cran-redland-1.0.17-13/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/tests/control 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,5 @@ +Tests: run-unit-test +Depends: @, r-cran-testthat, +Restrictions: allow-stderr + + diff -Nru r-cran-redland-1.0.17-13/debian/tests/run-unit-test r-cran-redland-1.0.17-14/debian/tests/run-unit-test --- r-cran-redland-1.0.17-13/debian/tests/run-unit-test 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/tests/run-unit-test 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/sh -e + +debname=r-cran-redland + +if [ "$AUTOPKGTEST_TMP" = "" ] ; then + AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX` + trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM +fi +cd $AUTOPKGTEST_TMP +cp -a /usr/share/doc/$debname/tests $AUTOPKGTEST_TMP +gunzip -r * +cd tests +for testfile in *.R; do + echo "BEGIN TEST $testfile" + LC_ALL=C.UTF-8 R --no-save < $testfile +done + diff -Nru r-cran-redland-1.0.17-13/DESCRIPTION r-cran-redland-1.0.17-14/DESCRIPTION --- r-cran-redland-1.0.17-13/DESCRIPTION 2020-10-09 19:40:03.000000000 +0000 +++ r-cran-redland-1.0.17-14/DESCRIPTION 2020-10-21 19:10:02.000000000 +0000 @@ -1,5 +1,5 @@ Package: redland -Version: 1.0.17-13 +Version: 1.0.17-14 Title: RDF Library Bindings in R Authors@R: c( person("Matthew B.", "Jones", role = c("aut", "cre"), email="jones@nceas.ucsb.edu"), @@ -11,7 +11,7 @@ person("University of Bristol", role = c("cph")), person("Regents of the University of California", role = c("cph")) ) -Date: 2020-10-08 +Date: 2020-10-21 VignetteBuilder: knitr Description: Provides methods to parse, query and serialize information stored in the Resource Description Framework (RDF). RDF is described at . @@ -35,7 +35,7 @@ Encoding: UTF-8 Language: en-US NeedsCompilation: yes -Packaged: 2020-10-09 18:41:21 UTC; slaughter +Packaged: 2020-10-21 18:42:03 UTC; slaughter Author: Matthew B. Jones [aut, cre], Peter Slaughter [aut], Jeroen Ooms [aut], @@ -46,4 +46,4 @@ Regents of the University of California [cph] Maintainer: Matthew B. Jones Repository: CRAN -Date/Publication: 2020-10-09 19:40:03 UTC +Date/Publication: 2020-10-21 19:10:02 UTC diff -Nru r-cran-redland-1.0.17-13/inst/doc/redland_overview.html r-cran-redland-1.0.17-14/inst/doc/redland_overview.html --- r-cran-redland-1.0.17-13/inst/doc/redland_overview.html 2020-10-09 18:41:21.000000000 +0000 +++ r-cran-redland-1.0.17-14/inst/doc/redland_overview.html 2020-10-21 18:42:03.000000000 +0000 @@ -12,7 +12,7 @@ - + redland: create, query and write RDF graphs @@ -391,7 +391,7 @@

redland: create, query and write RDF graphs

Peter Slaughter

-

2020-10-09

+

2020-10-21

diff -Nru r-cran-redland-1.0.17-13/MD5 r-cran-redland-1.0.17-14/MD5 --- r-cran-redland-1.0.17-13/MD5 2020-10-09 19:40:03.000000000 +0000 +++ r-cran-redland-1.0.17-14/MD5 2020-10-21 19:10:02.000000000 +0000 @@ -1,6 +1,6 @@ -19e2e9ba11cd0db31e5c2ce5db665251 *DESCRIPTION +9996a0aba5d4060a6212e93054b9f365 *DESCRIPTION e85bd917375ce513a2510c922344a4dd *NAMESPACE -4d4620ac06e3ff3719fc4b98b96984e9 *NEWS +09aa3b03eded8402cd0e5e3f6d87b223 *NEWS 830a83252828aa818699e1c9df805452 *R/Model.R b95c78857cd38dd27073e6dac73f7f34 *R/Node.R 545c3ce03b2de8aff87ff289bde4db5b *R/Parser.R @@ -17,7 +17,7 @@ 5f47afd41b5968848f90ca7a576e5dbd *README.md 081ba426af0d625054fdeaaeda00c2b4 *build/vignette.rds 6071edd604dbeb75308cfbedc7790398 *cleanup -a21190aeac8f1976980f301824dad550 *configure +1c76627ac00e2f9b46a37534ac55243e *configure d41d8cd98f00b204e9800998ecf8427e *configure.win d3855d3fbaac2d0a20d1e51d67e1eee3 *inst/CITATION b07a9afd8482086dfb02c2a15cee36cd *inst/COPYRIGHTS @@ -25,7 +25,7 @@ f6e936158b460297c7f6c207b24e558c *inst/WORDLIST 6fece89ee8533c8ce26c5f911020357d *inst/doc/redland_overview.R fb49a2101f6a29a88b69da4c5d3362c4 *inst/doc/redland_overview.Rmd -8fc7fa841c93092ad4889afa023a4c7c *inst/doc/redland_overview.html +6631dc2c935cfc150586c49b031e9d71 *inst/doc/redland_overview.html 67f3001bf4fce8f92ff0b4ebea9927dc *inst/extdata/dc.rdf 59940b488bb6ae076454faefbc439528 *inst/extdata/example.rdf 7e0f88c1a1d08e1c79daaf28dbcdbddb *man/Model-class.Rd diff -Nru r-cran-redland-1.0.17-13/NEWS r-cran-redland-1.0.17-14/NEWS --- r-cran-redland-1.0.17-13/NEWS 2020-10-08 22:03:27.000000000 +0000 +++ r-cran-redland-1.0.17-14/NEWS 2020-10-21 18:33:28.000000000 +0000 @@ -1,8 +1,14 @@ +Version 1.0.17-14 + +BUG FIXES + +* Resolved CRAN check errors during config on macOS for 1.0.17-13 (#91) + Version 1.0.17-13 BUG FIXES -* Resolve CRAN check errors for 1.0.17-12 submission (#89) +* Resolved CRAN check errors for 1.0.17-12 submission (#89) Version 1.0.17-12