|
From: Keith M. <no...@so...> - 2013-06-24 21:21:02
|
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-get".
The branch, master has been updated
via b4e3507baed9e13b5aab6a682251c922aab3b99f (commit)
from 360d7f996802046f38941c12e4158a87bdf7567e (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-get/ci/b4e3507baed9e13b5aab6a682251c922aab3b99f/
commit b4e3507baed9e13b5aab6a682251c922aab3b99f
Author: Keith Marshall <kei...@us...>
Date: Mon Jun 24 22:19:50 2013 +0100
Facilitate version synchronisation for mingw-get-setup.
diff --git a/ChangeLog b/ChangeLog
index 98d5889..1372d29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2013-06-24 Keith Marshall <kei...@us...>
+
+ Facilitate version synchronisation for mingw-get-setup.
+
+ * VERSION.m4: New file.
+ * configure.ac: Include it, and...
+ (AC_INIT): ...use it.
+
2013-06-21 Keith Marshall <kei...@us...>
Keep version strings clean when release class is unspecified.
diff --git a/VERSION.m4 b/VERSION.m4
new file mode 100644
index 0000000..822b420
--- /dev/null
+++ b/VERSION.m4
@@ -0,0 +1,31 @@
+# VERSION.m4 -*- autoconf -*- vim: filetype=config
+#
+# $Id$
+#
+# Written by Keith Marshall <kei...@us...>
+# Copyright (C) 2013, MinGW.org Project
+#
+#
+# Configuration script version specification for mingw-get
+#
+#
+# This is free software. Permission is granted to copy, modify and
+# redistribute this software, under the provisions of the GNU General
+# Public License, Version 3, (or, at your option, any later version),
+# as published by the Free Software Foundation; see the file COPYING
+# for licensing details.
+#
+# Note, in particular, that this software is provided "as is", in the
+# hope that it may prove useful, but WITHOUT WARRANTY OF ANY KIND; not
+# even an implied WARRANTY OF MERCHANTABILITY, nor of FITNESS FOR ANY
+# PARTICULAR PURPOSE. Under no circumstances will the author, or the
+# MinGW.org Project, accept liability for any damages, however caused,
+# arising from the use of this software.
+#
+ m4_define([VERSION_MAJOR], [0])
+ m4_define([VERSION_MINOR], [6])
+ m4_define([VERSION_PATCH], [0])
+
+ m4_define([__VERSION__], [VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH])
+
+# $RCSfile$: end of file
diff --git a/configure.ac b/configure.ac
index 2c3b2fc..d660076 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,8 @@
# MinGW.org Project, accept liability for any damages, however caused,
# arising from the use of this software.
#
- AC_INIT([mingw-get],[0.6.0],[http://mingw.org/Reporting_Bugs])
+ m4_include([VERSION.m4])
+ AC_INIT([mingw-get],__VERSION__,[http://mingw.org/Reporting_Bugs])
AC_SUBST([COPYRIGHT_HOLDER],["MinGW.org Project"])
AC_SUBST([YEARS_OF_ISSUE],["2009-2013"])
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
VERSION.m4 | 31 +++++++++++++++++++++++++++++++
configure.ac | 3 ++-
3 files changed, 41 insertions(+), 1 deletions(-)
create mode 100644 VERSION.m4
hooks/post-receive
--
Repository: mingw-get
|