pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/archivers



Module Name:    pkgsrc
Committed By:   rillig
Date:           Mon Jan 27 19:12:39 UTC 2025

Modified Files:
        pkgsrc/archivers/bicom: Makefile
        pkgsrc/archivers/fcrackzip: Makefile
        pkgsrc/archivers/gzip: Makefile
        pkgsrc/archivers/hpack: Makefile
        pkgsrc/archivers/lha: Makefile
        pkgsrc/archivers/pixz: Makefile
        pkgsrc/archivers/pxz: Makefile
        pkgsrc/archivers/szip: Makefile
        pkgsrc/archivers/unace: Makefile
        pkgsrc/archivers/unace-bin: Makefile
        pkgsrc/archivers/unarj: Makefile
        pkgsrc/archivers/undms: Makefile
        pkgsrc/archivers/unlzx: Makefile
        pkgsrc/archivers/xbin: Makefile
        pkgsrc/archivers/xmill: Makefile

Log Message:
archivers: fix the ordering of common package variables


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/archivers/bicom/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/archivers/fcrackzip/Makefile
cvs rdiff -u -r1.38 -r1.39 pkgsrc/archivers/gzip/Makefile
cvs rdiff -u -r1.41 -r1.42 pkgsrc/archivers/hpack/Makefile
cvs rdiff -u -r1.44 -r1.45 pkgsrc/archivers/lha/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/archivers/pixz/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/archivers/pxz/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/archivers/szip/Makefile
cvs rdiff -u -r1.26 -r1.27 pkgsrc/archivers/unace/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/archivers/unace-bin/Makefile
cvs rdiff -u -r1.30 -r1.31 pkgsrc/archivers/unarj/Makefile
cvs rdiff -u -r1.24 -r1.25 pkgsrc/archivers/undms/Makefile
cvs rdiff -u -r1.25 -r1.26 pkgsrc/archivers/unlzx/Makefile
cvs rdiff -u -r1.35 -r1.36 pkgsrc/archivers/xbin/Makefile
cvs rdiff -u -r1.30 -r1.31 pkgsrc/archivers/xmill/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/bicom/Makefile
diff -u pkgsrc/archivers/bicom/Makefile:1.33 pkgsrc/archivers/bicom/Makefile:1.34
--- pkgsrc/archivers/bicom/Makefile:1.33        Mon Dec 11 23:52:52 2023
+++ pkgsrc/archivers/bicom/Makefile     Mon Jan 27 19:12:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.33 2023/12/11 23:52:52 zafer Exp $
+# $NetBSD: Makefile,v 1.34 2025/01/27 19:12:37 rillig Exp $
 #
 
 DISTNAME=              bicom101
@@ -14,10 +14,10 @@ COMMENT=            Data compressor in the PPM fam
 LICENSE=               bicom-license
 
 RESTRICTED=            No commercial use without prior arrangement, no permission to distribute granted.
-NO_SRC_ON_FTP=         ${RESTRICTED}
-NO_SRC_ON_CDROM=       ${RESTRICTED}
-NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
+NO_SRC_ON_FTP=         ${RESTRICTED}
 
 WRKSRC=                        ${WRKDIR}
 USE_LANGUAGES=         c++

Index: pkgsrc/archivers/fcrackzip/Makefile
diff -u pkgsrc/archivers/fcrackzip/Makefile:1.9 pkgsrc/archivers/fcrackzip/Makefile:1.10
--- pkgsrc/archivers/fcrackzip/Makefile:1.9     Sun Dec 17 16:27:36 2023
+++ pkgsrc/archivers/fcrackzip/Makefile Mon Jan 27 19:12:37 2025
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.9 2023/12/17 16:27:36 zafer Exp $
+# $NetBSD: Makefile,v 1.10 2025/01/27 19:12:37 rillig Exp $
 
 DISTNAME=      fcrackzip-1.0
 PKGREVISION=   1
-MASTER_SITES=  http://oldhome.schmorp.de/marc/data/
 CATEGORIES=    archivers
+MASTER_SITES=  http://oldhome.schmorp.de/marc/data/
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://software.schmorp.de/pkg/fcrackzip.html

