CRAN Package Check Results for Maintainer ‘Glenn Davis <gdavis at gluonics.com>’

Last updated on 2026-02-15 07:51:09 CET.

Package ERROR NOTE OK
colorscience 14
colorSpec 5 9
munsellinterpol 2 12
polarzonoid 14
spacesRGB 3 11
spacesXYZ 1 2 11
zonohedra 14

Package colorscience

Current CRAN status: OK: 14

Package colorSpec

Current CRAN status: NOTE: 5, OK: 9

Version: 1.8-0
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘Glenn Davis <gdavis@gluonics.com>’ Found the following (possibly) invalid file URIs: URI: <gdavis@gluonics.com> From: inst/doc/blueflame.pdf URI: <gdavis@gluonics.com> From: inst/doc/convexity.pdf URI: <gdavis@gluonics.com> From: inst/doc/emulation.pdf URI: <gdavis@gluonics.com> From: inst/doc/gallery.pdf URI: <gdavis@gluonics.com> From: inst/doc/inversion.pdf URI: <gdavis@gluonics.com> From: inst/doc/lens-aging.pdf URI: <gdavis@gluonics.com> From: inst/doc/optimals.pdf Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Version: 1.8-0
Check: installed package size
Result: NOTE installed size is 5.2Mb sub-directories of 1Mb or more: doc 1.9Mb extdata 2.4Mb Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package munsellinterpol

Current CRAN status: NOTE: 2, OK: 12

Version: 3.2-0
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘Glenn Davis <gdavis@gluonics.com>’ Found the following (possibly) invalid file URIs: URI: <gdavis@gluonics.com> From: inst/doc/lightness.pdf URI: <gdavis@gluonics.com> From: inst/doc/lociHC.pdf Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Package polarzonoid

Current CRAN status: OK: 14

Package spacesRGB

Current CRAN status: NOTE: 3, OK: 11

Version: 1.7-0
Check: whether the namespace can be loaded with stated dependencies
Result: NOTE Warning in microbenchmark::get_nanotime() : less accurate nanosecond times to avoid potential integer overflows A namespace must be able to be loaded with just the base namespace loaded: otherwise if the namespace gets loaded by a saved object, the session will be unable to start. Probably some imports need to be declared in the NAMESPACE file. Flavors: r-devel-macos-arm64, r-release-macos-arm64, r-oldrel-macos-arm64

Package spacesXYZ

Current CRAN status: ERROR: 1, NOTE: 2, OK: 11

Version: 1.6-0
Check: CRAN incoming feasibility
Result: NOTE Maintainer: ‘Glenn Davis <gdavis@gluonics.com>’ Found the following (possibly) invalid file URI: URI: <gdavis@gluonics.com> From: inst/doc/isotherms.pdf Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc

Version: 1.6-0
Check: tests
Result: ERROR Running ‘test-CCT.R’ [0s/0s] Running ‘test-DeltaE.R’ [0s/0s] Running ‘test-adaptations.R’ [0s/0s] Running the tests in ‘tests/test-adaptations.R’ failed. Complete output: > > > library( spacesXYZ ) Attaching spacesXYZ. Version: 1.6-0. Author: Glenn Davis [aut, cre]. Built: R 4.6.0; ; 2026-02-13 01:57:50 UTC; unix > > options( width=144 ) > > printf <- function( msg, ... ) + { + mess = sprintf( msg[1], ... ) # should this really be msg[1] ? + cat( mess, '\n' ) #, file=stderr() ) + } > > > testFundamental <- function() + { + printf( "\n--------------------- testFundamental() -----------------------" ) + + C = standardXYZ( 'C' ) + D65 = standardXYZ( 'D65' ) + + # xyY_D65 = xyYfromXYZ( D65 ) + + for( method in c( "Bradford", "VonKries", "MCAT02", "Bianco", "scaling" ) ) + { + CtoD65 = CAT( C, D65, method=method ) + + xyY_gray = xyYfromXYZ( adaptXYZ(CtoD65,C) ) + + delta = max( abs(adaptXYZ(CtoD65,C) - D65) ) + + printf( "method='%s'. delta=%g", method, delta ) + + if( 5.e-16 < delta ) + { + printf( "Adaptation accuracy failed for method='%s'. delta=%g", method, delta ) + return(FALSE) + } + } + + return( TRUE ) + } > > > > testSymmetry <- function() + { + printf( "\n--------------------- testSymmetry() -----------------------" ) + + I3 = diag(3) + + for( method in c( "Bradford", "VonKries", "MCAT02", "Bianco", "scaling" ) ) + { + AtoB = CAT( 'A', 'B', method=method ) + + BtoA = CAT( 'B', 'A', method=method ) + + # the product of the Ms must be I + delta = max( abs(AtoB$M %*% BtoA$M - I3) ) # print(delta) + + printf( "method='%s'. delta=%g", method, delta ) + + if( 5.e-15 < delta ) + { + printf( "Adaptation symmetry failed for method='%s'. delta=%g", method, delta ) + return(FALSE) + } + } + + return( TRUE ) + } > > > testCommutativity <- function() + { + printf( "\n--------------- testCommutativity() -----------------------" ) + + for( method in c( "Bradford", "VonKries", "MCAT02", "Bianco", "scaling" ) ) + { + AtoB = CAT( 'A', 'B', method=method ) + + BtoC = CAT( 'B', 'C', method=method ) + + AtoC = CAT( 'A', 'C', method=method ) + + # compare matrix product + delta = max( abs(BtoC$M %*% AtoB$M - AtoC$M) ) + + printf( "method='%s'. delta=%g", method, delta ) + + if( 5.e-15 < delta ) + { + printf( "Adaptation commutativity failed for method='%s'. delta=%g", method, delta ) + return(FALSE) + } + } + + return( TRUE ) + } > > > > if( ! testFundamental() ) stop( "testFundamental() failed !", call.=FALSE ) --------------------- testFundamental() ----------------------- method='Bradford'. delta=2.22045e-16 method='VonKries'. delta=5.55112e-16 Adaptation accuracy failed for method='VonKries'. delta=5.55112e-16 Error: testFundamental() failed ! Execution halted Flavor: r-devel-macos-arm64

Package zonohedra

Current CRAN status: OK: 14