Compare commits
57 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
a8cf2c9ee1 | ||
|
23dbabc001 | ||
|
91c762a013 | ||
|
434da6ea26 | ||
|
40d54b1d24 | ||
|
02d9ee9b11 | ||
|
4e7c92b310 | ||
|
1caf4610b2 | ||
|
16da2631bc | ||
|
1ee0c6d261 | ||
|
96bf64c180 | ||
|
1aeb7ef72f | ||
|
10f768c74a | ||
|
3d8404cc54 | ||
|
cc3a0ca8a3 | ||
|
199e9c3ebb | ||
|
490285bbd4 | ||
|
193fcb5dc3 | ||
|
3cc705d44f | ||
|
a3cc8c8f9b | ||
|
2586bac31a | ||
|
d0bb466ee1 | ||
|
2f0bb2fc64 | ||
|
1481daee5b | ||
|
c1d4ff63b8 | ||
|
e7097361f6 | ||
|
d1bfb7273f | ||
|
302368a3e2 | ||
|
4d90c381da | ||
|
37a1d32cb8 | ||
|
e52f40dce8 | ||
|
a27df58de7 | ||
|
519728c6f4 | ||
|
ce1c17795d | ||
|
46c4431070 | ||
|
8be6bbb837 | ||
|
583e8079a0 | ||
|
2ce9361872 | ||
|
cdacc4248a | ||
|
ba39a08c78 | ||
|
b480ec6674 | ||
|
5e2ddf25c0 | ||
|
ff5e72d07e | ||
|
29e4d2f58e | ||
|
c053fd2370 | ||
|
0c046e53eb | ||
|
0821da83fb | ||
cc1ef537f8 | |||
f830d6cfb4 | |||
|
34836a983e | ||
|
8bd0cb3486 | ||
9a68ad2106 | |||
c8a80b0c3a | |||
|
1004fb7c08 | ||
|
411d5947a0 | ||
|
8dc976ac8d | ||
|
ec028eb6d4 |
11
gcc.changes
11
gcc.changes
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 23 16:34:29 UTC 2024 - Eugenio Paolantonio <eugenio.paolantonio@suse.com>
|
||||
|
||||
- Ensure every -build package conflicts and provides the non-build
|
||||
counterpart (related to boo#1230628)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 7 14:06:50 UTC 2024 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Make gcc-build-fortran provide and conflict gcc-fortran.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 1 10:53:40 UTC 2024 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
115
gcc.spec
115
gcc.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file
|
||||
# spec file for package gcc
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
@ -92,6 +92,10 @@ The system GNU C Compiler.
|
||||
Summary: The system GNU C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-32bit = %{version}
|
||||
Conflicts: gcc-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-32bit
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
|
||||
@ -102,6 +106,10 @@ The system GNU C Compiler.
|
||||
Summary: The system GNU C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-64bit = %{version}
|
||||
Conflicts: gcc-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-64bit
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
|
||||
@ -124,6 +132,10 @@ The system GNU Preprocessor.
|
||||
Summary: The system GNU C Compiler Plugin development files
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-devel = %{version}
|
||||
Conflicts: gcc-devel
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-devel
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
|
||||
@ -134,6 +146,10 @@ The system GNU C Compiler Plugin development files.
|
||||
Summary: The system GNU Compiler locale files
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-locale = %{version}
|
||||
Conflicts: gcc-locale
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-locale
|
||||
|
||||
%description -n gcc%{gccsuffix}-locale
|
||||
@ -143,6 +159,10 @@ The system GNU Compiler locale files.
|
||||
Summary: The system GNU Compiler documentation
|
||||
License: GFDL-1.2-only
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-info = %{version}
|
||||
Conflicts: gcc-info
|
||||
%endif
|
||||
PreReq: %{install_info_prereq}
|
||||
PreReq: gcc%{gcc_version}-info
|
||||
|
||||
@ -158,6 +178,7 @@ The system GNU Compiler documentation.
|
||||
|
||||
|
||||
|
||||
|
||||
# install / update the entries
|
||||
%post -n gcc%{gccsuffix}-info
|
||||
%install_info --info-dir=%{_infodir} --name=cpp --description='The GNU C preprocessor.' %{_infodir}/cpp.info.gz
|
||||
@ -193,6 +214,10 @@ The system GNU C++ Compiler.
|
||||
Summary: The system GNU C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-c++-32bit = %{version}
|
||||
Conflicts: gcc-c++-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-c++-32bit
|
||||
Requires: gcc%{gccsuffix}-32bit = %{version}
|
||||
Requires: gcc%{gccsuffix}-c++ = %{version}
|
||||
@ -204,6 +229,10 @@ The system GNU C++ Compiler 32 bit support.
|
||||
Summary: The system GNU C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-c++-64bit = %{version}
|
||||
Conflicts: gcc-c++-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-c++-64bit
|
||||
Requires: gcc%{gccsuffix}-64bit = %{version}
|
||||
Requires: gcc%{gccsuffix}-c++ = %{version}
|
||||
@ -228,6 +257,10 @@ The system GNU C++ development files.
|
||||
Summary: The system GNU C++ 32bit development files
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: libstdc++-devel-32bit = %{version}
|
||||
Conflicts: libstdc++-devel-32bit
|
||||
%endif
|
||||
Requires: libstdc++%{gccsuffix}-devel
|
||||
Requires: libstdc++6-devel-gcc%{gcc_version}-32bit
|
||||
|
||||
@ -238,6 +271,10 @@ The system GNU C++ 32bit development files.
|
||||
Summary: The system GNU C++ 64bit development files
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: libstdc++-devel-64bit = %{version}
|
||||
Conflicts: libstdc++-devel-64bit
|
||||
%endif
|
||||
Requires: libstdc++%{gccsuffix}-devel
|
||||
Requires: libstdc++6-devel-gcc%{gcc_version}-64bit
|
||||
|
||||
@ -248,6 +285,10 @@ The system GNU C++ 64bit development files.
|
||||
Summary: The system GNU Fortran Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Fortran
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-fortran = %{version}
|
||||
Conflicts: gcc-fortran
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-fortran
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
|
||||
@ -258,6 +299,10 @@ The system GNU Fortran Compiler.
|
||||
Summary: The system GNU Fortran Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Fortran
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-fortran-32bit = %{version}
|
||||
Conflicts: gcc-fortran-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-fortran-32bit
|
||||
Requires: gcc%{gccsuffix}-fortran = %{version}
|
||||
|
||||
@ -268,6 +313,10 @@ The system GNU Fortran Compiler 32 bit support.
|
||||
Summary: The system GNU Fortran Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Fortran
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-fortran-64bit = %{version}
|
||||
Conflicts: gcc-fortran-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-fortran-64bit
|
||||
Requires: gcc%{gccsuffix}-fortran = %{version}
|
||||
|
||||
@ -278,6 +327,10 @@ The system GNU Fortran Compiler 64 bit support.
|
||||
Summary: The system GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Other
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-objc = %{version}
|
||||
Conflicts: gcc-objc
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-objc
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
%ifarch ppc64
|
||||
@ -291,6 +344,10 @@ The system GNU Objective C Compiler.
|
||||
Summary: The system GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Other
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-objc-32bit = %{version}
|
||||
Conflicts: gcc-objc-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-objc-32bit
|
||||
Requires: gcc%{gccsuffix}-objc = %{version}
|
||||
|
||||
@ -301,6 +358,10 @@ The system GNU Objective C Compiler 32 bit support.
|
||||
Summary: The system GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Other
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-objc-64bit = %{version}
|
||||
Conflicts: gcc-objc-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-objc-64bit
|
||||
Requires: gcc%{gccsuffix}-objc = %{version}
|
||||
|
||||
@ -311,6 +372,10 @@ The system GNU Objective C Compiler 64 bit support.
|
||||
Summary: The system GNU Objective C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Other
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-objc-c++ = %{version}
|
||||
Conflicts: gcc-objc-c++
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-obj-c++
|
||||
Requires: gcc%{gccsuffix}-objc = %{version}
|
||||
|
||||
@ -321,6 +386,10 @@ The system GNU Objective C++ Compiler.
|
||||
Summary: A default configuration to build all binaries in PIE mode
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/Other
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-PIE = %{version}
|
||||
Conflicts: gcc-PIE
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-PIE
|
||||
|
||||
%description -n gcc%{gccsuffix}-PIE
|
||||
@ -333,6 +402,10 @@ space randomization (ASLR).
|
||||
Summary: The system GNU Ada Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-ada = %{version}
|
||||
Conflicts: gcc-ada
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-ada
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
|
||||
@ -343,6 +416,10 @@ The system GNU Ada Compiler.
|
||||
Summary: The system GNU Ada Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-ada-32bit = %{version}
|
||||
Conflicts: gcc-ada-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-ada-32bit
|
||||
Requires: gcc%{gccsuffix}-ada = %{version}
|
||||
|
||||
@ -353,6 +430,10 @@ The system GNU Ada Compiler 32 bit support.
|
||||
Summary: The system GNU Ada Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-ada-64bit = %{version}
|
||||
Conflicts: gcc-ada-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-ada-64bit
|
||||
Requires: gcc%{gccsuffix}-ada = %{version}
|
||||
|
||||
@ -363,6 +444,10 @@ The system GNU Ada Compiler 64 bit support.
|
||||
Summary: The system GNU Go Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-go = %{version}
|
||||
Conflicts: gcc-go
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-go
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
Requires(post): update-alternatives
|
||||
@ -375,6 +460,10 @@ The system GNU Go Compiler.
|
||||
Summary: The system GNU Go Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-go-32bit = %{version}
|
||||
Conflicts: gcc-go-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-go-32bit
|
||||
Requires: gcc%{gccsuffix}-go = %{version}
|
||||
|
||||
@ -385,6 +474,10 @@ The system GNU Go Compiler 32bit support.
|
||||
Summary: The system GNU Go Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-go-64bit = %{version}
|
||||
Conflicts: gcc-go-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-go-64bit
|
||||
Requires: gcc%{gccsuffix}-go = %{version}
|
||||
|
||||
@ -395,6 +488,10 @@ The system GNU Go Compiler 64bit support.
|
||||
Summary: The system GNU D Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-d = %{version}
|
||||
Conflicts: gcc-d
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-d
|
||||
Requires: gcc%{gccsuffix} = %{version}
|
||||
Requires(post): update-alternatives
|
||||
@ -407,6 +504,10 @@ The system GNU D Compiler.
|
||||
Summary: The system GNU D Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-d-32bit = %{version}
|
||||
Conflicts: gcc-d-32bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-d-32bit
|
||||
Requires: gcc%{gccsuffix}-d = %{version}
|
||||
|
||||
@ -417,6 +518,10 @@ The system GNU D Compiler 32bit support.
|
||||
Summary: The system GNU D Compiler
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: gcc-d-64bit = %{version}
|
||||
Conflicts: gcc-d-64bit
|
||||
%endif
|
||||
Requires: gcc%{gcc_version}-d-64bit
|
||||
Requires: gcc%{gccsuffix}-d = %{version}
|
||||
|
||||
@ -427,6 +532,10 @@ The system GNU D Compiler 64bit support.
|
||||
Summary: Support for embedding GCC inside programs and libraries
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: libgccjit-devel = %{version}
|
||||
Conflicts: libgccjit-devel
|
||||
%endif
|
||||
Requires: libgccjit%{libgccjit_sover}-devel-gcc%{gcc_version}
|
||||
|
||||
%description -n libgccjit%{gccsuffix}-devel
|
||||
@ -436,6 +545,10 @@ Package contains header files and documentation for GCC JIT front-end.
|
||||
Summary: Development files for the quadprecision math library
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Fortran
|
||||
%if "%{gccsuffix}" != ""
|
||||
Provides: libquadmath-devel = %{version}
|
||||
Conflicts: libquadmath-devel
|
||||
%endif
|
||||
Requires: libquadmath0-devel-gcc%{gcc_version}
|
||||
|
||||
%description -n libquadmath%{gccsuffix}-devel
|
||||
|
Loading…
Reference in New Issue
Block a user