Index: pkgsrc/archivers/gzip/Makefile
diff -u pkgsrc/archivers/gzip/Makefile:1.38 pkgsrc/archivers/gzip/Makefile:1.39
--- pkgsrc/archivers/gzip/Makefile:1.38 Fri Apr  8 06:24:00 2022
+++ pkgsrc/archivers/gzip/Makefile      Mon Jan 27 19:12:38 2025
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.38 2022/04/08 06:24:00 wiz Exp $
+# $NetBSD: Makefile,v 1.39 2025/01/27 19:12:38 rillig Exp $
 
 DISTNAME=      gzip-1.12
 CATEGORIES=    archivers
 #MASTER_SITES= ${MASTER_SITE_GNU:=gzip/}
-#EXTRACT_SUFX= .tar.xz
 MASTER_SITES=  ${MASTER_SITE_LOCAL}
+#EXTRACT_SUFX= .tar.xz
 EXTRACT_SUFX=  .tar
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/archivers/hpack/Makefile
diff -u pkgsrc/archivers/hpack/Makefile:1.41 pkgsrc/archivers/hpack/Makefile:1.42
--- pkgsrc/archivers/hpack/Makefile:1.41        Mon Aug  5 19:21:12 2019
+++ pkgsrc/archivers/hpack/Makefile     Mon Jan 27 19:12:38 2025
@@ -1,15 +1,15 @@
-# $NetBSD: Makefile,v 1.41 2019/08/05 19:21:12 maya Exp $
+# $NetBSD: Makefile,v 1.42 2025/01/27 19:12:38 rillig Exp $
 
 DISTNAME=      hpack79src
 PKGNAME=       hpack-0.79
 PKGREVISION=   2
 CATEGORIES=    archivers
 MASTER_SITES=  ftp://ftp.csc.fi/index/crypt/archive/idea.sec.dsi.unimi.it/code/
+DIST_SUBDIR=   ${PKGNAME_NOREV}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 COMMENT=       Multi-System Archiver with open keys PGP-based security
 
-DIST_SUBDIR=   ${PKGNAME_NOREV}
 WRKSRC=                ${WRKDIR}
 MAKE_FILE=     makefile
 MAKE_FLAGS+=   CFLAGS=${HPACK_CFLAGS:Q} CMDL=${HPACK_LDFLAGS:Q}

Index: pkgsrc/archivers/lha/Makefile
diff -u pkgsrc/archivers/lha/Makefile:1.44 pkgsrc/archivers/lha/Makefile:1.45
--- pkgsrc/archivers/lha/Makefile:1.44  Sat Jan  1 19:02:34 2022
+++ pkgsrc/archivers/lha/Makefile       Mon Jan 27 19:12:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.44 2022/01/01 19:02:34 rhialto Exp $
+# $NetBSD: Makefile,v 1.45 2025/01/27 19:12:38 rillig Exp $
 
 DISTNAME=      lha-1.14i-ac20211125
 PKGNAME=       lha-114.9.20211125
@@ -16,9 +16,9 @@ CONFIGURE_ARGS+=      --disable-multibyte-fil
 
 RESTRICTED=            Other than for-free distribution of the unmodified \
                        source over a network, redistribution terms are complex.
-NO_SRC_ON_CDROM=       ${RESTRICTED}
-NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
 
 USE_TOOLS+=    autoconf automake autoreconf gmake
 GNU_CONFIGURE= yes

Index: pkgsrc/archivers/pixz/Makefile
diff -u pkgsrc/archivers/pixz/Makefile:1.1 pkgsrc/archivers/pixz/Makefile:1.2
--- pkgsrc/archivers/pixz/Makefile:1.1  Tue Apr 13 03:09:01 2021
+++ pkgsrc/archivers/pixz/Makefile      Mon Jan 27 19:12:38 2025
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.1 2021/04/13 03:09:01 ryoon Exp $
+# $NetBSD: Makefile,v 1.2 2025/01/27 19:12:38 rillig Exp $
 #
 
-GITHUB_PROJECT=        pixz
-GITHUB_RELEASE=        v${PKGVERSION_NOREV}
 DISTNAME=      pixz-1.0.7
 CATEGORIES=    archivers
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=vasi/}
+GITHUB_PROJECT=        pixz
+GITHUB_RELEASE=        v${PKGVERSION_NOREV}
 
 MAINTAINER=    ryoon%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/vasi/pixz

