SHA256
1
0
forked from pool/autoconf

Accepting request 291603 from devel:tools:building

1

OBS-URL: https://build.opensuse.org/request/show/291603
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/autoconf?expand=0&rev=33
This commit is contained in:
Dominique Leuenberger 2015-03-23 11:12:18 +00:00 committed by Git OBS Bridge
commit c469c7eced
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. - Added url as source.
Please see http://en.opensuse.org/SourceUrls Please see http://en.opensuse.org/SourceUrls

View File

@ -1,7 +1,7 @@
# #
# spec file for package autoconf-el # 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 # 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

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. - Added url as source.
Please see http://en.opensuse.org/SourceUrls 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 # 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 # 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
@ -17,19 +17,22 @@
Name: autoconf-testsuite 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 Version: 2.69
Release: 0 Release: 0
Summary: A GNU Tool for Automatically Configuring Source Code Summary: A GNU Tool for Automatically Configuring Source Code
License: GPL-3.0+ License: GPL-3.0+
Group: Development/Tools/Building 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 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 BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch BuildArch: noarch
@ -55,17 +58,15 @@ only required for the generation of the scripts, not their use.
make %{?_smp_mflags} make %{?_smp_mflags}
%if "%{name}" == "autoconf-testsuite" %if "%{name}" == "autoconf-testsuite"
%check %check
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
make check make %{?_smp_mflags} check
%install %install
%else %else
%install %install
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}} %{?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 # info's dir file is not auto ignored on some systems
rm -rf %{buildroot}%{_infodir}/dir rm -rf %{buildroot}%{_infodir}/dir
%endif %endif
@ -73,16 +74,15 @@ rm -rf %{buildroot}%{_infodir}/dir
%post %post
%install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz %install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%postun %preun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%if "%{name}" == "autoconf" %if "%{name}" == "autoconf"
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc AUTHORS COPYING NEWS README TODO %doc AUTHORS COPYING NEWS README TODO
%{_prefix}/bin/* %{_bindir}/*
%{_prefix}/share/autoconf %{_datadir}/autoconf
%doc %{_infodir}/*.gz %doc %{_infodir}/*.gz
%doc %{_mandir}/man1/*.gz %doc %{_mandir}/man1/*.gz
%endif %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 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 # 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 # 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
@ -17,19 +17,22 @@
Name: autoconf 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 Version: 2.69
Release: 0 Release: 0
Summary: A GNU Tool for Automatically Configuring Source Code Summary: A GNU Tool for Automatically Configuring Source Code
License: GPL-3.0+ License: GPL-3.0+
Group: Development/Tools/Building 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 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 BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch BuildArch: noarch
@ -55,17 +58,15 @@ only required for the generation of the scripts, not their use.
make %{?_smp_mflags} make %{?_smp_mflags}
%if "%{name}" == "autoconf-testsuite" %if "%{name}" == "autoconf-testsuite"
%check %check
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
make check make %{?_smp_mflags} check
%install %install
%else %else
%install %install
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}} %{?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 # info's dir file is not auto ignored on some systems
rm -rf %{buildroot}%{_infodir}/dir rm -rf %{buildroot}%{_infodir}/dir
%endif %endif
@ -73,16 +74,15 @@ rm -rf %{buildroot}%{_infodir}/dir
%post %post
%install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz %install_info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%postun %preun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz
%if "%{name}" == "autoconf" %if "%{name}" == "autoconf"
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc AUTHORS COPYING NEWS README TODO %doc AUTHORS COPYING NEWS README TODO
%{_prefix}/bin/* %{_bindir}/*
%{_prefix}/share/autoconf %{_datadir}/autoconf
%doc %{_infodir}/*.gz %doc %{_infodir}/*.gz
%doc %{_mandir}/man1/*.gz %doc %{_mandir}/man1/*.gz
%endif %endif