From idogan23 at users.sourceforge.net Wed Jun 2 10:53:56 2021 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Wed, 02 Jun 2021 08:53:56 +0000 Subject: SF.net SVN: gar:[26755] csw/mgar/pkg/nsd/trunk Message-ID: <1622624036.75795.6616@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26755 http://sourceforge.net/p/gar/code/26755 Author: idogan23 Date: 2021-06-02 08:53:55 +0000 (Wed, 02 Jun 2021) Log Message: ----------- nsd: Bump Version to 4.3.6 & remove not needed patches Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile csw/mgar/pkg/nsd/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/nsd/trunk/files/0001-Fix-AF_LOCAL_nsd_c.patch csw/mgar/pkg/nsd/trunk/files/0002-Fix-AF_LOCAL_remote_c.patch csw/mgar/pkg/nsd/trunk/files/0003-ifaddrs_configure_ac.patch csw/mgar/pkg/nsd/trunk/files/0004-ifaddrs_nsd_c.patch csw/mgar/pkg/nsd/trunk/files/0005-ifaddrs_nsd_c.patch Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/Makefile 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,5 +1,5 @@ NAME = nsd -VERSION = 4.3.5 +VERSION = 4.3.6 GARTYPE = v2 DESCRIPTION = An authoritative only non-recursive name server @@ -30,12 +30,6 @@ DISTFILES += cswusergroup DISTFILES += cswnsd -PATCHFILES += 0001-Fix-AF_LOCAL_nsd_c.patch -PATCHFILES += 0002-Fix-AF_LOCAL_remote_c.patch -PATCHFILES += 0003-ifaddrs_configure_ac.patch -PATCHFILES += 0004-ifaddrs_nsd_c.patch -PATCHFILES += 0005-ifaddrs_nsd_c.patch - SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } $$$$3 ~ /\/var\/run/ { $$$$6 = "sys" } { print }' Modified: csw/mgar/pkg/nsd/trunk/checksums =================================================================== --- csw/mgar/pkg/nsd/trunk/checksums 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/checksums 2021-06-02 08:53:55 UTC (rev 26755) @@ -1 +1 @@ -d760bdbf752e01d9c59426693b26d30f nsd-4.3.5.tar.gz +3f9d72d68b1df9e0648ae37715393b83 nsd-4.3.6.tar.gz Deleted: csw/mgar/pkg/nsd/trunk/files/0001-Fix-AF_LOCAL_nsd_c.patch =================================================================== --- csw/mgar/pkg/nsd/trunk/files/0001-Fix-AF_LOCAL_nsd_c.patch 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/files/0001-Fix-AF_LOCAL_nsd_c.patch 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,27 +0,0 @@ -From 0f8e9d9326f653be69dfaaae12a0571bf9f83e66 Mon Sep 17 00:00:00 2001 -From: Ihsan Dogan -Date: Mon, 8 Feb 2021 15:51:41 +0100 -Subject: [PATCH] Fix AF_LOCAL compile error for Solaris - https://github.com/NLnetLabs/nsd/commit/58dddc3f99964d1d0b0bd6ee77b92b629dbad5fc - ---- - nsd-control.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/nsd-control.c b/nsd-control.c -index 5a5f476..cb77dd0 100644 ---- a/nsd-control.c -+++ b/nsd-control.c -@@ -60,6 +60,9 @@ - #include - #endif - #include -+#ifndef AF_LOCAL -+#define AF_LOCAL AF_UNIX -+#endif - #include "util.h" - #include "tsig.h" - #include "options.h" --- -2.4.0 - Deleted: csw/mgar/pkg/nsd/trunk/files/0002-Fix-AF_LOCAL_remote_c.patch =================================================================== --- csw/mgar/pkg/nsd/trunk/files/0002-Fix-AF_LOCAL_remote_c.patch 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/files/0002-Fix-AF_LOCAL_remote_c.patch 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,27 +0,0 @@ -From b4e499f649ffc7359a0b617b35ed43212e8acbe0 Mon Sep 17 00:00:00 2001 -From: Ihsan Dogan -Date: Mon, 8 Feb 2021 15:57:04 +0100 -Subject: [PATCH] Fix AF_LOCAL compile error for Solaris - https://github.com/NLnetLabs/nsd/commit/58dddc3f99964d1d0b0bd6ee77b92b629dbad5fc - ---- - remote.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/remote.c b/remote.c -index 8774424..139ad4d 100644 ---- a/remote.c -+++ b/remote.c -@@ -91,6 +91,9 @@ - #ifdef HAVE_SYS_UN_H - # include - #endif -+#ifndef AF_LOCAL -+#define AF_LOCAL AF_UNIX -+#endif - - /** number of seconds timeout on incoming remote control handshake */ - #define REMOTE_CONTROL_TCP_TIMEOUT 120 --- -2.4.0 - Deleted: csw/mgar/pkg/nsd/trunk/files/0003-ifaddrs_configure_ac.patch =================================================================== --- csw/mgar/pkg/nsd/trunk/files/0003-ifaddrs_configure_ac.patch 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/files/0003-ifaddrs_configure_ac.patch 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,25 +0,0 @@ -From 462fc10c4b55b8275096742f907bc0fe1d3f8a49 Mon Sep 17 00:00:00 2001 -From: Ihsan Dogan -Date: Mon, 8 Feb 2021 19:59:06 +0100 -Subject: [PATCH] Fix ifaddrs.h compile error for Solaris - ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 123e7f3..5f96bea 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -449,7 +449,7 @@ fi - - # Checks for header files. - AC_HEADER_SYS_WAIT --AC_CHECK_HEADERS([time.h arpa/inet.h signal.h string.h strings.h fcntl.h limits.h netinet/in.h netinet/tcp.h stddef.h sys/param.h sys/socket.h sys/un.h syslog.h unistd.h sys/select.h stdarg.h stdint.h netdb.h sys/bitypes.h tcpd.h glob.h grp.h endian.h sys/random.h]) -+AC_CHECK_HEADERS([time.h arpa/inet.h signal.h string.h strings.h fcntl.h limits.h netinet/in.h netinet/tcp.h stddef.h sys/param.h sys/socket.h sys/un.h syslog.h unistd.h sys/select.h stdarg.h stdint.h netdb.h sys/bitypes.h tcpd.h glob.h grp.h endian.h sys/random.h ifaddrs.h]) - - AC_DEFUN([CHECK_VALIST_DEF], - [ --- -2.4.0 - Deleted: csw/mgar/pkg/nsd/trunk/files/0004-ifaddrs_nsd_c.patch =================================================================== --- csw/mgar/pkg/nsd/trunk/files/0004-ifaddrs_nsd_c.patch 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/files/0004-ifaddrs_nsd_c.patch 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,26 +0,0 @@ -From dc09e2e3a13295bf1f0a84dee33e67992f89440b Mon Sep 17 00:00:00 2001 -From: Ihsan Dogan -Date: Mon, 8 Feb 2021 20:03:01 +0100 -Subject: [PATCH] Fix ifaddrs.h compile error for Solaris - ---- - nsd.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/nsd.c b/nsd.c -index e895146..9ed3fbd 100644 ---- a/nsd.c -+++ b/nsd.c -@@ -41,7 +41,9 @@ - #include - #include - #include -+#ifdef HAVE_IFADDRS_H - #include -+#endif - - #include "nsd.h" - #include "options.h" --- -2.4.0 - Deleted: csw/mgar/pkg/nsd/trunk/files/0005-ifaddrs_nsd_c.patch =================================================================== --- csw/mgar/pkg/nsd/trunk/files/0005-ifaddrs_nsd_c.patch 2021-05-26 08:44:31 UTC (rev 26754) +++ csw/mgar/pkg/nsd/trunk/files/0005-ifaddrs_nsd_c.patch 2021-06-02 08:53:55 UTC (rev 26755) @@ -1,79 +0,0 @@ -From 140dfd990fa681777fc05596b9b4bee88ea0ed26 Mon Sep 17 00:00:00 2001 -From: Ihsan Dogan -Date: Tue, 9 Feb 2021 10:27:28 +0100 -Subject: [PATCH] Fix ifaddrs compile error - ---- - nsd.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/nsd.c b/nsd.c -index 9ed3fbd..cb4b037 100644 ---- a/nsd.c -+++ b/nsd.c -@@ -467,6 +467,7 @@ figure_default_sockets( - figure_socket_servers(&(*tcp)[i], NULL); - } - -+#ifdef HAVE_GETIFADDRS - static int - find_device( - struct nsd_socket *sock, -@@ -515,6 +516,7 @@ find_device( - - return 0; - } -+#endif /* HAVE_GETIFADDRS */ - - static void - figure_sockets( -@@ -526,7 +528,9 @@ figure_sockets( - size_t i = 0; - struct addrinfo ai = *hints; - struct ip_address_option *ip; -+#ifdef HAVE_GETIFADDRS - struct ifaddrs *ifa = NULL; -+#endif - int bind_device = 0; - - if(!ips) { -@@ -541,9 +545,11 @@ figure_sockets( - bind_device |= (ip->dev != 0); - } - -+#ifdef HAVE_GETIFADDRS - if(bind_device && getifaddrs(&ifa) == -1) { - error("getifaddrs failed: %s", strerror(errno)); - } -+#endif - - *udp = xalloc_zero((*ifs + 1) * sizeof(struct nsd_socket)); - *tcp = xalloc_zero((*ifs + 1) * sizeof(struct nsd_socket)); -@@ -562,6 +568,7 @@ figure_sockets( - (*udp)[i].fib = ip->fib; - (*tcp)[i].fib = ip->fib; - } -+#ifdef HAVE_GETIFADDRS - if(ip->dev != 0) { - (*udp)[i].flags |= NSD_BIND_DEVICE; - (*tcp)[i].flags |= NSD_BIND_DEVICE; -@@ -572,13 +579,16 @@ figure_sockets( - ip->address); - } - } -+#endif - } - - assert(i == *ifs); - -+#ifdef HAVE_GETIFADDRS - if(ifa != NULL) { - freeifaddrs(ifa); - } -+#endif - } - - /* print server affinity for given socket. "*" if socket has no affinity with --- -2.4.0 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Wed Jun 2 14:01:09 2021 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Wed, 02 Jun 2021 12:01:09 +0000 Subject: SF.net SVN: gar:[26756] csw/mgar/pkg/unbound/trunk/Makefile Message-ID: <1622635269.149312.31032@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26756 http://sourceforge.net/p/gar/code/26756 Author: idogan23 Date: 2021-06-02 12:01:08 +0000 (Wed, 02 Jun 2021) Log Message: ----------- Unbound: Removed unneeded thins. Replaced libunbound2 by libundbound8 Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2021-06-02 08:53:55 UTC (rev 26755) +++ csw/mgar/pkg/unbound/trunk/Makefile 2021-06-02 12:01:08 UTC (rev 26756) @@ -15,7 +15,7 @@ DISTFILES += cswusergroup PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 -PACKAGES = CSWunbound CSWlibunbound2 CSWunbound-devel CSWunbound-host +PACKAGES = CSWunbound CSWlibunbound8 CSWunbound-devel CSWunbound-host # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz @@ -43,34 +43,6 @@ LICENSE = LICENSE -# 64-Bit build disabled -#EXTRA_BUILD_ISAS_i386 = amd64 -#EXTRA_BUILD_ISAS_sparc = sparcv9 - -#MERGE_DIRS_isa-sparcv9 = $(libdir) -#MERGE_DIRS_isa-sparcv9 += $(sbindir) -#MERGE_DIRS_isa-amd64 = $(libdir) -#MERGE_DIRS_isa-amd64 += $(sbindir) - -#ISAXEC_DIRS = $(sbindir) -#EXTRA_ISAEXEC_EXCLUDE_FILES = $(sbindir)/unbound-anchor -#EXTRA_ISAEXEC_EXCLUDE_FILES += $(sbindir)/unbound-checkconf -#EXTRA_ISAEXEC_EXCLUDE_FILES += $(sbindir)/unbound-control -#EXTRA_ISAEXEC_EXCLUDE_FILES += $(sbindir)/unbound-control-setup -#EXTRA_ISAEXEC_EXCLUDE_FILES += $(sbindir)/unbound-host - -#EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 = $(prefix)/sbin/unbound-anchor -#EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 += $(prefix)/sbin/unbound-checkconf -#EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 += $(prefix)/sbin/unbound-control -#EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 += $(prefix)/sbin/unbound-control-setup -#EXTRA_MERGE_EXCLUDE_FILES_isa-amd64 += $(prefix)/sbin/unbound-host - -#EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 = $(prefix)/sbin/unbound-anchor -#EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 += $(prefix)/sbin/unbound-checkconf -#EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 += $(prefix)/sbin/unbound-control -#EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 += $(prefix)/sbin/unbound-control-setup -#EXTRA_MERGE_EXCLUDE_FILES_isa-sparcv9 += $(prefix)/sbin/unbound-host - SPKG_CLASSES_CSWunbound = none cswusergroup cswcpsampleconf cswinitsmf INITSMF = /etc/opt/csw/init.d/cswunbound USERGROUP = /etc/opt/csw/CSWunbound/cswusergroup @@ -79,23 +51,23 @@ CATALOGNAME_CSWunbound = unbound SPKG_DESC_CSWunbound = $(DESCRIPTION) -RUNTIME_DEP_PKGS_CSWunbound += CSWlibunbound2 +RUNTIME_DEP_PKGS_CSWunbound += CSWlibunbound8 RUNTIME_DEP_PKGS_CSWunbound += CSWlibexpat1 -#RUNTIME_DEP_PKGS_CSWunbound += CSWlibldns1 RUNTIME_DEP_PKGS_CSWunbound += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWunbound += CSWlibevent2-0-5 -CATALOGNAME_CSWlibunbound2 = libunbound2 -SPKG_DESC_CSWlibunbound2 = Library implementing DNS resolution and validation -PKGFILES_CSWlibunbound2 += $(PKGFILES_RT) -#RUNTIME_DEP_PKGS_CSWlibunbound2 += CSWlibldns1 -RUNTIME_DEP_PKGS_CSWlibunbound2 += CSWlibssl1-0-0 -RUNTIME_DEP_PKGS_CSWlibunbound2 += CSWlibevent2-0-5 +PACKAGES += CSWlibunbound8 +CATALOGNAME_CSWlibunbound8 = libunbound8 +PKGFILES_CSWlibunbound8 += $(call baseisadirs,$(libdir),libunbound\.so\.8\.1\.12) +PKGFILES_CSWlibunbound8 += $(call baseisadirs,$(libdir),libunbound\.so\.8(\.\d+)*) +SPKG_DESC_CSWlibunbound8 += $(DESCRIPTION), libunbound.so.8 +RUNTIME_DEP_PKGS_CSWlibunbound8 += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWlibunbound8 += CSWlibevent2-0-5 CATALOGNAME_CSWunbound-devel = unbound_devel SPKG_DESC_CSWunbound-devel = $(DESCRIPTION) development package PKGFILES_CSWunbound-devel += $(PKGFILES_DEVEL) -RUNTIME_DEP_PKGS_CSWunbound-devel += CSWlibunbound2 +RUNTIME_DEP_PKGS_CSWunbound-devel += CSWlibunbound8 CATALOGNAME_CSWunbound-host = unbound_host SPKG_DESC_CSWunbound-host = Unbound DNS lookup utility @@ -102,7 +74,7 @@ PKGFILES_CSWunbound-host += $(sbindir)/unbound-host PKGFILES_CSWunbound-host += $(mandir)/man1/unbound-host.1 #RUNTIME_DEP_PKGS_CSWunbound-host += CSWlibldns1 -RUNTIME_DEP_PKGS_CSWunbound-host += CSWlibunbound2 +RUNTIME_DEP_PKGS_CSWunbound-host += CSWlibunbound8 RUNTIME_DEP_PKGS_CSWunbound-host += CSWlibssl1-0-0 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jun 10 15:01:30 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 10 Jun 2021 13:01:30 +0000 Subject: SF.net SVN: gar:[26757] csw/mgar/pkg/apache24/trunk Message-ID: <1623330090.194455.16861@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26757 http://sourceforge.net/p/gar/code/26757 Author: dmichelsen Date: 2021-06-10 13:01:29 +0000 (Thu, 10 Jun 2021) Log Message: ----------- apache24/trunk: Update to 2.4.48 Modified Paths: -------------- csw/mgar/pkg/apache24/trunk/Makefile csw/mgar/pkg/apache24/trunk/checksums Modified: csw/mgar/pkg/apache24/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache24/trunk/Makefile 2021-06-02 12:01:08 UTC (rev 26756) +++ csw/mgar/pkg/apache24/trunk/Makefile 2021-06-10 13:01:29 UTC (rev 26757) @@ -1,7 +1,7 @@ # $Id: Makefile 18185 2012-06-01 02:30:46Z bdwalton $ NAME = httpd -VERSION = 2.4.46 +VERSION = 2.4.48 GARTYPE = v2 PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc Modified: csw/mgar/pkg/apache24/trunk/checksums =================================================================== --- csw/mgar/pkg/apache24/trunk/checksums 2021-06-02 12:01:08 UTC (rev 26756) +++ csw/mgar/pkg/apache24/trunk/checksums 2021-06-10 13:01:29 UTC (rev 26757) @@ -1 +1 @@ -3082ea090be8dd4edeeeceb36e1aa548 httpd-2.4.46.tar.gz +033453c49c4b081e34acc3e1a4c23648 httpd-2.4.48.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jun 11 11:58:39 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 11 Jun 2021 09:58:39 +0000 Subject: SF.net SVN: gar:[26758] csw/mgar/pkg/poke/trunk Message-ID: <1623405519.519975.24296@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26758 http://sourceforge.net/p/gar/code/26758 Author: dmichelsen Date: 2021-06-11 09:58:39 +0000 (Fri, 11 Jun 2021) Log Message: ----------- poke/trunk: Update to 1.3 Modified Paths: -------------- csw/mgar/pkg/poke/trunk/Makefile csw/mgar/pkg/poke/trunk/checksums Modified: csw/mgar/pkg/poke/trunk/Makefile =================================================================== --- csw/mgar/pkg/poke/trunk/Makefile 2021-06-10 13:01:29 UTC (rev 26757) +++ csw/mgar/pkg/poke/trunk/Makefile 2021-06-11 09:58:39 UTC (rev 26758) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = poke -VERSION = 0.91 +VERSION = 1.3 GARTYPE = v2 DESCRIPTION = Interactive, extensible editor for binary data @@ -34,6 +34,8 @@ RUNTIME_DEP_PKGS_CSWpoke += CSWlibtk8-5 RUNTIME_DEP_PKGS_CSWpoke += CSWlibreadline7 RUNTIME_DEP_PKGS_CSWpoke += CSWlibintl9 +# The .el-files just make editing easier, make it optional +CHECKPKG_OVERRIDES_CSWpoke += missing-dependency|CSWemacs-common GARCOMPILER = GNU Modified: csw/mgar/pkg/poke/trunk/checksums =================================================================== --- csw/mgar/pkg/poke/trunk/checksums 2021-06-10 13:01:29 UTC (rev 26757) +++ csw/mgar/pkg/poke/trunk/checksums 2021-06-11 09:58:39 UTC (rev 26758) @@ -1 +1 @@ -dbae7f0ed253706cf19445d4c6dc5d63 poke-0.91.tar.gz +9cdc2fee956ccde3ccaf920df3f67e80 poke-1.3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jun 12 09:44:42 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 12 Jun 2021 07:44:42 +0000 Subject: SF.net SVN: gar:[26759] csw/mgar/pkg/sudo/trunk Message-ID: <1623483882.922678.21106@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26759 http://sourceforge.net/p/gar/code/26759 Author: dmichelsen Date: 2021-06-12 07:44:42 +0000 (Sat, 12 Jun 2021) Log Message: ----------- sudo/trunk: Update to 1.9.7p1 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile csw/mgar/pkg/sudo/trunk/checksums Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2021-06-11 09:58:39 UTC (rev 26758) +++ csw/mgar/pkg/sudo/trunk/Makefile 2021-06-12 07:44:42 UTC (rev 26759) @@ -2,7 +2,7 @@ # NAME = sudo -VERSION = 1.9.7 +VERSION = 1.9.7p1 GARTYPE = v2 EXTRA_MODULATORS = LDAP Modified: csw/mgar/pkg/sudo/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo/trunk/checksums 2021-06-11 09:58:39 UTC (rev 26758) +++ csw/mgar/pkg/sudo/trunk/checksums 2021-06-12 07:44:42 UTC (rev 26759) @@ -1 +1 @@ -1ed8b73ba56c9b05ed22681b7b92d1b2 sudo-1.9.7.tar.gz +0ea3649ef66df80e6ecd04d45ea0f762 sudo-1.9.7p1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jun 13 10:42:00 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 13 Jun 2021 08:42:00 +0000 Subject: SF.net SVN: gar:[26760] csw/mgar/pkg/mutt/trunk Message-ID: <1623573720.414553.16863@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26760 http://sourceforge.net/p/gar/code/26760 Author: dmichelsen Date: 2021-06-13 08:42:00 +0000 (Sun, 13 Jun 2021) Log Message: ----------- mutt/trunk: Update to 2.1.0 Modified Paths: -------------- csw/mgar/pkg/mutt/trunk/Makefile csw/mgar/pkg/mutt/trunk/checksums Modified: csw/mgar/pkg/mutt/trunk/Makefile =================================================================== --- csw/mgar/pkg/mutt/trunk/Makefile 2021-06-12 07:44:42 UTC (rev 26759) +++ csw/mgar/pkg/mutt/trunk/Makefile 2021-06-13 08:42:00 UTC (rev 26760) @@ -1,5 +1,5 @@ NAME = mutt -VERSION = 2.0.2 +VERSION = 2.1.0 GARTYPE = v2 EXTRA_MODULATORS = SLANG Modified: csw/mgar/pkg/mutt/trunk/checksums =================================================================== --- csw/mgar/pkg/mutt/trunk/checksums 2021-06-12 07:44:42 UTC (rev 26759) +++ csw/mgar/pkg/mutt/trunk/checksums 2021-06-13 08:42:00 UTC (rev 26760) @@ -1 +1 @@ -13c8fb699188c7e7639f7382bddf5685 mutt-2.0.2.tar.gz +0a20621354430225359963ba27b324d2 mutt-2.1.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jun 13 20:40:48 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 13 Jun 2021 18:40:48 +0000 Subject: SF.net SVN: gar:[26761] csw/mgar/pkg/libffcall/trunk Message-ID: <1623609648.557744.25970@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26761 http://sourceforge.net/p/gar/code/26761 Author: dmichelsen Date: 2021-06-13 18:40:48 +0000 (Sun, 13 Jun 2021) Log Message: ----------- libffcall/trunk: Update to 2.4 Modified Paths: -------------- csw/mgar/pkg/libffcall/trunk/Makefile csw/mgar/pkg/libffcall/trunk/checksums Modified: csw/mgar/pkg/libffcall/trunk/Makefile =================================================================== --- csw/mgar/pkg/libffcall/trunk/Makefile 2021-06-13 08:42:00 UTC (rev 26760) +++ csw/mgar/pkg/libffcall/trunk/Makefile 2021-06-13 18:40:48 UTC (rev 26761) @@ -1,6 +1,6 @@ # $Id$ NAME = libffcall -VERSION = 2.1 +VERSION = 2.4 GARTYPE = v2 DESCRIPTION = Foreign function call libraries Modified: csw/mgar/pkg/libffcall/trunk/checksums =================================================================== --- csw/mgar/pkg/libffcall/trunk/checksums 2021-06-13 08:42:00 UTC (rev 26760) +++ csw/mgar/pkg/libffcall/trunk/checksums 2021-06-13 18:40:48 UTC (rev 26761) @@ -1 +1 @@ -0bc45ab055d40ba617f47e117084499f libffcall-2.1.tar.gz +e7ef6e7cab40f6e224a89cc8dec6fc15 libffcall-2.4.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jun 21 09:24:54 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 21 Jun 2021 07:24:54 +0000 Subject: SF.net SVN: gar:[26762] csw/mgar/pkg/mtools/trunk Message-ID: <1624260294.814085.3201@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26762 http://sourceforge.net/p/gar/code/26762 Author: dmichelsen Date: 2021-06-21 07:24:54 +0000 (Mon, 21 Jun 2021) Log Message: ----------- mtools/trunk: Update to 4.0.31 Modified Paths: -------------- csw/mgar/pkg/mtools/trunk/Makefile csw/mgar/pkg/mtools/trunk/checksums Modified: csw/mgar/pkg/mtools/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtools/trunk/Makefile 2021-06-13 18:40:48 UTC (rev 26761) +++ csw/mgar/pkg/mtools/trunk/Makefile 2021-06-21 07:24:54 UTC (rev 26762) @@ -1,5 +1,5 @@ NAME = mtools -VERSION = 4.0.27 +VERSION = 4.0.31 GARTYPE = v2 DESCRIPTION = Read/write/list/format DOS disks under Unix Modified: csw/mgar/pkg/mtools/trunk/checksums =================================================================== --- csw/mgar/pkg/mtools/trunk/checksums 2021-06-13 18:40:48 UTC (rev 26761) +++ csw/mgar/pkg/mtools/trunk/checksums 2021-06-21 07:24:54 UTC (rev 26762) @@ -1 +1 @@ -1a0f30ce62a61b8bcc53228e0370ee9e mtools-4.0.27.tar.lz +efcddced6ac2f5663639c2721a0bf505 mtools-4.0.31.tar.lz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jun 21 09:46:14 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 21 Jun 2021 07:46:14 +0000 Subject: SF.net SVN: gar:[26763] csw/mgar/pkg/stunnel/trunk Message-ID: <1624261574.502695.27255@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26763 http://sourceforge.net/p/gar/code/26763 Author: dmichelsen Date: 2021-06-21 07:46:14 +0000 (Mon, 21 Jun 2021) Log Message: ----------- stunnel/trunk: Update to 5.59 and fix realpath issue Modified Paths: -------------- csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums Modified: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile 2021-06-21 07:24:54 UTC (rev 26762) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2021-06-21 07:46:14 UTC (rev 26763) @@ -1,7 +1,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = stunnel -VERSION = 5.50 +VERSION = 5.59 #BETA = b3 GARTYPE = v2 @@ -42,10 +42,17 @@ # This is the SMF DTD CHECKPKG_OVERRIDES_CSWstunnel += file-with-bad-content|/usr/share|root/var/opt/csw/svc/manifest/cswstunnel.xml +# We need ggrep as grep for 'grep -q' +CONFIGURE_ENV_PATH = /opt/csw/gnu:$(PATH) + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --with-ssl=$(prefix) CONFIGURE_ARGS += --enable-ipv6 +# Disable realpath as reported in +# http://lists.opencsw.org/pipermail/users/2021-June/010487.html +CONFIGURE_ARGS += ac_cv_func_realpath=no + REINPLACEMENTS += capath REINPLACE_MATCH_capath = /etc/ssl/certs REINPLACE_WITH_capath = $(sysconfdir)/ssl/certs Modified: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums 2021-06-21 07:24:54 UTC (rev 26762) +++ csw/mgar/pkg/stunnel/trunk/checksums 2021-06-21 07:46:14 UTC (rev 26763) @@ -1 +1 @@ -5b9310d25214ef48030de162ecbd2be1 stunnel-5.50.tar.gz +947c1e114a217f2cf2adaabc5573788c stunnel-5.59.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jun 22 10:46:21 2021 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 22 Jun 2021 08:46:21 +0000 Subject: SF.net SVN: gar:[26764] csw/mgar/pkg/sudo/trunk/Makefile Message-ID: <1624351581.513899.9422@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26764 http://sourceforge.net/p/gar/code/26764 Author: dmichelsen Date: 2021-06-22 08:46:21 +0000 (Tue, 22 Jun 2021) Log Message: ----------- sudo/trunk: Fix Solaris 9 issue Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2021-06-21 07:46:14 UTC (rev 26763) +++ csw/mgar/pkg/sudo/trunk/Makefile 2021-06-22 08:46:21 UTC (rev 26764) @@ -40,7 +40,6 @@ RUNTIME_DEP_PKGS_CSWsudo-5.9 += CSWlibintl8 RUNTIME_DEP_PKGS_CSWsudo-5.10 += CSWlibintl9 RUNTIME_DEP_PKGS_CSWsudo += CSWlibz1 -RUNTIME_DEP_PKGS_CSWsudo += CSWlibssp0 RUNTIME_DEP_PKGS_CSWsudo += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWsudo += $(RUNTIME_DEP_PKGS_CSWsudo-$(GAROSREL)) #OBSOLETED_BY_CSWsudo = CSWsudo-common @@ -68,7 +67,6 @@ RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWliblber2-4-2 RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWlibldap2-4-2 RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWlibz1 -RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWlibssp0 RUNTIME_DEP_PKGS_CSWsudo-ldap += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWsudo-ldap += $(RUNTIME_DEP_PKGS_CSWsudo-ldap-$(GAROSREL)) # This logical dependency can not be tracked via checkpkg @@ -102,8 +100,11 @@ EXTRA_INC += $(includedir)/sasl -GARCOMPILER = GNU +EXTRA_CPPFLAGS-5.9 += -DINADDR_NONE=0xffffffffU +EXTRA_CPPFLAGS += $(EXTRA_CPPFLAGS-$(GAROSREL)) +GARCOMPILR = GNU + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-pam CONFIGURE_ARGS += --with-logging=both This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Wed Jun 23 04:49:09 2021 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Wed, 23 Jun 2021 02:49:09 +0000 Subject: SF.net SVN: gar:[26765] csw/mgar/pkg/dovecot/trunk Message-ID: <1624416549.261164.13687@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26765 http://sourceforge.net/p/gar/code/26765 Author: jake_goerzen Date: 2021-06-23 02:49:08 +0000 (Wed, 23 Jun 2021) Log Message: ----------- dovecot: update to 2.3.14.1; fixes CVE-2021-29157 and CVE-2021-33515 Modified Paths: -------------- csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums Modified: csw/mgar/pkg/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile 2021-06-22 08:46:21 UTC (rev 26764) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2021-06-23 02:49:08 UTC (rev 26765) @@ -2,7 +2,7 @@ # - SSL certs to /etc/opt/csw/ssl? # - /var/run/dovecot instead of /var/opt/csw/run? NAME = dovecot -VERSION = 2.3.14 +VERSION = 2.3.14.1 GARTYPE = v2 DESCRIPTION = Secure IMAP server Modified: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums 2021-06-22 08:46:21 UTC (rev 26764) +++ csw/mgar/pkg/dovecot/trunk/checksums 2021-06-23 02:49:08 UTC (rev 26765) @@ -1 +1 @@ -2f03532cec3280ae45a101a7a55ccef5 dovecot-2.3.14.tar.gz +be61f6d201d09a8cbd30e82b9add5893 dovecot-2.3.14.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Wed Jun 23 20:01:06 2021 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Wed, 23 Jun 2021 18:01:06 +0000 Subject: SF.net SVN: gar:[26766] csw/mgar/pkg/rdesktop/trunk Message-ID: <1624471266.862202.17952@sfp-scm-4.v30.lw.sourceforge.com> Revision: 26766 http://sourceforge.net/p/gar/code/26766 Author: jake_goerzen Date: 2021-06-23 18:01:06 +0000 (Wed, 23 Jun 2021) Log Message: ----------- rdesktop: update to 1.8.6; switch compiler to GNU; recipe cleanups Modified Paths: -------------- csw/mgar/pkg/rdesktop/trunk/Makefile csw/mgar/pkg/rdesktop/trunk/checksums Modified: csw/mgar/pkg/rdesktop/trunk/Makefile =================================================================== --- csw/mgar/pkg/rdesktop/trunk/Makefile 2021-06-23 02:49:08 UTC (rev 26765) +++ csw/mgar/pkg/rdesktop/trunk/Makefile 2021-06-23 18:01:06 UTC (rev 26766) @@ -1,5 +1,5 @@ NAME = rdesktop -VERSION = 1.8.3 +VERSION = 1.8.6 GARTYPE = v2 DESCRIPTION = RDP client for Windows NT/2000/2003/XP Terminal Server @@ -10,13 +10,11 @@ Windows XP, Windows Vista and Windows NT Server 4.0. endef -MASTER_SITES = $(SF_MIRROR) +MASTER_SITES += https://github.com/rdesktop/rdesktop/releases/download/v1.8.6/ DISTFILES = $(NAME)-$(VERSION).tar.gz VENDOR_URL = http://www.rdesktop.org -PATCHFILES = 0001-remove-return-from-void-function.patch - BUILD_DEP_PKGS += CSWlibao-dev BUILD_DEP_PKGS += CSWlibsamplerate-dev BUILD_DEP_PKGS += CSWlibssl-dev @@ -33,11 +31,12 @@ # If these are not added directly here auth against win7 won't work, haven't figured out why yet RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibkrb5-3 RUNTIME_DEP_PKGS_CSWrdesktop += CSWlibkrb5support0 -CHECKPKG_OVERRIDES_CSWrdesktop += soname-unused BUILD64 = 1 ISAEXEC = 1 +GARCOMPILER = GNU + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-openssl=$(prefix) @@ -50,7 +49,4 @@ # No test/check target provided by rdesktop TEST_SCRIPTS = -# The path is just an example and nobody will probably look into it -CHECKPKG_OVERRIDES_CSWrdesktop += file-with-bad-content|/usr/local|root/opt/csw/share/rdesktop/keymaps/is - include gar/category.mk Modified: csw/mgar/pkg/rdesktop/trunk/checksums =================================================================== --- csw/mgar/pkg/rdesktop/trunk/checksums 2021-06-23 02:49:08 UTC (rev 26765) +++ csw/mgar/pkg/rdesktop/trunk/checksums 2021-06-23 18:01:06 UTC (rev 26766) @@ -1 +1 @@ -86e8b368a7c715e74ded92e0d7912dc5 rdesktop-1.8.3.tar.gz +1397765ccfd7bf099490f481de932cce rdesktop-1.8.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Thu Jun 24 01:25:41 2021 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Wed, 23 Jun 2021 23:25:41 +0000 Subject: SF.net SVN: gar:[26767] csw/mgar/pkg/rdesktop/trunk Message-ID: <1624490742.21883.6261@sfp-scm-1.v30.lw.sourceforge.com> Revision: 26767 http://sourceforge.net/p/gar/code/26767 Author: jake_goerzen Date: 2021-06-23 23:25:41 +0000 (Wed, 23 Jun 2021) Log Message: ----------- rdesktop: undo change compiler to GNU; update and restore patch Modified Paths: -------------- csw/mgar/pkg/rdesktop/trunk/Makefile csw/mgar/pkg/rdesktop/trunk/files/0001-remove-return-from-void-function.patch Modified: csw/mgar/pkg/rdesktop/trunk/Makefile =================================================================== --- csw/mgar/pkg/rdesktop/trunk/Makefile 2021-06-23 18:01:06 UTC (rev 26766) +++ csw/mgar/pkg/rdesktop/trunk/Makefile 2021-06-23 23:25:41 UTC (rev 26767) @@ -15,6 +15,8 @@ VENDOR_URL = http://www.rdesktop.org +PATCHFILES = 0001-remove-return-from-void-function.patch + BUILD_DEP_PKGS += CSWlibao-dev BUILD_DEP_PKGS += CSWlibsamplerate-dev BUILD_DEP_PKGS += CSWlibssl-dev @@ -35,7 +37,7 @@ BUILD64 = 1 ISAEXEC = 1 -GARCOMPILER = GNU +#GARCOMPILER = SOS12U6 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-openssl=$(prefix) Modified: csw/mgar/pkg/rdesktop/trunk/files/0001-remove-return-from-void-function.patch =================================================================== --- csw/mgar/pkg/rdesktop/trunk/files/0001-remove-return-from-void-function.patch 2021-06-23 18:01:06 UTC (rev 26766) +++ csw/mgar/pkg/rdesktop/trunk/files/0001-remove-return-from-void-function.patch 2021-06-23 23:25:41 UTC (rev 26767) @@ -1,6 +1,6 @@ -From fcf3cdea71db6bf639e5fd57c641e701973783ec Mon Sep 17 00:00:00 2001 +From ce09e02e3d5e155f45a6cb8bdb939d4411784444 Mon Sep 17 00:00:00 2001 From: Jake Goerzen -Date: Wed, 1 Mar 2017 18:53:46 +0100 +Date: Thu, 24 Jun 2021 01:09:53 +0200 Subject: [PATCH] remove return from void function --- @@ -8,13 +8,13 @@ 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdp.c b/rdp.c -index 44d8bdb..6be46c1 100644 +index e7a849b..ce577bc 100644 --- a/rdp.c +++ b/rdp.c -@@ -285,7 +285,7 @@ rdp_in_unistr(STREAM s, int in_len, char **string, uint32 * str_size) - WINDOWS_CODEPAGE, g_codepage, iconv_h); +@@ -305,7 +305,7 @@ rdp_in_unistr(STREAM s, int in_len, char **string, uint32 * str_size) g_iconv_works = False; + s_seek(s, start); - return rdp_in_unistr(s, in_len, string, str_size); + rdp_in_unistr(s, in_len, string, str_size); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.