From noreply at r-forge.r-project.org Tue Jun 7 11:24:04 2016 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Tue, 7 Jun 2016 11:24:04 +0200 (CEST) Subject: [Soiltexture-commits] r151 - in pkg/soiltexture: . inst Message-ID: <20160607092404.A13F5187D23@r-forge.r-project.org> Author: jmoeys Date: 2016-06-07 11:24:04 +0200 (Tue, 07 Jun 2016) New Revision: 151 Modified: pkg/soiltexture/DESCRIPTION pkg/soiltexture/inst/SVN_VERSION Log: Prepare for compilation on R 3.3.0 Modified: pkg/soiltexture/DESCRIPTION =================================================================== --- pkg/soiltexture/DESCRIPTION 2016-04-08 14:30:18 UTC (rev 150) +++ pkg/soiltexture/DESCRIPTION 2016-06-07 09:24:04 UTC (rev 151) @@ -1,12 +1,12 @@ Package: soiltexture Version: 1.4.0 -Date: 2016-04-08 +Date: 2016-06-07 Title: Functions for Soil Texture Plot, Classification and Transformation Author: Julien Moeys [aut, cre], Wei Shangguan [ctb], Rainer Petzold [ctb], Budiman Minasny [ctb], Bogdan Rosca [ctb], Nic Jelinski [ctb], Wiktor Zelazny [ctb], Rodolfo Marcondes Silva Souza [ctb], Jose Lucas Safanelli [ctb], Alexandre ten Caten [ctb] Authors at R: c( person( "Julien", "Moeys", role = c("aut", "cre"), email = "jules_m78-soiltexture at yahoo.fr" ), person( "Wei", "Shangguan", role = "ctb" ), person( "Rainer", "Petzold", role = "ctb" ), person( "Budiman", "Minasny", role = "ctb" ), person( "Bogdan", "Rosca", role = "ctb" ), person( "Nic", "Jelinski", role = "ctb" ), person( "Wiktor", "Zelazny", role = "ctb" ), person( "Rodolfo", "Marcondes Silva Souza", role = "ctb" ), person( "Jose Lucas", "Safanelli", role = "ctb" ), person( "Alexandre", "ten Caten", role = "ctb" ) ) Maintainer: Julien Moeys Depends: - R (>= 3.2.0) + R (>= 3.3.0) Suggests: xtable Description: "The Soil Texture Wizard" is a set of R functions designed to produce texture triangles (also called texture plots, texture diagrams, texture ternary plots), classify and transform soil textures data. These functions virtually allows to plot any soil texture triangle (classification) into any triangle geometry (isosceles, right-angled triangles, etc.). This set of function is expected to be useful to people using soil textures data from different soil texture classification or different particle size systems. Many (> 15) texture triangles from all around the world are predefined in the package. A simple text based graphical user interface is provided: soiltexture_gui(). Modified: pkg/soiltexture/inst/SVN_VERSION =================================================================== --- pkg/soiltexture/inst/SVN_VERSION 2016-04-08 14:30:18 UTC (rev 150) +++ pkg/soiltexture/inst/SVN_VERSION 2016-06-07 09:24:04 UTC (rev 151) @@ -1 +1 @@ -122:149M +122:150M From noreply at r-forge.r-project.org Tue Jun 7 11:37:24 2016 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Tue, 7 Jun 2016 11:37:24 +0200 (CEST) Subject: [Soiltexture-commits] r152 - / pkg/soiltexture pkg/soiltexture/R pkg/soiltexture/inst Message-ID: <20160607093724.A9A85184C18@r-forge.r-project.org> Author: jmoeys Date: 2016-06-07 11:37:24 +0200 (Tue, 07 Jun 2016) New Revision: 152 Modified: pkg/soiltexture/DESCRIPTION pkg/soiltexture/NAMESPACE pkg/soiltexture/R/onAttach.R pkg/soiltexture/inst/SVN_VERSION soiltexture_compile.R Log: Fix .onAttach and use packageVersion instead of packageDescription Modified: pkg/soiltexture/DESCRIPTION =================================================================== --- pkg/soiltexture/DESCRIPTION 2016-06-07 09:24:04 UTC (rev 151) +++ pkg/soiltexture/DESCRIPTION 2016-06-07 09:37:24 UTC (rev 152) @@ -1,5 +1,5 @@ Package: soiltexture -Version: 1.4.0 +Version: 1.4.1 Date: 2016-06-07 Title: Functions for Soil Texture Plot, Classification and Transformation Author: Julien Moeys [aut, cre], Wei Shangguan [ctb], Rainer Petzold [ctb], Budiman Minasny [ctb], Bogdan Rosca [ctb], Nic Jelinski [ctb], Wiktor Zelazny [ctb], Rodolfo Marcondes Silva Souza [ctb], Jose Lucas Safanelli [ctb], Alexandre ten Caten [ctb] Modified: pkg/soiltexture/NAMESPACE =================================================================== --- pkg/soiltexture/NAMESPACE 2016-06-07 09:24:04 UTC (rev 151) +++ pkg/soiltexture/NAMESPACE 2016-06-07 09:37:24 UTC (rev 152) @@ -13,7 +13,7 @@ } importFrom( "utils", "installed.packages", - "packageDescription", "read.table", + "packageVersion", "read.table", "capture.output", "write.table", "browseURL" ) importFrom( "tcltk", "tk_choose.files" ) Modified: pkg/soiltexture/R/onAttach.R =================================================================== --- pkg/soiltexture/R/onAttach.R 2016-06-07 09:24:04 UTC (rev 151) +++ pkg/soiltexture/R/onAttach.R 2016-06-07 09:37:24 UTC (rev 152) @@ -49,7 +49,7 @@ msg <- sprintf( "%s %s %s. For help type: help(pack='%s')", pkgname, - as.character( utils::packageDescription( pkgname ) ), + as.character( utils::packageVersion( pkgname ) ), svnVersion, pkgname ) Modified: pkg/soiltexture/inst/SVN_VERSION =================================================================== --- pkg/soiltexture/inst/SVN_VERSION 2016-06-07 09:24:04 UTC (rev 151) +++ pkg/soiltexture/inst/SVN_VERSION 2016-06-07 09:37:24 UTC (rev 152) @@ -1 +1 @@ -122:150M +122:151M Modified: soiltexture_compile.R =================================================================== --- soiltexture_compile.R 2016-06-07 09:24:04 UTC (rev 151) +++ soiltexture_compile.R 2016-06-07 09:37:24 UTC (rev 152) @@ -17,7 +17,7 @@ pkgDescription( # Done with R 3.2.0 RC pkgName = pkgName, pkgDir = pkgDir, - pkgVersion = "1.4.0", + pkgVersion = "1.4.1", pkgDepends = NULL, pkgSuggests = c( "xtable" ), pkgImports = c( "sp", "MASS", "tools", "tcltk", "utils" ), From noreply at r-forge.r-project.org Tue Jun 7 11:42:26 2016 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Tue, 7 Jun 2016 11:42:26 +0200 (CEST) Subject: [Soiltexture-commits] r153 - / pkg/soiltexture/inst Message-ID: <20160607094226.6F6A4184C18@r-forge.r-project.org> Author: jmoeys Date: 2016-06-07 11:42:26 +0200 (Tue, 07 Jun 2016) New Revision: 153 Modified: pkg/soiltexture/inst/SVN_VERSION soiltexture_2_RCMDcheck_noexamples.bat soiltexture_3_RCMDINSTALL_build.BAT soiltexture_4_RCMDRd2pdf.BAT Log: successfull compilation on R 3.3.0 Modified: pkg/soiltexture/inst/SVN_VERSION =================================================================== --- pkg/soiltexture/inst/SVN_VERSION 2016-06-07 09:37:24 UTC (rev 152) +++ pkg/soiltexture/inst/SVN_VERSION 2016-06-07 09:42:26 UTC (rev 153) @@ -1 +1 @@ -122:151M +122:152M Modified: soiltexture_2_RCMDcheck_noexamples.bat =================================================================== --- soiltexture_2_RCMDcheck_noexamples.bat 2016-06-07 09:37:24 UTC (rev 152) +++ soiltexture_2_RCMDcheck_noexamples.bat 2016-06-07 09:42:26 UTC (rev 153) @@ -1,5 +1,5 @@ set pkgname=soiltexture -set version=1.4.0 +set version=1.4.1 cd /D "%rPackagesDir%\%pkgname%\pkg" Modified: soiltexture_3_RCMDINSTALL_build.BAT =================================================================== --- soiltexture_3_RCMDINSTALL_build.BAT 2016-06-07 09:37:24 UTC (rev 152) +++ soiltexture_3_RCMDINSTALL_build.BAT 2016-06-07 09:42:26 UTC (rev 153) @@ -1,5 +1,5 @@ set pkgname=soiltexture -set version=1.4.0 +set version=1.4.1 cd /D "%rPackagesDir%\%pkgname%\pkg" Modified: soiltexture_4_RCMDRd2pdf.BAT =================================================================== --- soiltexture_4_RCMDRd2pdf.BAT 2016-06-07 09:37:24 UTC (rev 152) +++ soiltexture_4_RCMDRd2pdf.BAT 2016-06-07 09:42:26 UTC (rev 153) @@ -1,5 +1,5 @@ set pkgname=soiltexture -set version=1.4.0 +set version=1.4.1 cd /D "%rPackagesDir%\%pkgname%\pkg"