[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mingw-cvs
Subject:    MinGW-cvs Digest, Vol 89, Issue 1
From:       mingw-cvs-request () lists ! sourceforge ! net
Date:       2016-09-21 10:35:32
Message-ID: mailman.31364.1474454132.8283.mingw-cvs () lists ! sourceforge ! net
[Download RAW message or body]

Send MinGW-cvs mailing list submissions to
	mingw-cvs@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/mingw-cvs
or, via email, send a message with subject or body 'help' to
	mingw-cvs-request@lists.sourceforge.net

You can reach the person managing the list at
	mingw-cvs-owner@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of MinGW-cvs digest..."


This list will notify you of updates to the code stored in CVS.  Typically only \
developers with access to update the CVS are interested in this list.  However, this \
list can be beneficial to see what is happening with your changes.  If you wish to \
unsubscribe please do so at https://lists.sourceforge.net/lists/listinfo/mingw-cvs.

Today's Topics:

   1. [git push mingw-org-wsl]Repository: mingw-org-wsl	branch,
      5.0-active,	updated. a58a5c2852c7e1ca849453cf89643402f438526a
      (Keith Marshall)
   2. [git push mingw-dist]Repository: mingw-dist branch,	master,
      updated. a4172ef377ba74439cb4f46f3c72a36a9a60b1ca (Keith Marshall)
   3. [git push mingw-dist]Repository: mingw-dist branch,	master,
      updated. 1e44fede9da5c88f2b66fbc55b54f428045382be (Keith Marshall)
   4. [git push mingw-dist]Repository: mingw-dist branch,	master,
      updated. 16e57dd86a7b17a75acb085d83e3ed7f791d8c09 (Keith Marshall)


----------------------------------------------------------------------

Message: 1
Date: Wed, 24 Aug 2016 23:02:55 +0000
From: "Keith Marshall" <noreply@sourceforge.net>
Subject: [MinGW-cvs] [git push mingw-org-wsl]Repository: mingw-org-wsl
	branch, 5.0-active,	updated. a58a5c2852c7e1ca849453cf89643402f438526a
To: mingw-cvs@lists.sourceforge.net
Message-ID:
	<mailman.31365.1474454132.8283.mingw-cvs@lists.sourceforge.net>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Repository: mingw-org-wsl".

The branch, 5.0-active has been updated
       via  a58a5c2852c7e1ca849453cf89643402f438526a (commit)
      from  dbd96e5c332de45c8ffa35f0e85a6b2b36190619 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sf.net/p/mingw/mingw-org-wsl/ci/a58a5c2852c7e1ca849453cf89643402f438526a/

commit a58a5c2852c7e1ca849453cf89643402f438526a
Author: Keith Marshall <keithmarshall@users.sourceforge.net>
Date:   Thu Aug 25 00:01:17 2016 +0100

    Add pthreads-win32 courtesy support hooks.

diff --git a/mingwrt/ChangeLog b/mingwrt/ChangeLog
index 8e5ea5b..e29044d 100644
--- a/mingwrt/ChangeLog
+++ b/mingwrt/ChangeLog
@@ -1,3 +1,16 @@
+2016-08-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+	Add pthreads-win32 courtesy support hooks.
+
+	* include/errno.h: Assert copyright; tidy layout.
+	(_ERRNO_H_): Rename this repeat inclusion guard macro as...
+	(_ERRNO_H): ...this, conforming to preferred naming convention.
+	[__PTW32_H]: Include "ptw32_errno.h".
+
+	* include/time.h [__SCHED_H_SOURCED__]
+	(struct timespec): Typedef it selectively; do not define...
+	(_TIME_H): ...this.
+
 2016-08-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
 	Implement POSIX printf() feature per request [#2310].
diff --git a/mingwrt/include/errno.h b/mingwrt/include/errno.h
index e3690a7..ad58267 100644
--- a/mingwrt/include/errno.h
+++ b/mingwrt/include/errno.h
@@ -1,87 +1,99 @@
 /*
  * errno.h
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is a part of the mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER within the package.
  *
- * Error numbers and access to error reporting.
+ * Definition of error codes, and error code retrieval mechanism.
+ *
+ * $Id$
+ *
+ * Written by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
+ * Copyright (C) 1997-1999, 2001, 2003-2005, 2007, 2016, MinGW.org Project.
+ *
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice, this permission notice, and the following
+ * disclaimer shall be included in all copies or substantial portions of
+ * the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF OR OTHER
+ * DEALINGS IN THE SOFTWARE.
  *
  */
+#ifndef _ERRNO_H
+#define _ERRNO_H
 
-#ifndef _ERRNO_H_
-#define	_ERRNO_H_
-
-/* All the headers include this file. */
+/* All MinGW headers are expected to include <_mingw.h>
+ */
 #include <_mingw.h>
 
-/*
- * Error numbers.
+/* Error code numbers.
+ *
  * TODO: Can't be sure of some of these assignments, I guessed from the
  * names given by strerror and the defines in the Cygnus errno.h. A lot
  * of the names from the Cygnus errno.h are not represented, and a few
  * of the descriptions returned by strerror do not obviously match
  * their error naming.
  */
-#define EPERM		1	/* Operation not permitted */
-#define	ENOFILE		2	/* No such file or directory */
-#define	ENOENT		2
-#define	ESRCH		3	/* No such process */
-#define	EINTR		4	/* Interrupted function call */
-#define	EIO		5	/* Input/output error */
-#define	ENXIO		6	/* No such device or address */
-#define	E2BIG		7	/* Arg list too long */
-#define	ENOEXEC		8	/* Exec format error */
-#define	EBADF		9	/* Bad file descriptor */
-#define	ECHILD		10	/* No child processes */
-#define	EAGAIN		11	/* Resource temporarily unavailable */
-#define	ENOMEM		12	/* Not enough space */
-#define	EACCES		13	/* Permission denied */
-#define	EFAULT		14	/* Bad address */
+#define EPERM		 1	/* Operation not permitted */
+#define ENOFILE 	 2	/* No such file or directory */
+#define ENOENT		 2
+#define ESRCH		 3	/* No such process */
+#define EINTR		 4	/* Interrupted function call */
+#define EIO		 5	/* Input/output error */
+#define ENXIO		 6	/* No such device or address */
+#define E2BIG		 7	/* Arg list too long */
+#define ENOEXEC 	 8	/* Exec format error */
+#define EBADF		 9	/* Bad file descriptor */
+#define ECHILD		10	/* No child processes */
+#define EAGAIN		11	/* Resource temporarily unavailable */
+#define ENOMEM		12	/* Not enough space */
+#define EACCES		13	/* Permission denied */
+#define EFAULT		14	/* Bad address */
 /* 15 - Unknown Error */
-#define	EBUSY		16	/* strerror reports "Resource device" */
-#define	EEXIST		17	/* File exists */
-#define	EXDEV		18	/* Improper link (cross-device link?) */
-#define	ENODEV		19	/* No such device */
-#define	ENOTDIR		20	/* Not a directory */
-#define	EISDIR		21	/* Is a directory */
-#define	EINVAL		22	/* Invalid argument */
-#define	ENFILE		23	/* Too many open files in system */
-#define	EMFILE		24	/* Too many open files */
-#define	ENOTTY		25	/* Inappropriate I/O control operation */
+#define EBUSY		16	/* strerror reports "Resource device" */
+#define EEXIST		17	/* File exists */
+#define EXDEV		18	/* Improper link (cross-device link?) */
+#define ENODEV		19	/* No such device */
+#define ENOTDIR 	20	/* Not a directory */
+#define EISDIR		21	/* Is a directory */
+#define EINVAL		22	/* Invalid argument */
+#define ENFILE		23	/* Too many open files in system */
+#define EMFILE		24	/* Too many open files */
+#define ENOTTY		25	/* Inappropriate I/O control operation */
 /* 26 - Unknown Error */
-#define	EFBIG		27	/* File too large */
-#define	ENOSPC		28	/* No space left on device */
-#define	ESPIPE		29	/* Invalid seek (seek on a pipe?) */
-#define	EROFS		30	/* Read-only file system */
-#define	EMLINK		31	/* Too many links */
-#define	EPIPE		32	/* Broken pipe */
-#define	EDOM		33	/* Domain error (math functions) */
-#define	ERANGE		34	/* Result too large (possibly too small) */
+#define EFBIG		27	/* File too large */
+#define ENOSPC		28	/* No space left on device */
+#define ESPIPE		29	/* Invalid seek (seek on a pipe?) */
+#define EROFS		30	/* Read-only file system */
+#define EMLINK		31	/* Too many links */
+#define EPIPE		32	/* Broken pipe */
+#define EDOM		33	/* Domain error (math functions) */
+#define ERANGE		34	/* Result too large (possibly too small) */
 /* 35 - Unknown Error */
-#define	EDEADLOCK	36	/* Resource deadlock avoided (non-Cyg) */
-#define	EDEADLK		36
+#define EDEADLOCK	36	/* Resource deadlock avoided (non-Cyg) */
+#define EDEADLK 	36
 /* 37 - Unknown Error */
-#define	ENAMETOOLONG	38	/* Filename too long (91 in Cyg?) */
-#define	ENOLCK		39	/* No locks available (46 in Cyg?) */
-#define	ENOSYS		40	/* Function not implemented (88 in Cyg?) */
-#define	ENOTEMPTY	41	/* Directory not empty (90 in Cyg?) */
-#define	EILSEQ		42	/* Illegal byte sequence */
-
-/*
- * NOTE: ENAMETOOLONG and ENOTEMPTY conflict with definitions in the
- *       sockets.h header provided with windows32api-0.1.2.
- *       You should go and put an #if 0 ... #endif around the whole block
- *       of errors (look at the comment above them).
- */
+#define ENAMETOOLONG	38	/* Filename too long (91 in Cyg?) */
+#define ENOLCK		39	/* No locks available (46 in Cyg?) */
+#define ENOSYS		40	/* Function not implemented (88 in Cyg?) */
+#define ENOTEMPTY	41	/* Directory not empty (90 in Cyg?) */
+#define EILSEQ		42	/* Illegal byte sequence */
 
 #ifndef	RC_INVOKED
 
-#ifdef	__cplusplus
-extern "C" {
-#endif
+_BEGIN_C_DECLS
 
-/*
- * Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
+/* Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
  * stdlib.h.
  */
 #ifdef _UWIN
@@ -92,10 +104,23 @@ _CRTIMP int* __cdecl __MINGW_NOTHROW _errno(void);
 #define	errno		(*_errno())
 #endif
 
-#ifdef	__cplusplus
-}
-#endif
+_END_C_DECLS
+
+#endif	/* ! RC_INVOKED */
 
-#endif	/* Not RC_INVOKED */
+#if defined __PTW32_H && ! defined _PTW32_ERRNO_H
+/* As a courtesy to users of pthreads-win32, ensure that the appropriate
+ * additional error codes, as defined by that package, are automatically
+ * defined when <errno.h> is included AFTER any pthreads-win32 header; a
+ * complementary hook, in <_ptw32.h>, ensures that such additional error
+ * codes are defined, if <errno.h> is included BEFORE any pthreads-win32
+ * header is subsequently included.
+ *
+ * NOTE: this assumes pthreads-win32-2.10 or later, with corresponding
+ * MinGW.org patches applied; it will favour "ptw32_errno.h" installed
+ * in the mingwrt system include directory.
+ */
+#include "ptw32_errno.h"
 
-#endif	/* Not _ERRNO_H_ */
+#endif	/* __PTW32_H */
+#endif	/* !_ERRNO_H: $RCSfile$: end of file */
diff --git a/mingwrt/include/time.h b/mingwrt/include/time.h
index ea90870..634c831 100644
--- a/mingwrt/include/time.h
+++ b/mingwrt/include/time.h
@@ -52,7 +52,20 @@
 #undef __need_struct_timespec
 #undef __need_wchar_decls
 
-#if defined __WCHAR_H_SOURCED__
+#if defined __SCHED_H_SOURCED__
+/* This is selective inclusion by <sched.h>; although not a standard
+ * MinGW.org header, we provide this hook to grant access from third
+ * party implementations, (e.g. pthreads-win32), to get a definition
+ * for struct timespec, which POSIX requires it to provide.
+ *
+ * Note that, in common with all selective inclusion strategies, we
+ * do not define the _TIME_H guard macro in this case, and we select
+ * only the minimally required subset of declarations to be exposed
+ * from within <time.h>, as required by <sched.h>
+ */
+# define __need_struct_timespec  1
+
+#elif defined __WCHAR_H_SOURCED__
 /* This is selective inclusion by <wchar.h>; thus, we do not define the
  * _TIME_H guard macro, and we select only the minimally required subset
  * of declarations to be exposed from within <time.h>

-----------------------------------------------------------------------

Summary of changes:
 mingwrt/ChangeLog       |   13 ++++
 mingwrt/include/errno.h |  159 +++++++++++++++++++++++++++--------------------
 mingwrt/include/time.h  |   15 ++++-
 3 files changed, 119 insertions(+), 68 deletions(-)


hooks/post-receive
-- 
Repository: mingw-org-wsl



------------------------------

Message: 2
Date: Sun,  4 Sep 2016 12:52:42 +0000
From: "Keith Marshall" <noreply@sourceforge.net>
Subject: [MinGW-cvs] [git push mingw-dist]Repository: mingw-dist
	branch,	master, updated. a4172ef377ba74439cb4f46f3c72a36a9a60b1ca
To: mingw-cvs@lists.sourceforge.net
Message-ID:
	<mailman.31366.1474454132.8283.mingw-cvs@lists.sourceforge.net>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Repository: mingw-dist".

The branch, master has been updated
       via  a4172ef377ba74439cb4f46f3c72a36a9a60b1ca (commit)
      from  1282dfdafc61b3836d73875844d8d3b06bdc9da3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sf.net/p/mingw/mingw-dist/ci/a4172ef377ba74439cb4f46f3c72a36a9a60b1ca/

commit a4172ef377ba74439cb4f46f3c72a36a9a60b1ca
Author: Keith Marshall <keithmarshall@users.sourceforge.net>
Date:   Sun Sep 4 13:51:29 2016 +0100

    Add missing "-lpthread" dependency for GCC-5.3.0-2.

diff --git a/ChangeLog b/ChangeLog
index 74418c3..c1a48c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2016-09-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+	Add missing "-lpthread" dependency for GCC-5.3.0-2.
+
+	* mingw32-gcc4.xml (mingw32-gcc-core-bin): Require...
+	(libpthreadgc-*-mingw32-dev) [* >= 2.10]: ...this package.
+	* common/issue.log mingw32/issue.log: Update accordingly.
+
 2016-08-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
 	Add references for previously published GCC-5.3.0-2.
diff --git a/common/issue.log b/common/issue.log
index 6be91b9..79d6a97 100644
--- a/common/issue.log
+++ b/common/issue.log
@@ -23,6 +23,6 @@
 # MinGW Project, accept liability for any damages, however caused,
 # arising from the use of this software.
 #
-  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016082401 package-list.xml
+  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016090400 package-list.xml
 #
 # $RCSfile$: end of file
diff --git a/mingw32/issue.log b/mingw32/issue.log
index dfa6b92..2b2c0d5 100644
--- a/mingw32/issue.log
+++ b/mingw32/issue.log
@@ -35,7 +35,7 @@
   4dab2d86ca2203a8ac0233824c687504fda4601e 2013091000 mingw32-expat.xml
   bc4b331f9bdfbf72a11a310fbc17a027396d09d5 2012073100 mingw32-gcc-tools.xml
   9d1d9deeccee4fb04f2944e3cd5e7b85757308ce 2011050500 mingw32-gcc3.xml
-  b02ad3ef3d9e52e7564b3421ce51bb364e17f384 2016082400 mingw32-gcc4.xml
+  a87f75a6ca4ef42eaee58adb2d68c93f8d51c418 2016090400 mingw32-gcc4.xml
   21031079d59268339bfd7c6dc8239df214588bca 2013091501 mingw32-gdb.xml
   14dd10ab97b27430bdb688f4e85993cd821f7a05 2012073100 mingw32-gendef.xml
   7b16c690a8b02106e7cc7abc6c6310fe30390683 2015090600 mingw32-gettext.xml
@@ -50,7 +50,7 @@
   cd33ad74b608bce33ea297801253e6efbafce27c 2012073100 mingw32-mingw-utils.xml
   8d3a7125499a85916b53efb4c897ac907e2490ab 2015082000 mingw32-mpc.xml
   8a11de23e7a89fd11436bdf162ef90712f30101b 2013102300 mingw32-mpfr.xml
-  56f4032058328cacfabe64fa46706d72c2fa931e 2016082400 mingw32-package-list.xml
+  56f4032058328cacfabe64fa46706d72c2fa931e 2016090400 mingw32-package-list.xml
   1f15439ee5f66ec22321c7aa853559b6f8f7172f 2015090800 mingw32-pexports.xml
   cdb2a4dbedfc9f2cdfc92340f6f9b12da061c0d9 2012073100 mingw32-popt.xml
   6032af6ff68aa4821cf51938781fd9e75f05de5f 2016082200 mingw32-pthreads-w32.xml
diff --git a/mingw32/mingw32-gcc4.xml b/mingw32/mingw32-gcc4.xml
index 2efb9ea..3758430 100644
--- a/mingw32/mingw32-gcc4.xml
+++ b/mingw32/mingw32-gcc4.xml
@@ -46,6 +46,7 @@
           <requires eq="libgcc-%-mingw32-dll-1.tar" />
           <requires eq="libssp-%-mingw32-dll-0.tar" />
           <requires eq="libgomp-%-mingw32-dll-1.tar" />
+          <requires ge="libpthreadgc-2.10-mingw32-dev.tar" />
           <requires eq="libatomic-%-mingw32-dll-1.tar" />
           <requires eq="libquadmath-%-mingw32-dll-0.tar" />
           <requires eq="libmpc-*-mingw32-dll-3.tar" />

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                |    8 ++++++++
 common/issue.log         |    2 +-
 mingw32/issue.log        |    4 ++--
 mingw32/mingw32-gcc4.xml |    1 +
 4 files changed, 12 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Repository: mingw-dist



------------------------------

Message: 3
Date: Mon,  5 Sep 2016 08:29:06 +0000
From: "Keith Marshall" <noreply@sourceforge.net>
Subject: [MinGW-cvs] [git push mingw-dist]Repository: mingw-dist
	branch,	master, updated. 1e44fede9da5c88f2b66fbc55b54f428045382be
To: mingw-cvs@lists.sourceforge.net
Message-ID:
	<mailman.31367.1474454132.8283.mingw-cvs@lists.sourceforge.net>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Repository: mingw-dist".

The branch, master has been updated
       via  1e44fede9da5c88f2b66fbc55b54f428045382be (commit)
      from  a4172ef377ba74439cb4f46f3c72a36a9a60b1ca (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sf.net/p/mingw/mingw-dist/ci/1e44fede9da5c88f2b66fbc55b54f428045382be/

commit 1e44fede9da5c88f2b66fbc55b54f428045382be
Author: Keith Marshall <keithmarshall@users.sourceforge.net>
Date:   Mon Sep 5 09:28:49 2016 +0100

    Correct underspecified dependency in 2016-09-04 update.

diff --git a/ChangeLog b/ChangeLog
index c1a48c4..a0e8d5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2016-09-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+	Correct underspecified dependency in 2016-09-04 update.
+
+	* mingw32-gcc4.xml (mingw32-gcc-core-bin): Respecify...
+	(libpthreadgc-*-mingw32-dev) [* >= 2.10.*]: ...this dependency.
+	* common/issue.log mingw32/issue.log: Update accordingly.
+
 2016-09-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
 	Add missing "-lpthread" dependency for GCC-5.3.0-2.
diff --git a/common/issue.log b/common/issue.log
index 79d6a97..79c3a20 100644
--- a/common/issue.log
+++ b/common/issue.log
@@ -23,6 +23,6 @@
 # MinGW Project, accept liability for any damages, however caused,
 # arising from the use of this software.
 #
-  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016090400 package-list.xml
+  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016090500 package-list.xml
 #
 # $RCSfile$: end of file
diff --git a/mingw32/issue.log b/mingw32/issue.log
index 2b2c0d5..fa95c76 100644
--- a/mingw32/issue.log
+++ b/mingw32/issue.log
@@ -35,7 +35,7 @@
   4dab2d86ca2203a8ac0233824c687504fda4601e 2013091000 mingw32-expat.xml
   bc4b331f9bdfbf72a11a310fbc17a027396d09d5 2012073100 mingw32-gcc-tools.xml
   9d1d9deeccee4fb04f2944e3cd5e7b85757308ce 2011050500 mingw32-gcc3.xml
-  a87f75a6ca4ef42eaee58adb2d68c93f8d51c418 2016090400 mingw32-gcc4.xml
+  fdbe1dff8fb008acaf74214a4222f59e849bc14f 2016090500 mingw32-gcc4.xml
   21031079d59268339bfd7c6dc8239df214588bca 2013091501 mingw32-gdb.xml
   14dd10ab97b27430bdb688f4e85993cd821f7a05 2012073100 mingw32-gendef.xml
   7b16c690a8b02106e7cc7abc6c6310fe30390683 2015090600 mingw32-gettext.xml
@@ -50,7 +50,7 @@
   cd33ad74b608bce33ea297801253e6efbafce27c 2012073100 mingw32-mingw-utils.xml
   8d3a7125499a85916b53efb4c897ac907e2490ab 2015082000 mingw32-mpc.xml
   8a11de23e7a89fd11436bdf162ef90712f30101b 2013102300 mingw32-mpfr.xml
-  56f4032058328cacfabe64fa46706d72c2fa931e 2016090400 mingw32-package-list.xml
+  56f4032058328cacfabe64fa46706d72c2fa931e 2016090500 mingw32-package-list.xml
   1f15439ee5f66ec22321c7aa853559b6f8f7172f 2015090800 mingw32-pexports.xml
   cdb2a4dbedfc9f2cdfc92340f6f9b12da061c0d9 2012073100 mingw32-popt.xml
   6032af6ff68aa4821cf51938781fd9e75f05de5f 2016082200 mingw32-pthreads-w32.xml
diff --git a/mingw32/mingw32-gcc4.xml b/mingw32/mingw32-gcc4.xml
index 3758430..cd5e90b 100644
--- a/mingw32/mingw32-gcc4.xml
+++ b/mingw32/mingw32-gcc4.xml
@@ -46,7 +46,7 @@
           <requires eq="libgcc-%-mingw32-dll-1.tar" />
           <requires eq="libssp-%-mingw32-dll-0.tar" />
           <requires eq="libgomp-%-mingw32-dll-1.tar" />
-          <requires ge="libpthreadgc-2.10-mingw32-dev.tar" />
+          <requires ge="libpthreadgc-2.10.*-mingw32-dev.tar" />
           <requires eq="libatomic-%-mingw32-dll-1.tar" />
           <requires eq="libquadmath-%-mingw32-dll-0.tar" />
           <requires eq="libmpc-*-mingw32-dll-3.tar" />

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                |    8 ++++++++
 common/issue.log         |    2 +-
 mingw32/issue.log        |    4 ++--
 mingw32/mingw32-gcc4.xml |    2 +-
 4 files changed, 12 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Repository: mingw-dist



------------------------------

Message: 4
Date: Wed, 21 Sep 2016 10:35:29 +0000
From: "Keith Marshall" <noreply@sourceforge.net>
Subject: [MinGW-cvs] [git push mingw-dist]Repository: mingw-dist
	branch,	master, updated. 16e57dd86a7b17a75acb085d83e3ed7f791d8c09
To: mingw-cvs@lists.sourceforge.net
Message-ID:
	<mailman.31368.1474454132.8283.mingw-cvs@lists.sourceforge.net>

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Repository: mingw-dist".

The branch, master has been updated
       via  16e57dd86a7b17a75acb085d83e3ed7f791d8c09 (commit)
      from  1e44fede9da5c88f2b66fbc55b54f428045382be (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sf.net/p/mingw/mingw-dist/ci/16e57dd86a7b17a75acb085d83e3ed7f791d8c09/

commit 16e57dd86a7b17a75acb085d83e3ed7f791d8c09
Author: Keith Marshall <keithmarshall@users.sourceforge.net>
Date:   Wed Sep 21 11:35:11 2016 +0100

    Publish mingwrt-3.22.2 and w32api-3.18.2 patch releases.

diff --git a/ChangeLog b/ChangeLog
index a0e8d5d..c79fe8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2016-09-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+	Publish mingwrt-3.22.2 and w32api-3.18.2 patch releases.
+
+	* mingw32/mingw32-runtime.xml (mingwrt-3.22.2-dev)
+	(mingwrt-3.22.2-dll, mingwrt-3.22.2-lic, mingwrt-3.22.2-man)
+	(w32api-3.18.2-dev): Add component package release records.
+	* common/issue.log mingw32/issue.log: Update accordingly.
+
 2016-09-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
 	Correct underspecified dependency in 2016-09-04 update.
diff --git a/common/issue.log b/common/issue.log
index 79c3a20..eb65de7 100644
--- a/common/issue.log
+++ b/common/issue.log
@@ -23,6 +23,6 @@
 # MinGW Project, accept liability for any damages, however caused,
 # arising from the use of this software.
 #
-  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016090500 package-list.xml
+  c6a9068e183254c0b930ac6e1a70fd81743dc212 2016092100 package-list.xml
 #
 # $RCSfile$: end of file
diff --git a/mingw32/issue.log b/mingw32/issue.log
index fa95c76..752075e 100644
--- a/mingw32/issue.log
+++ b/mingw32/issue.log
@@ -50,11 +50,11 @@
   cd33ad74b608bce33ea297801253e6efbafce27c 2012073100 mingw32-mingw-utils.xml
   8d3a7125499a85916b53efb4c897ac907e2490ab 2015082000 mingw32-mpc.xml
   8a11de23e7a89fd11436bdf162ef90712f30101b 2013102300 mingw32-mpfr.xml
-  56f4032058328cacfabe64fa46706d72c2fa931e 2016090500 mingw32-package-list.xml
+  56f4032058328cacfabe64fa46706d72c2fa931e 2016092100 mingw32-package-list.xml
   1f15439ee5f66ec22321c7aa853559b6f8f7172f 2015090800 mingw32-pexports.xml
   cdb2a4dbedfc9f2cdfc92340f6f9b12da061c0d9 2012073100 mingw32-popt.xml
   6032af6ff68aa4821cf51938781fd9e75f05de5f 2016082200 mingw32-pthreads-w32.xml
-  61adccdf6a1167fd46f6c066e776c661410d5eb2 2016073100 mingw32-runtime.xml
+  4efb82ed1631a627356269d78170ca29de3b9eaa 2016092100 mingw32-runtime.xml
   12acb32f80e49c893167cfae82e448dd766d49bb 2013070100 mingw32-wsl-candidate.xml
   247a02890f109a5fe4996fde4af9d576dca3cd1e 2012073100 mingw32-xz.xml
   c223ecd7389eb02948b54f8959d595cf608306a7 2013101200 mingw32-zlib.xml
diff --git a/mingw32/mingw32-runtime.xml b/mingw32/mingw32-runtime.xml
index da4e41e..2217a72 100644
--- a/mingw32/mingw32-runtime.xml
+++ b/mingw32/mingw32-runtime.xml
@@ -31,6 +31,7 @@
         <requires eq="mingwrt-%-mingw32-dll.tar" />
         <release tarname="mingwrt-3.22-mingw32-dev.tar.xz" />
         <release tarname="mingwrt-3.22.1-mingw32-dev.tar.xz" />
+        <release tarname="mingwrt-3.22.2-mingw32-dev.tar.xz" />
         <release tarname="mingwrt-3.21-mingw32-dev.tar.xz" />
         <release tarname="mingwrt-3.21.1-mingw32-dev.tar.xz" />
         <release tarname="mingwrt-3.20-2-mingw32-dev.tar.lzma">
@@ -54,6 +55,7 @@
       <component class="dll">
         <release tarname="mingwrt-3.22-mingw32-dll.tar.xz" />
         <release tarname="mingwrt-3.22.1-mingw32-dll.tar.xz" />
+        <release tarname="mingwrt-3.22.2-mingw32-dll.tar.xz" />
         <release tarname="mingwrt-3.21-mingw32-dll.tar.xz" />
         <release tarname="mingwrt-3.21.1-mingw32-dll.tar.xz" />
         <release tarname="mingwrt-3.20-2-mingw32-dll.tar.lzma" />
@@ -65,6 +67,7 @@
       <component class="lic">
         <release tarname="mingwrt-3.22-mingw32-lic.tar.xz" />
         <release tarname="mingwrt-3.22.1-mingw32-lic.tar.xz" />
+        <release tarname="mingwrt-3.22.2-mingw32-lic.tar.xz" />
         <release tarname="mingwrt-3.21-mingw32-lic.tar.xz" />
         <release tarname="mingwrt-3.21.1-mingw32-lic.tar.xz" />
         <release tarname="mingwrt-3.20-2-mingw32-lic.tar.lzma">
@@ -88,6 +91,7 @@
       <component class="man">
         <release tarname="mingwrt-3.22-mingw32-man.tar.xz" />
         <release tarname="mingwrt-3.22.1-mingw32-man.tar.xz" />
+        <release tarname="mingwrt-3.22.2-mingw32-man.tar.xz" />
         <release tarname="mingwrt-3.21-mingw32-man.tar.xz" />
         <release tarname="mingwrt-3.21.1-mingw32-man.tar.xz" />
         <release tarname="mingwrt-3.20-2-mingw32-man.tar.lzma">
@@ -128,6 +132,7 @@
       <licence tarname="w32api-%-mingw32-dev.tar.%" />
 
       <component class="dev">
+        <release tarname="w32api-3.18.2-mingw32-dev.tar.xz" />
         <release tarname="w32api-3.18.1-mingw32-dev.tar.xz" />
         <release tarname="w32api-3.18-mingw32-dev.tar.xz" />
         <release tarname="w32api-3.17-2-mingw32-dev.tar.lzma" />

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                   |    9 +++++++++
 common/issue.log            |    2 +-
 mingw32/issue.log           |    4 ++--
 mingw32/mingw32-runtime.xml |    5 +++++
 4 files changed, 17 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Repository: mingw-dist



------------------------------

------------------------------------------------------------------------------


------------------------------

_______________________________________________
MinGW-cvs mailing list
MinGW-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-cvs


End of MinGW-cvs Digest, Vol 89, Issue 1
****************************************


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic