git: 7311acbb84bc - main - archivers/pxz: update to 136e5c2 .
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 09 Jul 2022 20:40:52 UTC
The branch main has been updated by delphij: URL: https://cgit.FreeBSD.org/ports/commit/?id=7311acbb84bca3fd812ed7bc800b6f8e0fcde889 commit 7311acbb84bca3fd812ed7bc800b6f8e0fcde889 Author: Xin LI <delphij@FreeBSD.org> AuthorDate: 2022-07-09 20:37:15 +0000 Commit: Xin LI <delphij@FreeBSD.org> CommitDate: 2022-07-09 20:40:42 +0000 archivers/pxz: update to 136e5c2 . --- archivers/pxz/Makefile | 12 ++++++------ archivers/pxz/distinfo | 5 +++-- archivers/pxz/files/patch-pxz.c | 14 +++++++------- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/archivers/pxz/Makefile b/archivers/pxz/Makefile index 47375cf87dd0..ea9609c4c6c0 100644 --- a/archivers/pxz/Makefile +++ b/archivers/pxz/Makefile @@ -1,11 +1,8 @@ # Created by: mm PORTNAME= pxz -PORTVERSION= 0.20141018 -PORTREVISION= 9 +PORTVERSION= 0.20220509 CATEGORIES= archivers -MASTER_SITES= LOCAL/delphij -DISTNAME= pxz-git-${PORTVERSION:S/0.//} MAINTAINER= ports@FreeBSD.org COMMENT= Parallel LZMA compressor using liblzma @@ -13,11 +10,14 @@ COMMENT= Parallel LZMA compressor using liblzma LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -WRKSRC= ${WRKDIR}/${PORTNAME} - USES= cpe tar:xz PLIST_FILES= bin/pxz share/man/man1/pxz.1.gz +USE_GITHUB= yes +GH_ACCOUNT= jnovy +GH_PROJECT= pxz +GH_TAGNAME= 136e5c2 + CPE_VENDOR= pxz_project MAKE_ENV+= BINDIR=${PREFIX}/bin \ diff --git a/archivers/pxz/distinfo b/archivers/pxz/distinfo index 16c350e2a1bc..2bede1d5d3c5 100644 --- a/archivers/pxz/distinfo +++ b/archivers/pxz/distinfo @@ -1,2 +1,3 @@ -SHA256 (pxz-git-20141018.tar.xz) = f60882dc25981cfb7ee58bd731f4f38e4c8b033fcfec862446964c37021690ed -SIZE (pxz-git-20141018.tar.xz) = 11324 +TIMESTAMP = 1657059037 +SHA256 (jnovy-pxz-0.20220509-136e5c2_GH0.tar.gz) = f41d1b36b4dddb5da5c1165cee2fb91f50dce76d0f5f861c3a4ce37187fb6c57 +SIZE (jnovy-pxz-0.20220509-136e5c2_GH0.tar.gz) = 12369 diff --git a/archivers/pxz/files/patch-pxz.c b/archivers/pxz/files/patch-pxz.c index 4f09c008714b..8c70d31c3ff3 100644 --- a/archivers/pxz/files/patch-pxz.c +++ b/archivers/pxz/files/patch-pxz.c @@ -1,4 +1,4 @@ ---- pxz.c.orig 2014-10-18 17:06:27 UTC +--- pxz.c.orig 2022-05-09 09:16:27 UTC +++ pxz.c @@ -23,11 +23,17 @@ @@ -29,17 +29,17 @@ #ifndef XZ_BINARY #define XZ_BINARY "xz" #endif -@@ -121,6 +131,13 @@ const struct option long_opts[] = { +@@ -131,6 +141,13 @@ const struct option long_opts[] = { + { "version", no_argument, NULL, 'V' }, { NULL, 0, NULL, 0 } }; - ++ +#ifdef __FreeBSD__ +static size_t __fpending (FILE *fp) +{ + return (fp->_p - fp->_bf._base); +} +#endif -+ - void __attribute__((noreturn)) run_xz( char **argv ) { - execvp(XZ_BINARY, argv); - error(0, errno, "execution of "XZ_BINARY" binary failed"); + + void __attribute__((noreturn)) run_xz( char **argv, char **envp ) { + execve(XZ_BINARY, argv, envp);