commit automake for openSUSE:12.2:Update

2012-11-21 Thread h_root
Hello community,

here is the log from the commit of package automake for openSUSE:12.2:Update 
checked in at 2012-11-21 13:10:44

Comparing /work/SRC/openSUSE:12.2:Update/automake (Old)
 and  /work/SRC/openSUSE:12.2:Update/.automake.new (New)


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

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package='automake.1036' cicount='copy' /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit automake for openSUSE:12.2

2012-07-04 Thread h_root
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.0 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake-testsuite.changes
2012-07-04 13:50:51.0 +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.0 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake.changes  2012-07-04 
13:50:51.0 +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.0 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.0 +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.0 +0200
+++ /var/tmp/diff_new_pack.8baM8q/_new  2012-07-04 13:50:51.0 +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.0 +0200
+++ automake-1.12.1/m4/init.m4  2012-06-01 15:47:10.0 +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  

commit automake for openSUSE:12.2

2012-07-03 Thread h_root
Hello community,

here is the log from the commit of package automake for openSUSE:12.2 checked 
in at 2012-07-03 16:04:26

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-06-29 
11:20:10.0 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake-testsuite.changes
2012-07-03 16:04:28.0 +0200
@@ -2,15 +1,0 @@
-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.
-

automake.changes: same change

Old:

  automake-1.12.1.tar.xz

New:

  automake-1.12.tar.xz



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

automake.spec: same change
++ pre_checkin.sh ++
--- /var/tmp/diff_new_pack.zZWeb6/_old  2012-07-03 16:04:28.0 +0200
+++ /var/tmp/diff_new_pack.zZWeb6/_new  2012-07-03 16:04:28.0 +0200
@@ -2,6 +2,3 @@
 # 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



commit automake for openSUSE:12.2

2012-06-29 Thread h_root
Hello community,

here is the log from the commit of package automake for openSUSE:12.2 checked 
in at 2012-06-29 10:18:26

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-06-25 
15:15:40.0 +0200
+++ /work/SRC/openSUSE:12.2/.automake.new/automake-testsuite.changes
2012-06-29 11:20:10.0 +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.
+
+---
automake.changes: same change

Old:

  automake-1.12.tar.xz

New:

  automake-1.12.1.tar.xz



Other differences:
--
++ automake-testsuite.spec ++
--- /var/tmp/diff_new_pack.1gbrM3/_old  2012-06-29 11:20:10.0 +0200
+++ /var/tmp/diff_new_pack.1gbrM3/_new  2012-06-29 11:20:10.0 +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: same change
++ pre_checkin.sh ++
--- /var/tmp/diff_new_pack.1gbrM3/_old  2012-06-29 11:20:10.0 +0200
+++ /var/tmp/diff_new_pack.1gbrM3/_new  2012-06-29 11:20:10.0 +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