Hello community,

here is the log from the commit of package automake for openSUSE:12.2 checked 
in at 2012-07-04 13:50:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.2/automake (Old)
 and      /work/SRC/openSUSE:12.2/.automake.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "automake", Maintainer is "p...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:12.2/automake/automake-testsuite.changes 2012-07-03 
16:04:28.000000000 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake-testsuite.changes    
2012-07-04 13:50:51.000000000 +0200
@@ -1,0 +2,15 @@
+Wed Jun 27 15:46:00 UTC 2012 - tom.m...@googlemail.com
+
+- Update to 1.12.1:
+  Bugs fixed in 1.12.1:
+  - Several weaknesses in Automake's own build system and test suite
+    have been fixed.
+  - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
+
+
+ - Starting from either the next minor version (1.12.2) or the next major
+   version (1.13), Automake will start warning if 'configure.in' is used
+   instead of 'configure.ac' as the Autoconf input.  Future versions of
+   Automake will drop support for 'configure.in' altogether.
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:12.2/automake/automake.changes   2012-07-03 
16:04:28.000000000 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake.changes      2012-07-04 
13:50:51.000000000 +0200
@@ -1,0 +2,20 @@
+Wed Jul  4 07:21:17 UTC 2012 - co...@suse.com
+
+- make sure we still define $(mkdir_p) for the time being
+
+-------------------------------------------------------------------
+Wed Jun 27 15:46:00 UTC 2012 - tom.m...@googlemail.com
+
+- Update to 1.12.1:
+  Bugs fixed in 1.12.1:
+  - Several weaknesses in Automake's own build system and test suite
+    have been fixed.
+  - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
+
+
+ - Starting from either the next minor version (1.12.2) or the next major
+   version (1.13), Automake will start warning if 'configure.in' is used
+   instead of 'configure.ac' as the Autoconf input.  Future versions of
+   Automake will drop support for 'configure.in' altogether.
+
+-------------------------------------------------------------------

Old:
----
  automake-1.12.tar.xz

New:
----
  automake-1.12.1.tar.xz
  automake-add-mkdir_p-temporarly.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ automake-testsuite.spec ++++++
--- /var/tmp/diff_new_pack.8baM8q/_old  2012-07-04 13:50:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.000000000 +0200
@@ -31,7 +31,7 @@
 %endif
 Requires:       autoconf >= 2.62
 Requires:       info
-Version:        1.12
+Version:        1.12.1
 Release:        0
 Summary:        A Program for Automatically Generating GNU-Style Makefile.in 
Files
 License:        GPL-2.0+

++++++ automake.spec ++++++
--- /var/tmp/diff_new_pack.8baM8q/_old  2012-07-04 13:50:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           automake
-BuildRequires:  autoconf
+BuildRequires:  autoconf >= 2.69
 BuildRequires:  bison
 BuildRequires:  gcc-c++
 BuildRequires:  gcc-fortran
@@ -29,9 +29,9 @@
 BuildRequires:  flex
 Requires:       flex
 %endif
-Requires:       autoconf >= 2.62
+Requires:       autoconf >= 2.69
 Requires:       info
-Version:        1.12
+Version:        1.12.1
 Release:        0
 Summary:        A Program for Automatically Generating GNU-Style Makefile.in 
Files
 License:        GPL-2.0+
@@ -42,6 +42,10 @@
 Source1:        automake-rpmlintrc
 Patch1:         automake-SuSE.patch
 Patch3:         automake-require_file.patch
+# this patch makes sure packages that do not call AM_PROG_MKDIR, but use 
$(mkdir_p) work
+# this patch should be removed after 12.2 is done, packages need to be fixed 
to use $(MKDIR_P)
+# or avoid autoreconf at all
+Patch4:         automake-add-mkdir_p-temporarly.patch
 BuildArch:      noarch
 
 %description
@@ -54,8 +58,10 @@
 %setup -q -n automake-%{version}
 %patch1
 %patch3
+%patch4 -p1
 
 %build
+sh bootstrap.sh
 %configure --docdir=%{_docdir}/%{name}
 make %{?_smp_mflags}
 

++++++ automake-add-mkdir_p-temporarly.patch ++++++
Index: automake-1.12.1/m4/init.m4
===================================================================
--- automake-1.12.1.orig/m4/init.m4     2012-06-01 15:47:10.000000000 +0200
+++ automake-1.12.1/m4/init.m4  2012-06-01 15:47:10.000000000 +0200
@@ -82,6 +82,7 @@ AM_MISSING_PROG([MAKEINFO], [makeinfo])
 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
 # We need awk for the "check" target.  The system "awk" is bad on
 # some platforms.
 AC_REQUIRE([AC_PROG_AWK])dnl
++++++ automake-require_file.patch ++++++
--- /var/tmp/diff_new_pack.8baM8q/_old  2012-07-04 13:50:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.000000000 +0200
@@ -1,8 +1,8 @@
 Index: automake.in
 ===================================================================
---- automake.in.orig   2012-04-21 16:38:05.000000000 +0200
-+++ automake.in        2012-04-26 16:31:55.925021393 +0200
-@@ -7709,12 +7709,14 @@ sub required_file_check_or_copy ($$$)
+--- automake.in.orig   2012-06-01 15:47:09.000000000 +0200
++++ automake.in        2012-07-04 09:17:39.816973055 +0200
+@@ -7751,12 +7751,14 @@ sub required_file_check_or_copy ($$$)
    my $fullfile = "$dir/$file";
    my $found_it = 0;
    my $dangling_sym = 0;

++++++ pre_checkin.sh ++++++
--- /var/tmp/diff_new_pack.8baM8q/_old  2012-07-04 13:50:51.000000000 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.000000000 +0200
@@ -2,3 +2,6 @@
 # This script is called automatically during autobuild checkin.
 sed -e "s,^\(Name:.*automake\),\1-testsuite," automake.spec > 
automake-testsuite.spec
 cp automake.changes automake-testsuite.changes
+
+osc service localrun format_spec_file
+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to