public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 4.7.1-1
@ 2026-06-29 12:25 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:25 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 8eaabf978c8f82e898ce43a2a1eeba53baee2125
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2012-06-29T14:26:07+02:00
Stats : +17/-0 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/8eaabf978c8f82e898ce43a2a1eeba53baee2125?branch=rhel-f41-base
Log:
4.7.1-1
---
diff --git a/gcc.spec b/gcc.spec
index d73020a..07dbee3 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -174,6 +174,7 @@ Patch12: gcc47-libstdc++-docs.patch
Patch13: gcc47-no-add-needed.patch
Patch14: gcc47-ppl-0.10.patch
Patch15: gcc47-libitm-fno-exceptions.patch
+Patch16: gcc47-libgo-mksysinfo.patch
Patch1000: fastjar-0.97-segfault.patch
Patch1001: fastjar-0.97-len1.patch
@@ -675,6 +676,7 @@ package or when debugging this package.
%patch14 -p0 -b .ppl-0.10~
%endif
%patch15 -p0 -b .libitm-fno-exceptions~
+%patch16 -p0 -b .libgo-mksysinfo~
%if 0%{?_enable_debug_packages}
cat > split-debuginfo.sh <<\EOF
diff --git a/gcc47-libgo-mksysinfo.patch b/gcc47-libgo-mksysinfo.patch
new file mode 100644
index 0000000..427efe8
--- /dev/null
+++ b/gcc47-libgo-mksysinfo.patch
@@ -0,0 +1,15 @@
+--- libgo/mksysinfo.sh 2012-06-29 14:23:30.684708901 +0200
++++ libgo/mksysinfo.sh 2012-06-29 14:23:20.782761973 +0200
+@@ -522,10 +522,10 @@ grep '^const _DT_' gen-sysinfo.go |
+ # The rusage struct.
+ rusage=`grep '^type _rusage struct' gen-sysinfo.go`
+ if test "$rusage" != ""; then
+- rusage=`echo $rusage | sed -e 's/type _rusage struct //' -e 's/[{}]//g'`
+- rusage=`echo $rusage | sed -e 's/^ *//'`
+ # Remove anonymous unions from GNU/Linux <bits/resource.h>.
+ rusage=`echo $rusage | sed -e 's/Godump_[0-9]* struct {\([^}]*\)};/\1/g'`
++ rusage=`echo $rusage | sed -e 's/type _rusage struct //' -e 's/[{}]//g'`
++ rusage=`echo $rusage | sed -e 's/^ *//'`
+ nrusage=
+ while test -n "$rusage"; do
+ field=`echo $rusage | sed -e 's/^\([^;]*\);.*$/\1/'`
^ permalink raw reply related [flat|nested] 2+ messages in thread* [rpms/gcc] rhel-f41-base: 4.7.1-1
@ 2026-06-29 12:25 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:25 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : b1be385d8b62102daf4eebf94e312f38244fd125
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2012-06-29T10:44:22+02:00
Stats : +20/-6 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/b1be385d8b62102daf4eebf94e312f38244fd125?branch=rhel-f41-base
Log:
4.7.1-1
---
diff --git a/.gitignore b/.gitignore
index ef775f7..58aeb5e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,3 +33,4 @@
/gcc-4.7.0-20120507.tar.bz2
/gcc-4.7.0-20120525.tar.bz2
/gcc-4.7.0-20120604.tar.bz2
+/gcc-4.7.1-20120629.tar.bz2
diff --git a/gcc.spec b/gcc.spec
index fa30127..d73020a 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20120604
-%global SVNREV 188193
-%global gcc_version 4.7.0
+%global DATE 20120629
+%global SVNREV 189066
+%global gcc_version 4.7.1
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%global gcc_release 7
+%global gcc_release 1
%global _unpackaged_files_terminate_build 0
%global multilib_64_archs sparc64 ppc64 s390x x86_64
%ifarch %{ix86} x86_64 ia64 ppc ppc64 alpha
@@ -738,7 +738,7 @@ tar xzf %{SOURCE4}
tar xjf %{SOURCE10}
%endif
-sed -i -e 's/4\.7\.1/4.7.0/' gcc/BASE-VER
+sed -i -e 's/4\.7\.2/4.7.1/' gcc/BASE-VER
echo 'Red Hat %{version}-%{gcc_release}' > gcc/DEV-PHASE
%if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
@@ -2641,6 +2641,19 @@ fi
%{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/plugin
%changelog
+* Fri Jun 29 2012 Jakub Jelinek <jakub@redhat.com> 4.7.1-1
+- update from the 4.7 branch
+ - GCC 4.7.1 release
+ - PRs ada/53592, c++/51214, c++/52637, c++/52841, c++/52988, c++/53202,
+ c++/53305, c++/53498, c++/53524, c++/53594, c++/53599, c++/53602,
+ c++/53616, c++/53651, c++/53752, debug/53682, fortran/50619,
+ fortran/53597, fortran/53685, fortran/53691, gcov-profile/53744,
+ libgomp/52993, libstdc++/53270, libstdc++/53678, middle-end/53470,
+ middle-end/53580, middle-end/53790, preprocessor/37215,
+ rtl-optimization/53589, rtl-optimization/53700, target/52908,
+ target/53559, target/53595, target/53621, target/53759,
+ tree-optimization/52558
+
* Mon Jun 4 2012 Jakub Jelinek <jakub@redhat.com> 4.7.0-7
- update from the 4.7 branch
- PRs ada/53517, c++/52725, c++/52905, c++/52973, c++/53137, c++/53220,
diff --git a/sources b/sources
index 258be59..b8d0789 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz
-996050ff9fa029f4671efd77f77b8e14 gcc-4.7.0-20120604.tar.bz2
+b8a5e8e7ec11d199d72e38e8055459fa gcc-4.7.1-20120629.tar.bz2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-29 12:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 12:25 [rpms/gcc] rhel-f41-base: 4.7.1-1 Jakub Jelinek
-- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:25 Jakub Jelinek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox