diff options
author | David Naylor <dbn@FreeBSD.org> | 2017-06-19 02:09:16 +0800 |
---|---|---|
committer | David Naylor <dbn@FreeBSD.org> | 2017-06-19 02:09:16 +0800 |
commit | 9920d3ae657e820bce42911009136fc059210d0d (patch) | |
tree | 237480885bd130394dbcbc56f765540bba4416e2 /finance/R-cran-TTR | |
parent | 4aeae92375bb57620d054d3cc88677ebba4f22bf (diff) | |
download | freebsd-ports-gnome-9920d3ae657e820bce42911009136fc059210d0d.tar.gz freebsd-ports-gnome-9920d3ae657e820bce42911009136fc059210d0d.tar.zst freebsd-ports-gnome-9920d3ae657e820bce42911009136fc059210d0d.zip |
qa: add check for NO_ARCH
If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR.
If an elf(5) file is bundles as part of the package, but is not meant to be
run directly (i.e. the elf(5) file is a payload, and not compiled) then
those files can be added to NO_ARCH_IGNORE to avoid the check from failing,
Changes to ports:
- Ports that have NO_ARCH set, but actually compile files have had NO_ARCH
removed.
- Ports that have elf(5) payloads have had those files added to
NO_ARCH_IGNORE.
- R-cran ports that do not set USES=cran:compiles have NO_ARCH set,
PR: 218976
Reviewed by: antoine, mat
Approved by: portmgr
Diffstat (limited to 'finance/R-cran-TTR')
-rw-r--r-- | finance/R-cran-TTR/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/finance/R-cran-TTR/Makefile b/finance/R-cran-TTR/Makefile index 7bc8b976ea23..b0641a2763af 100644 --- a/finance/R-cran-TTR/Makefile +++ b/finance/R-cran-TTR/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= TTR +PORTREVISION= 1 DISTVERSION= 0.23-1 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-xts>=0.9.3:math/R-cran-xts -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include <bsd.port.mk> |