Index: pkgsrc/archivers/pxz/Makefile
diff -u pkgsrc/archivers/pxz/Makefile:1.1 pkgsrc/archivers/pxz/Makefile:1.2
--- pkgsrc/archivers/pxz/Makefile:1.1   Fri Apr 16 16:16:05 2021
+++ pkgsrc/archivers/pxz/Makefile       Mon Jan 27 19:12:38 2025
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2021/04/16 16:16:05 ryoon Exp $
+# $NetBSD: Makefile,v 1.2 2025/01/27 19:12:38 rillig Exp $
 
-GITHUB_PROJECT=        pxz
-GITHUB_TAG=    124382a6d0832b13b7c091f72264f8f3f463070a
 DISTNAME=      pxz-4.999.9beta
 CATEGORIES=    archivers
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=jnovy/}
+GITHUB_PROJECT=        pxz
+GITHUB_TAG=    124382a6d0832b13b7c091f72264f8f3f463070a
 
 MAINTAINER=    ryoon%NetBSD.org@localhost
 HOMEPAGE=      https://jnovy.fedorapeople.org/pxz/

Index: pkgsrc/archivers/szip/Makefile
diff -u pkgsrc/archivers/szip/Makefile:1.21 pkgsrc/archivers/szip/Makefile:1.22
--- pkgsrc/archivers/szip/Makefile:1.21 Sun Mar  1 03:01:19 2020
+++ pkgsrc/archivers/szip/Makefile      Mon Jan 27 19:12:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2020/03/01 03:01:19 gutteridge Exp $
+# $NetBSD: Makefile,v 1.22 2025/01/27 19:12:38 rillig Exp $
 
 DISTNAME=      szip-2.1.1
 CATEGORIES=    archivers
@@ -11,10 +11,10 @@ COMMENT=    Extended-Rice lossless compress
 LICENSE=       szip-license
 
 RESTRICTED=            No permission to redistribute
-NO_SRC_ON_FTP=         ${RESTRICTED}
+NO_BIN_ON_CDROM=       ${RESTRICTED}
 NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_SRC_ON_CDROM=       ${RESTRICTED}
-NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_SRC_ON_FTP=         ${RESTRICTED}
 
 # pkgrevisions 0, 1, 2 and 3 all have different distfiles
 DIST_SUBDIR=           ${PKGNAME_NOREV}nb3

Index: pkgsrc/archivers/unace/Makefile
diff -u pkgsrc/archivers/unace/Makefile:1.26 pkgsrc/archivers/unace/Makefile:1.27
--- pkgsrc/archivers/unace/Makefile:1.26        Sat Nov  2 22:54:28 2019
+++ pkgsrc/archivers/unace/Makefile     Mon Jan 27 19:12:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2019/11/02 22:54:28 rillig Exp $
+# $NetBSD: Makefile,v 1.27 2025/01/27 19:12:38 rillig Exp $
 #
 
 DISTNAME=      unace-1.2b
@@ -16,8 +16,8 @@ LICENSE=      unace-source-license
 MAKE_JOBS_SAFE=        no
 
 RESTRICTED=            Only original file distribution.
-NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
 
 USE_TOOLS+=    gmake
 

Index: pkgsrc/archivers/unace-bin/Makefile
diff -u pkgsrc/archivers/unace-bin/Makefile:1.11 pkgsrc/archivers/unace-bin/Makefile:1.12
--- pkgsrc/archivers/unace-bin/Makefile:1.11    Sat Nov  2 22:54:28 2019
+++ pkgsrc/archivers/unace-bin/Makefile Mon Jan 27 19:12:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2019/11/02 22:54:28 rillig Exp $
+# $NetBSD: Makefile,v 1.12 2025/01/27 19:12:38 rillig Exp $
 #
 
 DISTNAME=      linunace25
@@ -13,8 +13,8 @@ COMMENT=      Extract, list and test files in
 LICENSE=       unace-license
 
 RESTRICTED=            Only original file distribution.
-NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
 
 EMUL_PLATFORMS=                linux-i386
 EMUL_MODULES.linux=    base compat

Index: pkgsrc/archivers/unarj/Makefile
diff -u pkgsrc/archivers/unarj/Makefile:1.30 pkgsrc/archivers/unarj/Makefile:1.31
--- pkgsrc/archivers/unarj/Makefile:1.30        Sat Nov  2 22:54:28 2019
+++ pkgsrc/archivers/unarj/Makefile     Mon Jan 27 19:12:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2019/11/02 22:54:28 rillig Exp $
+# $NetBSD: Makefile,v 1.31 2025/01/27 19:12:38 rillig Exp $
 
 DISTNAME=      unarj-2.65
 PKGREVISION=   1
