Accepting request 97374 from devel:tools:building
add autoconf to buildrequires (forwarded request 97318 from coolo) OBS-URL: https://build.opensuse.org/request/show/97374 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/automake?expand=0&rev=24
This commit is contained in:
parent
357c405960
commit
f9f4942a7b
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 18 12:39:06 UTC 2011 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- correct license and style (prepare_spec)
|
||||||
|
- minor build fixes, avoid deprecated macros to be more portable
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 17 13:44:54 UTC 2011 - jengelh@medozas.de
|
||||||
|
|
||||||
|
- Remove redundant tags/sections from specfile
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package automake-testsuite (Version 1.11.1)
|
# spec file for package automake-testsuite
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,19 +15,18 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: automake-testsuite
|
Name: automake-testsuite
|
||||||
BuildRequires: bison help2man
|
BuildRequires: autoconf
|
||||||
License: GPLv2+
|
BuildRequires: bison
|
||||||
Group: Development/Tools/Building
|
BuildRequires: help2man
|
||||||
AutoReqProv: on
|
Requires: info
|
||||||
PreReq: %{install_info_prereq}
|
|
||||||
Requires: autoconf >= 2.62
|
Requires: autoconf >= 2.62
|
||||||
Version: 1.11.1
|
Version: 1.11.1
|
||||||
Release: 6
|
Release: 0
|
||||||
Summary: A Program for Automatically Generating GNU-Style Makefile.in Files
|
Summary: A Program for Automatically Generating GNU-Style Makefile.in Files
|
||||||
|
License: GPL-2.0+
|
||||||
|
Group: Development/Tools/Building
|
||||||
Url: http://www.gnu.org/software/automake
|
Url: http://www.gnu.org/software/automake
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source: automake-%{version}.tar.bz2
|
Source: automake-%{version}.tar.bz2
|
||||||
@ -42,15 +41,6 @@ from "Makefile.am" files. "Makefile.am" is a series of "make" macro
|
|||||||
definitions (with rules occasionally thrown in). The generated
|
definitions (with rules occasionally thrown in). The generated
|
||||||
"Makefile.in" files are compatible with the GNU Makefile standards.
|
"Makefile.in" files are compatible with the GNU Makefile standards.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
David Mackenzie
|
|
||||||
Tom Tromey <tromey@cygnus.com>
|
|
||||||
Alexandre Oliva
|
|
||||||
Alexandre Duret-Lutz <adl@gnu.org>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n automake-%{version}
|
%setup -q -n automake-%{version}
|
||||||
%patch1
|
%patch1
|
||||||
@ -58,7 +48,8 @@ Authors:
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --docdir=%{_docdir}/%{name}
|
%configure --docdir=%{_docdir}/%{name}
|
||||||
make %{?_smp_mflags};
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%if "%{name}" == "automake-testsuite"
|
%if "%{name}" == "automake-testsuite"
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -71,7 +62,7 @@ make check VERBOSE=1
|
|||||||
%else
|
%else
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
make install DESTDIR=%{buildroot}
|
||||||
mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal
|
mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal
|
||||||
echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist
|
echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist
|
||||||
ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist
|
ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist
|
||||||
@ -79,6 +70,8 @@ mkdir -p %{buildroot}%{_mandir}/man1
|
|||||||
perllibdir=lib help2man -S FSF ./aclocal > %{buildroot}%{_mandir}/man1/aclocal.1
|
perllibdir=lib help2man -S FSF ./aclocal > %{buildroot}%{_mandir}/man1/aclocal.1
|
||||||
perllibdir=lib help2man -S FSF ./automake > %{buildroot}%{_mandir}/man1/automake.1
|
perllibdir=lib help2man -S FSF ./automake > %{buildroot}%{_mandir}/man1/automake.1
|
||||||
install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir}/%{name}
|
install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir}/%{name}
|
||||||
|
# info's dir file is not auto ignored on some systems
|
||||||
|
rm -rf %{buildroot}%{_infodir}/dir
|
||||||
#name == automake
|
#name == automake
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -88,8 +81,6 @@ install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir
|
|||||||
%postun
|
%postun
|
||||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
%if "%{name}" == "automake"
|
%if "%{name}" == "automake"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 20 19:58:14 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
- add autoconf as buildrequire to avoid implicit dependency
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 18 12:39:06 UTC 2011 - sweet_f_a@gmx.de
|
||||||
|
|
||||||
|
- correct license and style (prepare_spec)
|
||||||
|
- minor build fixes, avoid deprecated macros to be more portable
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 17 13:44:54 UTC 2011 - jengelh@medozas.de
|
||||||
|
|
||||||
|
- Remove redundant tags/sections from specfile
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package automake (Version 1.11.1)
|
# spec file for package automake
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,19 +15,18 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: automake
|
Name: automake
|
||||||
BuildRequires: bison help2man
|
BuildRequires: autoconf
|
||||||
License: GPLv2+
|
BuildRequires: bison
|
||||||
Group: Development/Tools/Building
|
BuildRequires: help2man
|
||||||
AutoReqProv: on
|
Requires: info
|
||||||
PreReq: %{install_info_prereq}
|
|
||||||
Requires: autoconf >= 2.62
|
Requires: autoconf >= 2.62
|
||||||
Version: 1.11.1
|
Version: 1.11.1
|
||||||
Release: 6
|
Release: 0
|
||||||
Summary: A Program for Automatically Generating GNU-Style Makefile.in Files
|
Summary: A Program for Automatically Generating GNU-Style Makefile.in Files
|
||||||
|
License: GPL-2.0+
|
||||||
|
Group: Development/Tools/Building
|
||||||
Url: http://www.gnu.org/software/automake
|
Url: http://www.gnu.org/software/automake
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source: automake-%{version}.tar.bz2
|
Source: automake-%{version}.tar.bz2
|
||||||
@ -42,15 +41,6 @@ from "Makefile.am" files. "Makefile.am" is a series of "make" macro
|
|||||||
definitions (with rules occasionally thrown in). The generated
|
definitions (with rules occasionally thrown in). The generated
|
||||||
"Makefile.in" files are compatible with the GNU Makefile standards.
|
"Makefile.in" files are compatible with the GNU Makefile standards.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
David Mackenzie
|
|
||||||
Tom Tromey <tromey@cygnus.com>
|
|
||||||
Alexandre Oliva
|
|
||||||
Alexandre Duret-Lutz <adl@gnu.org>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n automake-%{version}
|
%setup -q -n automake-%{version}
|
||||||
%patch1
|
%patch1
|
||||||
@ -58,7 +48,8 @@ Authors:
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --docdir=%{_docdir}/%{name}
|
%configure --docdir=%{_docdir}/%{name}
|
||||||
make %{?_smp_mflags};
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%if "%{name}" == "automake-testsuite"
|
%if "%{name}" == "automake-testsuite"
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -71,7 +62,7 @@ make check VERBOSE=1
|
|||||||
%else
|
%else
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
make install DESTDIR=%{buildroot}
|
||||||
mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal
|
mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal
|
||||||
echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist
|
echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist
|
||||||
ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist
|
ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist
|
||||||
@ -79,6 +70,8 @@ mkdir -p %{buildroot}%{_mandir}/man1
|
|||||||
perllibdir=lib help2man -S FSF ./aclocal > %{buildroot}%{_mandir}/man1/aclocal.1
|
perllibdir=lib help2man -S FSF ./aclocal > %{buildroot}%{_mandir}/man1/aclocal.1
|
||||||
perllibdir=lib help2man -S FSF ./automake > %{buildroot}%{_mandir}/man1/automake.1
|
perllibdir=lib help2man -S FSF ./automake > %{buildroot}%{_mandir}/man1/automake.1
|
||||||
install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir}/%{name}
|
install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir}/%{name}
|
||||||
|
# info's dir file is not auto ignored on some systems
|
||||||
|
rm -rf %{buildroot}%{_infodir}/dir
|
||||||
#name == automake
|
#name == automake
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -88,8 +81,6 @@ install -m644 AUTHORS COPYING ChangeLog NEWS README THANKS %{buildroot}%{_docdir
|
|||||||
%postun
|
%postun
|
||||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
%if "%{name}" == "automake"
|
%if "%{name}" == "automake"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
Loading…
Reference in New Issue
Block a user