Compare commits
No commits in common. "imports/c9/autoconf-2.69-39.el9" and "c8s" have entirely different histories.
imports/c9
...
c8s
@ -1 +0,0 @@
|
|||||||
e891c3193029775e83e0534ac0ee0c4c711f6d23 SOURCES/autoconf-2.69.tar.xz
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/autoconf-2.69.tar.xz
|
SOURCES/autoconf-2.69.tar.xz
|
||||||
|
/autoconf-2.69.tar.xz
|
||||||
|
@ -1,107 +0,0 @@
|
|||||||
From a197431414088a417b407b9b20583b2e8f7363bd Mon Sep 17 00:00:00 2001
|
|
||||||
From: Eric Blake <eblake@redhat.com>
|
|
||||||
Date: Thu, 12 Sep 2013 15:11:29 -0600
|
|
||||||
Subject: [PATCH] AC_INIT: add --runstatedir option to configure
|
|
||||||
|
|
||||||
http://lwn.net/Articles/436012/ documents that many distros
|
|
||||||
are now preferring to use /run rather than /var/run for
|
|
||||||
storage of pid files and other per-process temporary files
|
|
||||||
that must not be cleaned out during arbitrary TMPDIR sweeps.
|
|
||||||
As such, the GNU Coding Standards were recently changed to
|
|
||||||
recommend a new configure option to make it easy to choose
|
|
||||||
this directory at configure time. This patch adds support
|
|
||||||
for the option to all configure scripts built by autoconf.
|
|
||||||
|
|
||||||
* general.m4 (_AC_INIT_PARSE_ARGS): Add new directory option.
|
|
||||||
(_AC_INIT_HELP): Document it.
|
|
||||||
* doc/autoconf.texi (Installation Directory Variables): Document
|
|
||||||
new option.
|
|
||||||
(Site Defaults): Mention typical use within a distro.
|
|
||||||
* NEWS: Mention the addition.
|
|
||||||
|
|
||||||
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
||||||
---
|
|
||||||
NEWS | 5 +++++
|
|
||||||
doc/autoconf.texi | 14 +++++++++++++-
|
|
||||||
lib/autoconf/general.m4 | 13 ++++++++++++-
|
|
||||||
3 files changed, 30 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
|
|
||||||
index 26e7b17..4932067 100644
|
|
||||||
--- a/doc/autoconf.texi
|
|
||||||
+++ b/doc/autoconf.texi
|
|
||||||
@@ -2826,7 +2826,18 @@ usually has a subdirectory per locale.
|
|
||||||
|
|
||||||
@defvar localstatedir
|
|
||||||
@ovindex localstatedir
|
|
||||||
-The directory for installing modifiable single-machine data.
|
|
||||||
+The directory for installing modifiable single-machine data. Content in
|
|
||||||
+this directory typically survives a reboot.
|
|
||||||
+@end defvar
|
|
||||||
+
|
|
||||||
+@defvar runstatedir
|
|
||||||
+@ovindex runstatedir
|
|
||||||
+The directory for installing temporary modifiable single-machine data.
|
|
||||||
+Content in this directory survives as long as the process is running
|
|
||||||
+(such as pid files), as contrasted with @file{/tmp} that may be
|
|
||||||
+periodically cleaned. Conversely, this directory is typically cleaned
|
|
||||||
+on a reboot. By default, this is a subdirectory of
|
|
||||||
+@code{localstatedir}.
|
|
||||||
@end defvar
|
|
||||||
|
|
||||||
@defvar mandir
|
|
||||||
@@ -22606,6 +22617,7 @@ test "$prefix" = NONE && prefix=/usr/share/local/gnu
|
|
||||||
test "$exec_prefix" = NONE && exec_prefix=/usr/local/gnu
|
|
||||||
test "$sharedstatedir" = '$@{prefix@}/com' && sharedstatedir=/var
|
|
||||||
test "$localstatedir" = '$@{prefix@}/var' && localstatedir=/var
|
|
||||||
+test "$runstatedir" = '$@{localstatedir@}/run' && runstatedir=/run
|
|
||||||
|
|
||||||
# Give Autoconf 2.x generated configure scripts a shared default
|
|
||||||
# cache file for feature test results, architecture-specific.
|
|
||||||
diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4
|
|
||||||
index 70b0168..1ce9922 100644
|
|
||||||
--- a/lib/autoconf/general.m4
|
|
||||||
+++ b/lib/autoconf/general.m4
|
|
||||||
@@ -586,6 +586,7 @@ AC_SUBST([datadir], ['${datarootdir}'])dnl
|
|
||||||
AC_SUBST([sysconfdir], ['${prefix}/etc'])dnl
|
|
||||||
AC_SUBST([sharedstatedir], ['${prefix}/com'])dnl
|
|
||||||
AC_SUBST([localstatedir], ['${prefix}/var'])dnl
|
|
||||||
+AC_SUBST([runstatedir], ['${localstatedir}/run'])dnl
|
|
||||||
AC_SUBST([includedir], ['${prefix}/include'])dnl
|
|
||||||
AC_SUBST([oldincludedir], ['/usr/include'])dnl
|
|
||||||
AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
|
||||||
@@ -812,6 +813,15 @@ do
|
|
||||||
| -silent | --silent | --silen | --sile | --sil)
|
|
||||||
silent=yes ;;
|
|
||||||
|
|
||||||
+ -runstatedir | --runstatedir | --runstatedi | --runstated \
|
|
||||||
+ | --runstate | --runstat | --runsta | --runst | --runs \
|
|
||||||
+ | --run | --ru | --r)
|
|
||||||
+ ac_prev=runstatedir ;;
|
|
||||||
+ -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
|
|
||||||
+ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
|
|
||||||
+ | --run=* | --ru=* | --r=*)
|
|
||||||
+ runstatedir=$ac_optarg ;;
|
|
||||||
+
|
|
||||||
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
|
||||||
ac_prev=sbindir ;;
|
|
||||||
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
|
||||||
@@ -921,7 +931,7 @@ fi
|
|
||||||
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
|
||||||
datadir sysconfdir sharedstatedir localstatedir includedir \
|
|
||||||
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
|
||||||
- libdir localedir mandir
|
|
||||||
+ libdir localedir mandir runstatedir
|
|
||||||
do
|
|
||||||
eval ac_val=\$$ac_var
|
|
||||||
# Remove trailing slashes.
|
|
||||||
@@ -1058,6 +1068,7 @@ Fine tuning of the installation directories:
|
|
||||||
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
|
||||||
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
|
||||||
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
|
||||||
+ --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
|
|
||||||
--libdir=DIR object code libraries [EPREFIX/lib]
|
|
||||||
--includedir=DIR C header files [PREFIX/include]
|
|
||||||
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
|
||||||
--
|
|
||||||
1.7.2.5
|
|
@ -1,64 +0,0 @@
|
|||||||
From 4c1f7a361f4fd6180b7b46b950e3bfe389b5b831 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ondrej Dubaj <odubaj@redhat.com>
|
|
||||||
Date: Wed, 28 Aug 2019 07:39:50 +0200
|
|
||||||
Subject: [PATCH] Port tests to Bash 5
|
|
||||||
|
|
||||||
* tests/local.at (AT_CHECK_ENV, AT_CONFIG_CMP):
|
|
||||||
Add BASH_ARGC, BASH_ARGV to list of variables to be ignored when
|
|
||||||
comparing variable space dumps.
|
|
||||||
(AT_CONFIG_CMP): Also ignore LINENO.
|
|
||||||
* tests/m4sh.at: Also unset LINENO in 'reference' and 'test/test-1'.
|
|
||||||
|
|
||||||
---
|
|
||||||
tests/local.at | 5 ++++-
|
|
||||||
tests/m4sh.at | 4 ++--
|
|
||||||
2 files changed, 6 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/tests/local.at b/tests/local.at
|
|
||||||
index 40b7318..f3ad2b5 100644
|
|
||||||
--- a/tests/local.at
|
|
||||||
+++ b/tests/local.at
|
|
||||||
@@ -324,7 +324,7 @@ if test -f state-env.before && test -f state-env.after; then
|
|
||||||
[AWK|LEX|LEXLIB|LEX_OUTPUT_ROOT|LN_S|M4|MKDIR_P|RANLIB|SET_MAKE|YACC],
|
|
||||||
[GREP|[EF]GREP|SED],
|
|
||||||
[[_@]|.[*#?$].],
|
|
||||||
- [argv|ARGC|LINENO|OLDPWD|PIPESTATUS|RANDOM|SECONDS]))=' \
|
|
||||||
+ [argv|ARGC|LINENO|BASH_ARGC|BASH_ARGV|OLDPWD|PIPESTATUS|RANDOM|SECONDS]))=' \
|
|
||||||
$act_file ||
|
|
||||||
test $? -eq 1 || echo failed >&2
|
|
||||||
) 2>stderr-$act_file |
|
|
||||||
@@ -381,6 +381,9 @@ do
|
|
||||||
/'\'\\\$\''=/ d
|
|
||||||
/^argv=/ d
|
|
||||||
/^ARGC=/ d
|
|
||||||
+ /^BASH_ARGC=/ d
|
|
||||||
+ /^BASH_ARGV=/ d
|
|
||||||
+ /^LINENO=/ d
|
|
||||||
' $act_file >at_config_vars-$act_file
|
|
||||||
done
|
|
||||||
AT_CMP([at_config_vars-$1], [at_config_vars-$2])[]dnl
|
|
||||||
diff --git a/tests/m4sh.at b/tests/m4sh.at
|
|
||||||
index 4e4da5d..80684ca 100644
|
|
||||||
--- a/tests/m4sh.at
|
|
||||||
+++ b/tests/m4sh.at
|
|
||||||
@@ -254,7 +254,7 @@ AT_CHECK([autom4te -l m4sh $1.as -o $1])
|
|
||||||
# `_oline_', once processed and ran, produces our reference.
|
|
||||||
# We check that we find ourselves by looking at a string which is
|
|
||||||
# available only in the original script: `_oline_'.
|
|
||||||
-AT_DATA_LINENO([reference], [false], [__OLINE__], [_oline__])
|
|
||||||
+AT_DATA_LINENO([reference], [true], [__OLINE__], [_oline__])
|
|
||||||
AT_CHECK([./reference], 0, [stdout])
|
|
||||||
|
|
||||||
# The reference:
|
|
||||||
@@ -264,7 +264,7 @@ mv stdout expout
|
|
||||||
# Be sure to be out of the PATH.
|
|
||||||
AT_CHECK([mkdir test || exit 77])
|
|
||||||
|
|
||||||
-AT_DATA_LINENO([test/test-1], [false], [__LINENO__], [LINENO])
|
|
||||||
+AT_DATA_LINENO([test/test-1], [true], [__LINENO__], [LINENO])
|
|
||||||
AT_CHECK([./test/test-1], 0, [expout])
|
|
||||||
AT_CHECK([(PATH=test$PATH_SEPARATOR$PATH; export PATH; exec test-1)],
|
|
||||||
0, [expout])
|
|
||||||
--
|
|
||||||
2.19.1
|
|
||||||
|
|
@ -6,19 +6,16 @@
|
|||||||
Summary: A GNU tool for automatically configuring source code
|
Summary: A GNU tool for automatically configuring source code
|
||||||
Name: autoconf
|
Name: autoconf
|
||||||
Version: 2.69
|
Version: 2.69
|
||||||
Release: 39%{?dist}
|
Release: 29%{?dist}.1
|
||||||
License: GPLv2+ and GFDL
|
License: GPLv2+ and GFDL
|
||||||
Source0: https://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.xz
|
Source0: http://ftpmirror.gnu.org/autoconf/autoconf-%{version}.tar.xz
|
||||||
Source1: config.site
|
Source1: config.site
|
||||||
Source2: autoconf-init.el
|
Source2: autoconf-init.el
|
||||||
URL: https://www.gnu.org/software/autoconf/
|
URL: http://www.gnu.org/software/autoconf/
|
||||||
|
|
||||||
Patch1: autoconf-2.69-perl-5.22-autoscan.patch
|
Patch1: autoconf-2.69-perl-5.22-autoscan.patch
|
||||||
Patch2: autoconf-2.69-bash-5-LINENO.patch
|
# Backport: see RHEL-40719
|
||||||
Patch3: autoconf-2.69-backport-runstatedir-option.patch
|
Patch2: 0001-Port-AC_F77_LIBRARY_LDFLAGS-to-oneAPI-HPC-Toolkit.patch
|
||||||
|
|
||||||
# Backport: see RHEL-40739
|
|
||||||
Patch4: 0001-Port-AC_F77_LIBRARY_LDFLAGS-to-oneAPI-HPC-Toolkit.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
@ -27,7 +24,6 @@ BuildArch: noarch
|
|||||||
%bcond_without check
|
%bcond_without check
|
||||||
|
|
||||||
# m4 >= 1.4.6 is required, >= 1.4.14 is recommended:
|
# m4 >= 1.4.6 is required, >= 1.4.14 is recommended:
|
||||||
BuildRequires: perl
|
|
||||||
BuildRequires: m4 >= 1.4.14
|
BuildRequires: m4 >= 1.4.14
|
||||||
Requires: m4 >= 1.4.14
|
Requires: m4 >= 1.4.14
|
||||||
%if %{with autoconf_enables_emacs}
|
%if %{with autoconf_enables_emacs}
|
||||||
@ -45,7 +41,6 @@ BuildRequires: perl(Text::ParseWords)
|
|||||||
# build system and it produces empty man pages for those scripts if help2man is
|
# build system and it produces empty man pages for those scripts if help2man is
|
||||||
# not installed
|
# not installed
|
||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
BuildRequires: make
|
|
||||||
|
|
||||||
%if %{with check}
|
%if %{with check}
|
||||||
%if %{with autoconf_enables_optional_test}
|
%if %{with autoconf_enables_optional_test}
|
||||||
@ -57,6 +52,9 @@ BuildRequires: erlang
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
Requires(post): /sbin/install-info
|
||||||
|
Requires(preun): /sbin/install-info
|
||||||
|
|
||||||
# filter out bogus perl(Autom4te*) dependencies
|
# filter out bogus perl(Autom4te*) dependencies
|
||||||
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Autom4te::
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Autom4te::
|
||||||
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Autom4te::
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Autom4te::
|
||||||
@ -89,7 +87,7 @@ export EMACS=%{_bindir}/false
|
|||||||
%endif
|
%endif
|
||||||
%configure \
|
%configure \
|
||||||
%{?with_autoconf_enables_emacs:--with-lispdir=%{_emacs_sitelispdir}/autoconf}
|
%{?with_autoconf_enables_emacs:--with-lispdir=%{_emacs_sitelispdir}/autoconf}
|
||||||
%make_build
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -101,7 +99,7 @@ make check %{?_smp_mflags}
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
make install %{?_smp_mflags} DESTDIR=%{buildroot}
|
||||||
mkdir -p %{buildroot}/share
|
mkdir -p %{buildroot}/share
|
||||||
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}
|
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}
|
||||||
|
|
||||||
@ -111,6 +109,16 @@ mkdir -p %{buildroot}%{_emacs_sitestartdir}
|
|||||||
install -p -m 0644 %{SOURCE2} %{buildroot}%{_emacs_sitestartdir}
|
install -p -m 0644 %{SOURCE2} %{buildroot}%{_emacs_sitestartdir}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/install-info %{_infodir}/autoconf.info %{_infodir}/dir || :
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ "$1" = 0 ]; then
|
||||||
|
/sbin/install-info --del %{_infodir}/autoconf.info %{_infodir}/dir || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING*
|
%license COPYING*
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
@ -129,42 +137,12 @@ install -p -m 0644 %{SOURCE2} %{buildroot}%{_emacs_sitestartdir}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jun 11 2024 Frederic Berat <fberat@redhat.com> - 2.69-39
|
* Wed Jun 12 2024 Frederic Berat <fberat@redhat.com> - 2.69-29.1
|
||||||
- Fix issues with Fortran detection and oneAPI HPC Toolkit (RHEL-40739)
|
- Fix issues with Fortran detection and oneAPI HPC Toolkit (RHEL-40719)
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.69-38
|
* Mon Jun 28 2021 Honza Horak <hhorak@redhat.com> - 2.69-29
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Bump release number to avoid installing reverted RPM in CStream
|
||||||
Related: rhbz#1991688
|
Resolves: #1956598
|
||||||
|
|
||||||
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.69-37
|
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-36
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 15 2021 Patrik Novotný <panovotn@redhat.com> - 2.69-35
|
|
||||||
- Backport: add --runstatedir option to configure
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-34
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Mar 11 2020 Ondrej Dubaj <odubaj@redhat.com> - 2.69-33
|
|
||||||
- Added perl dependency
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-32
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 28 2019 Ondrej Dubaj <odubaj@redhat.com> - 2.69-31
|
|
||||||
- Port tests to Bash 5
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-30
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-29
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-28
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-27
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.69-27
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
11
ci.fmf
Normal file
11
ci.fmf
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
|
||||||
|
/tier:
|
||||||
|
summary: Tier tests
|
||||||
|
discover+:
|
||||||
|
filter: 'tag:build_requires_autoconf'
|
||||||
|
url: https://github.com/devexp-db/generic-tests.git
|
||||||
|
ref: main
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
Loading…
Reference in New Issue
Block a user