Results of a test mass rebuild of rawhide/x86_64 with gcc-4.7.0-0.1.fc17

Jakub Jelinek jakub at redhat.com
Sat Dec 31 11:56:49 UTC 2011


Hi!

As part of preparations to switch GCC in F17 to GCC 4.7.0, I've performed
a test mass rebuild of rawhide (December 23th package list) using
gcc-4.7.0-0.1.fc17 on x86_64, and for those packages that failed also
rebuilt the same package with gcc-4.6.2-1.fc16 to quickly remove from the
list packages that fail for non-gcc related reasons.
Out of the 11270 packages I've built, 10056 packages built fine with
gcc-4.7.0-0.1.fc17 and 845 packages failed to build also with
gcc-4.6.2-1.fc16, so I'm ignoring those from any analysis.
I've analyzed some of the remaining failures and tried to categorize it
a little bit.  There were 3 internal compiler errors seen during the
whole mass rebuild, http://gcc.gnu.org/PR5169{2,4,5} are currently
filed and slightly analyzed, but not fixed yet.

CCing Benjamin if he'd be interested to write
http://gcc.gnu.org/gcc-4.7/porting_to.html again this time.

The common reasons for build failures were (I'm attaching srpm lists for
these categories):

http://gcc.gnu.org/PR49745				119 failures
	<iostream>, <string> and other STL headers that previously
	included <unistd.h> as an implementation detail (to get some
	feature macros for gthr*.h purposes) no longer do so (it was
	a C++ standard violation), to fix this up just add
	#include <unistd.h> early in the sources (or headers) that need it.

http://gcc.gnu.org/PR24163				60 failures
http://gcc.gnu.org/PR29131				28 failures
	C++ lookup fixes, the C++ FE no longer performs an extra unqualified
	lookup that it (incorrectly) performed in the past.  In some cases the
	diagnostics includes hints how to fix the bugs, for PR24163 the
	diagnostics looks like:
	error: 'something' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
	note: declarations in dependent base 'someclass<somearg>' are not found by unqualified lookup
	note: use 'this->something' instead
	and for PR29131 diagnostics looks like:
	error: 'something' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
	note: 'template<class T1, class T2> sometype something(T1&, const T2&)' declared here, later in the translation unit

checking for stdbool.h that conforms to C99... no	2 failures
							but affects other 150+ packages
	apparently autoconf 2.60 through autoconf 2.67 contains an invalid
	check in its stdbool.h checking macro:
	#     if defined __xlc__ || defined __GNUC__
	       /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0
	          reported by James Lemley on 2005-10-05; see
	          http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html
	          This test is not quite right, since xlc is allowed to
	          reject this program, as the initializer for xlcbug is
	          not one of the forms that C requires support for.
	          However, doing the test right would require a runtime
	          test, and that would make cross-compilation harder.
	          Let us hope that IBM fixes the xlc bug, and also adds
	          support for this kind of constant expression.  In the
	          meantime, this test will reject xlc, which is OK, since
	          our stdbool.h substitute should suffice.  We also test
	          this with GCC, where it should work, to detect more
	          quickly whether someone messes up the test in the
	          future.  */
	       char digs[] = "0123456789";
	       int xlcbug = 1 / (&(digs + 5)[-2 + (bool) 1] == &digs[4] ? 1 : -1);
	#     endif
	As written, the test is not quite right and a conforming C compiler
	is not required to accept it and starting with
	http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=172958
	GCC rejects it (and similarly from what I understood from autoconf
	2.68 notes recent xlc rejects it as well).  autoconf 2.68 dropped
	this incorrect check, but apparently many packages include their
	own configure scripts without regenerating them.  Wonder what is the
	best thing to do here, ask package maintainers to grep for this
	int xlcbug = ...; in their packages and sedding that to
	int xlcbug = 0;, or dropping that || defined __GNUC__ above the
	invalid test, or asking where possible to regenerate configure with
	autoconf 2.68, perhaps some rpm-build script to do the sedding?
	Most of the 150+ packages just refused to use the system <stdbool.h>
	because of this and did something else (either provided their own
	stdbool.h alternative, falled back to using int instead of bool,
	...), the 2 failures were just cases where this was a fatal failure.

