From janholzh at users.sourceforge.net Fri Dec 8 09:52:56 2017 From: janholzh at users.sourceforge.net (janholzh at users.sourceforge.net) Date: Fri, 08 Dec 2017 08:52:56 +0000 Subject: SF.net SVN: gar:[26303] csw/mgar/pkg/openssl1/branches/lts102 Message-ID: <1512723176.268972.11830@sfp-scm-8.v30.ch3.sourceforge.com> Revision: 26303 http://sourceforge.net/p/gar/code/26303 Author: janholzh Date: 2017-12-08 08:52:10 +0000 (Fri, 08 Dec 2017) Log Message: ----------- openssl1/branches/lts102: update to 1.0.2n Modified Paths: -------------- csw/mgar/pkg/openssl1/branches/lts102/Makefile csw/mgar/pkg/openssl1/branches/lts102/checksums csw/mgar/pkg/openssl1/branches/lts102/files/029-fork_safe.patch Removed Paths: ------------- csw/mgar/pkg/openssl1/branches/lts102/files/0018-PRE-29_Patch_do_to_code_change.patch Modified: csw/mgar/pkg/openssl1/branches/lts102/Makefile =================================================================== --- csw/mgar/pkg/openssl1/branches/lts102/Makefile 2017-11-30 09:49:24 UTC (rev 26302) +++ csw/mgar/pkg/openssl1/branches/lts102/Makefile 2017-12-08 08:52:10 UTC (rev 26303) @@ -13,7 +13,7 @@ ###### Package information ####### NAME = openssl -VERSION = 1.0.2m +VERSION = 1.0.2n GARTYPE = v2 # Since version 1.0.0, soname is fixed and does not follow the minor releases SONAME=1.0.0 @@ -166,7 +166,6 @@ # Patches taken form oracle -PATCHFILES += 0018-PRE-29_Patch_do_to_code_change.patch PATCHFILES += 029-fork_safe.patch PATCHFILES += 032-aes_cbc_len_check.patch PATCHFILES += 036-evp_leak.patch Modified: csw/mgar/pkg/openssl1/branches/lts102/checksums =================================================================== --- csw/mgar/pkg/openssl1/branches/lts102/checksums 2017-11-30 09:49:24 UTC (rev 26302) +++ csw/mgar/pkg/openssl1/branches/lts102/checksums 2017-12-08 08:52:10 UTC (rev 26303) @@ -1 +1 @@ -10e9e37f492094b9ef296f68f24a7666 openssl-1.0.2m.tar.gz +13bdc1b1d1ff39b6fd42a255e74676a4 openssl-1.0.2n.tar.gz Deleted: csw/mgar/pkg/openssl1/branches/lts102/files/0018-PRE-29_Patch_do_to_code_change.patch =================================================================== --- csw/mgar/pkg/openssl1/branches/lts102/files/0018-PRE-29_Patch_do_to_code_change.patch 2017-11-30 09:49:24 UTC (rev 26302) +++ csw/mgar/pkg/openssl1/branches/lts102/files/0018-PRE-29_Patch_do_to_code_change.patch 2017-12-08 08:52:10 UTC (rev 26303) @@ -1,26 +0,0 @@ -From 6945a594cda4f1198f3ceee20d344e6728f925ce Mon Sep 17 00:00:00 2001 -From: Jan Holzhueter -Date: Fri, 3 Nov 2017 10:05:18 +0100 -Subject: [PATCH] PRE-29_Patch_do_to_code_change - ---- - crypto/cryptlib.c | 3 --- - 1 file changed, 3 deletions(-) - -diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c -index 5fab45b..9de694f 100644 ---- a/crypto/cryptlib.c -+++ b/crypto/cryptlib.c -@@ -478,9 +478,6 @@ int CRYPTO_THREADID_set_callback(void (*func) (CRYPTO_THREADID *)) - if (threadid_callback) - return 0; - threadid_callback = func; --#ifdef OPENSSL_FIPS -- FIPS_crypto_threadid_set_callback(func); --#endif - return 1; - } - --- -2.4.0 - Modified: csw/mgar/pkg/openssl1/branches/lts102/files/029-fork_safe.patch =================================================================== --- csw/mgar/pkg/openssl1/branches/lts102/files/029-fork_safe.patch 2017-11-30 09:49:24 UTC (rev 26302) +++ csw/mgar/pkg/openssl1/branches/lts102/files/029-fork_safe.patch 2017-12-08 08:52:10 UTC (rev 26303) @@ -188,7 +188,7 @@ void CRYPTO_set_locking_callback(void (*func) (int mode, int type, const char *file, int line)) { -@@ -410,7 +541,11 @@ +@@ -410,7 +543,11 @@ * started. */ OPENSSL_init(); @@ -201,7 +201,7 @@ } void CRYPTO_set_add_lock_callback(int (*func) (int *num, int mount, int type, -@@ -471,9 +606,10 @@ +@@ -471,12 +608,10 @@ int CRYPTO_THREADID_set_callback(void (*func) (CRYPTO_THREADID *)) { @@ -208,25 +208,47 @@ - if (threadid_callback) - return 0; - threadid_callback = func; +-#ifdef OPENSSL_FIPS +- FIPS_crypto_threadid_set_callback(func); +-#endif + /* -+ * Use the backup method (the address of 'errno') to identify the -+ * thread and disallow setting the threadid callback. ++ * Setting a threadid callback is no longer allowed; the compiled-in ++ * platform-specific default is always used. + */ return 1; } -@@ -529,7 +665,10 @@ +@@ -503,7 +641,7 @@ + CRYPTO_THREADID_set_numeric(id, (unsigned long)find_thread(NULL)); + #else +- /* For everything else, default to using the address of 'errno' */ +- CRYPTO_THREADID_set_pointer(id, (void *)&errno); ++ /* For everything else, default to using pthread_self() */ ++ CRYPTO_THREADID_set_numeric(id, (unsigned long)pthread_self()); + #endif + } +@@ -529,7 +667,10 @@ + void CRYPTO_set_id_callback(unsigned long (*func) (void)) { - id_callback = func; + /* -+ * Use the backup method to identify the thread/process. -+ * Setting the id callback is disallowed. ++ * Setting a threadid callback is no longer allowed; the compiled-in ++ * platform-specific default is always used. + */ } unsigned long CRYPTO_thread_id(void) +@@ -546,7 +687,7 @@ + # elif defined(OPENSSL_SYS_BEOS) + ret = (unsigned long)find_thread(NULL); + # else +- ret = (unsigned long)getpid(); ++ ret = (unsigned long)pthread_self(); + # endif + } else + ret = id_callback(); --- openssl-1.0.1f/crypto/cryptlib.h.~1~ Fri Feb 7 10:41:42 2014 +++ openssl-1.0.1f/crypto/cryptlib.h Thu Feb 6 16:04:16 2014 @@ -104,6 +104,8 @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Dec 13 16:40:23 2017 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 13 Dec 2017 15:40:23 +0000 Subject: SF.net SVN: gar:[26304] csw/mgar/pkg/geolitedb/trunk Message-ID: <1513179623.215885.16762@sfp-scm-8.v30.ch3.sourceforge.com> Revision: 26304 http://sourceforge.net/p/gar/code/26304 Author: dmichelsen Date: 2017-12-13 15:40:22 +0000 (Wed, 13 Dec 2017) Log Message: ----------- geolitedb/trunk: Update to 20171213 Modified Paths: -------------- csw/mgar/pkg/geolitedb/trunk/Makefile csw/mgar/pkg/geolitedb/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/geolitedb/trunk/files/ Modified: csw/mgar/pkg/geolitedb/trunk/Makefile =================================================================== --- csw/mgar/pkg/geolitedb/trunk/Makefile 2017-12-08 08:52:10 UTC (rev 26303) +++ csw/mgar/pkg/geolitedb/trunk/Makefile 2017-12-13 15:40:22 UTC (rev 26304) @@ -1,5 +1,5 @@ NAME = geolitedb -VERSION = 20131022 +VERSION = 20171213 GARTYPE = v2 DESCRIPTION = Geolite country database Modified: csw/mgar/pkg/geolitedb/trunk/checksums =================================================================== --- csw/mgar/pkg/geolitedb/trunk/checksums 2017-12-08 08:52:10 UTC (rev 26303) +++ csw/mgar/pkg/geolitedb/trunk/checksums 2017-12-13 15:40:22 UTC (rev 26304) @@ -1,8 +1,8 @@ -4aecef560aa6dacfe7e59dad8a12914b GeoIP.dat.gz -92f33f809312b99ea72fca1bf2691302 GeoIPASNum.dat.gz -55af75660db5db2f94effcbdc1b7fed9 GeoIPASNumv6.dat.gz -9e1336ddf9b2513559bed416f339387f GeoIPv6.dat.gz -5f1e1fa26efac1da40a3a8ba98ae84dd GeoLite2-City.mmdb.gz -e01941d8cfd50c43ecde3d5d6a54882d GeoLite2-Country.mmdb.gz -a273ba6bef3e3e60cb3f1a71378fdb3e GeoLiteCity.dat.xz -18b732df0bc61823921d71a75b7fcfed GeoLiteCityv6.dat.gz +9a9b21a7553753cbfd2b9a36c983d1ed GeoIP.dat.gz +2636487a02de03726199ef02da9e1973 GeoIPASNum.dat.gz +ed418cc8b0bece467a3a0ce0f40cfa84 GeoIPASNumv6.dat.gz +f0cb67841692cb3451565c3cb54ac1f8 GeoIPv6.dat.gz +e9875d094afed05200cc40e0386dfb1f GeoLite2-City.mmdb.gz +3995011a3e3351f283ffe88ec1e20428 GeoLite2-Country.mmdb.gz +e2e095739e143b3648600c215f6cd2de GeoLiteCity.dat.xz +3b1a76b46dbcc667d39c5ac45cf93029 GeoLiteCityv6.dat.gz Index: csw/mgar/pkg/geolitedb/trunk/files =================================================================== --- csw/mgar/pkg/geolitedb/trunk/files 2017-12-08 08:52:10 UTC (rev 26303) +++ csw/mgar/pkg/geolitedb/trunk/files 2017-12-13 15:40:22 UTC (rev 26304) Property changes on: csw/mgar/pkg/geolitedb/trunk/files ___________________________________________________________________ Added: svn:ignore ## -0,0 +1 ## +archiv 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 Dec 18 09:36:54 2017 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 18 Dec 2017 08:36:54 +0000 Subject: SF.net SVN: gar:[26305] csw/mgar/pkg/mutt/trunk Message-ID: <1513586214.603411.29714@sfp-scm-4.v30.ch3.sourceforge.com> Revision: 26305 http://sourceforge.net/p/gar/code/26305 Author: dmichelsen Date: 2017-12-18 08:36:54 +0000 (Mon, 18 Dec 2017) Log Message: ----------- mutt/trunk: Update to 1.9.2 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 2017-12-13 15:40:22 UTC (rev 26304) +++ csw/mgar/pkg/mutt/trunk/Makefile 2017-12-18 08:36:54 UTC (rev 26305) @@ -1,5 +1,5 @@ NAME = mutt -VERSION = 1.9.1 +VERSION = 1.9.2 GARTYPE = v2 EXTRA_MODULATORS = SLANG Modified: csw/mgar/pkg/mutt/trunk/checksums =================================================================== --- csw/mgar/pkg/mutt/trunk/checksums 2017-12-13 15:40:22 UTC (rev 26304) +++ csw/mgar/pkg/mutt/trunk/checksums 2017-12-18 08:36:54 UTC (rev 26305) @@ -1 +1 @@ -1fbf126b8588e11263bd655b192173bd mutt-1.9.1.tar.gz +8351fc50ab1bc3c0674e2f537a75e81b mutt-1.9.2.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 Dec 18 10:50:22 2017 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 18 Dec 2017 09:50:22 +0000 Subject: SF.net SVN: gar:[26306] csw/mgar/pkg/gtar/trunk Message-ID: <1513590622.356422.5564@sfp-scm-4.v30.ch3.sourceforge.com> Revision: 26306 http://sourceforge.net/p/gar/code/26306 Author: dmichelsen Date: 2017-12-18 09:50:21 +0000 (Mon, 18 Dec 2017) Log Message: ----------- gtar/trunk: Update to 1.28 Modified Paths: -------------- csw/mgar/pkg/gtar/trunk/Makefile csw/mgar/pkg/gtar/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gtar/trunk/files/0001-tar-port-wordsplit-attribute-to-Sun-C.patch csw/mgar/pkg/gtar/trunk/files/0001-tar-port-xattr-at.c-to-Solaris-10.patch Modified: csw/mgar/pkg/gtar/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtar/trunk/Makefile 2017-12-18 08:36:54 UTC (rev 26305) +++ csw/mgar/pkg/gtar/trunk/Makefile 2017-12-18 09:50:21 UTC (rev 26306) @@ -1,5 +1,5 @@ NAME = tar -VERSION = 1.27 +VERSION = 1.28 GARTYPE = v2 DESCRIPTION = GNU tape archiver Modified: csw/mgar/pkg/gtar/trunk/checksums =================================================================== --- csw/mgar/pkg/gtar/trunk/checksums 2017-12-18 08:36:54 UTC (rev 26305) +++ csw/mgar/pkg/gtar/trunk/checksums 2017-12-18 09:50:21 UTC (rev 26306) @@ -1 +1 @@ -9d4bc655d103b871248281db179eb0f5 tar-1.27.tar.gz +6ea3dbea1f2b0409b234048e021a9fd7 tar-1.28.tar.gz Added: csw/mgar/pkg/gtar/trunk/files/0001-tar-port-wordsplit-attribute-to-Sun-C.patch =================================================================== --- csw/mgar/pkg/gtar/trunk/files/0001-tar-port-wordsplit-attribute-to-Sun-C.patch (rev 0) +++ csw/mgar/pkg/gtar/trunk/files/0001-tar-port-wordsplit-attribute-to-Sun-C.patch 2017-12-18 09:50:21 UTC (rev 26306) @@ -0,0 +1,61 @@ +From 00507e1c9650ded0cf3f76a3f7d069e10e0310af Mon Sep 17 00:00:00 2001 +From: Paul Eggert +Date: Mon, 5 Jan 2015 20:07:34 -0800 +Subject: [PATCH] tar: port wordsplit attribute to Sun C + +Reported by Ted Carr in: +http://lists.gnu.org/archive/html/bug-tar/2015-01/msg00002.html +* lib/wordsplit.h (__WORDSPLIT_ATTRIBUTE_FORMAT): +New macro, taken from Gnulib. +(struct wordsplit): Use it. +* lib/wordsplit.c (_wsplt_error): Use it. +--- + lib/wordsplit.c | 2 +- + lib/wordsplit.h | 10 ++++++++-- + 2 files changed, 9 insertions(+), 3 deletions(-) + +diff --git a/lib/wordsplit.c b/lib/wordsplit.c +index 21807cd..bda64d3 100644 +--- a/lib/wordsplit.c ++++ b/lib/wordsplit.c +@@ -61,7 +61,7 @@ _wsplt_alloc_die (struct wordsplit *wsp) + abort (); + } + +-static void __attribute__ ((__format__ (__printf__, 1, 2))) ++static void __WORDSPLIT_ATTRIBUTE_FORMAT ((__printf__, 1, 2)) + _wsplt_error (const char *fmt, ...) + { + va_list ap; +diff --git a/lib/wordsplit.h b/lib/wordsplit.h +index d64cf2f..25d556d 100644 +--- a/lib/wordsplit.h ++++ b/lib/wordsplit.h +@@ -22,6 +22,12 @@ + + #include + ++#if 2 < __GNUC__ + (7 <= __GNUC_MINOR__) ++# define __WORDSPLIT_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec)) ++#else ++# define __WORDSPLIT_ATTRIBUTE_FORMAT(spec) /* empty */ ++#endif ++ + struct wordsplit + { + size_t ws_wordc; +@@ -34,9 +40,9 @@ struct wordsplit + const char *ws_escape; + void (*ws_alloc_die) (struct wordsplit * wsp); + void (*ws_error) (const char *, ...) +- __attribute__ ((__format__ (__printf__, 1, 2))); ++ __WORDSPLIT_ATTRIBUTE_FORMAT ((__printf__, 1, 2)); + void (*ws_debug) (const char *, ...) +- __attribute__ ((__format__ (__printf__, 1, 2))); ++ __WORDSPLIT_ATTRIBUTE_FORMAT ((__printf__, 1, 2)); + + const char **ws_env; + const char *(*ws_getvar) (const char *, size_t, void *); +-- +2.1.0 + Added: csw/mgar/pkg/gtar/trunk/files/0001-tar-port-xattr-at.c-to-Solaris-10.patch =================================================================== --- csw/mgar/pkg/gtar/trunk/files/0001-tar-port-xattr-at.c-to-Solaris-10.patch (rev 0) +++ csw/mgar/pkg/gtar/trunk/files/0001-tar-port-xattr-at.c-to-Solaris-10.patch 2017-12-18 09:50:21 UTC (rev 26306) @@ -0,0 +1,34 @@ +From 75c83ce5972f34c65fa9b3b369e5239390105aa1 Mon Sep 17 00:00:00 2001 +From: Paul Eggert +Date: Mon, 5 Jan 2015 20:24:18 -0800 +Subject: [PATCH] tar: port xattr-at.c to Solaris 10 + +* lib/xattr-at.c (setxattrat, lsetxattrat, getxattrat, lgetxattrat) +(listxattrat, llistxattrat): Compile only if HAVE_XATTRS, so that +the code doesn't call functions that are not declared. +--- + lib/xattr-at.c | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/lib/xattr-at.c b/lib/xattr-at.c +index 443ccae..66427e9 100644 +--- a/lib/xattr-at.c ++++ b/lib/xattr-at.c +@@ -31,6 +31,8 @@ + + #include "openat-priv.h" + ++#ifdef HAVE_XATTRS ++ + /* setxattrat */ + #define AT_FUNC_NAME setxattrat + #define AT_FUNC_F1 setxattr +@@ -108,3 +110,5 @@ + #undef AT_FUNC_RESULT + #undef AT_FUNC_POST_FILE_PARAM_DECLS + #undef AT_FUNC_POST_FILE_ARGS ++ ++#endif /* HAVE_XATTRS */ +-- +2.1.0 + 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 Dec 18 10:55:36 2017 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 18 Dec 2017 09:55:36 +0000 Subject: SF.net SVN: gar:[26307] csw/mgar/pkg/gtar/trunk/Makefile Message-ID: <1513590936.722650.8612@sfp-scm-4.v30.ch3.sourceforge.com> Revision: 26307 http://sourceforge.net/p/gar/code/26307 Author: dmichelsen Date: 2017-12-18 09:55:36 +0000 (Mon, 18 Dec 2017) Log Message: ----------- gtar/trunk: Add patches Modified Paths: -------------- csw/mgar/pkg/gtar/trunk/Makefile Modified: csw/mgar/pkg/gtar/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtar/trunk/Makefile 2017-12-18 09:50:21 UTC (rev 26306) +++ csw/mgar/pkg/gtar/trunk/Makefile 2017-12-18 09:55:36 UTC (rev 26307) @@ -17,6 +17,14 @@ MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(NAME)-$(VERSION).tar.gz +# Use patch until this is fixed: +# 0001-tar-port-wordsplit-attribute-to-Sun-C.patch +PATCHFILES += 0001-tar-port-wordsplit-attribute-to-Sun-C.patch + +# Use patch until this is fixed: +# https://lists.gnu.org/archive/html/bug-tar/2015-01/msg00005.html +PATCHFILES += 0001-tar-port-xattr-at.c-to-Solaris-10.patch + VENDOR_URL = http://www.gnu.org/software/tar/ PACKAGES = CSWgtar This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Dec 18 15:58:41 2017 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 18 Dec 2017 14:58:41 +0000 Subject: SF.net SVN: gar:[26308] csw/mgar/pkg/opencsw-manual/trunk/files Message-ID: <1513609121.320756.12241@sfp-scm-3.v30.ch3.sourceforge.com> Revision: 26308 http://sourceforge.net/p/gar/code/26308 Author: wahwah Date: 2017-12-18 14:58:41 +0000 (Mon, 18 Dec 2017) Log Message: ----------- opencsw-manual: Information about minimal solaris versions. Modified Paths: -------------- csw/mgar/pkg/opencsw-manual/trunk/files/conf.py csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/faq.rst Modified: csw/mgar/pkg/opencsw-manual/trunk/files/conf.py =================================================================== --- csw/mgar/pkg/opencsw-manual/trunk/files/conf.py 2017-12-18 09:55:36 UTC (rev 26307) +++ csw/mgar/pkg/opencsw-manual/trunk/files/conf.py 2017-12-18 14:58:41 UTC (rev 26308) @@ -41,7 +41,7 @@ # General information about the project. project = u'OpenCSW' -copyright = u'2012-2015, OpenCSW' +copyright = u'2012-2017, OpenCSW' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.2015.03' +version = '0.2017.12' # The full version, including alpha/beta/rc tags. -release = '0.2015.03' +release = '0.2017.12' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. Modified: csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/faq.rst =================================================================== --- csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/faq.rst 2017-12-18 09:55:36 UTC (rev 26307) +++ csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/faq.rst 2017-12-18 14:58:41 UTC (rev 26308) @@ -5,6 +5,23 @@ .. index:: single: FAQ +What are the required Solaris versions? +======================================= + +For Solaris 10, it's **Solaris 10 update 8**. + +Earlier versions of Solaris 10 are `missing libc 1.22.5`_. + +.. _missing libc 1.22.5: + https://www.opencsw.org/2014/12/minimum-libc-version-is-1-22-5/ + +For Solaris 9, it's **Solaris 9 update 9**. + +Earlier versions of Solaris 9 are `missing libresolv.so.2 version SUNW_2.2.1`_. + +.. _missing libresolv.so.2 version SUNW_2.2.1: + http://lists.opencsw.org/pipermail/bug-notifications/2013-April/011736.html + Please provide me with a Solaris binary for . ======================================================== 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 Dec 26 22:21:11 2017 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 26 Dec 2017 21:21:11 +0000 Subject: SF.net SVN: gar:[26309] csw/mgar/pkg/doxygen/trunk Message-ID: <1514323271.607862.1466@sfp-scm-4.v30.ch3.sourceforge.com> Revision: 26309 http://sourceforge.net/p/gar/code/26309 Author: dmichelsen Date: 2017-12-26 21:21:11 +0000 (Tue, 26 Dec 2017) Log Message: ----------- doxygen/trunk: Update to 1.8.14 Modified Paths: -------------- csw/mgar/pkg/doxygen/trunk/Makefile csw/mgar/pkg/doxygen/trunk/checksums Modified: csw/mgar/pkg/doxygen/trunk/Makefile =================================================================== --- csw/mgar/pkg/doxygen/trunk/Makefile 2017-12-18 14:58:41 UTC (rev 26308) +++ csw/mgar/pkg/doxygen/trunk/Makefile 2017-12-26 21:21:11 UTC (rev 26309) @@ -1,5 +1,5 @@ NAME = doxygen -VERSION = 1.8.13 +VERSION = 1.8.14 GARTYPE = v2 DESCRIPTION = A documentation system for programming languages Modified: csw/mgar/pkg/doxygen/trunk/checksums =================================================================== --- csw/mgar/pkg/doxygen/trunk/checksums 2017-12-18 14:58:41 UTC (rev 26308) +++ csw/mgar/pkg/doxygen/trunk/checksums 2017-12-26 21:21:11 UTC (rev 26309) @@ -1 +1 @@ -0fa414975f8cd6d30e126c28327c1f7c doxygen-1.8.13.src.tar.gz +41d8821133e8d8104280030553e2b42b doxygen-1.8.14.src.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.