Author: tille Date: 2013-01-30 12:37:10 +0000 (Wed, 30 Jan 2013) New Revision: 12869
Added: trunk/packages/R/r-cran-genabel/trunk/debian/patches/ trunk/packages/R/r-cran-genabel/trunk/debian/patches/checkversion.patch trunk/packages/R/r-cran-genabel/trunk/debian/patches/series Modified: trunk/packages/R/r-cran-genabel/trunk/debian/changelog Log: Inject changes to fix rc bug also in trunk Modified: trunk/packages/R/r-cran-genabel/trunk/debian/changelog =================================================================== --- trunk/packages/R/r-cran-genabel/trunk/debian/changelog 2013-01-30 12:36:29 UTC (rev 12868) +++ trunk/packages/R/r-cran-genabel/trunk/debian/changelog 2013-01-30 12:37:10 UTC (rev 12869) @@ -1,3 +1,11 @@ +r-cran-genabel (1.7-0-2) unstable; urgency=low + + * Fixing the problem which prevents the package from loading while + checking the version on CRAN + Closes: #699260 + + -- Andreas Tille <[email protected]> Wed, 30 Jan 2013 13:11:06 +0100 + r-cran-genabel (1.7-0-1) unstable; urgency=low * New upstream release. Added: trunk/packages/R/r-cran-genabel/trunk/debian/patches/checkversion.patch =================================================================== --- trunk/packages/R/r-cran-genabel/trunk/debian/patches/checkversion.patch (rev 0) +++ trunk/packages/R/r-cran-genabel/trunk/debian/patches/checkversion.patch 2013-01-30 12:37:10 UTC (rev 12869) @@ -0,0 +1,17 @@ +Author: Andreas Tille <[email protected]> +Bug-Debian: http://bugs.debian.org/699260 +Description: Fixing the problem which prevents the package from loading while checking the version on CRAN +Forwarded: not-needed +Origin: Backported from upstream version 1.7-3 (2013.01.09) + +--- a/R/checkPackageVersionOnCRAN.R ++++ b/R/checkPackageVersionOnCRAN.R +@@ -49,7 +49,7 @@ checkPackageVersionOnCRAN <- function(pa + # if failed in reading (pageContent is "try-error"), return NULL + if (class(pageContent) == "try-error") return(NULL) + # parse the page and get string starting with "Package source:" +- targetLine <- pageContent[grep("Package source:",pageContent)] ++ targetLine <- pageContent[grep("source:",pageContent)] + # split the string at "Package_" and ".tar.gz"; the element before the last will contain the version + splitPattern <- paste(packageName,"_|.tar.gz",sep="") + stringSplit <- strsplit(targetLine,splitPattern) Added: trunk/packages/R/r-cran-genabel/trunk/debian/patches/series =================================================================== --- trunk/packages/R/r-cran-genabel/trunk/debian/patches/series (rev 0) +++ trunk/packages/R/r-cran-genabel/trunk/debian/patches/series 2013-01-30 12:37:10 UTC (rev 12869) @@ -0,0 +1 @@ +checkversion.patch _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