https://svn.boost.org/trac/boost/ticket/6165		26 failures
	Apparently boost uses some libstdc++-v3 internal macros to determine
	if gcc has been configured with or without thread support, in GCC 4.7
	these internal macros changed and boost thinks GCC 4.7.0 no longer
	supports threads (e.g. in libstdc++ headers).  The fix here will be
	just to fix up boost package we include. 

gcc driver became more picky about
bogus options during linking				14 failures
	GCC 4.6 and earlier apparently didn't complain about completely
	invalid options on gcc/g++/gfortran etc. command lines, if
	nothing was compiled, but only linking was performed.
	E.g. gcc -Wl -o foo foo.o -mflat_namespace
	would work just fine, even when -Wl needs to have some option
	to pass to the linker after it and -mflat_namespace isn't supported
	at all.  Garbage options just need to be removed from the command
	line or replaced by something that is actually supported.

http://gcc.gnu.org/PR2288				8 failures
	For C++, GCC 4.6 and earlier incorrectly put the two
	declarations in different scopes in cases like:
	for (int i = 0; i < 10; i++)
	  {
	    int i = 2;
	  }
	While that is valid C99 (where there is a separate scope
	with the for declared vars and { int i = 2; } is another scope
	inside it), in C++ this is invalid, the int i = 0; declaration
	goes into the same scope as the body of the for cycle (similarly
	for if/switch).  To fix this, either rename one of the decls,
	or if you really meant to have the same name and want to have
	them in different scopes, add another pair of {}s around the body.
	With
	for (int i = 0; i < 10; i++)
	  {{
	    int i = 2;
	  }}
	the inner {} is already a nested scope.

user defined literal support				3 failures
	When compiling C++ with -std={c++11,c++0x,gnu++11,gnu++0x} GCC 4.7.0
	unlike older versions supports user defined literals, which are
	incompatible with some valid ISO C++03 code.
	In particular, whitespace is now needed after a string literal
	before something that could be a valid user defined literal.
	Say const char *p = "foobar"__TIME__; is valid C++03, the __TIME__
	macro expands to some string literal and is concatenated with the
	other one.  In C++11 __TIME__ isn't expanded, instead operator ""
	__TIME__ is being looked up.  This applies to any string literal
	followed without whitespace by some macro.  Just add some whitespace
	between the string literal and the macro name.

-Werror							12 failures
	As usually, packages compiled with -Werror sometimes fail because
	newer GCC versions emit slightly different warnings (could be
	correct warnings, newly introduced warnings, could be even false
	positives, but with -Werror you need to be prepared to workaround
	them).

libgcj							6 failures
	gcc-4.7.0-0.1.fc17 contained a packaging bug for libgcj, the
	libgcj.so symlink incorrectly pointed to libgcj.so.12 instead
	of libgcj.so.13.  Will fix this for -0.2.fc17, to this category
	I've also included package failures where non-indirect-dispatch
	gcj built packages failed to build due to their dependencies
	not finding libgcj.so.12 dependency.  Those will just need to
	be rebuilt.

unanalyzed						91 failures
	Ran out of time, haven't analyzed the remaining ones (other
	category), once gcc-4.7.0-0.*.fc17 hits the buildroots,
	please try to analyze these.  Could be gcc bugs, but could
	very well be package bugs.  E.g. in glibc (which built fine,
	just failed a couple of tests that previously succeeded),
	I've discovered it was a glibc bug:
	http://sources.redhat.com/ml/libc-alpha/2011-12/msg00091.html

	Jakub
