Accepting request 290705 from home:pluskalm:branches:devel:tools:building

- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies

- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies

- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies

OBS-URL: https://build.opensuse.org/request/show/290705
OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/autoconf?expand=0&rev=32
This commit is contained in:
Ismail Dönmez 2015-03-19 14:55:35 +00:00 committed by Git OBS Bridge
parent 3aa82a18e3
commit 18d629a55e
9 changed files with 2408 additions and 35 deletions

12
autoconf-2.69.tar.gz.sig Normal file
View File

@ -0,0 +1,12 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Public key at http://people.redhat.com/eblake/eblake.gpg
iQEcBAABCAAGBQJPl2ywAAoJEKeha0olJ0Nq3Q4IAJTtjgjMtPd2PkfaJVdwTMzv
OkCk5TTb+o1SiFFIAjv8ojL74sEFjCGzJn2xr5zauQZ/K5UP8uoCNUmMytbafA+h
KXmzZ0eZzItb+SljmNhzz0/2id/RM/lhbei7YJPZ4NdAM++aEZHVteDHqbEbCiD3
lOE4RtjOp9C0QKXY04Y6a31CLVsZsPQzJctyKQo7H81iX7JoKfpWhRgYJYwzMYBX
YJ4BeBaP6KHV2qTK9X4Cf8cIpxdJHzD744rV/dqo/b6RnG5H2ynYvuSr4VwtkS7I
z+yEbEbmjvHS3cB8AqnDnnrxLduI1Bp3SgwmpR28VadDp+hk+6HU4F/UpYOcfZk=
=FUb/
-----END PGP SIGNATURE-----

View File

@ -1,5 +1,12 @@
-------------------------------------------------------------------
Wed Mar 20 13:25:38 UTC 2013 - mmeister@suse.com
Fri Mar 13 18:15:12 UTC 2015 - mpluskal@suse.com
- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies
-------------------------------------------------------------------
Wed Mar 20 13:08:10 UTC 2013 - mmeister@suse.com
- Added url as source.
Please see http://en.opensuse.org/SourceUrls

View File

@ -1,7 +1,7 @@
#
# spec file for package autoconf-el
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed

View File

@ -1,5 +1,12 @@
-------------------------------------------------------------------
Wed Mar 20 13:26:09 UTC 2013 - mmeister@suse.com
Fri Mar 13 18:15:12 UTC 2015 - mpluskal@suse.com
- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies
-------------------------------------------------------------------
Wed Mar 20 13:08:10 UTC 2013 - mmeister@suse.com
- Added url as source.
Please see http://en.opensuse.org/SourceUrls

1170
autoconf-testsuite.keyring Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
#
# spec file for package autoconf-testsuite
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,19 +17,22 @@
Name: autoconf-testsuite
BuildRequires: help2man
BuildRequires: xz
Url: http://www.gnu.org/software/autoconf
Requires: info
Requires: m4 >= 1.4.6
Requires: perl >= 5.6
Version: 2.69
Release: 0
Summary: A GNU Tool for Automatically Configuring Source Code
License: GPL-3.0+
Group: Development/Tools/Building
Source: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz
Url: http://www.gnu.org/software/autoconf
Source0: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz
Source1: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz.sig
Source2: %{name}.keyring
Patch0: autoreconf-ltdl.diff
BuildRequires: help2man
Requires: info
Requires: m4 >= 1.4.6
Requires: perl >= 5.6
Requires(post): %{install_info_prereq}
Requires(preun): %{install_info_prereq}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@ -55,17 +58,15 @@ only required for the generation of the scripts, not their use.
make %{?_smp_mflags}
%if "%{name}" == "autoconf-testsuite"
%check
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
make check
make %{?_smp_mflags} check
%install
%else
%install
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}}
rm -f $RPM_BUILD_ROOT%{_prefix}/share/emacs/site-lisp/*.el*
rm -f %{buildroot}%{_datadir}/emacs/site-lisp/*.el*
# info's dir file is not auto ignored on some systems
rm -rf %{buildroot}%{_infodir}/dir
%endif
@ -73,16 +74,15 @@ rm -rf %{buildroot}%{_infodir}/dir
%post
%install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%postun
%preun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%if "%{name}" == "autoconf"
%files
%defattr(-,root,root)
%doc AUTHORS COPYING NEWS README TODO
%{_prefix}/bin/*
%{_prefix}/share/autoconf
%{_bindir}/*
%{_datadir}/autoconf
%doc %{_infodir}/*.gz
%doc %{_mandir}/man1/*.gz
%endif

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Mar 13 18:15:12 UTC 2015 - mpluskal@suse.com
- Cleanup spec file with spec-cleaner
- Add gpg signature
- Correct info file dependencies
-------------------------------------------------------------------
Wed Mar 20 13:08:10 UTC 2013 - mmeister@suse.com

1170
autoconf.keyring Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
#
# spec file for package autoconf
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,19 +17,22 @@
Name: autoconf
BuildRequires: help2man
BuildRequires: xz
Url: http://www.gnu.org/software/autoconf
Requires: info
Requires: m4 >= 1.4.6
Requires: perl >= 5.6
Version: 2.69
Release: 0
Summary: A GNU Tool for Automatically Configuring Source Code
License: GPL-3.0+
Group: Development/Tools/Building
Source: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz
Url: http://www.gnu.org/software/autoconf
Source0: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz
Source1: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.gz.sig
Source2: %{name}.keyring
Patch0: autoreconf-ltdl.diff
BuildRequires: help2man
Requires: info
Requires: m4 >= 1.4.6
Requires: perl >= 5.6
Requires(post): %{install_info_prereq}
Requires(preun): %{install_info_prereq}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@ -55,17 +58,15 @@ only required for the generation of the scripts, not their use.
make %{?_smp_mflags}
%if "%{name}" == "autoconf-testsuite"
%check
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
make check
make %{?_smp_mflags} check
%install
%else
%install
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}}
rm -f $RPM_BUILD_ROOT%{_prefix}/share/emacs/site-lisp/*.el*
rm -f %{buildroot}%{_datadir}/emacs/site-lisp/*.el*
# info's dir file is not auto ignored on some systems
rm -rf %{buildroot}%{_infodir}/dir
%endif
@ -73,16 +74,15 @@ rm -rf %{buildroot}%{_infodir}/dir
%post
%install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%postun
%preun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%if "%{name}" == "autoconf"
%files
%defattr(-,root,root)
%doc AUTHORS COPYING NEWS README TODO
%{_prefix}/bin/*
%{_prefix}/share/autoconf
%{_bindir}/*
%{_datadir}/autoconf
%doc %{_infodir}/*.gz
%doc %{_mandir}/man1/*.gz
%endif