Date: Sat, 28 Sep 2019 07:25:30 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513107 - in head/devel: . R-cran-lifecycle Message-ID: <201909280725.x8S7PUuE084188@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sat Sep 28 07:25:30 2019 New Revision: 513107 URL: https://svnweb.freebsd.org/changeset/ports/513107 Log: - Add new port: devel/R-cran-lifecycle Manage the life cycle of your exported functions with shared conventions, documentation badges, and non-invasive deprecation warnings. The 'lifecycle' package defines four development stages (experimental, maturing, stable, and questioning) and three deprecation stages (soft-deprecated, deprecated, and defunct). It makes it easy to insert badges corresponding to these stages in your documentation. Usage of deprecated functions are signalled with increasing levels of non-invasive verbosity. WWW: https://cran.r-project.org/web/packages/lifecycle/ Added: head/devel/R-cran-lifecycle/ head/devel/R-cran-lifecycle/Makefile (contents, props changed) head/devel/R-cran-lifecycle/distinfo (contents, props changed) head/devel/R-cran-lifecycle/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Sep 28 06:51:47 2019 (r513106) +++ head/devel/Makefile Sat Sep 28 07:25:30 2019 (r513107) @@ -50,6 +50,7 @@ SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-later + SUBDIR += R-cran-lifecycle SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise Added: head/devel/R-cran-lifecycle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lifecycle/Makefile Sat Sep 28 07:25:30 2019 (r513107) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= lifecycle +PORTVERSION= 0.1.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Manage the Life Cycle of your Package Functions + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-glue>0:devel/R-cran-glue \ + R-cran-rlang>=0.4.0:devel/R-cran-rlang +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/devel/R-cran-lifecycle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lifecycle/distinfo Sat Sep 28 07:25:30 2019 (r513107) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569654136 +SHA256 (lifecycle_0.1.0.tar.gz) = 961c28c016d54beee496572a88602fe94d8456ee6455ac88cb2e0fc3273c3387 +SIZE (lifecycle_0.1.0.tar.gz) = 150752 Added: head/devel/R-cran-lifecycle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-lifecycle/pkg-descr Sat Sep 28 07:25:30 2019 (r513107) @@ -0,0 +1,10 @@ +Manage the life cycle of your exported functions with shared +conventions, documentation badges, and non-invasive deprecation +warnings. The 'lifecycle' package defines four development stages +(experimental, maturing, stable, and questioning) and three deprecation +stages (soft-deprecated, deprecated, and defunct). It makes it easy +to insert badges corresponding to these stages in your documentation. +Usage of deprecated functions are signalled with increasing levels +of non-invasive verbosity. + +WWW: https://cran.r-project.org/web/packages/lifecycle/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909280725.x8S7PUuE084188>