aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2026-06-30 21:50:59 +0000
committerRene Ladan <rene@FreeBSD.org>2026-06-30 21:50:59 +0000
commit6e83af8072718cba66ed39cf46c92eb7c00dca85 (patch)
tree12a6253f75fe6802adbf42bb5b8adbae02ad055d
parent718b5e259aa53a5c4efe1412bc316ee2a69dc131 (diff)
archivers/zipmix: Remove expired port
2026-06-30 archivers/zipmix: No longer supported upstream. Replaced by archivers/archmerge
-rw-r--r--MOVED1
-rw-r--r--archivers/Makefile1
-rw-r--r--archivers/zipmix/Makefile24
-rw-r--r--archivers/zipmix/distinfo2
-rw-r--r--archivers/zipmix/files/Makefile5
-rw-r--r--archivers/zipmix/files/patch-zipmix.c34
-rw-r--r--archivers/zipmix/pkg-descr11
7 files changed, 1 insertions, 77 deletions
diff --git a/MOVED b/MOVED
index aac7d670f453..65052404d9a5 100644
--- a/MOVED
+++ b/MOVED
@@ -5468,3 +5468,4 @@ x11/wapanel||2026-06-30|Has expired: https://github.com/Firstbober/wapanel/issue
databases/py-fastparquet||2026-06-30|Has expired: Retired by upstream. See https://github.com/dask/fastparquet/commit/dfe8d4ed0107427674dfa1b18918a167f057a328 for details
devel/py-yamlordereddictloader|devel/py-yamlloader|2026-06-30|Has expired: Deprecated by upstream and no longer actively maintained, please use devel/py-yamlloader instead
editors/notepadnext-devel|editors/notepadnext|2026-06-30|Has expired: editors/notepadnext contains fixes in this port
+archivers/zipmix|archivers/archmerge|2026-06-30|Has expired: No longer supported upstream. Replaced by archivers/archmerge
diff --git a/archivers/Makefile b/archivers/Makefile
index ea6c718ef630..05d6ea0918bc 100644
--- a/archivers/Makefile
+++ b/archivers/Makefile
@@ -299,7 +299,6 @@
SUBDIR += zchunk
SUBDIR += zim-tools
SUBDIR += zip
- SUBDIR += zipmix
SUBDIR += zipper
SUBDIR += zlib-ng
SUBDIR += zoo
diff --git a/archivers/zipmix/Makefile b/archivers/zipmix/Makefile
deleted file mode 100644
index 0034f6aafd5b..000000000000
--- a/archivers/zipmix/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-PORTNAME= zipmix
-DISTVERSION= 20070221
-CATEGORIES= archivers
-MASTER_SITES= http://www.advsys.net/ken/util/ \
- https://BSDforge.com/projects/source/archivers/zipmix/
-DISTNAME= ${PORTNAME}_src
-
-MAINTAINER= portmaster@BSDforge.com
-COMMENT= Produce .ZIP file from two other ones with the best compressed files
-WWW= http://www.advsys.net/ken/utils.htm
-
-DEPRECATED= No longer supported upstream. Replaced by archivers/archmerge
-EXPIRATION_DATE= 2026-06-30
-
-USES= dos2unix ncurses zip
-MAKEFILE= ${FILESDIR}/Makefile
-NO_WRKSUBDIR= yes
-
-PLIST_FILES= bin/${PORTNAME}
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
-
-.include <bsd.port.mk>
diff --git a/archivers/zipmix/distinfo b/archivers/zipmix/distinfo
deleted file mode 100644
index d1bc83419cd0..000000000000
--- a/archivers/zipmix/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (zipmix_src.zip) = 34f049928f691be4ba3decd559654a052877b2cc377ebe78255398b532592b99
-SIZE (zipmix_src.zip) = 4759
diff --git a/archivers/zipmix/files/Makefile b/archivers/zipmix/files/Makefile
deleted file mode 100644
index 8b94719badaf..000000000000
--- a/archivers/zipmix/files/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-PROG= zipmix
-
-MAN=
-
-.include <bsd.prog.mk>
diff --git a/archivers/zipmix/files/patch-zipmix.c b/archivers/zipmix/files/patch-zipmix.c
deleted file mode 100644
index a27591fa426d..000000000000
--- a/archivers/zipmix/files/patch-zipmix.c
+++ /dev/null
@@ -1,34 +0,0 @@
---- zipmix.c.orig 2016-07-26 12:48:42 UTC
-+++ zipmix.c
-@@ -4,6 +4,17 @@ zipmix.exe: zipmix.c; cl zipmix.c /O1 /G
- !if 0
- #endif
-
-+#if (defined(__unix__) || defined(unix)) && !defined(USG)
-+#include <sys/param.h>
-+#endif
-+
-+#if (defined(BSD) && (BSD >= 199306))
-+#include <stdlib.h>
-+
-+#define min(a,b) MIN(a,b)
-+#define max(a,b) MAX(a,b)
-+#endif
-+
- #if defined(_WIN32)
-
- #include <windows.h>
-@@ -167,10 +178,11 @@ void showhelp ()
- }
-
- enum { BOOL_NONE=0,BOOL_OR,BOOL_AND,BOOL_SUB };
--int main (long argc, char **argv)
-+int main (int argc, char **argv)
- {
- unsigned long leng[2];
-- long i, j, k, l, fileng[3], score[4], fmax, ftell43;
-+ int i;
-+ long j, k, l, fileng[3], score[4], fmax, ftell43;
- long filespecified = 0, boolop = BOOL_NONE, quiet = 0, overwriteyesmode = 0;
- short s;
- char ch, *cptr, *cptr2;
diff --git a/archivers/zipmix/pkg-descr b/archivers/zipmix/pkg-descr
deleted file mode 100644
index a62e1d3af09c..000000000000
--- a/archivers/zipmix/pkg-descr
+++ /dev/null
@@ -1,11 +0,0 @@
-Sometimes, when you run 2 different .ZIP programs on the same data
-(PKZIP & KZIP for example), some files get compressed better in one
-program, while other files get compressed better in the other.
-
-ZIPMIX will take the best files from each one and create a new
-output file, which is guaranteed to be equal to or smaller in size
-to both of the input files.
-
-ZIPMIX can also be used to perform boolean operations on ZIP files,
-such as merging 2 ZIP files together, or updating a new file (with
-some tricks).