From 1c734b34b074f79b8c3b79705c43c48706f7376adde7c07c418a8c7ee8bb4c81 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Wed, 25 Jan 2012 14:13:15 +0000 Subject: [PATCH 1/3] - Amend patch to fix arm unwind table corruption. [bso#13449] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=83 --- binutils.changes | 5 +++++ bso13449.diff | 41 +++++++++++++++++++++++++++++++++++ cross-alpha-binutils.changes | 5 +++++ cross-arm-binutils.changes | 5 +++++ cross-hppa-binutils.changes | 5 +++++ cross-hppa64-binutils.changes | 5 +++++ cross-i386-binutils.changes | 5 +++++ cross-ia64-binutils.changes | 5 +++++ cross-mips-binutils.changes | 5 +++++ cross-ppc-binutils.changes | 5 +++++ cross-ppc64-binutils.changes | 5 +++++ cross-s390-binutils.changes | 5 +++++ cross-s390x-binutils.changes | 5 +++++ cross-sparc-binutils.changes | 5 +++++ cross-spu-binutils.changes | 5 +++++ cross-x86_64-binutils.changes | 5 +++++ 16 files changed, 116 insertions(+) diff --git a/binutils.changes b/binutils.changes index fcfe19c..c30bed2 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/bso13449.diff b/bso13449.diff index b2fe29e..06411a9 100644 --- a/bso13449.diff +++ b/bso13449.diff @@ -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) + + diff --git a/cross-alpha-binutils.changes b/cross-alpha-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-alpha-binutils.changes +++ b/cross-alpha-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index fcfe19c..c30bed2 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 From b66269c27347a12aba8f8bc58727b4fa083f046c80a74c164b9c6aa76830b6bc Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Thu, 26 Jan 2012 10:37:09 +0000 Subject: [PATCH 2/3] - Fix package licenses to follow SPDX format, adjust to reality. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=84 --- binutils.changes | 5 +++++ binutils.spec | 6 +++--- cross-alpha-binutils.changes | 5 +++++ cross-alpha-binutils.spec | 2 +- cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 2 +- cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 2 +- cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 2 +- cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 2 +- cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 2 +- cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 2 +- cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 2 +- cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 2 +- cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 2 +- cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 2 +- cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 2 +- cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 2 +- cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 2 +- 30 files changed, 92 insertions(+), 17 deletions(-) diff --git a/binutils.changes b/binutils.changes index c30bed2..575f369 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/binutils.spec b/binutils.spec index d10117a..a16dbdf 100644 --- a/binutils.spec +++ b/binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on @@ -166,7 +166,7 @@ Authors: Ulf Carlsson %package gold -License: GPL v3 or later +License: GPL-3.0+ Summary: The gold linker AutoReqProv: on Requires: binutils = %{version}-%{release} @@ -208,7 +208,7 @@ Authors: Andrew Chatham %package devel -License: GPL v2 or later; LGPL v2.1 or later +License: GPL-3.0+; Summary: GNU binutils (BFD development files) AutoReqProv: on Requires: binutils = %{version}-%{release}, zlib-devel diff --git a/cross-alpha-binutils.changes b/cross-alpha-binutils.changes index c30bed2..575f369 100644 --- a/cross-alpha-binutils.changes +++ b/cross-alpha-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-alpha-binutils.spec b/cross-alpha-binutils.spec index dedb4ac..6a4875b 100644 --- a/cross-alpha-binutils.spec +++ b/cross-alpha-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index c30bed2..575f369 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 20a46ba..371fc0c 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index c30bed2..575f369 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 732be02..4e63a5a 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index c30bed2..575f369 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 5001418..0ac520c 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index c30bed2..575f369 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 9869677..1e4aa24 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index c30bed2..575f369 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 71c648c..0d59472 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index c30bed2..575f369 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 60bda1a..d298570 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index c30bed2..575f369 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index db9c10a..fc65fd3 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index c30bed2..575f369 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 487ef5a..791cdaf 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index c30bed2..575f369 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 34519df..a0e4873 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index c30bed2..575f369 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 85f1e3a..3b802e7 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index c30bed2..575f369 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 6a62827..1da7036 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index c30bed2..575f369 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index eb62a57..1d672b0 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index c30bed2..575f369 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +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 diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index a7ce37b..1cda28f 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -63,7 +63,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 +License: GFDL-1.3; GPL-3.0+; Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on From 23ad9961308ebba9fa459df3ef9b1b9eaa1172374817025e34858de571399dd1 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Thu, 26 Jan 2012 12:50:17 +0000 Subject: [PATCH 3/3] Accepting request 101646 from home:coolo:branches:openSUSE:Factory fix license - and format_spec because I can OBS-URL: https://build.opensuse.org/request/show/101646 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=85 --- binutils.spec | 24 +++++++++++------------- cross-alpha-binutils.spec | 14 +++++++------- cross-arm-binutils.spec | 14 +++++++------- cross-hppa-binutils.spec | 14 +++++++------- cross-hppa64-binutils.spec | 14 +++++++------- cross-i386-binutils.spec | 14 +++++++------- cross-ia64-binutils.spec | 14 +++++++------- cross-mips-binutils.spec | 14 +++++++------- cross-ppc-binutils.spec | 14 +++++++------- cross-ppc64-binutils.spec | 14 +++++++------- cross-s390-binutils.spec | 14 +++++++------- cross-s390x-binutils.spec | 14 +++++++------- cross-sparc-binutils.spec | 14 +++++++------- cross-spu-binutils.spec | 14 +++++++------- cross-x86_64-binutils.spec | 14 +++++++------- 15 files changed, 109 insertions(+), 111 deletions(-) diff --git a/binutils.spec b/binutils.spec index a16dbdf..b789601 100644 --- a/binutils.spec +++ b/binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 %package gold -License: GPL-3.0+ 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-3.0+; 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 diff --git a/cross-alpha-binutils.spec b/cross-alpha-binutils.spec index 6a4875b..2c48f18 100644 --- a/cross-alpha-binutils.spec +++ b/cross-alpha-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 371fc0c..5a422d0 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 4e63a5a..24fd1f2 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 0ac520c..5eb5800 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 1e4aa24..e418d9c 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 0d59472..cc09502 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index d298570..e0a4f25 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index fc65fd3..3583b03 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 791cdaf..a325dc8 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index a0e4873..68e9c20 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 3b802e7..e8fe90a 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 1da7036..054bad5 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 1d672b0..690fca5 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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 diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 1cda28f..c628161 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -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: GFDL-1.3; GPL-3.0+; -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