forked from pool/binutils
Accepting request 101649 from devel:gcc
- Fix package licenses to follow SPDX format, adjust to reality. - Amend patch to fix arm unwind table corruption. [bso#13449] OBS-URL: https://build.opensuse.org/request/show/101649 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=73
This commit is contained in:
commit
435ca0a02d
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
@ -166,11 +166,10 @@ Authors:
|
||||
Ulf Carlsson <ulfc@calypso.engr.sgi.com>
|
||||
|
||||
%package gold
|
||||
License: GPL v3 or later
|
||||
Summary: The gold linker
|
||||
AutoReqProv: on
|
||||
Requires: binutils = %{version}-%{release}
|
||||
License: GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Requires: binutils = %{version}-%{release}
|
||||
%if 0%{suse_version} > 1100
|
||||
%define gold_archs %ix86 %arm x86_64 ppc ppc64 %sparc
|
||||
%endif
|
||||
@ -208,12 +207,11 @@ Authors:
|
||||
Andrew Chatham
|
||||
|
||||
%package devel
|
||||
License: GPL v2 or later; LGPL v2.1 or later
|
||||
Summary: GNU binutils (BFD development files)
|
||||
AutoReqProv: on
|
||||
License: GPL-3.0+
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: binutils = %{version}-%{release}, zlib-devel
|
||||
Provides: binutils:/usr/include/bfd.h
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description devel
|
||||
This package includes header files and static libraries necessary to
|
||||
|
@ -2,6 +2,45 @@
|
||||
* config/tc-arm.c (create_unwind_entry): Zero allocated table
|
||||
entries.
|
||||
|
||||
===================================================================
|
||||
RCS file: /cvs/src/src/gas/config/tc-arm.c,v
|
||||
retrieving revision 1.511
|
||||
retrieving revision 1.512
|
||||
diff -u -r1.511 -r1.512
|
||||
--- src/gas/config/tc-arm.c 2011/12/07 16:58:34 1.511
|
||||
+++ src/gas/config/tc-arm.c 2011/12/15 10:21:49 1.512
|
||||
@@ -3540,6 +3540,7 @@
|
||||
record_alignment (now_seg, 2);
|
||||
|
||||
ptr = frag_more (8);
|
||||
+ memset (ptr, 0, 8);
|
||||
where = frag_now_fix () - 8;
|
||||
|
||||
/* Self relative offset of the function start. */
|
||||
@@ -19926,8 +19927,12 @@
|
||||
size = unwind.opcode_count - 2;
|
||||
}
|
||||
else
|
||||
- /* An extra byte is required for the opcode count. */
|
||||
- size = unwind.opcode_count + 1;
|
||||
+ {
|
||||
+ gas_assert (unwind.personality_index == -1);
|
||||
+
|
||||
+ /* An extra byte is required for the opcode count. */
|
||||
+ size = unwind.opcode_count + 1;
|
||||
+ }
|
||||
|
||||
size = (size + 3) >> 2;
|
||||
if (size > 0xff)
|
||||
@@ -19953,7 +19958,7 @@
|
||||
ptr += 4;
|
||||
|
||||
/* Set the first byte to the number of additional words. */
|
||||
- data = size - 1;
|
||||
+ data = size > 0 ? size - 1 : 0;
|
||||
n = 3;
|
||||
break;
|
||||
|
||||
===================================================================
|
||||
RCS file: /cvs/src/src/gas/config/tc-arm.c,v
|
||||
retrieving revision 1.512
|
||||
@ -18,3 +57,5 @@ diff -u -r1.512 -r1.513
|
||||
where = frag_now_fix () - ((size << 2) + 4);
|
||||
|
||||
switch (unwind.personality_index)
|
||||
|
||||
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-alpha-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-arm-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-hppa-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-hppa64-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-i386-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-ia64-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-mips-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-ppc-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-ppc64-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-s390-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-s390x-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-sparc-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-spu-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Fix package licenses to follow SPDX format, adjust to reality.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com
|
||||
|
||||
- Amend patch to fix arm unwind table corruption. [bso#13449]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com
|
||||
|
||||
|
@ -15,10 +15,11 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: cross-x86_64-binutils
|
||||
BuildRequires: bison dejagnu flex gcc-c++
|
||||
BuildRequires: bison
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: flex
|
||||
BuildRequires: gcc-c++
|
||||
# for the testsuite
|
||||
%if 0%{suse_version} >= 1210
|
||||
BuildRequires: glibc-devel-static
|
||||
@ -31,7 +32,7 @@ BuildRequires: zlib-devel-static
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.22
|
||||
Release: 10
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||
@ -63,10 +64,7 @@ Release: 10
|
||||
#
|
||||
#
|
||||
Url: http://www.gnu.org/software/binutils/
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Documentation License, Version 1.2 (GFDL 1.2); GPL v2 or later; GPL v3 or later; LGPL v2.0 or later; LGPL v2.1 or later; LGPL v3 or later
|
||||
Group: Development/Tools/Building
|
||||
PreReq: %{install_info_prereq}
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: binutils-64bit
|
||||
@ -74,6 +72,8 @@ Obsoletes: binutils-64bit
|
||||
#
|
||||
%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//')
|
||||
Summary: GNU Binutils
|
||||
License: GFDL-1.3 and GPL-3.0+
|
||||
Group: Development/Tools/Building
|
||||
Source: binutils-%{binutils_version}.tar.bz2
|
||||
Source1: pre_checkin.sh
|
||||
Source2: README.First-for.SuSE.packagers
|
||||
|
Loading…
Reference in New Issue
Block a user