-------------- next part --------------
alure-1.2-1.fc17.src.rpm
apt-0.5.15lorg3.95-2.git522.1.fc17.src.rpm
aria2-1.12.1-1.fc17.src.rpm
arpage-0.3.3-7.fc17.src.rpm
bangarang-2.0.1-1.fc16.src.rpm
barry-0.17.1-5.fc17.src.rpm
bes-3.9.0-1.fc15.src.rpm
blahtexml-0.8-3.fc16.src.rpm
calf-0.0.18.6-4.fc17.src.rpm
clamav-0.97.3-1700.fc17.src.rpm
ClanLib-2.3.4-2.fc17.src.rpm
clucene-2.3.3.4-3.fc16.src.rpm
cmake-2.8.7-0.1.rc1.fc17.src.rpm
code-editor-2.3.1-11.fc17.src.rpm
conexus-0.9.1-3.fc14.1.src.rpm
coot-0.6.2-10.20110715svn3566.fc17.src.rpm
cppcheck-1.52-1.fc17.src.rpm
cryptkeeper-0.9.5-3.fc17.src.rpm
CTL-1.4.1-11.fc15.src.rpm
cyphesis-0.5.26-2.fc17.src.rpm
dbus-cxx-0.7.0-2.fc14.1.src.rpm
fastx_toolkit-0.0.13-4.fc16.src.rpm
fawkes-0.4.2-8.fc17.src.rpm
freenx-client-0.9-11.fc15.src.rpm
fusecompress_offline1-1.99.19-7.fc15.src.rpm
fwbuilder-4.1.2-1.fc15.src.rpm
gdisk-0.8.1-2.fc17.src.rpm
gearbox-9.11-8.fc15.src.rpm
gearmand-0.23-2.fc17.src.rpm
goldendict-1.0.1-4.fc16.src.rpm
gst123-0.2.1-2.fc17.src.rpm
guimup-0.2.1-4.fc17.src.rpm
gwenhywfar-4.3.0-1.fc17.src.rpm
hercstudio-1.3.0-1.fc16.src.rpm
icc_examin-0.49-1.fc16.src.rpm
ice-3.4.2-5.fc17.src.rpm
incron-0.5.9-2.fc15.src.rpm
kaya-0.5.2-11.fc17.1.src.rpm
kdebase-workspace-4.7.95-1.fc17.src.rpm
kdegames-4.7.95-1.fc17.src.rpm
keepassx-0.4.3-2.fc15.src.rpm
kid3-2.0.1-1.fc16.src.rpm
komparator-0.9-5.fc15.src.rpm
koverartist-0.5-14.fc15.src.rpm
libconcord-0.23-7.fc16.src.rpm
libdigidocpp-0.3.0-10.fc17.src.rpm
libffado-2.1.0-0.4.20111030.svn2000.fc17.src.rpm
libfreebob-1.0.11-8.fc15.src.rpm
libfwbuilder-4.1.2-1.fc15.src.rpm
libkml-0.6.1-8.fc15.src.rpm
libkni3-3.9.2-13.fc15.src.rpm
libmnetutil-0.8.0-0.3.20100629svn3775.fc15.src.rpm
libmsn-4.2.1-1.fc17.src.rpm
libofa-0.9.3-18.fc17.src.rpm
libofx-0.9.4-1.fc16.src.rpm
libvoikko-3.3.1-0.3.rc1.fc17.src.rpm
libvpd-2.1.1-2.fc15.src.rpm
libwvstreams-4.6.1-3.fc15.src.rpm
lmms-0.4.11-1.fc16.src.rpm
matahari-0.6.0-1.fc17.src.rpm
minetest-0.3.1-6.fc17.src.rpm
minicomputer-1.41-5.fc16.src.rpm
minitunes-1.0-1.fc17.src.rpm
mozc-1.3.930.102-1.fc17.src.rpm
ncmpcpp-0.5.8-1.fc17.src.rpm
newsbeuter-2.4-1.fc16.src.rpm
numptyphysics-0.3-0.6.20080925svn.fc15.src.rpm
oggvideotools-0.8-4.fc17.src.rpm
ois-1.2.0-3.fc15.src.rpm
openscada-0.7.1-6.fc17.src.rpm
ovaldi-5.9.1-1.fc16.src.rpm
podofo-0.9.1-2.fc17.src.rpm
posterazor-1.5-8.fc16.src.rpm
powertop-1.98-2.fc17.src.rpm
psi-0.14-7.fc17.src.rpm
pxe-kexec-0.2.3-3.fc15.src.rpm
qpid-cpp-0.12-6.fc17.2.src.rpm
qt-creator-2.4.0-0.0.rc.fc17.src.rpm
qterm-0.5.12-1.fc16.src.rpm
qt-mobility-1.2.0-6.20110922.fc17.src.rpm
qtsingleapplication-2.6.1-5.fc15.src.rpm
qutim-0.2.0-9.fc15.src.rpm
rafkill-1.2.3-7.fc16.src.rpm
rekall-2.4.6-17.fc16.src.rpm
rinputd-1.0.4-1.fc16.src.rpm
scim-bridge-0.4.16-7.fc17.src.rpm
scim-fcitx-3.1.1-12.fc15.src.rpm
scim-hangul-0.3.2-9.fc17.src.rpm
scorched3d-43.2a-5.fc17.src.rpm
seamonkey-2.5-2.fc17.src.rpm
sems-1.4.2-2.fc17.src.rpm
smartcardpp-0.3.0-1.fc17.src.rpm
sonic-visualiser-1.8-3.fc17.src.rpm
spectrum-1.4.8-4.fc17.src.rpm
strigi-0.7.6-4.fc17.src.rpm
sunpinyin-2.0.3-2.fc17.src.rpm
svxlink-11.11.1-4.fc17.src.rpm
synaptic-0.57.2-27.fc17.src.rpm
systemtap-1.6-1.fc16.src.rpm
task-1.9.4-1.fc16.src.rpm
telepathy-qt4-0.8.0-2.fc17.src.rpm
tellico-2.3.4-1.fc17.src.rpm
tesseract-3.00-2.fc15.src.rpm
thunderbird-9.0-4.fc17.src.rpm
thunderbird-lightning-1.1-0.1.rc1.fc17.src.rpm
ultimatestunts-0.7.6-1.fc16.src.rpm
uncrustify-0.58-1.fc16.src.rpm
urg-0.8.11-2.fc16.src.rpm
valknut-0.4.9-4.fc15.src.rpm
vios-proxy-0.2-1.fc17.src.rpm
vym-2.0.4-1.fc17.src.rpm
webkitgtk3-1.7.2-1.fc17.src.rpm
wpa_supplicant-0.7.3-11.fc17.src.rpm
xdrawchem-1.9.9-15.fc15.src.rpm
xmoto-0.5.9-1.fc17.src.rpm
xsupplicant-2.2.0-3.fc15.src.rpm
xxdiff-3.2-14.fc15.src.rpm
zoneminder-1.24.4-3.fc17.src.rpm
zorba-2.1.0-1.fc17.src.rpm
-------------- next part --------------
4ti2-1.3.2-8.fc17.src.rpm
activemq-cpp-3.4.0-1.fc17.src.rpm
aplus-fsf-4.22.4-21.fc16.src.rpm
armacycles-ad-0.2.8.3.1-5.fc17.src.rpm
asc-2.4.0.0-3.fc17.src.rpm
bibletime-2.8.2-1.fc17.src.rpm
blobby-0.9c-1.fc17.src.rpm
btanks-0.9.8083-1.fc16.src.rpm
cantor-4.7.95-1.fc17.src.rpm
cryptopp-5.6.1-5.fc17.src.rpm
dcmtk-3.6.0-8.fc17.src.rpm
ember-0.6.2-2.fc17.src.rpm
ETL-0.04.13-2.fc15.src.rpm
fatrat-1.2.0-0.1.beta1.fc17.src.rpm
festival-1.96-18.fc16.src.rpm
freefem++-3.12-1.fc17.src.rpm
frepple-0.9.0-1.fc17.src.rpm
ginac-1.5.8-3.fc16.src.rpm
givaro-3.5.0-1.fc17.src.rpm
gsmartcontrol-0.8.6-3.fc17.src.rpm
gtkmathview-0.8.0-6.fc13.src.rpm
hugin-2011.2.0-4.fc17.src.rpm
k3d-0.8.0.2-5.fc17.src.rpm
kdemultimedia-4.7.95-1.fc17.src.rpm
kdepim3-3.5.10-5.fc15.src.rpm
kdevelop-php-1.2.3-1.fc16.src.rpm
klatexformula-3.2.3-3.fc16.src.rpm
kvirc-4.0.4-2.fc16.src.rpm
lordsawar-0.2.0-4.fc17.src.rpm
mediatomb-0.12.1-14.fc17.src.rpm
mimetic-0.9.6-2.fc15.src.rpm
mldonkey-3.0.3-3.fc17.src.rpm
mm3d-1.3.8a-2.fc15.src.rpm
mrpt-0.9.5-0.2.20110917svn2662.fc17.src.rpm
netpanzer-0.8.3.svn612010-4.fc16.src.rpm
nurbs++-3.0.11-9.fc16.src.rpm
octave-symbolic-1.1.0-1.fc17.src.rpm
piklab-0.15.10-3.fc15.src.rpm
pycryptopp-0.5.29-1.fc15.src.rpm
python-polybori-0.7.2-4.fc17.src.rpm
qca2-2.0.3-2.fc15.src.rpm
ragel-6.6-3.fc15.src.rpm
sblim-wbemcli-1.6.2-1.fc16.src.rpm
schroot-1.4.23-2.fc17.src.rpm
sphinx-0.9.9-6.fc16.src.rpm
spicebird-0.7.1-1.fc11.src.rpm
sword-1.6.2-5.fc17.src.rpm
synfigstudio-0.62.02-1.fc15.src.rpm
tripwire-2.4.1.2-11.fc12.src.rpm
tuxcmd-0.6.70-3.fc17.src.rpm
vdr-1.7.22-1.fc17.src.rpm
vdr-epgsearch-1.0.0-5.fc17.src.rpm
vdr-streamdev-0.5.1-6.fc17.src.rpm
vdr-sudoku-0.3.5-5.fc17.src.rpm
vdr-ttxtsubs-0.2.4-2.fc17.src.rpm
vdr-wapd-0.9-12.patch1.fc17.src.rpm
vfrnav-0.6-3.fc17.src.rpm
vigra-1.8.0-2.fc17.src.rpm
xqilla-2.2.4-2.fc17.src.rpm
xsd-3.3.0-8.fc17.src.rpm
-------------- next part --------------
3Depict-0.0.9-1.fc17.src.rpm
boolstuff-0.1.13-2.fc15.src.rpm
bowtie-0.12.7-2.fc16.src.rpm
codeblocks-10.05-6.fc17.src.rpm
Coin2-2.5.0-11.fc17.src.rpm
cppad-20110101.5-1.fc17.src.rpm
glest-3.2.2-8.fc16.src.rpm
gnome-commander-1.2.8.15-1.fc17.src.rpm
gource-0.37-1.fc17.src.rpm
kdelibs-4.7.95-1.fc17.src.rpm
kicad-2011.07.12-2.rev3047.fc16.src.rpm
krusader-2.4.0-0.2.beta1.fc17.src.rpm
lyx-2.0.2-1.fc17.src.rpm
mercator-0.3.0-2.fc16.src.rpm
mingw32-nsis-2.46-3.fc17.src.rpm
nted-1.10.18-3.fc17.src.rpm
octave-signal-1.1.1-1.fc17.src.rpm
openlierox-0.57-0.16.beta8.fc15.src.rpm
openttd-1.1.3-2.fc17.src.rpm
protobuf-2.4.1-2.fc17.src.rpm
raul-0.8.0-2.fc15.src.rpm
rawtherapee-4.0.5-2.fc17.src.rpm
rcssserver3d-0.6.5-5.fc17.src.rpm
sear-0.6.4-0.2.g0b70ddb.fc17.src.rpm
squirrel-2.2.4-2.fc15.src.rpm
stp-0.1-7.20111130svn.fc17.src.rpm
vegastrike-0.5.1-0.4.beta1.2.fc17.src.rpm
wfmath-0.3.11-2.fc16.src.rpm
-------------- next part --------------
gnuplot-4.4.4-1.fc17.src.rpm
strace-4.6-1.fc16.src.rpm
-------------- next part --------------
aqsis-1.6.0-13.fc17.src.rpm
boost141-1.41.0-2.fc17.src.rpm
boost-1.48.0-2.fc17.src.rpm
cegui-0.7.5-10.fc17.src.rpm
esteid-browser-plugin-1.3.2-2.fc17.src.rpm
Field3D-1.2.1-1.fc17.src.rpm
flush-0.9.10-5.fc17.src.rpm
glob2-0.9.4.4-9.fc17.src.rpm
gnash-0.8.9-7.fc17.src.rpm
gnuradio-3.5.0-2.fc17.src.rpm
LuxRender-0.8.0-9.fc17.src.rpm
meshmagick-0.6.0-9.svn2898.fc16.src.rpm
mygui-3.0.1-10.fc17.src.rpm
ogre-1.7.3-3.fc17.src.rpm
ogre-pagedgeometry-1.1.0-5.fc16.src.rpm
ompl-0.9.5-2.fc17.src.rpm
pdns-3.0-8.fc17.src.rpm
pion-net-4.0.7-4.fc17.src.rpm
player-3.0.2-15.fc17.src.rpm
pokerth-0.8.3-10.fc17.src.rpm
python-visual-5.72-2.fc17.src.rpm
qbittorrent-2.9.2-1.fc17.src.rpm
simspark-0.2.2-5.fc17.src.rpm
springlobby-0.139-1.fc17.src.rpm
tncfhh-0.8.3-4.fc17.src.rpm
uhd-3.3.1-1.fc17.src.rpm
-------------- next part --------------
fife-0.3.2-9.r2.fc17.src.rpm
grub2-1.99-14.fc17.src.rpm
jaffl-0.5.9-1.fc16.src.rpm
jffi-1.0.10-1.fc17.src.rpm
jnr-ffi-0.5.10-3.fc17.src.rpm
medusa-2.0-1.fc16.src.rpm
nekovm-1.8.1-5.fc17.src.rpm
openbabel-2.3.1-1.fc17.src.rpm
pianobooster-0.6.4b-3.fc15.src.rpm
qtwebkit-2.2.1-2.fc17.src.rpm
rubygem-ffi-1.0.9-2.fc16.src.rpm
skychart-3.2-5.fc16.src.rpm
spor-1.0-4.fc15.src.rpm
tcltls-1.6-7.fc15.src.rpm
-------------- next part --------------
gfan-0.5-1.fc17.2.src.rpm
inkscape-0.48.2-1.fc17.src.rpm
kaffeine-1.2.2-1.fc16.src.rpm
krecipes-1.0-0.2.beta2.fc15.src.rpm
muse-2.0-0.5.rc1.fc17.src.rpm
qalculate-kde-0.9.7-3.fc15.src.rpm
rosegarden4-11.11.11-1.fc17.src.rpm
xbase-3.1.2-2.fc15.src.rpm
-------------- next part --------------
CriticalMass-1.5-1.fc17.src.rpm
filezilla-3.5.2-1.fc17.1.src.rpm
pingus-0.7.4-4.fc17.src.rpm
-------------- next part --------------
binutils-2.22-1.fc17.src.rpm
elfutils-0.152-1.fc16.src.rpm
isomd5sum-1.0.7-1.fc16.src.rpm
java-1.6.0-openjdk-1.6.0.0-61.1.10.4.fc17.src.rpm
java-1.7.0-openjdk-1.7.0.1-2.0.3.fc17.src.rpm
krb5-1.10-0.fc17.alpha2.1.src.rpm
libtpms-0.5.1-12.src.rpm
linphone-3.4.3-1.fc17.src.rpm
mdadm-3.2.2-15.fc17.src.rpm
openswan-2.6.36-1.fc17.2.src.rpm
squid-3.2.0.14-2.fc17.src.rpm
v8-3.3.10-4.fc17.src.rpm
-------------- next part --------------
fmt-ptrn-1.3.21-2.fc15.src.rpm
libgconf-java-2.12.6-5.fc17.src.rpm
libglade-java-2.12.8-16.fc17.src.rpm
libvte-java-0.12.3-5.fc17.src.rpm
pdftk-1.44-5.fc16.src.rpm
wfut-1.1.0-9.fc15.src.rpm
-------------- next part --------------
adanaxisgpl-1.2.5-6.fc15.src.rpm
alliance-5.0-32.20090901snap.fc15.src.rpm
anthy-9100h-16.fc15.src.rpm
audacious-plugins-3.1.1-1.fc17.src.rpm
aunit-2010-3.fc16.src.rpm
avr-gcc-4.6.2-1.fc17.src.rpm
blender-2.61-1.fc17.src.rpm
bluez-4.96-3.fc17.src.rpm
cairo-java-1.0.8-4.fc15.src.rpm
ceph-0.37-2.fc17.src.rpm
clisp-2.49-4.fc16.src.rpm
curblaster-1.07-1.fc17.src.rpm
dopewars-1.5.12-10.1033svn.fc15.src.rpm
eigen2-2.0.15-2.fc15.src.rpm
faust-0.9.43-2.fc17.src.rpm
florist-2011-6.fc17.src.rpm
freeciv-2.3.0-1.fc17.src.rpm
frysk-0.4-32.fc17.src.rpm
gccxml-0.9.0-0.7.20111218.fc17.src.rpm
gforth-0.7.0-5.fc16.src.rpm
gigolo-0.4.1-3.fc17.src.rpm
git-1.7.8-1.fc17.src.rpm
glom-1.18.6-1.fc17.src.rpm
gnatcoll-2011-6.fc17.src.rpm
gnomeradio-1.8-16.fc17.src.rpm
gnome-schedule-2.1.5-1.fc17.src.rpm
gnome-subtitles-1.2-1.fc17.src.rpm
gnustep-back-0.20.0-3.fc17.src.rpm
gnustep-base-1.23.0-1.fc17.2.src.rpm
gnustep-examples-1.3.0-9.fc17.src.rpm
gnustep-gui-0.20.0-4.fc17.src.rpm
gorm-1.2.13-0.2.20110331.fc17.src.rpm
gprbuild-2010-9.fc16.src.rpm
grantlee-0.2.0-1.fc17.src.rpm
grass-6.4.1-5.fc17.src.rpm
hamster-applet-2.32.1-1.fc16.src.rpm
hotssh-0.2.7-3.fc15.src.rpm
icu-4.8.1-3.fc17.src.rpm
Inventor-2.1.5-40.fc15.src.rpm
iwhd-1.1-1.fc17.src.rpm
kdelibs3-3.5.10-32.fc17.src.rpm
kdenetwork-4.7.95-1.fc17.src.rpm
kdepim-4.7.95-1.fc17.src.rpm
kmplayer-0.11.2c-5.fc16.src.rpm
ldc-2-9.20111206gitfa5fb92.fc17.src.rpm
libjingle-0.6.0-2.fc17.src.rpm
librep-0.92.1-2.fc17.src.rpm
linbox-1.2.2-2.fc17.src.rpm
llvm-3.0-1.fc17.src.rpm
matreshka-0.1.1-9.fc17.src.rpm
memcached-1.4.10-1.fc17.src.rpm
meshlab-1.3.1-2.fc17.src.rpm
mingw32-gcc-4.6.1-3.fc17.2.src.rpm
mingw-gtk3-3.3.4-1.fc17.src.rpm
minion-0.10-7.fc17.src.rpm
mumble-1.2.3-5.fc17.src.rpm
mysql-5.5.18-1.fc17.src.rpm
octave-3.4.3-2.fc17.src.rpm
olpc-powerd-40-1.fc17.src.rpm
openCOLLADA-0-8.svn863.fc17.src.rpm
openscap-0.8.0-1.fc17.src.rpm
openslide-3.2.4-2.fc17.src.rpm
openvpn-auth-ldap-2.0.3-8.fc17.src.rpm
ORBit2-2.14.19-2.fc15.src.rpm
paraview-3.12.0-5.fc17.src.rpm
perl-Cache-Cache-1.06-7.fc16.src.rpm
perl-Qt-0.96.0-1.fc17.src.rpm
php-pear-Cache-Lite-1.7.12-1.fc17.src.rpm
plplot-5.9.9-1.fc17.src.rpm
pulseaudio-1.1-3.fc17.src.rpm
pure-0.48-1.fc17.src.rpm
python-gnutls-1.1.9-3.fc15.src.rpm
python-logilab-common-0.57.1-1.fc17.src.rpm
python-robofab-1.2.0-3.svn226.fc15.src.rpm
raidem-0.3.1-17.fc17.src.rpm
rb_libtorrent-0.15.8-2.fc17.src.rpm
rmol-0.25.3-2.fc17.src.rpm
root-5.30.04-1.fc17.src.rpm
rubygem-json-1.4.6-3.fc15.src.rpm
rubygem-rerun-0.6.2-1.fc17.src.rpm
scilab-5.3.3-5.fc17.src.rpm
sipwitch-1.1.3-1.fc17.src.rpm
soprano-2.7.4-1.fc17.src.rpm
sqlite-3.7.9-1.fc17.src.rpm
sudoku-savant-1.3-4.fc17.src.rpm
swift-1.0-6.fc17.src.rpm
tamil-typing-booster-0.0.1-5.fc17.src.rpm
travelccm-0.5.3-1.fc17.src.rpm
UnihanDb-5.1.0-7.fc15.3.src.rpm
webkitgtk-1.6.1-3.fc17.src.rpm
xemacs-21.5.31-3.fc17.src.rpm


More information about the devel mailing list