Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Mar 2024 12:37:18 GMT
From:      Nuno Teixeira <eduardo@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: dc29da5db6e6 - main - biology/migrate: Fix extract
Message-ID:  <202403271237.42RCbIFY022854@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by eduardo:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dc29da5db6e6ea3932e48facb66c7bfc97dd8cee

commit dc29da5db6e6ea3932e48facb66c7bfc97dd8cee
Author:     Nuno Teixeira <eduardo@FreeBSD.org>
AuthorDate: 2024-03-27 12:32:23 +0000
Commit:     Nuno Teixeira <eduardo@FreeBSD.org>
CommitDate: 2024-03-27 12:36:40 +0000

    biology/migrate: Fix extract
    
    Extract fails on aarch64 with error:
    (sample)
    "dynsections.js: Cannot restore extended attributes:
    com.apple.quarantine com.apple.quarantine: No such file or directory"
    tar: Error exit delayed from previous errors.-
    
    Fix extract with: --no-same-owner --no-same-permissions
---
 biology/migrate/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/biology/migrate/Makefile b/biology/migrate/Makefile
index 1f04a5ee0923..c524444a06bf 100644
--- a/biology/migrate/Makefile
+++ b/biology/migrate/Makefile
@@ -23,7 +23,7 @@ MAKE_ARGS=	PRETTYCFLAGS="${CFLAGS} -DNOJPEG -DNOZLIB -DNOPNG -Iharu -DPRETTY -ls
 
 CONFLICTS_INSTALL=	py*-sqlalchemy-migrate # bin/migrate
 
-EXTRACT_AFTER_ARGS=	--exclude zlib
+EXTRACT_AFTER_ARGS=	--no-same-owner --no-same-permissions --exclude zlib
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
 
 PORTDOCS=	${PORTNAME}.html HISTORY README README_PARALLEL_GENERAL



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403271237.42RCbIFY022854>