mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
- Submitter becomes maintainer R's default conflict management system gives the most recently loaded package precedence. This can make it hard to detect conflicts, particularly when they arise because a package update creates ambiguity that did not previously exist. 'conflicted' takes a different approach, making every conflict an error and forcing you to choose which function to use. WWW: https://conflicted.r-lib.org/ Differential Revision: https://reviews.freebsd.org/D43735
22 lines
557 B
Makefile
22 lines
557 B
Makefile
PORTNAME= conflicted
|
|
DISTVERSION= 1.2.0
|
|
CATEGORIES= devel
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
|
|
|
MAINTAINER= einar@isnic.is
|
|
COMMENT= Alternative Conflict Resolution Strategy
|
|
WWW= https://conflicted.r-lib.org/
|
|
|
|
LICENSE= MIT
|
|
|
|
CRAN_DEPENDS= R-cran-cli>=3.4.0:devel/R-cran-cli \
|
|
R-cran-memoise>0:devel/R-cran-memoise \
|
|
R-cran-rlang>=1.0.0:devel/R-cran-rlang
|
|
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
|
RUN_DEPENDS= ${CRAN_DEPENDS}
|
|
TEST_DEPENDS= R-cran-dplyr>0:math/R-cran-dplyr \
|
|
R-cran-testthat>0:devel/R-cran-testthat
|
|
|
|
USES= cran:auto-plist
|
|
|
|
.include <bsd.port.mk>
|