@@ -11,8 +11,8 @@ COMMENT=      Allows files to be extracted fr
 LICENSE=       unarj-license
 
 RESTRICTED=            Do not charge a fee for use, copying, or distribution
-NO_SRC_ON_CDROM=       ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
 
 NO_CONFIGURE=  yes
 

Index: pkgsrc/archivers/undms/Makefile
diff -u pkgsrc/archivers/undms/Makefile:1.24 pkgsrc/archivers/undms/Makefile:1.25
--- pkgsrc/archivers/undms/Makefile:1.24        Sat Jan 23 03:37:31 2016
+++ pkgsrc/archivers/undms/Makefile     Mon Jan 27 19:12:39 2025
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.24 2016/01/23 03:37:31 zafer Exp $
+# $NetBSD: Makefile,v 1.25 2025/01/27 19:12:39 rillig Exp $
 
 DISTNAME=      undms-1.3.c
 PKGNAME=       undms-1.3
 CATEGORIES=    archivers
 MASTER_SITES=  ftp://ftp.fau.de/aminet/misc/unix/
-
 EXTRACT_SUFX=  .Z
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/archivers/unlzx/Makefile
diff -u pkgsrc/archivers/unlzx/Makefile:1.25 pkgsrc/archivers/unlzx/Makefile:1.26
--- pkgsrc/archivers/unlzx/Makefile:1.25        Sat Jan 23 03:35:22 2016
+++ pkgsrc/archivers/unlzx/Makefile     Mon Jan 27 19:12:39 2025
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.25 2016/01/23 03:35:22 zafer Exp $
+# $NetBSD: Makefile,v 1.26 2025/01/27 19:12:39 rillig Exp $
 
 DISTNAME=      unlzx.c
 PKGNAME=       unlzx-1.1
 CATEGORIES=    archivers
 MASTER_SITES=  ftp://ftp.fau.de/aminet/misc/unix/
-
 EXTRACT_SUFX=  .gz
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/archivers/xbin/Makefile
diff -u pkgsrc/archivers/xbin/Makefile:1.35 pkgsrc/archivers/xbin/Makefile:1.36
--- pkgsrc/archivers/xbin/Makefile:1.35 Tue Dec 12 13:58:26 2023
+++ pkgsrc/archivers/xbin/Makefile      Mon Jan 27 19:12:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.35 2023/12/12 13:58:26 zafer Exp $
+# $NetBSD: Makefile,v 1.36 2025/01/27 19:12:39 rillig Exp $
 
 DISTNAME=      ${PRGNAME}unix
 PKGNAME=       ${PRGNAME}-2.3
@@ -11,8 +11,8 @@ MAINTAINER=   pkgsrc-users%NetBSD.org@localhost
 COMMENT=       Convert mailable BinHex format into binary
 
 RESTRICTED=            May not be sold without permission.
-NO_SRC_ON_CDROM=       ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
 
 WRKSRC=                ${WRKDIR}
 

Index: pkgsrc/archivers/xmill/Makefile
diff -u pkgsrc/archivers/xmill/Makefile:1.30 pkgsrc/archivers/xmill/Makefile:1.31
--- pkgsrc/archivers/xmill/Makefile:1.30        Sat Dec 23 00:43:27 2023
+++ pkgsrc/archivers/xmill/Makefile     Mon Jan 27 19:12:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2023/12/23 00:43:27 zafer Exp $
+# $NetBSD: Makefile,v 1.31 2025/01/27 19:12:39 rillig Exp $
 
 DISTNAME=              xmill-0.9.1
 PKGREVISION=           3
@@ -14,10 +14,10 @@ RESTRICTED=         Redistribution not permitte
 # It is not entirely clear that noncommercial redistribution is
 # permitted, but it's too hard to read the license, so it's marked as
 # non-redistributable to err on the side of caution.
-NO_SRC_ON_FTP=         ${RESTRICTED}
-NO_SRC_ON_CDROM=       ${RESTRICTED}
-NO_BIN_ON_FTP=         ${RESTRICTED}
 NO_BIN_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
+NO_SRC_ON_FTP=         ${RESTRICTED}
 
 USE_TOOLS+=            gmake
 MAKE_FILE=             makefile



Home | Main Index | Thread Index | Old Index