Fedora ARM 12 on IGEPv2 (Beagle Board clone)
by Matthew Wilson
Hi all,
I would like to introduce myself to the group. I have recently
received an IGEPv2 board [1], which is based on the Beagle Board, but
with wifi, bluetooth, ethernet, and more RAM. I'm still at the "wow,
it's tiny and it runs Linux" stage. I should get a bit more time over
the next month and Christmas to play around properly with it.
I'm new to embedded development, but neither new to Linux nor ARM
(writing my first ARM assembly some 15 years ago). However, for the
past 6 years I've not even built a Linux kernel, preferring to use the
default kernel in Fedora for simplicity :)
Firstly, a thank you to those involved in Fedora ARM for getting it to
this stage. If I get the time, I'd really like to contribute some
(probably small) effort to help get Fedora ARM working well on the
IGEPv2 and Beagle Board. As I progress, I'd like to know what I can
do to help.
In the meantime, I have some questions. Apologies in advance if these
seem simple.
1) There are various different kernels from different sources. I'm
used to there being a small set of "right" kernels (that is, Fedora's
idea of "right") for x86. I fully appreciate that different ARM-based
boards are quite different in capabilities (like different instruction
set variants).
a) Is there likely to be some standardised vanilla Fedora ARM kernel
source? (Or is that simply the source RPM available for Fedora?)
Then patches /could/ be offered for the more common systems (e.g.
Beagle Board & clones, SheevaPlug).
b) Would it then make sense to offer these as pre-built RPMs for common systems?
c) Is there any guidance on which version is good to use as a base?
I've seen quite different kernel versions being used (from 2.6.27 to
2.6.31).
2) I understand a little bit about the different calling conventions,
FP differences (e.g. soft FPU versus VFP), and instruction set
differences (v5 versus v7).
a) Can the kernel can be safely built with a different instruction set
targeted? (I know there are different optimisation options passed to
GCC. Apologies if this seems a bit newbie-ish.)
b) For FP-heavy programs (e.g. ogg encoding), is it possible to build
the packages with VFP/NEON but still get them to work in a soft FPU
system? I'd imagine any call to an external library would have to
somehow be defined to use a different calling standard.
3) There seem to be some missing dependencies in the packages in the
current Fedora ARM repository. For example, emacs is requiring
libotf, which doesn't seem to be there in the repository. And
likewise with the xorg-x11-font* packages needing ttmkdir. I'm
confused as to how the RPM could have been successfully built without
it. What am I missing?
4) I see there has been some discussion over unaligned data access.
(Oh, I remember that from the ARM2 days.) It seems as if the
Cortex-A8 cores allow unaligned data access when set up to do so [2].
Does this, in any way, help with the compatibility of packages
targetting Cortex-A8?
5) I've managed to get various source packages missing from the Fedora
ARM repositories to compile successfully (natively). I guess there is
a reason why there are not in the repos right now -- is that reason
down to time and priorities, or is there some blocking bugs with many
of these packages?
I look forward to being able to contribute something back into Fedora!
Kind regards,
Matthew
[1] http://www.igep-platform.com/index.php?option=com_content&view=article&id...
[2] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0344j/Beih...
7 years, 8 months
Pogoplug Pro/OXNAS
by Callum Lerwick
Hi. I've been looking for a way to get a very power efficient, but
still full featured Fedora server for a while, and the recent influx
of "plug computers" finally provides the answer. Long story short, I
ended up snagging a Pogoplug Pro on sale at Micro Center for $50,
before I learned that the Pro is NOT derived from the Kirkwood
reference design, but is a completely different architecture called
OXNAS from Oxford Semiconductor/PLX. As far as my googling can tell,
the recent "black" generation of Pogoplug hardware seems to be the
only product in the world using the OXNAS 820 SoC right now. It looks
like the WD MyBook uses/used an earlier OXNAS 810 chipset.
http://www.plxtech.com/products/consumer/nas7820
http://www.linuxfordevices.com/c/a/News/PLX-Technology-NAS-7800/
It is also "cost reduced" from earlier Pogoplugs, having only 128mb
RAM and 128mb of flash. Its a bit slower at 700mhz but is somewhat
compensated for by being dual-core. On the up side, there is in fact a
SATA port hidden inside the Pogoplug Pro. It also has some interesting
features like TCP offload and supposedly an encryption engine. (but I
haven't seen any sign of support for the encryption engine in the
Cloud Engines source so far) There's also a mini-PCIe slot containing
the Pro's wireless card.
Anyway, I managed to get Fedora 13 beta3 running on it by first
installing PlugApps on it, then I just swapped in a Fedora root FS:
http://archlinuxarm.org/platforms/armv6/pogoplug-provideov3
Make sure to copy /lib/modules and /usr/local over from the PlugApps
FS. The network driver is compiled as a module, and it will not auto
load. Especially if you don't have a serial console set up, before
booting you'll need to pop in a script at
/etc/sysconfig/modules/oxnas-gmac.modules :
#!/bin/sh
exec /sbin/modprobe gmac >/dev/null 2>&1
Make sure it is chmod 755
Also the driver wants firmware for the TCP offload, and seems to have
a bug where it will just lock up the system if it can't find it.
You'll find it at /lib/modules/2.6.31.6_SMP_820/gmac_copro_firmware ,
just move it to /lib/firmware/ and you should have working ethernet.
There's some weirdness with the MAC address, the driver just sets it
to a hardwired default of "00:30:E0:00:00:00" as there does not seem
to be in-kernel infrastructure to read uboot variables. The PlugApps
install script writes the MAC into /usr/local/mac_addr and the network
scripts change it before bringing the interface up. I don't understand
why they don't just read it directly from NVRAM using
/usr/local/cloudengines/bin/blparam . But currently my Pogoplug Pro is
just using the default MAC. Setting the MAC properly should be a
simple matter of scripting...
Unfortunately the PlugApps kernel is very minimal. It does not have
any NFS server support enabled, and for some reason ext4 is compiled
as a module, so your root FS has to be ext2 or ext3.
I managed to successfully compile the Cloud Engines kernel source and
write it to flash just past the original PlugApps kernel, so the
original PlugApps kernel and even the stock Pogoplug OS can still be
booted in a pinch using the uboot console. (But I may have overwritten
a backup Pogoplug kernel...)
http://www.pogoplug.com/developers-open-source.html
If you do not have a serial console set up, do NOT mess with the
flash! If you screw up the boot sequence, there is no way to un-brick
these things without one. There is NO "reset nvram to defaults"
button.
I'd really like to run btrfs on this, but the stock kernel is 2.6.31,
and my research indicates you want at least 2.6.33 for stable btrfs.
Also, support for the wireless card was merged in 2.6.34. I have
successfully upgraded the kernel through the incredibly awkward and
time consuming (but educational) method of applying the Cloud Engines
changes to 2.6.31 in a git branch, then rebasing 2.6.32 on top of it.
So my Pogoplug Pro has been running 2.6.32 for the last few months
with no problem. I'll see about pushing forward further once I have
some time to kill. (Pretty much takes a full day for my old secondary
laptop to chew through the whole rebase...)
So now I have my Pogoplug Pro working nicely as a Samba server for my
windows machines, and a NFS4 server for my Fedora machines.
I originally wanted to run a MythTV backend on it, but that may be
pushing it a bit with only 128mb RAM. Not to mention the fun of
getting MythTV compiled for Fedora arm in the first place...
11 years, 10 months
ARM F-14 Branched report: 20110823 changes
by Fedora compose checker
Compose started at Tue Aug 23 12:53:27 UTC 2011
Broken deps for arm
----------------------------------------------------------
389-console-1.1.4-1.fc14.noarch requires java >= 1:1.6.0
389-ds-1.2.1-1.fc14.noarch requires 389-ds-console-doc
389-ds-1.2.1-1.fc14.noarch requires 389-admin-console-doc
AcetoneISO-6.7-7.fc12.armv5tel requires kdewebdev
GMT-coastlines-2.1.0-1.fc14.noarch requires GMT-common
JSDoc-1.10.2-9.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
Mayavi-3.3.2-1.fc13.armv5tel requires libpython2.6.so.1.0
Mayavi-3.3.2-1.fc13.armv5tel requires python(abi) = 0:2.6
MiniCopier-0.5-1.fc14.noarch requires java >= 1:1.6.0
PackageKit-smart-0.6.9-4.fc14.armv5tel requires smart
Perlbal-1.76-1.fc14.noarch requires perl(Perlbal::XS::HTTPHeaders)
PgsLookAndFeel-1.1-4.20090805cvs.fc14.noarch requires java >= 1:1.6.0
PolicyKit-olpc-1.2-2.fc11.noarch requires /var/lib/PolicyKit-public
PyAmanith-0.3.35-8.fc12.armv5tel requires python(abi) = 0:2.6
PyAmanith-0.3.35-8.fc12.armv5tel requires libpython2.6.so.1.0
QuantLib-test-0.9.9-1.fc13.armv5tel requires libboost_unit_test_framework.so.1.41.0
R-BSgenome-1.14.2-1.fc12.noarch requires R-Biostrings
R-BSgenome-1.14.2-1.fc12.noarch requires R-IRanges
R-GenomicFeatures-0.0.9-2.fc14.noarch requires R-IRanges
RBTools-0.2-5.fc14.noarch requires python(abi) = 0:2.6
RabbIT-4.1-9.fc13.noarch requires java >= 1:1.6.0
RasmusDSP-0.1-3.20090321cvs.fc12.armv5tel requires java >= 0:1.7
ScientificPython-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-2.8-12.fc13.armv5tel requires libpython2.6.so.1.0
ScientificPython-qt-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-tk-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
SolarModel-2.1-7.fc14.armv5tel requires libIrrlicht.so.1.6
SteGUI-0.0.1-16.fc12.armv5tel requires csound-fltk
TVAnytimeAPI-1.3-6.fc12.noarch requires java >= 1:1.6.0
TnL-data-071111-5.fc12.noarch requires TnL >= 0:071111
adonthell-0.3.5-0.8.fc12.armv5tel requires libpython2.6.so.1.0
aduna-root-poms-13-1.fc13.noarch requires logback
alchemist-1.0.37-8.fc12.armv5tel requires python-abi = 0:2.6
alchemist-1.0.37-8.fc12.armv5tel requires python(abi) = 0:2.6
aldrin-0.13-5.fc14.noarch requires pyzzub >= 0:0.2.6
alienarena-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alienarena-server-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alsa-firmware-1.0.23-1.fc14.noarch requires alsa-tools-firmware >= 0:1.0.23
antlr-maven-plugin-2.1-3.20101012svn12849.fc14.noarch requires java >= 1:1.6.0
antlrworks-1.4-4.fc14.noarch requires antlr3-tool
antlrworks-1.4-4.fc14.noarch requires java-devel >= 1:1.6.0
apache-commons-beanutils-1.8.3-2.fc14.noarch requires java >= 1:1.6.0
apache-commons-codec-1.4-10.fc14.noarch requires java >= 1:1.6.0
apache-commons-compress-1.0-8.fc14.noarch requires java >= 1:1.6.0
apache-commons-exec-1.0.1-2.fc13.noarch requires java >= 1:1.6.0
1:apache-commons-io-1.4-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-lang-2.5-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-launcher-1.1-5.20100521svn936225.fc14.noarch requires java >= 1:1.6.0
apache-commons-logging-1.1.1-11.fc14.noarch requires java >= 1:1.6.0
apache-commons-math-2.0-6.fc13.noarch requires java >= 1:1.6.0
apache-commons-net-2.0-6.fc14.noarch requires java >= 1:1.6.0
apbs-1.2.1-2.fc13.armv5tel requires python(abi) = 0:2.6
appframework-1.03-6.fc12.noarch requires java >= 1:1.6.0
appliance-tools-004.5-1.fc14.noarch requires qemu-img
apt-python-0.5.15lorg3.95-0.git416.6.fc13.armv5tel requires python(abi) = 0:2.6
ardour-2.8.7-1.fc13.armv5tel requires liblo.so.0
arduino-0021-1.fc14.noarch requires arduino-doc = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires arduino-core = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires java >= 1:1.6.0
asterisk-snmp-1.6.2.6-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
aubio-python-0.3.2-8.fc13.armv5tel requires python(abi) = 0:2.6
autobuild-applet-1.0.3-10.fc12.armv5tel requires libpython2.6.so.1.0
autotrust-0.3.1-3.fc13.armv5tel requires libunbound.so.1
azureus-4.5.1.0-1.fc14.noarch requires eclipse-swt >= 0:3.5
azureus-4.5.1.0-1.fc14.noarch requires java >= 1:1.6.0
backintime-kde-0.9.26-4.fc14.noarch requires PyKDE4
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Core) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Widgets) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Services) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.ThickClient) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena.Gui) = 0:1.6.0.0
barry-0.17-0.6.20110126git.fc13.armv5tel requires libboost_serialization.so.1.41.0
batik-1.7-6.fc12.noarch requires java-1.6.0-openjdk >= 1:1.6.0.0
beansbinding-1.2.1-5.fc12.noarch requires java >= 1:1.6.0
belier-1.2-4.fc13.noarch requires python(abi) = 0:2.6
bes-3.8.4-2.fc14.armv5tel requires libdap.so.10
beteckna-fonts-0.3-6.fc14.noarch requires beteckna-fonts-common = 0:0.3-6.fc14
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-pyuno
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-writer
bindex-2.2-2.svn96.fc14.noarch requires java >= 1:1.6.0
blueman-1.21-4.fc13.armv5tel requires python(abi) = 0:2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires /usr/bin/python2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires python(abi) = 0:2.6
bolzplatz2006-1.0.3-10.fc13.armv5tel requires libjawt.so(SUNWprivate_1.1)
bolzplatz2006-1.0.3-10.fc13.armv5tel requires java-1.6.0-openjdk
bouncycastle-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-mail-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-tsp-1.45-1.fc13.armv5tel requires java >= 0:1.7
bugzilla-3.6.2-1.fc14.noarch requires bugzilla-contrib
bzr-gtk-0.98.0-1.fc13.armv5tel requires python(abi) = 0:2.6
calibre-0.7.20-1.fc14.armv5tel requires libpodofo.so.0.8.0
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires python(abi) = 0:2.6
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires libpython2.6.so.1.0
canto-0.7.4-1.fc12.armv5tel requires python(abi) = 0:2.6
canto-0.7.4-1.fc12.armv5tel requires libpython2.6.so.1.0
cas-1.0-1.fc14.noarch requires crash
cbios-openmsx-0.23-2.fc12.noarch requires openmsx >= 0:0.5.0
ccsm-0.8.4-4.fc14.noarch requires compizconfig-python >= 0:0.8.4
ccsm-0.8.4-4.fc14.noarch requires libcompizconfig >= 0:0.8.4
cfdg-fe-0.1-4.fc12.armv5tel requires cfdg
cglib-2.2-6.fc13.noarch requires java >= 0:1.6.0
cinepaint-0.22.1-14.fc12.armv5tel requires libpython2.6.so.1.0
cinepaint-0.22.1-14.fc12.armv5tel requires python(abi) = 0:2.6
cinepaint-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
cinepaint-libs-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-gtk-0.4.so.0
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-0.4.so.0
1:clojure-1.2.0-1.fc14.noarch requires java >= 1:1.6
cman-3.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
cman-3.1.1-1.fc13.armv5tel requires fence-virt >= 0:0.2.1-1
cman-3.1.1-1.fc13.armv5tel requires modcluster >= 0:0.18.1-1
cmusphinx3-python-0.8-3.fc12.armv5tel requires python(abi) = 0:2.6
cmusphinx3-python-0.8-3.fc12.armv5tel requires libpython2.6.so.1.0
cobertura-1.9.3-1.fc14.noarch requires java >= 1:1.6.0
coccinella-0.96.18-1.fc14.noarch requires iaxclient
codeblocks-contrib-10.05-1.fc13.armv5tel requires valgrind
colossus-0.10.3-1.fc14.armv5tel requires java >= 0:1.6
compiz-manager-0.6.0-10.fc12.noarch requires compiz
compiz-manager-0.6.0-10.fc12.noarch requires libcompizconfig
compizconfig-backend-kconfig4-0.8.4-2.fc13.armv5tel requires libcompizconfig.so.0
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-job-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-ec2-enhanced-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires condor >= 0:7.0.2-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-job-hooks-common >= 0:1.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires condor >= 0:7.2.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-ec2-enhanced-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires python-condor-job-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires condor >= 0:7.0.2-4
condor-low-latency-1.0-19.fc12.noarch requires python-condor-job-hooks-common
condor-low-latency-1.0-19.fc12.noarch requires condor >= 0:7.0.2-4
conmux-0.0-11.493svn.fc14.noarch requires conmux-client = 0:0.0-11.493svn.fc14
conmux-0.0-11.493svn.fc14.noarch requires perl(Conmux)
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires libpython2.6.so.1.0
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires python(abi) = 0:2.6
cpm-0.23-0.3.beta.fc12.armv5tel requires libdotconf-1.0.so.0
cryptkeeper-0.9.5-1.fc13.armv5tel requires fuse-encfs
cvs2svn-2.3.0-0.3.r4998svn.fc14.noarch requires cvs2commons
dap-freeform_handler-3.8.1-1.fc14.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libbes_dispatch.so.7
dap-server-3.9.3-2.fc12.armv5tel requires libdap.so.10
dap-server-3.9.3-2.fc12.armv5tel requires libbes_dispatch.so.7
dap-server-cgi-3.9.3-2.fc12.armv5tel requires dap-hdf4_handler
dbus-java-2.7-4.fc14.noarch requires java-1.6.0-openjdk
dcbd-0.9.19-3.fc13.armv5tel requires libconfig.so.8
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch-records = 0:0.6.6-2.fc14
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch = 0:0.6.6-2.fc14
ditaa-0.9-4.r74.fc14.noarch requires java >= 1:1.6.0
django-addons-0.6.3-1.fc13.noarch requires python(abi) = 0:2.6
django-ajax-selects-1.1.4-3.fc13.noarch requires python(abi) = 0:2.6
django-authopenid-0.9.6-4.fc12.noarch requires python(abi) = 0:2.6
django-reversion-1.3.2-2.fc13.noarch requires python(abi) = 0:2.6
django-simple-captcha-0.2.0-4.fc13.noarch requires python(abi) = 0:2.6
django-staticfiles-0.3.2-3.fc13.noarch requires python(abi) = 0:2.6
django-threadedcomments-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
django-tracking-0.2.7-1.fc13.noarch requires python(abi) = 0:2.6
dnsjava-2.0.6-7.fc12.noarch requires java >= 0:1.7
dogtag-pki-1.3.0-2.fc13.noarch requires pki-common-javadoc
dogtag-pki-1.3.0-2.fc13.noarch requires pki-util-javadoc
dogtag-pki-console-ui-1.3.2-2.fc14.noarch requires java >= 1:1.6.0
dpkt-1.7-2.fc13.noarch requires python(abi) = 0:2.6
dracut-fips-006-3.fc14.noarch requires hmaccalc
drpython-3.11.1-1.fc13.noarch requires python(abi) = 0:2.6
dssi-1.1.0-2.fc14.armv5tel requires liblo.so.0
dssi-examples-1.1.0-2.fc14.armv5tel requires liblo.so.0
dx-samples-4.4.0-6.fc12.noarch requires dx
echo-artist-0.1.1-3.fc12.noarch requires inkscape
echolinux-0.17a-6.fc13.armv5tel requires libforms.so.1
eclipse-anyedit-2.2.0-2.fc12.noarch requires eclipse-platform >= 0:3.4.0
eclipse-birt-2.5.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.1
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-jdt
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.5
eclipse-cmakeed-1.1.5-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-collabnet-merge-2.0.0-1.fc13.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-2.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-sdk-2.0.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-dtp-1.8.0-1.fc14.noarch requires eclipse-platform >= 1:3.4.2
eclipse-eclemma-1.5.0-2.fc14.noarch requires eclipse-jdt >= 1:3.4.1
eclipse-eclox-0.8.0-4.20090616svn.fc13.noarch requires eclipse-platform
eclipse-egit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-emf-2.6.0-2.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-emf-query-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-emf-transaction-1.3.1-2.fc13.noarch requires eclipse-platform >= 1:3.5.1
eclipse-emf-validation-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-xsd-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-epic-0.6.35-2.fc12.noarch requires eclipse-platform >= 0:3.4
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-rpm-editor
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-changelog
eclipse-findbugs-1.3.9-2.fc13.noarch requires eclipse-jdt
eclipse-findbugs-1.3.9-2.fc13.noarch requires java-1.6.0-openjdk
eclipse-findbugs-1.3.9-2.fc13.noarch requires ant-findbugs
eclipse-gef-3.6.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.1
eclipse-gef-sdk-3.6.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.1
eclipse-jgit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-m2m-qvtoml-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-manpage-0.0.1-0.svn24060.1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mdt-ocl-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-mdt-uml2-3.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-jdt
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mylyn-3.4.0-4.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-mylyn-cdt-3.4.0-4.fc14.noarch requires eclipse-cdt
eclipse-mylyn-java-3.4.0-4.fc14.noarch requires eclipse-jdt
eclipse-mylyn-pde-3.4.0-4.fc14.noarch requires eclipse-pde
eclipse-nls-3.5.0.v20090620043401-2.fc12.noarch requires eclipse-platform >= 0:3.4.0-18
eclipse-photran-5.0.0-0.4.200910081739.fc13.noarch requires eclipse-cdt >= 1:6.0
eclipse-photran-6.0.3-3.fc14.noarch requires eclipse-cdt >= 1:7.0.0
eclipse-phpeclipse-1.2.3-2.fc14.noarch requires eclipse-platform >= 0:3.4
eclipse-ptp-pldt-upc-4.0.3-3.fc14.noarch requires eclipse-cdt-parsers >= 1:7.0.0
eclipse-quickrex-3.5.0-12.fc12.noarch requires eclipse-platform >= 0:3.2.1
eclipse-rpmstubby-0.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-rse-3.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-shelled-2.0.0-0.M3.1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires ice-java >= 0:3.3.1
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-platform >= 0:3.2
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-setools >= 0:3.3.2.2
eclipse-subclipse-1.6.12-1.fc14.noarch requires eclipse-platform
eclipse-svnkit-1.3.3-5.fc14.noarch requires eclipse-platform
eclipse-systemtapgui-1.1-1.fc14.noarch requires eclipse-platform
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-jdt
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-texlipse-1.3.0-2.20090829cvs.fc12.noarch requires eclipse-platform
eclipse-veditor-0.6.3-4.fc12.noarch requires eclipse-platform
edje-0.9.9.050-7.fc13.armv5tel requires libembryo.so.0
edje-devel-0.9.9.050-7.fc13.armv5tel requires inkscape
eet-1.2.3-2.fc13.armv5tel requires libeina-ver-svn-05.so.0
ekg-1.8-0.6.rc1.fc12.armv5tel requires libpython2.6.so.1.0
ekg2-python-0.2-0.11.rc1.fc13.armv5tel requires libpython2.6.so.1.0
electric-8.09-1.fc12.noarch requires java-1.6.0-openjdk
emacs-common-tuareg-1.45.6-9.fc12.noarch requires ocaml-emacs
emacs-spice-mode-1.2.25-4.fc14.noarch requires gwave
ember-media-0.5.6-3.noarch requires ember >= 0:0.5.6
emerald-themes-0.5.2-5.fc14.noarch requires compiz >= 0:0.5.2
emerald-themes-0.5.2-5.fc14.noarch requires emerald >= 0:0.5.2
epiphany-2.30.2-1.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-0.2.2-4.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-python-0.2.2-4.fc13.armv5tel requires python(abi) = 0:2.6
ethos-python-0.2.2-4.fc13.armv5tel requires libpython2.6.so.1.0
fedora-business-cards-0.2.4.2-4.fc14.noarch requires inkscape >= 0:0.47-0.11.20090602svn
fedora-gnat-project-common-1.2-2.fc14.noarch requires gcc-gnat
fedora-gnat-project-common-1.2-2.fc14.noarch requires libgnat-static
fedora-idm-console-1.1.3-2.fc12.armv5tel requires java >= 1:1.6.0
fedora-package-config-smart-13-21.armv5tel requires smart
fedora-usermgmt-0.11-1405.fc14.noarch requires instance(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires setup(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires fedora-usermgmt-core = 0:0.11-1405.fc14
felix-framework-2.0.5-3.fc14.noarch requires java >= 1:1.6.0
felix-main-2.0.5-5.fc14.noarch requires java >= 1:1.6.0
felix-osgi-compendium-1.4.0-3.fc14.noarch requires java >= 1:1.6.0
felix-osgi-core-1.4.0-2.fc14.noarch requires java >= 1:1.6.0
felix-osgi-foundation-1.2.0-3.fc14.noarch requires java >= 1:1.6.0
felix-parent-1.2.1-2.fc14.noarch requires maven-release-plugin
felix-parent-1.2.1-2.fc14.noarch requires maven-plugin-plugin
fence-agents-3.1.4-1.fc13.armv5tel requires /usr/bin/virsh
1:fife-0.3.1-2.fc13.armv5tel requires libboost_filesystem.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires python(abi) = 0:2.6
1:fife-0.3.1-2.fc13.armv5tel requires libpython2.6.so.1.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_system.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_regex.so.1.41.0
findbugs-1.3.9-3.fc14.noarch requires java-1.6.0-openjdk
findbugs-contrib-4.2.0-1.fc14.noarch requires java-1.6.0-openjdk
firewalk-5.0-5.fc12.armv5tel requires libpcap.so.0.9
firmware-extract-2.0.13-3.fc13.noarch requires python(abi) = 0:2.6
firstaidkit-plugin-grub-0.2.17-1.fc14.armv5tel requires grub
fluidsynth-dssi-1.0.0-2.fc12.armv5tel requires liblo.so.0
fonttools-2.2-7.fc12.armv5tel requires python(abi) = 0:2.6
fonttools-2.2-7.fc12.armv5tel requires libpython2.6.so.1.0
fop-0.95-5.fc14.noarch requires java-1.6.0-openjdk
freecol-0.8.3-2.fc12.noarch requires java-1.6.0-openjdk
freemarker-2.3.13-8.fc14.noarch requires java >= 1:1.6.0
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libml.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcxcore.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libhighgui.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcvaux.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcv.so.2
frescobaldi-1.0.3-1.fc14.noarch requires PyKDE4
frinika-0.6.0-3.fc13.noarch requires java >= 0:1.7
fusion-icon-0.1.0-0.8.5e2dc9git.fc14.noarch requires fusion-icon-ui=0.1.0-0.8.5e2dc9git.fc14
gaupol-0.17-2.fc14.noarch requires aeidon
gazpacho-0.7.2-8.fc14.noarch requires python-kiwi-gazpacho
gcompris-9.5-1.fc13.armv5tel requires libpython2.6.so.1.0
gdata-java-1.41.2-1.fc14.noarch requires java >= 1:1.6.0
gdb-heap-0.5-1.fc14.armv5tel requires glibc(armv5tel-32) = 0:2.12.90
gdcm-2.0.16-5.fc12.armv5tel requires libpoppler.so.5
gdcm-python-2.0.16-5.fc12.armv5tel requires python(abi) = 0:2.6
gdcm-python-2.0.16-5.fc12.armv5tel requires libpython2.6.so.1.0
gedit-valencia-0.3.0-4.fc13.armv5tel requires libvala.so.0
geeqie-1.0-9.fc13.armv5tel requires libexiv2.so.6
geronimo-annotation-1.0-2.fc14.noarch requires java >= 1:1.6.0
geronimo-interceptor-1.0.1-2.fc14.noarch requires java >= 1:1.6.0
geronimo-jpa-1.1.1-3.fc14.noarch requires java >= 1:1.6.0
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-plugin
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-enforcer
gg2-core-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gg2-libs-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gget-0.0.4-12.fc12.armv5tel requires python(abi) = 0:2.6
ghmm-0.7-4.svn2286.fc13.armv5tel requires libpython2.6.so.1.0
ghmm-0.7-4.svn2286.fc13.armv5tel requires python(abi) = 0:2.6
ginac-1.5.6-1.fc13.armv5tel requires libcln.so.6
ginac-devel-1.5.6-1.fc13.armv5tel requires pkgconfig(cln) >= 0:1.1.6
ginac-devel-1.5.6-1.fc13.armv5tel requires cln-devel
ginac-utils-1.5.6-1.fc13.armv5tel requires libcln.so.6
gkrellxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager-setup >= 0:3
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
glom-1.14.1-1.fc13.armv5tel requires python(abi) = 0:2.6
glom-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
glom-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
gmpc-0.19.1-3.1.fc14.armv5tel requires libmicrohttpd.so.5
gmpy-1.14-1.fc13.armv5tel requires python(abi) = 0:2.6
gmpy-1.14-1.fc13.armv5tel requires libpython2.6.so.1.0
gnofract4d-3.13-1.fc13.armv5tel requires python(abi) = 0:2.6
gnofract4d-3.13-1.fc13.armv5tel requires libpython2.6.so.1.0
gnome-applet-music-2.5.1-4.fc12.armv5tel requires python(abi) = 0:2.6
gnome-bluetooth-moblin-2.30.0-1.fc13.armv5tel requires libmoblin-panel.so.0
gnome-chemistry-utils-gnumeric-0.12.8-2.fc13.armv5tel requires libspreadsheet-1.10.0.so
1:gnome-games-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
1:gnome-games-extra-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
gnome-hearts-0.3-4.fc12.armv5tel requires libpython2.6.so.1.0
gnome-valgrind-session-1.1-5.fc12.noarch requires valgrind
gnomecatalog-0.3.4.2-3.fc12.noarch requires python(abi) = 0:2.6
gnote-0.7.3-2.fc13.armv5tel requires libboost_system-mt.so.1.41.0
gnote-0.7.3-2.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
1:gnubg-0.9.0.1-8.fc12.armv5tel requires libpython2.6.so.1.0
grc-0.70-6.fc12.noarch requires gnuradio
gspiceui-0.9.98-2.fc14.armv5tel requires gwave
gstreamer-java-1.4-2.fc14.noarch requires java >= 1:1.6.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libgmyth.so.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libWildMidi.so.0
gtk-redshift-1.6-3.fc13.armv5tel requires python(abi) = 0:2.6
gtkparasite-0-0.4.20090120git928494e5.fc12.armv5tel requires libpython2.6.so.1.0
guake-0.4.2-2.fc13.armv5tel requires libpython2.6.so.1.0
gxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
halberd-0.2.3-2.fc12.noarch requires python(abi) = 0:2.6
hamcrest-1.1-9.2.fc12.armv5tel requires java-1.6.0
hamlib-python-1.2.9-1.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires libpython2.6.so.1.0
hexter-dssi-0.6.2-3.fc12.armv5tel requires liblo.so.0
holland-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-common-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqldump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqllvm-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-pgdump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-xtrabackup-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
htmlparser-1.6-5.fc12.1.noarch requires java >= 1:1.6.0
hugin-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hydrogen-drumkits-0.9.3-3.20080907.fc12.noarch requires hydrogen >= 0:0.9.3
hyperestraier-perl-1.4.13-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
ibus-table-extraphrase-1.2.0.20100305-1.fc14.noarch requires pkgconfig(ibus-table)
icc_examin-0.46-3.fc12.armv5tel requires liboyranos.so.0.1.9
idm-console-framework-1.1.5-1.fc14.noarch requires java >= 1:1.6.0
imagej-1.43-1.m.fc13.noarch requires java-devel >= 0:1.6.0
impressive-0.10.3-5.fc13.noarch requires python(abi) = 0:2.6
ini4j-0.4.1-2.fc12.noarch requires java >= 1:1.6.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngcclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngeclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires initng >= 0:0.6.8
inksmoto-0.7.0-4.fc14.noarch requires inkscape
input-pad-python-1.0.1-2.fc13.armv5tel requires python(abi) = 0:2.6
input-pad-python-1.0.1-2.fc13.armv5tel requires libpython2.6.so.1.0
istanbul-0.2.2-14.fc13.armv5tel requires python(abi) = 0:2.6
jabber-roster-0.1.0-1.fc13.noarch requires python(abi) = 0:2.6
jakarta-commons-codec-1.4-5.fc13.noarch requires java >= 1:1.6.0
jakarta-commons-compress-1.0-1.fc13.noarch requires java >= 1:1.6.0
jamin-0.95.0-8.20100210cvs.fc13.armv5tel requires liblo.so.0
java-augeas-0.0.2-1.fc14.noarch requires java >= 1:1.5.0
java-gnome-4.0.16-2.fc14.armv5tel requires java >= 1:1.6.0
javacsv-2.0-3.fc13.noarch requires java >= 1:1.5
javahelp2-2.0.05-8.fc12.noarch requires java >= 1:1.6.0
javassist-3.9.0-7.fc13.noarch requires java >= 1:1.6.0
jaxodraw-2.0.1-8.fc14.noarch requires java >= 1:1.6.0
jcalendar-1.3.2-3.fc12.noarch requires java >= 1:1.6.0
jcharts-0.7.5-4.fc14.noarch requires java >= 1:1.6.0
jemmy-2.3.0.0-4.fc12.noarch requires java >= 1:1.6.0
jericho-html-3.1-3.fc14.noarch requires java >= 1:1.6.0
jettison-1.2-1.fc14.noarch requires java >= 1:1.6.0
jeuclid-3.1.3-12.fc12.noarch requires java >= 1:1.6.0
jffi-0.6.5-4.fc13.armv5tel requires java >= 1:1.6.0
jide-oss-2.7.6-3.1340svn.fc14.noarch requires java >= 1:1.6.0
jmod-0.9-2.fc12.armv5tel requires java >= 0:1.7
jmol-11.8.26-1.fc14.noarch requires java >= 1:1.6.0
jna-3.2.7-4.fc14.armv5tel requires java >= 1:1.6.0
jnr-constants-0.7-2.fc14.noarch requires java >= 1:1.6.0
jnr-x86asm-0.1-2.fc14.noarch requires java >= 1:1.6.0
joda-time-1.6.2-2.tzdata2010l.fc14.noarch requires java >= 1:1.6.0
josm-0-0.11.3592svn.fc14.noarch requires java >= 1:1.6.0
jpcap-0.7-8.fc12.armv5tel requires java >= 1:1.6
2:jtidy-1.0-0.9.20100930svn1125.fc14.noarch requires java >= 1:1.6.0
junit4-4.8.2-1.fc14.noarch requires java-1.6.0
jython-2.2.1-4.6.fc14.noarch requires java >= 1:1.6.0
kanyremote-5.11.8-1.fc14.noarch requires PyKDE4
kbluetooth-0.4.1-1.fc13.armv5tel requires libknotificationitem-1.so.1
kcbench-0.3-6.1.noarch requires kcbench-datafiles
kcbench-data-0.1-6.fc14.noarch requires kcbench-data-2.6.35 = 0:0.1-6.fc14
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires libexiv2.so.6
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libcln.so.6
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libgps.so.18
kdebase-workspace-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires PyKDE4 >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires python(abi) = 0:2.6
6:kdegames-4.5.5-1.fc13.armv5tel requires PyKDE4
7:kdegraphics-libs-4.4.2-3.fc13.armv5tel requires libexiv2.so.6
kdelibs3-devel-3.5.10-23.fc13.armv5tel requires libkdnssd-devel
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
7:kdenetwork-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdepim-libs-4.4.10-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires akonadi(armv5tel-32) >= 0:1.4.3
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires kdepimlibs-akonadi(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kross(python)
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires libpython2.6.so.1.0
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-minimal-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-printer-applet-4.5.5-1.fc13.armv5tel requires PyKDE4
kdm-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdm-4.5.5-1.fc13.armv5tel requires kde-settings-kdm
klavaro-1.6.0-1.fc13.armv5tel requires libgtkdatabox-0.9.0.so.1
kmess-2.0.6.1-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kmid2-0.2.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
2:koffice-langpack-2.2.2-1.fc14.noarch requires koffice-core >= 2:2.2.1
koji-vm-1.6.0-1.fc14.noarch requires qemu-img
koji-vm-1.6.0-1.fc14.noarch requires libvirt-python
konversation-1.3.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kpackagekit-0.6.1-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
kphotobymail-0.4.1-8.fc14.noarch requires PyKDE >= 0:3.16
kreetingkard_templates-0.2.0-4.fc12.noarch requires kreetingkard >= 0:0.7.1
ktorrent-libs-4.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kvirc-4.0.4-1.fc13.armv5tel requires libpython2.6.so.1.0
l2fprod-common-7.3-6.20090428cvs.fc12.noarch requires java >= 1:1.6.0
laf-plugin-1.0-6.fc12.noarch requires java >= 1:1.6.0
lazygal-0.4.1-4.fc12.noarch requires python(abi) = 0:2.6
lekhonee-0.7-3.fc14.noarch requires lekhonee-lib = 0:0.7-3.fc14
lekhonee-0.7-3.fc14.noarch requires PyKDE4
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1(liboggz.so.0.2)
libbluray-0.1-0.3.20101028gitc32862b77dea4.fc13.armv5tel requires java-1.6.0
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickCore.so.2
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickWand.so.2
libktorrent-1.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
libmatroska-0.9.0-1.fc14.armv5tel requires libebml.so.0
libmatthew-java-0.7.2-3.fc14.armv5tel requires java-1.6.0-openjdk
libphidget-java-2.1.8.20110310-1.fc13.armv5tel requires java >= 1:1.6.0
libpst-python-0.6.49-1.fc13.armv5tel requires python(abi) = 0:2.6
libpst-python-0.6.49-1.fc13.armv5tel requires libboost_python.so.1.41.0
libqalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
libqalculate-devel-0.9.7-2.fc13.armv5tel requires cln-devel
librtfcomp-python-1.1-6.fc12.armv5tel requires python(abi) = 0:2.6
libvirt-java-0.4.6-1.fc14.noarch requires libvirt-client >= 0:0.8.2
libvirt-java-0.4.6-1.fc14.noarch requires java >= 1:1.5.0
libxfce4ui-devel-4.7.2-2.fc14.armv5tel requires libgladeui-1.so.9
listen-0.6.5-2.fc13.armv5tel requires libpython2.6.so.1.0
liveusb-creator-3.9.2-2.fc14.noarch requires syslinux
log4j-1.2.16-3.fc14.noarch requires java >= 1:1.6.0
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires xmms
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires libxmms.so.1
lv2-fil-plugins-2.0-3.fc13.armv5tel requires liblo.so.0
lxmusic-0.4.2-1.fc13.armv5tel requires libxmmsclient.so.5
maniadrive-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maniadrive-track-editor-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-filtering
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-repository-builder
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires java >= 1:1.6.0
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-shared-reporting-impl >= 0:2.0.4.3
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-plugin-testing-harness >= 0:1.2
maven-checkstyle-plugin-2.5-3.fc14.noarch requires plexus-containers-container-default
maven-checkstyle-plugin-2.5-3.fc14.noarch requires java >= 1:1.6.0
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-common-artifact-filters
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-dependency-analyzer
maven-doxia-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires plexus-containers-container-default
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-ejb-plugin-2.2.1-5.fc14.noarch requires maven-plugin-testing-harness
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-invoker
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-impl
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-api
maven-jar-plugin-2.3-3.fc14.noarch requires maven-plugin-testing-harness
maven-javadoc-plugin-2.7-3.fc14.noarch requires maven-shared-invoker
maven-plugin-bundle-2.0.0-4.fc12.noarch requires maven-shared-dependency-tree
maven-plugin-bundle-2.0.0-4.fc12.noarch requires plexus-containers-container-default
maven-plugin-exec-1.1-1.fc12.noarch requires maven-shared-plugin-testing-harness
maven-pmd-plugin-2.5-1.fc14.noarch requires maven-plugin-testing-harness
maven-remote-resources-plugin-1.1-6.fc14.noarch requires maven-shared-artifact-resolver
maven-resources-plugin-2.2-7.fc14.noarch requires maven-plugin-testing-harness
maven-scm-1.4-2.fc14.noarch requires netbeans-cvsclient >= 0:6.9
maven-shade-plugin-1.3.3-2.fc14.noarch requires java >= 1:1.6.0
maven2-2.2.1-13.fc14.noarch requires maven-shared-repository-builder
maven2-2.2.1-13.fc14.noarch requires maven-shared-filtering
maven2-2.2.1-13.fc14.noarch requires maven-plugin-testing-harness
maven2-2.2.1-13.fc14.noarch requires maven-shared-dependency-tree
maven2-2.2.1-13.fc14.noarch requires plexus-containers-container-default
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-api
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-plugin
maven2-2.2.1-13.fc14.noarch requires maven-shared-common-artifact-filters
maven2-2.2.1-13.fc14.noarch requires maven-shared-downloader
maven2-2.2.1-13.fc14.noarch requires maven-shared-file-management
maven2-2.2.1-13.fc14.noarch requires maven-shared-reporting-api
maven2-2.2.1-13.fc14.noarch requires maven-shared-io
maven2-plugin-shade-1.2.2-2.fc13.noarch requires maven-shared-dependency-tree
mediawiki-CategoryTree-45462-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-Cite-0-0.6.20080901svn.fc12.noarch requires mediawiki
mediawiki-HNP-1.1.2-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-HTTP302Found-1.0-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-LdapAccount-0.1-1.fc13.noarch requires mediawiki >= 0:1.13
mediawiki-ParserFunctions-1.1.1-6.svn45003.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-SpecialInterwiki-0-0.7.20080913svn.fc12.noarch requires mediawiki >= 0:1.12
mediawiki-StubManager-1.3.0-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-imagemap-0-0.3.r37906.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-openid-0.8.2-9.0.1.noarch requires mediawiki
mediawiki-rss-1.5-3.fc12.noarch requires mediawiki >= 0:0.14
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki-nomath
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki
mediawiki-wikicalendar-1.16-1.fc12.noarch requires mediawiki
mingw32-OpenSceneGraph-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-OpenThreads-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-SDL_image-1.2.10-1.fc13.noarch requires mingw32(libpng12-0.dll)
mingw32-boost-1.41.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsq3-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsqlite3x-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libtiff-3.9.4-1.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-pcre-8.10-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-qt-4.7.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
minicomputer-1.41-2.fc13.armv5tel requires liblo.so.0
mirage-0.9.5.2-1.fc13.armv5tel requires libpython2.6.so.1.0
mirage-0.9.5.2-1.fc13.armv5tel requires python(abi) = 0:2.6
mirrormanager-1.3.7-1.fc14.noarch requires python-basemap >= 0:0.99.4
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
moblin-panel-applications-0.0.2-1.fc12.armv5tel requires libmoblin-panel.so.0
moblin-panel-media-0.0.8-0.2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-pasteboard-0.0.2-2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libebook-1.2.so.9
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libedataserver-1.2.so.13
moblin-panel-status-0.0.10-2.fc13.armv5tel requires libmoblin-panel.so.0
mod_annodex-0.2.2-13.fc13.armv5tel requires liboggz.so.1
mojo-parent-24-5.fc14.noarch requires maven-plugin-plugin
mojo-parent-24-5.fc14.noarch requires plexus-containers-component-javadoc
moovida-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-bad-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-good-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
mozvoikko-1.0-21.fc13.armv5tel requires gecko-libs >= 0:1.9.2.17
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
1:msv-javadoc-2009.1-3.fc14.noarch requires relaxngDatatype-javadoc
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Defaults)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Timeout)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::TLSClient)
munin-1.4.5-4.fc14.noarch requires munin-common = 0:1.4.5
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Config)
museek+-bindings-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-mucous-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-murmur-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
nachocalendar-0.23-3.fc12.noarch requires java >= 1:1.6.0
nekobee-dssi-0.1.7-3.fc12.armv5tel requires liblo.so.0
netbeans-6.9-2.fc14.noarch requires netbeans-java4 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires netbeans-apisupport2 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires java >= 1:1.6.0
netbeans-6.9-2.fc14.noarch requires netbeans-ide13 >= 0:6.9
netbeans-javaparser-6.9-1.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-harness-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-resolver-6.7.1-1.fc12.noarch requires java >= 1:1.6.0
netbeans-svnclientadapter-6.7.1-2.fc12.noarch requires java >= 1:1.6.0
network-manager-netbook-1.7.1-0.1.fc13.armv5tel requires libmoblin-panel.so.0
notmuch-0.5-1.fc13.armv5tel requires libxapian.so.15
nyquist-3.03-3.fc12.armv5tel requires liblo.so.0
nyquist-3.03-3.fc12.armv5tel requires java-1.6.0-openjdk
ocfs2-tools-1.4.3-5.fc13.armv5tel requires redhat-lsb
ocfs2console-1.4.3-5.fc13.armv5tel requires python(abi) = 0:2.6
openbabel-2.2.3-1.fc13.armv5tel requires libstdinchi.so.1
opencsv-2.2-2.fc14.noarch requires java >= 1:1.6.0
opengrok-0.9-1.fc14.noarch requires lucene-contrib > 0:2
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires latex2emf
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-writer >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-draw >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openwsman-perl-2.2.0-3.fc12.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
openwsman-python-2.2.0-3.fc12.armv5tel requires python(abi) = 0:2.6
osutil-1.3.1-3.fc13.armv5tel requires java >= 1:1.6.0
ovirt-server-0.100-5.fc14.noarch requires ruby-qmf
ovirt-server-0.100-5.fc14.noarch requires qmf
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-client
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-server
ovirt-server-0.100-5.fc14.noarch requires ruby-libvirt >= 0:0.0.2
oyranos-0.2.0-2.fc13.armv5tel requires shared-color-profiles-extra
pAgenda-3.2-5.fc12.noarch requires python(abi) = 0:2.6
pacemaker-1.1.4-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
pacemaker-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
pacemaker-cts-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
patcher-0.6-3.fc13.noarch requires python(abi) = 0:2.6
pcapy-0.10.5-6.fc12.armv5tel requires libpython2.6.so.1.0
pcapy-0.10.5-6.fc12.armv5tel requires python(abi) = 0:2.6
pcsc-perl-1.4.8-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
pdf-renderer-0-0.6.20090405cvs.fc12.armv5tel requires java >= 0:1.7
perl-CGI-Application-Plugin-JSON-1.02-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Application-Plugin-LinkIntegrity-0.06-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Emulate-PSGI-0.10-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Catalyst-Devel-1.27-2.fc14.noarch requires perl-Catalyst-Runtime-scripts
perl-Cflow-1.053-12.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Config-INI-MVP-0.024-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Const-Fast-0.006-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-OpenSSL-PKCS10-0.06-14.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-SSLeay-0.58-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Data-Alias-1.07-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Cover-0.65-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Declare-0.006004-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Email-Simple-Creator-1.424-6.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Frontier-RPC-0.07b4p1-10.fc14.noarch requires perl-Frontier-RPC-doc
perl-GPS-PRN-0.05-5.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Git-CPAN-Patch-0.2.1-3.fc14.noarch requires git-cpan-patch = 0:0.2.1-3.fc14
perl-Gnome2-1.042-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-IO-Compress-Bzip2-2.015-1.fc12.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-MIME-Base32-1.02a-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Mail-Box-Parser-C-3.006-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-GMP-2.06-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-Pari-2.010806-6.fc14.armv5tel requires pari(armv5tel-32) = 0:2.3.4
perl-Monotone-0.48.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
1:perl-NKF-2.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Net-SSLeay-1.36-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-PDF-Haru-1.00-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-POSIX-strptime-0.10-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Pegex-0.11-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Razor-Agent-2.85-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Reaper-1.00-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Regexp-Copy-0.06-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-SVN-Mirror-0.75-2.fc11.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt) >= 0:0.2.1
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires libvirt >= 0:0.6.4
perl-Task-Catalyst-3.0000-4.fc14.noarch requires /usr/bin/catalyst.pl
perl-Template-Toolkit-2.22-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Text-PDF-0.29a-4.fc14.noarch requires pdf-tools = 0:0.29a-4.fc14
perl-Tk-TableMatrix-1.23-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Tk-Text-SuperText-0.9.4-3.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Verilog-CodeGen-0.9.4-4.fc14.noarch requires tkgate
perl-WWW-Pastebin-RafbNet-Create-0.001-4.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-WWW-Salesforce-0.13-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-ekg2-0.2-0.11.rc1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-libapreq2-2.13-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-openbabel-2.2.3-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
3:perl-version-0.82-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
phatch-0.2.7-2.fc14.noarch requires phatch-cli = 0:0.2.7-2.fc14
phoronix-test-suite-1.8.1-2.fc12.noarch requires compat-libstdc++-33
phoronix-test-suite-1.8.1-2.fc12.noarch requires java-openjdk
photoprint-borders-0.0.2-5.fc12.noarch requires photoprint
1:php-eaccelerator-0.9.6.1-2.fc14.armv5tel requires php-common = 0:5.3.2
php-facedetect-1.0.0-6.fc14.armv5tel requires opencv
php-facedetect-1.0.0-6.fc14.armv5tel requires libcv.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcvaux.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcxcore.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libhighgui.so.2
picard-0.12.1-1.fc13.armv5tel requires python(abi) = 0:2.6
picard-0.12.1-1.fc13.armv5tel requires libpython2.6.so.1.0
piccolo2d-1.3-5.fc14.noarch requires eclipse-swt
picviz-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
picviz-0.6-2.fc12.armv5tel requires libpython2.6.so.1.0
picviz-gui-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
pida-0.5.1-10.fc12.armv5tel requires python(abi) = 0:2.6
pida-0.5.1-10.fc12.armv5tel requires libpython2.6.so.1.0
pigment-python-0.3.12-2.fc12.armv5tel requires python(abi) = 0:2.6
pinot-0.94-4.fc13.armv5tel requires libxapian.so.15
pki-ca-1.3.6-1.fc14.noarch requires java >= 1:1.6.0
pki-common-1.3.8-1.fc14.noarch requires java >= 1:1.6.0
pki-console-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pki-java-tools-1.3.1-1.fc14.noarch requires java >= 1:1.6.0
pki-kra-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-ocsp-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-silent-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-symkey-1.3.2-4.fc13.armv5tel requires java >= 1:1.6.0
pki-tks-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-util-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pl-jpl-5.7.11-5.fc12.armv5tel requires libverify.so
pl-jpl-5.7.11-5.fc12.armv5tel requires libjvm.so(SUNWprivate_1.1)
pl-jpl-5.7.11-5.fc12.armv5tel requires libjava.so
plexus-active-collections-1.0-0.2.beta2.fc14.noarch requires java >= 1:1.6.0
plexus-appserver-1.0-0.4.a5.2.11.fc13.noarch requires xmlrpc
plexus-cli-1.2-8.fc12.noarch requires plexus-containers-container-default
plexus-component-api-1.0-0.5.alpha15.fc14.noarch requires java-devel >= 1:1.6.0
plexus-maven-plugin-1.3.8-3.fc14.noarch requires maven-shared-reporting-impl
plexus-maven-plugin-1.3.8-3.fc14.noarch requires plexus-runtime-builder >= 0:1.0-0.a9.2
plexus-naming-1.0-0.5.a3.fc12.noarch requires java >= 1:1.6.0
plexus-registry-1.0-0.3.a3.fc13.noarch requires plexus-containers-container-default
plexus-registry-1.0-0.3.a3.fc13.noarch requires java >= 1:1.6.0
plexus-xmlrpc-1.0-0.4.b4.2.17.fc14.noarch requires xmlrpc
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires python(abi) = 0:2.6
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires libpython2.6.so.1.0
poker-bot-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-client-lib-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-engine-1.3.4-1.fc13.noarch requires python(abi) = 0:2.6
poker-network-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-server-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires /usr/bin/python2.6
poker3d-data-1.1.36-5.fc12.noarch requires poker3d >= 0:1.1.36
poky-depends-6-6.fc13.noarch requires compat-gcc-34
poky-depends-6-6.fc13.noarch requires qemu >= 0:0.8.2
pony-0.4-2.fc14.noarch requires PyKDE4
portecle-1.5-2.fc14.noarch requires jre >= 0:1.6.0
postr-0.12.3-8.fc12.armv5tel requires python(abi) = 0:2.6
ppl-java-0.10.2-11.fc13.armv5tel requires java >= 1:1.6.0
proguard-4.5.1-1.fc14.noarch requires java >= 1:1.6.0
protobuf-python-2.2.0-2.fc13.armv5tel requires python(abi) = 0:2.6
pungi-2.1.4-1.fc14.noarch requires anaconda >= 0:14.3
purple-plugin_pack-pidgin-xmms-2.6.3-1.fc13.armv5tel requires libxmms.so.1
pxe-kexec-0.2.3-2.fc13.armv5tel requires kexec-tools
pyfacebook-0.1-0.2.20090208svn173.fc12.noarch requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires libpython2.6.so.1.0
pyfuzzy-0.1.0-2.fc13.noarch requires python(abi) = 0:2.6
pyfuzzy-0.1.0-2.fc13.noarch requires antlr3-python
pygame-1.9.1-3.fc14.armv5tel requires libportmidi.so.0
pyliblo-0.8.1-3.fc14.armv5tel requires liblo.so.0
pymongo-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
pymongo-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymongo-gridfs-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymunk-0.8.4-3.fc14.noarch requires chipmunk >= 0:4.1.0
pypoker-eval-137.0-1.fc13.armv5tel requires python(abi) = 0:2.6
pypoker-eval-137.0-1.fc13.armv5tel requires libpython2.6.so.1.0
pyrenamer-0.6.0.1-4.fc12.noarch requires python(abi) = 0:2.6
python-amqplib-0.6.1-2.fc13.noarch requires python(abi) = 0:2.6
python-asyncmongo-0.1-1.fc13.noarch requires python(abi) = 0:2.6
python-bson-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
python-bson-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
python-dulwich-0.6.2-1.fc13.armv5tel requires libpython2.6.so.1.0
python-dulwich-0.6.2-1.fc13.armv5tel requires python(abi) = 0:2.6
python-gpod-0.8.0-3.fc13.armv5tel requires python(abi) = 0:2.6
python-iso8601-0.1.4-2.fc13.noarch requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires libpython2.6.so.1.0
python-keybinder-0.2.2-5.fc13.armv5tel requires python(abi) = 0:2.6
python-lash-0.5.4-9.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires libpython2.6.so.1.0
python-mox-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
python-mwlib-0.11.2-7.20090522hg2956.fc14.armv5tel requires LabPlot
python-nufw-2.2.21-7.fc13.armv5tel requires python(abi) = 0:2.6
python-oauth2-1.2.1-1.fc13.noarch requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires libpython2.6.so.1.0
python-openoffice-0.1-0.6.20090228svn34.fc14.noarch requires openoffice.org-pyuno
python-ordereddict-1.1-2.fc13.noarch requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python-abi = 0:2.6
python-redis-2.0.0-1.fc13.noarch requires python(abi) = 0:2.6
python-repoze-who-testutil-1.0-1.fc14.noarch requires python(abi) = 0:2.6
python-sleekxmpp-1.0-0.7.beta2.fc13.noarch requires python(abi) = 0:2.6
python-snack-2.2.10-12.fc12.armv5tel requires python(abi) = 0:2.6
python-soaplib-0.8.1-4.fc13.noarch requires python(abi) = 0:2.6
python-sqlalchemy0.5-0.5.5-1.fc10.noarch requires python(abi) = 0:2.5
python-tilecache-2.11-5.fc13.noarch requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires libpython2.6.so.1.0
python-tunepimp-0.5.3-16.fc12.armv5tel requires python(abi) = 0:2.6
python-urllib2_kerberos-0.1.6-4.fc12.noarch requires python(abi) = 0:2.6
python-virtinst-0.500.4-1.fc14.noarch requires libvirt-python >= 0:0.2.0
python-visual-5.61-1.fc13.armv5tel requires libboost_thread-mt.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires libboost_signals.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires python(abi) = 0:2.6
python-visual-5.61-1.fc13.armv5tel requires libboost_python.so.1.41.0
pytrailer-0.6.0-1.fc13.noarch requires python(abi) = 0:2.6
pyxmms-2.06-12.fc14.armv5tel requires libxmms.so.1
qalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
qalculate-gtk-0.9.7-1.fc13.armv5tel requires libcln.so.6
qct-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qct-mercurial-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qdox-1.11-3.fc14.noarch requires java >= 1:1.6.0
qedje-python-0.4.0-6.fc13.armv5tel requires python(abi) = 0:2.6
qedje-python-0.4.0-6.fc13.armv5tel requires libpython2.6.so.1.0
qemu-launcher-1.7.4-7.fc12.noarch requires qemu
qmtest-2.4.1-3.fc12.armv5tel requires python(abi) = 0:2.6
qmtest-2.4.1-3.fc12.armv5tel requires libpython2.6.so.1.0
qtgpsc-0.2.3-6.fc12.armv5tel requires libgps.so.18
qtiplot-0.9.7.14-1.fc13.armv5tel requires libpython2.6.so.1.0
qtparted-0.4.5-23.fc13.armv5tel requires libparted-2.1.so.0
quadkonsole-2.0.2-5.fc12.armv5tel requires kdebase3
quodlibet-2.1-3.fc13.armv5tel requires python(abi) = 0:2.6
quodlibet-2.1-3.fc13.armv5tel requires libpython2.6.so.1.0
rabbitvcs-core-0.13.3-1.fc13.noarch requires python(abi) = 0:2.6
raidem-music-1.0-4.fc12.noarch requires raidem >= 0:0.3.1
rainbow-0.8.6-1.fc13.armv5tel requires python(abi) = 0:2.6
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libparrot.so.2.3.0
rawstudio-1.2-5.fc14.armv5tel requires libexiv2.so.6
raydium-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
rcssserver3d-0.6.5-2.fc13.armv5tel requires libkerosin.so.2
rcssserver3d-0.6.5-2.fc13.armv5tel requires liboxygen.so.5
rdesktop-1.6.0-10.fc13.armv5tel requires libao.so.2
rear-1.7.25-1.fc14.noarch requires redhat-lsb
recoll-1.15.8-2.fc13.armv5tel requires libxapian.so.15
rekall-python-2.4.6-12.fc12.armv5tel requires python(abi) = 0:2.6
rekall-python-2.4.6-12.fc12.armv5tel requires libpython2.6.so.1.0
resapplet-0.1.1-10.fc14.armv5tel requires system-config-display
revelation-0.4.11-9.armv5tel requires python(abi) = 0:2.6
revisor-2.2-2.fc14.noarch requires revisor-gui = 0:2.2-2.fc14
rhnsd-4.9.3-1.fc14.armv5tel requires rhn-check >= 0:0.0.8
rhythmbox-0.12.8-4.fc13.armv5tel requires libpython2.6.so.1.0
rkhunter-1.3.6-7.fc14.noarch requires prelink
rmic-maven-plugin-1.1-3.fc14.noarch requires java >= 1:1.6.0
rome-0.9-6.fc13.noarch requires java >= 1:1.6.0
rpy-2.0.8-8.fc13.armv5tel requires python(abi) = 0:2.6
rpy-2.0.8-8.fc13.armv5tel requires libpython2.6.so.1.0
rt3-3.8.8-3.fc14.noarch requires rt3-mailgate
rtorrent-0.8.6-3.fc13.armv5tel requires libtorrent.so.11
ruby-icon-artist-0.1.92-1.fc13.noarch requires inkscape
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler-glib.so.4
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler.so.5
rubygem-rb-inotify-0.8.1-2.fc13.noarch requires rubygem(ffi)
rxvt-unicode-9.10-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires python(abi) = 0:2.6
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires libpython2.6.so.1.0
sagator-1.2.1-2.fc14.noarch requires sagator-core = 0:1.2.1-2.fc14
sat4j-2.2.0-1.fc14.noarch requires java >= 1:1.6
sblim-cim-client-1.3.9.1-1.fc13.noarch requires tog-pegasus >= 2:2.5.1
sblim-tools-libra-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-tools-libra-devel-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-wbemcli-1.6.0-5.fc12.armv5tel requires tog-pegasus
scipy-0.7.1-3.fc13.armv5tel requires python(abi) = 0:2.6
scipy-0.7.1-3.fc13.armv5tel requires libpython2.6.so.1.0
scotch-5.1.7-2.fc13.armv5tel requires libmpich.so.1.1
scout-0.4-6.fc13.noarch requires python(abi) = 0:2.6
seed-2.30.0-2.fc13.armv5tel requires libgirepository-1.0.so.0
seedit-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
seedit-gui-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
sems-dsm-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-ivr-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-python-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sepostgresql-8.4.3-2582.fc14.armv5tel requires postgresql-server = 0:8.4.3
sipwitch-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-cgi-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-forward-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-scripting-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-subscriber-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-zeroconf-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-runtime-0.7.6-0.fc13.armv5tel requires libucommon.so.2
skanlite-0.4-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
skf-perl-1.97.4-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
skf-python-1.97.4-1.fc13.armv5tel requires python(abi) = 0:2.6
skinlf-6.7-10.cvs20091205.fc13.noarch requires java >= 1:1.6.0
skyviewer-1.0.0-4.fc14.armv5tel requires libQGLViewer.so.2.3.5
sonic-visualiser-1.7.2-1.fc14.armv5tel requires liblo.so.0
sooperlooper-1.6.13-5.fc14.armv5tel requires liblo.so.0
spacewalk-backend-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-config-files-common-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-iss-export-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-server-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-postgresql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires spacewalk-admin >= 0:0.1.1-0
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python-gzipstream
spacewalk-backend-xml-export-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-xmlrpc-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-koan-0.2.5-2.fc14.noarch requires rhn-check
spacewalk-koan-0.2.5-2.fc14.noarch requires koan >= 0:1.4.3
spamassassin-3.3.2-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
spectrum-1.4.7-1.fc13.armv5tel requires python(abi) = 0:2.6
spectrum-1.4.7-1.fc13.armv5tel requires libMagick++.so.2
sphinxbase-python-0.4.1-2.fc13.armv5tel requires python(abi) = 0:2.6
sphinxbase-python-0.4.1-2.fc13.armv5tel requires libpython2.6.so.1.0
spring-maps-default-0.1-6.fc12.noarch requires spring
spyder-2.0.11-1.fc13.noarch requires python(abi) = 0:2.6
sqljet-1.0.3-1.fc14.noarch requires antlr3-java
stringtemplate-3.2.1-1.fc13.noarch requires java >= 1:1.6.0
suck-4.3.2-29.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sugar-memorize-33-4.fc14.noarch requires csound
swingx-0.9.4-7.fc12.noarch requires java >= 0:1.6.0
syck-python-0.61-11.fc13.armv5tel requires python(abi) = 0:2.6
syck-python-0.61-11.fc13.armv5tel requires libpython2.6.so.1.0
system-config-kdump-2.0.4-7.fc14.noarch requires kexec-tools
system-config-kickstart-2.8.6-2.fc14.noarch requires anaconda >= 0:11.4.0.42-1
7:system-config-printer-kde-4.4.2-1.fc13.armv5tel requires PyKDE4
systemtap-testsuite-1.4-6.fc13.armv5tel requires prelink
taggle-1.0-1.fc14.noarch requires java >= 1:1.6.0
tailor-0.9.35-10.fc14.noarch requires python-vcpx = 0:0.9.35-10.fc14
taskjuggler-2.4.3-3.fc12.armv5tel requires libkcal.so.2
taskjuggler-libs-2.4.3-3.fc12.armv5tel requires libkcal.so.2
testdisk-6.12-1.fc13.armv5tel requires libntfs-3g.so.81
tetex-tex4ht-1.0.2008_09_16_1413-3.fc12.armv5tel requires java-1.6.0-openjdk
texmakerx-2.1-3.fc13.armv5tel requires libpoppler.so.5
texworks-0.4.0-1.fc13.armv5tel requires libpython2.6.so.1.0
tigase-utils-3.3.9-2.fc14.noarch requires java >= 0:1.6.0
tigase-xmltools-3.3.4-4.fc14.noarch requires java >= 0:1.6.0
tomcat5-5.5.27-7.4.fc12.noarch requires java-1.6.0-devel
tomcat5-5.5.27-7.4.fc12.noarch requires /lib/lsb/init-functions
tomcat5-common-lib-5.5.27-7.4.fc12.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcat6-6.0.26-7.fc14.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcatjss-1.2.1-1.fc13.noarch requires java >= 1:1.6.0
tomoe-0.6.0-15.fc12.armv5tel requires libpython2.6.so.1.0
tomoe-0.6.0-15.fc12.armv5tel requires python(abi) = 0:2.6
tomoe-gtk-devel-0.6.0-11.fc12.armv5tel requires python(abi) = 0:2.6
toot2-3-0.6.227svn.fc13.noarch requires java >= 0:1.7
tootaudioservers-3-0.3.80svn.fc13.armv5tel requires java >= 0:1.7
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tortoisehg-1.1.10-1.fc13.armv5tel requires python(abi) = 0:2.6
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmyth.so.0
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmythupnp.so.0
translate-toolkit-1.8.0-1.fc14.noarch requires aeidon
tritonus-0.3.7-0.5.20090419cvs.fc12.armv5tel requires java >= 0:1.6
trytond-1.6.0-4.fc14.noarch requires trytond-server = 0:1.6.0-4.fc14
ufraw-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-cinepaint-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-gimp-0.16-2.fc13.armv5tel requires libexiv2.so.6
unbound-munin-1.4.4-2.fc14.armv5tel requires munin-node
uniconvertor-1.1.4-2.fc12.armv5tel requires python(abi) = 0:2.6
uniconvertor-1.1.4-2.fc12.armv5tel requires libpython2.6.so.1.0
unoconv-0.3-4.fc12.noarch requires openoffice.org-pyuno
valide-0.7-0.28.20101105svn609.fc13.armv5tel requires libvala.so.0
vecmath-0-2.20090922cvs.fc13.noarch requires java >= 1:1.6.0
vecmath1.2-1.14-5.fc13.noarch requires java >= 1:1.6.0
vegastrike-0.5.0-16.fc13.armv5tel requires libpython2.6.so.1.0
vegastrike-0.5.0-16.fc13.armv5tel requires libboost_python.so.1.41.0
veusz-1.7-1.fc13.armv5tel requires python(abi) = 0:2.6
veusz-1.7-1.fc13.armv5tel requires libpython2.6.so.1.0
viking-0.9.91-3.fc13.armv5tel requires libgps.so.18
virt-manager-0.8.5-1.fc14.noarch requires libvirt-python >= 0:0.7.0
virt-v2v-0.3.2-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Virt)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs::Lib)
virt-v2v-0.3.2-2.fc13.noarch requires perl-libguestfs >= 1:1.0.68
virt-v2v-0.3.2-2.fc13.noarch requires /usr/bin/qemu-img
vtk-examples-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
vtk-python-5.4.2-34.fc12.armv5tel requires python(abi) = 0:2.6
vtk-python-5.4.2-34.fc12.armv5tel requires libpython2.6.so.1.0
vtk-testing-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
w3c-markup-validator-1.1-1.fc14.noarch requires w3c-markup-validator-libs = 0:1.1
weka-3.6.2-4.fc14.noarch requires java >= 1:1.6.0
weka-3.6.2-4.fc14.noarch requires javasqlite
wfut-1.1.0-8.fc12.armv5tel requires libgcj.so.10
whysynth-dssi-20100922-1.fc13.armv5tel requires liblo.so.0
wordgroupz-0.3.1-3.fc13.noarch requires python(abi) = 0:2.6
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_filesystem.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_system.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_regex.so.1.41.0
xchat-gnome-0.26.1-10.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xchat-gnome-0.26.1-10.fc13.armv5tel requires libpython2.6.so.1.0
xiphos-3.1.4-1.fc13.armv5tel requires libsword-1.6.2.so
xiphos-3.1.4-1.fc13.armv5tel requires libgtkhtml-editor.so.0
xml-writer-0.2-2.fc12.noarch requires java >= 1:1.6.0
xmlenc-0.52-7.fc12.noarch requires java >= 1:1.6.0
xmms-acme-0.4.3-11.armv5tel requires xmms >= 0:1.0.0
xmms-acme-0.4.3-11.armv5tel requires libxmms.so.1
xmms-adplug-1.2-9.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires xmms
xmms-arts-0.7.1-9.armv5tel requires xmms-libs
xmms-flac-1.2.1-1.fc13.armv5tel requires libxmms.so.1
xmms-lirc-1.4-14.armv5tel requires xmms
xmms-modplug-2.05-18.fc14.armv5tel requires xmms-libs(armv5tel-32)
xmms-musepack-1.2-8.fc12.armv5tel requires libxmms.so.1
xmms-pulse-0.9.4-8.fc12.armv5tel requires libxmms.so.1
xmms-scrobbler-0.4.0-8.fc12.armv5tel requires xmms >= 0:1.2.4
xmms-speex-0.9.1-15.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires xmms
xmms-xosd-2.2.14-13.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires libxmms.so.1
xom-1.0-5.6.fc14.noarch requires icu4j
xournal-0.4.5-3.fc13.armv5tel requires libpoppler-glib.so.4
1:xrootd-client-admin-perl-3.0.3-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xstream-1.3.1-1.fc14.noarch requires xpp3-minimal
xsynth-dssi-0.9.4-1.fc13.armv5tel requires liblo.so.0
xtvd-gui-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xtvd-lib-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xxdiff-tools-3.2-11.fc12.armv5tel requires python(abi) = 0:2.6
yakuake-2.9.7-1.fc14.armv5tel requires 4.5.2
yakuake-2.9.7-1.fc14.armv5tel requires kdebase4>=
yum-rhn-plugin-1.1.3-2.fc14.noarch requires rhn-setup
zathura-0.0.8.2-1.fc13.armv5tel requires libpoppler-glib.so.4
zinnia-perl-0.06-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zinnia-python-0.06-4.fc13.armv5tel requires python(abi) = 0:2.6
zinnia-python-0.06-4.fc13.armv5tel requires libpython2.6.so.1.0
zoneminder-1.24.2-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zynjacku-5-4.fc13.armv5tel requires python(abi) = 0:2.6
Loaded plugins: langpacks, presto, refresh-packagekit
Updated Packages:
ArpON-1.90-7.fc14
-----------------
DivFix++-0.34-10.fc14
---------------------
* Mon Jul 12 2010 Dan Horák <dan(a)danny.cz> - 0.34-10
- rebuilt against wxGTK-2.8.11-2
QTeXEngine-0.2-4.20100119svn.fc14
---------------------------------
* Fri Sep 10 2010 Chen Lei <supercyper(a)163.com> - 0.2-4.20100119svn
- move header file to %{_includedir}
R-Biobase-2.8.0-1.fc14
----------------------
R-BufferedMatrix-1.12.0-1.fc14
------------------------------
R-GeneR-2.18.1-1.fc14
---------------------
R-RSQLite-0.9.1-1.fc14
----------------------
R-affyio-1.16.0-1.fc14
----------------------
R-bitops-1.0.4.1-4.fc14
-----------------------
* Sat May 08 2010 josef radinger <cheese(a)nosuchhost.net>
- 1.0.4.1-4
- tetex-latex -> tex(latex)
R-maanova-1.18.0-1.fc14
-----------------------
R-mvtnorm-0.9-9.fc14
--------------------
* Mon Jun 21 2010 Orion Poplawski <orion(a)cora.nwra.com> - 0.9-9
- Update to 0.9-9
R-preprocessCore-1.10.0-1.fc14
------------------------------
SIBsim4-0.20-1.fc14
-------------------
* Mon Apr 19 2010 Christian Iseli <Christian.Iseli(a)licr.org> 0.20-1
- Version 0.20.
Terminal-0.4.5-2.fc14
---------------------
* Thu Sep 09 2010 Christoph Wickert <cwickert(a)fedoraproject.org> - 0.4.5-2
- Fix build error with vte >= 0.25.90 (#631447,bugzilla.xfce.org #6686)
accountsservice-0.6.1-1.fc14
----------------------------
* Wed Jul 21 2010 Matthias Clasen <mclasen(a)redhat.com> 0.6.1-1
- Update to 0.6.1
- Install systemd unit file
acpi-1.5-1.fc14
---------------
adjtimex-1.29-1.fc14
--------------------
* Mon Apr 19 2010 Miroslav Lichvar <mlichvar(a)redhat.com> 1.29-1
- update to 1.29
adns-1.4-9.fc14
---------------
* Fri Jun 04 2010 Adam Tkac <atkac redhat com> 1.4-9
- update source URL
aircrack-ng-1.1-1.fc14
----------------------
* Sat Jun 26 2010 Till Maas <opensource(a)till.name> - 1.1-1
- Update to new release
- remove upstream patches and patches from upstream
ale-0.9.0.3-2.fc14.2
--------------------
* Wed Sep 29 2010 jkeating - 0.9.0.3-2.2
- Rebuilt for gcc bug 634757
* Fri Sep 17 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 0.9.0.3-2.1
- rebuild (ImageMagick)
alpine-2.00-9.fc14
------------------
* Mon Jul 19 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 2.00-9
- --with-npa=/usr/bin/inews
- --with-smtp-msa=/usr/sbin/sendmail
alsa-utils-1.0.23-3.fc14
------------------------
* Mon Jun 28 2010 Jaroslav Kysela <jkysela(a)redhat.com> 1.0.23-3
- add requires line (bug#526492) for specific alsa-lib package
- add requires line for dialog package (bug#561988)
- added man page for alsaunmute (bug#526174)
- updated alsa-info.sh script to 0.4.59
amsn-0.98.3-2.fc14
------------------
and-1.2.2-9.fc14
----------------
* Sun Jul 18 2010 Jochen Schmitt <Jochen herr-schmitt de> - 1.2.2-9
- Try to add systemd support
anthy-9100h-15.fc14
-------------------
aria2-1.9.4-1.fc14
------------------
* Tue Jun 08 2010 Rahul Sundaram <sundaram(a)fedoraproject.org> - 1.9.4-1
- http://aria2.svn.sourceforge.net/viewvc/aria2/trunk/NEWS?revision=2133
arj-3.10.22-12.fc14
-------------------
* Sun Mar 28 2010 Robert Scheck <robert(a)fedoraproject.org> 3.10.22-12
- Re-enable parallel builds again now that quoting is fixed
armacycles-ad-0.2.8.3.1-2.fc14
------------------------------
* Thu Jul 15 2010 Jon Ciesla <limb(a)jcomserv.net> - 0.2.8.3.1-2
- Added license file to subpackage to meet new guidelines.
arora-0.11.0-1.fc14
-------------------
asc-2.2.0.0-9.fc14
------------------
* Thu Jul 29 2010 Bill Nottingham <notting(a)redhat.com> - 2.2.0.0-9
- Rebuild for Boost soname bump
ascii-3.8-1.fc14
----------------
asl-1.42-0.5.bld77.fc14
-----------------------
* Sat Apr 24 2010 Eric Smith <eric(a)brouhaha.com> 1.42-0.5.bld77
- rebuilding because cvs-import.sh failed to import one patch for F-12
at-3.1.12-5.fc14
----------------
* Mon Mar 15 2010 Marcela Mašláňová <mmaslano(a)redhat.com> - 3.1.12-5
- 568222 interrupted 'at' job creates empty job for non-root
ath_info-0-0.2.20100708svn.fc14
-------------------------------
* Thu Jul 08 2010 Michal Schmidt <mschmidt(a)redhat.com> 0-0.2.20100708svn
- Current SVN. Minor fix.
audex-0.72-0.8.beta1.fc14
-------------------------
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> 0.72-0.8.beta1
- fix building against kde 4.5
authd-1.4.3-30.fc14
-------------------
* Mon Jun 14 2010 Roman Rakus <rrakus(a)redhat.com> - 1.4.3-30
- Use only once defattr macro
- Use RPM_OPT_FLAGS for CFLAGS in build section
autotrace-0.31.1-24.fc14.2
--------------------------
* Wed Sep 29 2010 jkeating - 0.31.1-24.2
- Rebuilt for gcc bug 634757
avarice-2.10-5.fc14
-------------------
* Thu Jul 01 2010 Lucian Langa <cooly(a)gnome.eu.org> - 2.10-5
- use binutils-static in BR (#609858)
avr-gdb-7.1-1.fc14
------------------
* Sun Jul 11 2010 Thibault North <tnorth(a)fedoraproject.org> - 7.1-1
- avr-gdb 7.1
axel-2.4-4.fc14
---------------
b43-fwcutter-013-2.fc14
-----------------------
* Mon Jul 26 2010 John W. Linville <linville(a)redhat.com> 013-2
- Add COPYING file
barrage-1.0.2-7.fc14
--------------------
* Fri Mar 19 2010 Jon Ciesla <limb(a)jcomserv.net> - 1.0.2-7
- Spelling fix.
basket-1.80-2.fc14
------------------
* Tue May 11 2010 Rex Dieter <rdieter(a)fedoraproject.org> 1.80-2
- dfi usage: drop --vendor=fedora
- various .spec cosmetics
* Sun Apr 11 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 1.80-1
- basket-1.80
beanstalkd-1.4.6-1.fc14
-----------------------
beep-1.3-1.fc14
---------------
biloba-0.6-5.fc14
-----------------
* Thu May 06 2010 josef radinger <cheese(a)nosuchhost.net> - 0.6-5
- Fix typo in %description
bios_extract-0-0.5.20100423git.fc14
-----------------------------------
blahtexml-0.8-1.fc14
--------------------
blobby-0.9b-1.fc14
------------------
* Wed Jun 23 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 0.9b-1
- new release
blokkal-0.1.2-2.fc14
--------------------
* Thu Jun 03 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 0.1.2-2
- fix to build blokkal with qt47
* Sun Feb 14 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 0.1.2-1.fc14.1
- fix DSO
bltk-1.0.9-9.fc14
-----------------
* Mon May 10 2010 Jiri Skala <jskala(a)redhat.com> 1.0.9-9
- added udisks dependency
boa-0.94.14-0.15.rc21.fc14
--------------------------
bsd-games-2.17-30.fc14
----------------------
* Sun Apr 18 2010 Wart <wart(a)kobold.org> 2.17-30
- Add patch to fix core dump in backgammon when screen is < 24 lines tall
bsp-5.2-4.fc14
--------------
bwa-0.5.8a-1.fc14
-----------------
cachefilesd-0.10.1-2.fc14
-------------------------
* Wed Apr 28 2010 Steve Dickson <steved(a)redhat.com>
- SELinux: Fix the RPM Requires dependency on selinux-policy-base
cagibi-0.1.1-2.fc14
-------------------
calcurse-2.8-1.fc14
-------------------
* Wed Jul 07 2010 Jon Ciesla <limb(a)jcomserv.net> 2.8-1
- Update to 2.8.
calendar-1.25-10.20091114cvs.fc14
---------------------------------
* Fri May 21 2010 David Cantrell <dcantrell(a)redhat.com> - 1.25-10.20091114cvs
- Do not use RPM macros for basic commands in the spec file
* Wed Feb 24 2010 David Cantrell <dcantrell(a)redhat.com> - 1.25-9.20091114cvs
- Add missing parens around srandom() and random() calls
cdargs-1.35-6.fc14
------------------
cdpr-2.4-1.fc14
---------------
cdrkit-1.1.10-2.fc14
--------------------
* Mon Jun 21 2010 Roman Rakus <rrakus(a)redhat.com> - 1.1.10-2
- Added missing manpage for netscsid (symlink to wodim manpage)
cernlib-2006-35.fc14
--------------------
* Wed May 05 2010 Jon Ciesla <limb(a)jcomserv.net> 2006-35
- Apply debian cernlib 2006.dfsg.2-14 patchset.
cfengine-2.2.10-6.fc14
----------------------
chrony-1.24-4.20100428git73d775.fc14
------------------------------------
ciso-1.0.0-3.fc14
-----------------
clamz-0.4-3.fc14
----------------
clanbomber-1.05-13.fc14
-----------------------
* Fri Sep 10 2010 Hans de Goede <hdegoede(a)redhat.com> 1.05-13
- Fix FTBFS (#631342)
classads-1.0.8-1.fc14
---------------------
* Thu Jun 10 2010 <matt@robin> - 1.0.8-1
- Upgraded to 1.0.8 release
cloudy-08.00-2.fc14
-------------------
* Fri Jul 09 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 08.00-2
- Include license as %doc in -doc subpackages
clpbar-1.10.9-3.fc14
--------------------
clutter-gst-1.2.0-1.fc14
------------------------
* Sat Aug 21 2010 Peter Robinson <pbrobinson(a)gmail.com> 1.2.0-1
- New upstream 1.2.0 stable release
clutter-imcontext-0.1.6-3.fc14
------------------------------
* Sat Jun 19 2010 Peter Robinson <pbrobinson(a)gmail.com> 0.1.6-3
- Make docs package noarch
cluttermm-0.9.5-1.fc14
----------------------
coan-4.1-2.fc14
---------------
cocot-20080315-3.fc14
---------------------
compat-libgda-3.1.2-4.fc14
--------------------------
* Wed Jun 02 2010 Nick Bebout <nb(a)fedoraproject.org> - 3.1.2-4
- Fix FTBFS
conntrack-tools-0.9.14-1.fc14
-----------------------------
* Thu Mar 25 2010 Paul P. Komkoff Jr <i(a)stingr.net> - 0.9.14-1
- update, at last
couchdb-glib-0.6.96-1.fc14.1
----------------------------
* Wed Sep 29 2010 jkeating - 0.6.96-1.1
- Rebuilt for gcc bug 634757
cpl-5.2.0-2.fc14
----------------
* Fri May 21 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 5.2.0-2
- New upstream source
cpmtools-2.12-1.fc14
--------------------
* Thu Mar 18 2010 Lucian Langa <cooly(a)gnome.eu.org> - 2.12-1
- drop patch1 (fixed upstream)
- new upstream release
cppi-1.15-1.fc14
----------------
cpptest-1.1.1-1.fc14
--------------------
* Wed May 05 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> 1.1.1-1
- Updated to 1.1.1
cproto-4.7i-1.fc14
------------------
* Thu Jul 15 2010 Jindrich Novy <jnovy(a)redhat.com> 4.7i-1
- update to 4.7i
crack-5.0a-14.fc14
------------------
* Wed Mar 31 2010 Christian Iseli <Christian.Iseli(a)licr.org> - 5.0a-14
- fix description wrt FHS cleanup patch
cscope-15.7a-1.fc14
-------------------
ctpl-0.2.2-4.fc14
-----------------
ctrlproxy-3.0.8-7.fc14
----------------------
* Thu Jul 08 2010 Jarod Wilson <jarod(a)redhat.com> - 3.0.8-7
- Fix package up to meet new fedora licensing guidelines. The
devel sub-package should have Requires:'d the base one already.
cudd-2.4.2-3.fc14
-----------------
* Wed Jul 07 2010 Conrad Meyer <konrad(a)tylerc.org> - 2.4.2-3
- Add license to -static subpackage as per new licensing guidelines.
cuetools-1.4.0-0.5.svn305.fc14
------------------------------
cups-pdf-2.5.0-4.fc14
---------------------
* Fri May 21 2010 Remi Collet <Fedora(a)FamilleCollet.com> 2.5.0-4
- spec cleanup
curblaster-1.04-1.fc14
----------------------
curlftpfs-0.9.2-6.fc14
----------------------
cvsps-2.2-0.6.b1.fc14
---------------------
cyrus-imapd-2.3.16-6.fc14
-------------------------
* Wed Jul 07 2010 Michal Hlavinka <mhlavink(a)redhat.com> - 2.3.16-6
- follow licensing guideline update
- devel sub-package has to have virtual static provides (#609604)
* Mon Jun 07 2010 Michal Hlavinka <mhlavink(a)redhat.com> - 2.3.16-5
- spec cleanup
- simplified packaging (merge -perl in -utils)
- remove obsoleted and/or unmaintained additional sources/patches
- remove long time not used files from the cvs/srpm
- update additional sources/patches from their upstream
daa2iso-0.1.7e-1.fc14
---------------------
* Mon Jun 28 2010 Tom "spot" Callaway <tcallawa(a)redhat.com> - 0.1.7e-1
- update to 0.1.7e
dahdi-tools-2.1.0.2-10.fc14
---------------------------
* Tue Jun 01 2010 Marcela Maslanova <mmaslano(a)redhat.com> - 2.1.0.2-10
- Mass rebuild with perl-5.12.0
dcfldd-1.3.4.1-4.fc14
---------------------
deco-1.6.2-1.fc14
-----------------
* Tue Jun 15 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> 1.6.2-1
- Version update
detox-1.2.0-2.fc14
------------------
diffpdf-1.0.0-1.fc14
--------------------
diffstat-1.51-2.fc14
--------------------
* Wed Mar 03 2010 Tim Waugh <twaugh(a)redhat.com> 1.51-2
- Added comment for COPYING file.
digitemp-3.6.0-4.fc14
---------------------
dillo-0.8.6-13.fc14
-------------------
* Thu Jul 15 2010 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.8.6-13
- fix desktop entries (#487771)
dinotrace-9.4b-1.fc14
---------------------
* Sun Jul 18 2010 Chitlesh Goorah <chitlesh [AT] fedoraproject DOT org> 9.4b-1
- new upstream release
dkim-milter-2.8.3-7.fc14
------------------------
* Mon Mar 15 2010 Jim Radford <radford(a)blackbean.org> - 2.8.3-7
- Better support postfix by making the defailt UMask 002.
This should by ok, as we run with our own user and group.
doodle-0.7.0-1.fc14
-------------------
dropbear-0.52-1.fc14
--------------------
* Mon Apr 19 2010 Itamar Reis Peixoto <itamar(a)ispbrasil.com.br> - 0.52-1
- New version 0.5.2
dropwatch-1.2-0.fc14
--------------------
* Wed Jun 30 2010 Neil Horman <nhorman(a)redhat.com> - 1.2
- Update to latest upstream
dvb-apps-1.1.1-22.fc14
----------------------
* Sat Jun 05 2010 Ville Skyttä <ville.skytta(a)iki.fi> - 1.1.1-22
- Patch to fix dvbnet -h crash (#597604).
- Update tuning files to 20100605.
dvd+rw-tools-7.1-5.fc14
-----------------------
* Wed Jun 23 2010 Roman Rakus <rrakus(a)redhat.com> - 7.1-5
- Compile with -fno-strict-aliasing CFLAG
dvipng-1.13-1.fc14
------------------
ed-1.4-2.fc14
-------------
* Tue Apr 20 2010 Karsten Hopp <karsten(a)redhat.com> 1.4-2
- drop duplicate man pages (#583178)
* Tue Mar 02 2010 Karsten Hopp <karsten(a)redhat.com> 1.4-1
- update to latest version
eekboard-0.0.5-1.fc14
---------------------
emacs-vm-8.1.1-1.fc14
---------------------
embryo-0.9.9.49898-1.fc14
-------------------------
* Fri Jul 02 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 0.9.9.49898-1
- embryo 0.9.9.49898 snapshot release
epeg-0.9.1.042-7.fc14
---------------------
* Wed Apr 07 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 0.9.1.042-7
* Rebuilt for rawhide 063 version
evtest-1.26-1.fc14
------------------
ext3grep-0.10.2-1.fc14.1
------------------------
extundelete-0.2.0-1.fc14
------------------------
* Sat Jul 24 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> 0.2.0-1
- New upstream release
- Drop no-strict-aliasing-break patch
- Drop OPTFLAGS patch ( no need now since autotools are used )
f2c-20090411-6.fc14
-------------------
* Wed Jul 07 2010 Carl Byington <carl(a)five-ten-sg.com> 20090411-6
- Subpackage Licensing, move Notice to -libs.
factory-3.1.1-1.fc14
--------------------
* Tue Mar 16 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 3.1.1-1
- factory-3-1-1
- enable NTL support
faust-0.9.24-1.fc14
-------------------
* Mon May 31 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.9.24-1
- Update to 0.9.24
- Don't bundle the source documentation. It is only needed by faust developers, not users.
fbg-0.9.1-5.fc14
----------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.9.1-5
- rebuilt against wxGTK-2.8.11-2
fbterm-1.6-3.fc14
-----------------
fcron-3.0.5-1.fc14
------------------
fityk-0.8.8-2.fc14
------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.8.8-2
- rebuilt against wxGTK-2.8.11-2
flamerobin-0.9.2-2.fc14
-----------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.9.2-2
- rebuilt against wxGTK-2.8.11-2
flaw-1.2.4-1.fc14
-----------------
flowcanvas-0.6.4-1.fc14
-----------------------
* Sat Sep 11 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.6.4-1
- Update to 0.6.4
fmt-ptrn-1.3.21-1.fc14
----------------------
* Sun Feb 14 2010 W. Michael Petullo <mike[(a)]flyn.org - 1.3.21-1
- Updated to fmt-ptrn 1.3.21.
fontaine-0-2.svn39.fc14
-----------------------
* Thu Jun 17 2010 Yanko Kaneti <yaneti(a)declera.com> - 0-2.svn39
- a few revisions later
fontik-0.6-1.20100901git8dd5b9fe7.fc14
--------------------------------------
foremost-1.5.7-2.fc14
---------------------
* Fri Jul 02 2010 Filipe Rosset <rosset.filipe(a)gmail.com> - 1.5.7-2
- Fixed location of manual page reported in RH BZ#601021
freedink-1.08.20100420-1.fc14
-----------------------------
* Tue Apr 20 2010 Sylvain Beucler <beuc(a)beuc.net> - 1.08.20100420-1
- New upstream release
freedink-dfarc-3.6-2.fc14
-------------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 3.6-2
- rebuilt against wxGTK-2.8.11-2
freeze-2.5.0-11.fc14
--------------------
frozen-bubble-2.2.0-6.fc14
--------------------------
* Tue Jun 01 2010 Marcela Maslanova <mmaslano(a)redhat.com> - 2.2.0-6
- Mass rebuild with perl-5.12.0
funtools-1.4.4-3.fc14
---------------------
* Fri Jul 09 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 1.4.4-3
- License in subpackages
fuse-sshfs-2.2-6.fc14
---------------------
* Tue May 18 2010 Peter Lemenkov <lemenkov(a)gmail.com> 2.2-6
- Fix building on EL-6
garmintools-0.10-4.fc14
-----------------------
gavl-1.1.2-1.fc14
-----------------
gccxml-0.9.0-0.3.20100715.fc14
------------------------------
gconfmm26-2.28.2-1.fc14
-----------------------
* Thu Sep 30 2010 Haïkel Guémar <hguemar(a)fedoraproject.org> - 2.28.2-1
- Update to upstream 2.28.2
- Rename spec file according guidelines
- Rpmlint fixes
gedit-latex-plugin-0.2-1.fc14
-----------------------------
* Wed Apr 21 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 0.2-1
- New upstream source. Fixes bz #576598
gedit-vala-0.10.2-1.fc14
------------------------
* Tue Sep 21 2010 Michel Salim <salimma(a)fedoraproject.org> - 0.10.2-1
- Update to 0.10.2
geglmm-0.1.0-4.fc14
-------------------
gifsicle-1.60-1.fc14
--------------------
* Tue Apr 13 2010 - Orion Poplawski <orion(a)cora.nwra.com> - 1.60-1
- Update to 1.60
gjs-0.7.1-3.fc14
----------------
* Wed Jul 14 2010 Colin Walters <walters(a)verbum.org> - 0.7.1-3
- Rebuild for new gobject-introspection
gle-4.2.2-5.fc14
----------------
* Tue Sep 07 2010 Terje Rosten <terje.rosten(a)ntnu.no> - 4.2.2-3
* Be more explicit about qt devel buildreq
globus-libxml2-1.8-1.fc14
-------------------------
glpk-4.43-2.fc14
----------------
* Mon Jul 05 2010 Conrad Meyer <konrad(a)tylerc.org> 4.43-2
- Move header to normal includedir
gnujump-1.0.6-4.fc14
--------------------
gnuplot-4.4.0-5.fc14
--------------------
* Tue Aug 17 2010 Ivana Hutarova Varekova <varekova(a)redhat.com> 4.4.0-5
- Resolves: #537960
Could not find/open font when opening font "arial"
gocr-0.48-2.fc14
----------------
* Fri Jul 02 2010 Adam Tkac <atkac redhat com> - 0.48-2
- require /usr/bin/djpeg instead of libjpeg to be compatible with both
libjpeg and libjpeg-turbo
gperf-3.0.4-2.fc14
------------------
* Mon Mar 01 2010 Roman Rakus <rrakus(a)redhat.com> - 3.0.4-2
- Fixed license to the right GPLv3+
gphoto2-2.4.9-1.fc14
--------------------
* Mon Apr 12 2010 Jindrich Novy <jnovy(a)redhat.com> 2.4.9-1
- update to 2.4.9
gpp4-1.2.1-1.fc14
-----------------
grantlee-0.1.6-1.fc14
---------------------
gridsite-1.5.19-1.fc14
----------------------
gsoap-2.7.16-1.fc14
-------------------
* Sat Apr 24 2010 <matt@redhat> - 2.7.16-1
- Update to gsoap 2.7.16
- Thanks to matt(a)mattjamison.com for update patches
- Removed unused_args patch (upstream)
gspiceui-0.9.98-2.fc14
----------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.9.98-2
- rebuilt against wxGTK-2.8.11-2
gtk2-2.22.0-1.fc14.1
--------------------
* Wed Sep 29 2010 jkeating - 2.22.0-1.1
- Rebuilt for gcc bug 634757
gtkmm-utils-0.4.1-2.fc14
------------------------
gtypist-2.8.3-1.fc14
--------------------
* Wed May 19 2010 Zing <zing(a)fastmail.fm> - 2.8.3-1
- update to 2.8.3
- fixes long standing bug of error rate display
- translation updates
guitone-1.0-0.1.rc4.fc14
------------------------
* Sun May 30 2010 Thomas Moschny <thomas.moschny(a)gmx.de> - 1.0-0.1.rc4
- Update to 1.0rc4.
gv-3.7.1-1.fc14
---------------
* Mon Jun 28 2010 Orion Poplawski <orion(a)cora.nwra.com> 3.7.1-1
- Update to 3.7.1
- Disable international support to avoid segfault on exit until
bug 587349 is fixed
halibut-1.0-2.20100504svn8934.fc14
----------------------------------
hdapsd-20090401-6.fc14
----------------------
* Sat Jul 17 2010 Tomasz Torcz <ttorcz(a)fedoraproject.org> 20090401-6
- provide systemd service definition
- resurrect udev rule for systemd interaction
healpix-2.13a-2.fc14
--------------------
hello-2.5-1.fc14
----------------
* Sun Mar 28 2010 Conrad Meyer <konrad(a)tylerc.org> - 2.5-1
- Bump version.
hercstudio-1.2.0-1.fc14
-----------------------
hercules-3.07-1.fc14
--------------------
hesinfo-3.1.0-8.fc14
--------------------
* Fri Feb 19 2010 Nalin Dahyabhai <nalin(a)redhat.com> 3.1.0-8
- override permissions on files in /usr/bin (#225883)
highlight-3.1-2.fc14
--------------------
* Tue Sep 07 2010 Jochen Schmitt <Jochen herr-schmitt de> - 3.1-2
- Add epoche for qt-devel BR (#631442)
* Mon Aug 30 2010 Jochen Schmitt <Jochen herr-schmitt de> 3.1-1
- New upstream release
hostapd-0.6.10-2.fc14
---------------------
httrack-3.43.9-2.fc14
---------------------
* Mon Jun 07 2010 Tomas Mraz <tmraz(a)redhat.com> - 3.43.9-2
- Use libssl soname for openssl dlopen and dependency
hwloc-1.0.2-1.fc14
------------------
hyphen-2.5-2.fc14
-----------------
* Thu Mar 04 2010 Caolan McNamara <caolanm(a)redhat.com> - 2.5-2
- run make check
i3-3.e-3.bf1.fc14
-----------------
* Wed Jun 09 2010 Simon Wesp <cassmodiah(a)fedoraproject.org> - 3.e-3.bf1
- New upstream release (3.e-bf1)
i3lock-1.0-4.20100320git.fc14
-----------------------------
* Sat Mar 20 2010 Simon Wesp <cassmodiah(a)fedoraproject.org> - 1.0-4.20100320git
- Update to current git
* Fri Feb 05 2010 Simon Wesp <cassmodiah(a)fedoraproject.org> - 1.0-3
- Some bugfixes (sync with upstream)
i3status-2.1-1.fc14
-------------------
iasl-20100528-2.fc14
--------------------
* Thu Jul 01 2010 Matthew Garrett <mjg(a)redhat.com> - 20100528-2
- Ship the manpage rather than pull it from a Debian diff
* Thu Jul 01 2010 Matthew Garrett <mjg(a)redhat.com> - 20100528-1
- Update to latest upstream
iax-0.2.2-4.fc14
----------------
ices-2.0.1-10.fc14
------------------
id3v2-0.1.12-1.fc14
-------------------
* Fri Jul 16 2010 Hans Ulrich Niedermann <hun(a)n-dimensional.de> - 0.1.12-1
- Updated to 0.1.12 (#595361).
- Added id3v2-fix-release-tarball.sh script to remove binaries from tarball.
- Removed id3v2-0.1.11-track-bad-free.patch (obsoleted by upstream 0.1.12).
iec16022-0.2.4-6.fc14
---------------------
ifplugd-0.28-15.fc14
--------------------
* Mon May 31 2010 José Matos <jamatos(a)fc.up.pt> - 0.28-15
- Add action readability patch (thanks to Niels de Vos) (bz#597866)
ifuse-1.0.0-1.fc14
------------------
imageinfo-0.05-10.fc14.2
------------------------
* Wed Sep 29 2010 jkeating - 0.05-10.2
- Rebuilt for gcc bug 634757
imapfilter-2.2.2-1.fc14
-----------------------
imlib2-1.4.3-1.fc14
-------------------
inadyn-mt-2.18.36-1.fc14
------------------------
* Mon Jul 19 2010 Jochen Schmitt <Jochen herr-schmitt de> 2.18.36-1
- New upstream release
inchi-1.0.3-1.fc14
------------------
* Wed Jul 07 2010 Dominik Mierzejewski <rpm(a)greysector.net> 1.0.3-1
- updated to 1.03 (ABI break)
- rebased patch
indi-apogee-1.0-6.fc14
----------------------
insight-6.8.1-3.fc14
--------------------
* Mon Sep 27 2010 Patrick Monnerat <pm(a)datasphere.ch> 6.8.1-3
- Patch "gcc45" to fix gcc 4.5 errors on incompatible enums.
https://bugzilla.redhat.com/show_bug.cgi?id=631116
ipmitool-1.8.11-5.fc14
----------------------
* Wed Mar 03 2010 Jan Safranek <jsafrane(a)redhat.com> - 1.8.11-5
- Fixed exit code of ipmievd initscript with wrong arguments
ipsec-tools-0.7.3-5.fc14
------------------------
* Wed Apr 14 2010 Tomas Mraz <tmraz(a)redhat.com> - 0.7.3-5
- fix the initscript (#500571, #521647)
iptraf-3.0.1-10.fc14
--------------------
iptstate-2.2.2-4.fc14
---------------------
ipvsadm-1.25-5.fc14
-------------------
irssi-0.8.15-3.fc14
-------------------
* Tue Jun 01 2010 Marcela Maslanova <mmaslano(a)redhat.com> - 0.8.15-3
- Mass rebuild with perl-5.12.0
isight-firmware-tools-1.5.92-1.fc14
-----------------------------------
* Mon May 24 2010 Jason Montleon <jmontleo(a)redhat.com> - 1.5.92-1
- Updated to 1.5.92 to support 10.6.2 firmware BZ 537448
jnettop-0.13.0-8.fc14
---------------------
* Thu Feb 18 2010 Manuel <lonely wolf> Wolfshant <wolfy(a)fedoraproject.org> 0.13.0-8
- Rebuild against db4-4.8
* Mon Jan 11 2010 Manuel <lonely wolf> Wolfshant <wolfy(a)fedoraproject.org> 0.13.0-7
- URL for source file has changed
js-1.70-12.fc14
---------------
* Wed Jun 16 2010 Pavel Alexeev <Pahan(a)Hubbitus.info> - 1.70-12
- Add UTF-8 support (add -DJS_C_STRINGS_ARE_UTF8 ) by request Peter Halliday: BZ#576585
* Mon Jun 14 2010 Dan Horák <dan[at]danny.cz> - 1.70-11
- updated the va_copy patch for s390
json-c-0.9-1.fc14
-----------------
kBuild-0.1.5-6.p2.fc14
----------------------
kaffeine-1.1-1.fc14
-------------------
* Mon Sep 06 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 1.1-1
- kaffeine 1.1
- fixes #618738
kde-partitionmanager-1.0.3-1.fc14
---------------------------------
keepassx-0.4.3-1.fc14
---------------------
kernel-2.6.40.3-0.fc14
----------------------
* Wed Aug 17 2011 Dennis Gilmore <dennis(a)ausil.us>
- add patch to correctly initialise usb on trimslice systems
- build in usb-storage on tegra, internal ssd on trimslice is connected to usb
* Tue Aug 16 2011 Dennis Gilmore <dennis(a)ausil.us>
- add patch to work around gcc bug on arm
* Mon Aug 15 2011 Dave Jones <davej(a)redhat.com> 2.6.40.3-0
- Apply patches from 3.0.3-rc1
* Mon Aug 15 2011 Dave Jones <davej(a)redhat.com>
- Apply patches from 3.0.2
* Mon Aug 15 2011 Dave Jones <davej(a)redhat.com>
- CVE-2011-2905 perf tools may parse user-controlled config file. (rhbz 729809)
* Sat Aug 13 2011 Dave Jones <davej(a)redhat.com>
- Apply patches from 3.0.2rc1
* Thu Aug 11 2011 Dennis Gilmore <dennis(a)ausil.us>
- add config for arm tegra devices
- setup kernel to build omap image (patch from David Marlin)
- setup kernel to build tegra image based on omap work
- add arm device tree patches
* Thu Aug 11 2011 Josh Boyer <jwboyer(a)redhat.com>
- Add munged together patch for rhbz 729269
* Thu Aug 11 2011 Dave Jones <davej(a)redhat.com>
- Fix Xen blk device naming (rhbz 729340)
* Tue Aug 09 2011 Josh Boyer <jwboyer(a)redhat.com>
- Add Makefile.config and ARM config changes from David Marlin
kpartsplugin-0.0.1-0.2.20100723.fc14
------------------------------------
krazy2-2.90-9.20100926svn.fc14
------------------------------
krename-4.0.4-1.fc14.1
----------------------
* Wed Sep 29 2010 jkeating - 4.0.4-1.1
- Rebuilt for gcc bug 634757
ksh-20100701-1.fc14
-------------------
* Thu Jul 08 2010 Michal Hlavinka <mhlavink(a)redhat.com> - 20100701-1
- updated to 2010-07-01
* Fri Jun 25 2010 Michal Hlavinka <mhlavink(a)redhat.com> - 20100621-1
- updated to 2010-06-21
ksshaskpass-0.5.3-1.fc14
------------------------
kwebkitpart-0.9.6-1.fc14.1
--------------------------
* Wed Sep 29 2010 jkeating - 0.9.6-1.1
- Rebuilt for gcc bug 634757
ladspa-amb-plugins-0.6.1-1.fc14
-------------------------------
ladspa-autotalent-plugins-0.2-3.fc14
------------------------------------
latex2rtf-2.1.0-1.fc14
----------------------
ldtp-2.0.6-3.fc14
-----------------
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 2.0.6-3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
ledger-2.6.3-2.fc14
-------------------
lftp-4.0.9-3.fc14
-----------------
* Thu Jun 24 2010 Jiri Skala <jskala(a)redhat.com> - 4.0.9-3
- fixes issue when some servers require forcing SSL3.0
- corrected check for 'max time' used for fix #600218
libQGLViewer-2.3.6-1.fc14
-------------------------
* Fri Jul 02 2010 Laurent Rineau <Laurent.Rineau__fedora(a)normalesup.org> - 2.3.6-1
- New upstream release
- Fix an incorrect changelog entry
libaesgm-20090429-3.fc14
------------------------
libarchive-2.8.4-1.fc14
-----------------------
* Wed Jun 30 2010 Tomas Bzatek <tbzatek(a)redhat.com> - 2.8.4-1
- Update to 2.8.4
* Fri Jun 25 2010 Tomas Bzatek <tbzatek(a)redhat.com> - 2.8.3-2
- Fix ISO9660 reader data type mismatches (#597243)
libbonobo-2.32.0-1.fc14
-----------------------
* Wed Sep 29 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.32.0-1
- Update to 2.32.0
libcmml-0.9.1-8.fc14
--------------------
* Fri May 21 2010 Tom "spot" Callaway <tcallawa(a)redhat.com> - 0.9.1-8
- disable static libs
- don't use %makeinstall
- fix rpath
libdrizzle-0.8-6.fc14
---------------------
libdwarf-0.20100629-1.fc14
--------------------------
libebml-1.0.0-1.fc14
--------------------
* Fri Jun 18 2010 Hans de Goede <hdegoede(a)redhat.com> 1.0.0-1
- New upstream release 1.0.0 (#605571)
libeina-0.9.9.49898-1.fc14
--------------------------
* Fri Jul 02 2010 Thomas Janssen <thomasj(a)fedoraproject.org> 0.9.9.49898-1
- libeina 0.9.9.49898 snapshot release
libesmtp-1.0.4-14.fc14
----------------------
* Sat Jun 12 2010 Pawel Salek <pawsa(a)theochem.kth.se> - 1.0.4-14
- fix bug 599428: use 'version' macro instead of '_version'.
- Use SSL patch by Ludwig Nussel of SUSE (bugzilla att id 399130).
libfc14audiodecoder-1.0.2-1.fc14
--------------------------------
libfishsound-1.0.0-2.fc14
-------------------------
* Sat Jul 03 2010 Michel Salim <salimma(a)fedoraproject.org> - 1.0.0-2
- No longer export dependencies on vorbis, speex, flac
* Sat Jun 12 2010 Michel Salim <salimma(a)fedoraproject.org> - 1.0.0-1
- Update to 1.0.0
* Wed Jun 02 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> - 0.9.1-5
- Bump for new liboggz
libgtop2-2.28.2-1.fc14
----------------------
* Tue Sep 28 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.28.2-1
- Update to 2.28.2
libguess-1.0-1.fc14
-------------------
libhbaapi-2.2-10.fc14
---------------------
libisds-0.3.1-1.fc14
--------------------
* Tue Jun 29 2010 Petr Pisar <ppisar(a)redhat.com> - 0.3.1-1
- 0.3.1 version bump
- Create ~/.gnupg to workaround bug in gnupg2-smime
liblastfm-0.3.3-1.fc14
----------------------
liblo-0.26-1.fc14
-----------------
* Mon Jul 19 2010 Orcan Ogetbil <oget [dot] fedora [at] gmail [dot] com> - 0.26-1
- New version
libmsn-4.1-1.fc14
-----------------
libnet10-1.0.2a-18.fc14
-----------------------
libnids-1.24-1.fc14
-------------------
libnotifymm-0.6.1-8.fc14
------------------------
liboping-1.3.4-2.fc14
---------------------
* Tue Jun 01 2010 Marcela Maslanova <mmaslano(a)redhat.com> - 1.3.4-2
- Mass rebuild with perl-5.12.0
libopm-0.1-9.20050731cvs.fc14
-----------------------------
libotr-3.2.0-5.fc14
-------------------
* Mon May 24 2010 Tom "spot" Callaway <tcallawa(a)redhat.com> - 3.2.0-5
- disable static libs
- disable rpath
libp11-0.2.7-2.fc14
-------------------
* Sun Jul 04 2010 Kalev Lember <kalev(a)smartlink.ee> - 0.2.7-2
- Spec file cleanup
- Don't install html docs with main library package
- Removed R: pkgconfig from -devel as it is now automatically added
libpng10-1.0.54-1.fc14
----------------------
* Fri Jul 02 2010 Paul Howarth <paul(a)city-fan.org> 1.0.54-1
- update to 1.0.54
- fixes CVE-2010-1205 (out-of-bounds write to memory)
- fixes CVE-2010-2249 (memory leak with images having malformed sCAL chunks)
* Thu Feb 25 2010 Paul Howarth <paul(a)city-fan.org> 1.0.53-1
- update to 1.0.53
- fixes CVE-2010-0205 (libpng stalls on highly compressed ancillary chunks)
- drop patch for #555485, included upstream
libprojectM-2.0.1-7.fc14
------------------------
* Sat Jul 17 2010 Jameson Pugh (imntreal(a)gmail.com) - 2.0.1-7
- Updated font patch with Orcan's changes
librelp-1.0.0-1.fc14
--------------------
* Thu Jul 15 2010 Tomas Heinrich <theinric(a)redhat.com> - 1.0.0-1
- upgrade to upstream version 1.0.0
librra-0.14-4.fc14
------------------
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 0.14-4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
libsexymm-0.1.9-9.fc14
----------------------
libsilc-1.1.10-4.fc14
---------------------
* Thu Jul 08 2010 Stu Tomlinson <stu(a)nosnilmot.com> 1.1.10-4
- Use recommended %defattr attributes from packaging guidelines
libsqlite3x-20071018-9.fc14
---------------------------
* Thu Jul 08 2010 Thomas Sailer <t.sailer(a)alumni.ethz.ch> - 20071018-9
- conform to licensing guide update
libstroke-0.5.1-24.fc14
-----------------------
* Tue Jul 27 2010 Adam Goode <adam(a)spicenitz.org> - 0.5.1-24
- Run automake at build time to remove various fragile workarounds
- -22 and -23 don't have changelog entries, I think those were mass rebuilds
libsurl-0.7.1-2.fc14
--------------------
libtar-1.2.11-19.fc14
---------------------
* Thu May 27 2010 Kamil Dudka <kdudka(a)redhat.com> - 1.2.11.19
- Completed review of memory leaks related patches (#589056)
libtnc-1.24-1.fc14
------------------
libtwin-0.0.3-4.fc14
--------------------
* Tue Mar 16 2010 Tony Breeds <tony(a)bakeyournoodle.com> - 0.0.3-4
- Make a -static package #556077
libunistring-0.9.3-1.fc14
-------------------------
libvdpau-0.4.1-1.fc14.1
-----------------------
* Wed Sep 29 2010 jkeating - 0.4.1-1.1
- Rebuilt for gcc bug 634757
libvncserver-0.9.7-4.fc14
-------------------------
* Thu Feb 18 2010 Stepan Kasal <skasal(a)redhat.com> - 0.9.7-4
- repack the tarball, there are .jar files without any source
- do not BR findutils, they are guaranteed in Fedora mock
- fix obsolete, so that it covers only packages created before this
spec was added to Fedora
libwebcam-0.2.0-1.20100322svn.fc14
----------------------------------
libxdg-basedir-1.1.1-1.fc14
---------------------------
* Fri Jul 16 2010 Michal Nowak <mnowak(a)redhat.com> - 1.1.1-1
- 1.1.1
libxfce4util-4.6.2-1.fc14
-------------------------
libxml++-2.30.1-1.fc14
----------------------
* Thu Sep 30 2010 Haïkel Guémar <hguemar(a)fedoraproject.com> - 2.30.1-1
- Update to upstream 2.30.1
* Fri Apr 09 2010 Haïkel Guémar <hguemar(a)fedoraproject.com> - 2.30.0-1
- Update to upstream 2.30.0
lighttpd-1.4.26-2.fc14
----------------------
lldpad-0.9.38-1.fc14
--------------------
* Mon Jun 28 2010 Jan Zeleny <jzeleny(a)redhat.com> - 0.9.38-1
- rebased to 0.9.38 (various enhancements and bugfixes, see
lldpad-0.9.38-relnotes.txt on http://e1000.sf.net for complete list)
loki-lib-0.1.7-3.fc14
---------------------
* Fri Jul 09 2010 Sergio Pascual <sergiopr(a)fedoraproject.org> - 0.1.7-3
- Bug for license text missing
lsdvd-0.16-13.fc14
------------------
lsof-4.83-2.fc14
----------------
* Fri Feb 19 2010 Karel Zak <kzak(a)redhat.com> 4.83-2
- minor changes in spec file (#226108 - Merge Review)
lsscsi-0.23-2.fc14
------------------
lsvpd-1.6.8-2.fc14
------------------
* Tue Apr 13 2010 Dan Horák <dan(a)danny.cz> - 1.6.8-2
- rebuilt for sg3_utils 1.29
lwp-2.6-1.fc14
--------------
lxc-0.7.2-1.fc14
----------------
mac-robber-1.02-1.fc14
----------------------
maildrop-2.5.0-13.fc14
----------------------
mairix-0.22-1.fc14
------------------
makebootfat-1.4-10.fc14
-----------------------
* Fri Jun 18 2010 Dmitry Butskoy <Dmitry(a)Butskoy.name> - 1.4-10
- Compile without strict aliasing (#605549)
manedit-1.2.1-3.1.fc14
----------------------
* Tue Jul 13 2010 Mike McGrath <mmcgrath(a)redhat.com> - 1.2.1-3.1
- Rebuilt against man-db to fix broken dep
matio-1.3.4-1.fc14
------------------
mbox2eml-0.1.1-4.fc14
---------------------
* Tue Jul 27 2010 Ville Skyttä <ville.skytta(a)iki.fi> - 0.1.1-4
- Rebuild.
md5deep-3.6-1.fc14
------------------
meiga-0.3.4-1.fc14
------------------
* Sun Jun 06 2010 Rajeesh K Nambiar <rajeeshknambiar(a)gmail.com> - 0.3.4-1
- Update to new upstream release 0.3.4
- Redirection support for FON routers
- Modernized autotools configuration
- Startup notification
- Memory optimization for large files
- File size indication
mgetty-1.1.36-7.fc14
--------------------
* Fri May 21 2010 Jiri Skala <jskala(a)redhat.com> - 1.1.36-7
- group id should be equal to fax user id
* Mon Jan 25 2010 Jiri Skala <jskala(a)redhat.com> - 1.1.36-6
- modified spec to make rpmlint more silent
- added comments to spec to surviving rpmlint W and E
minitunes-0.1.1-3.fc14
----------------------
mipv6-daemon-0.4-5.fc14
-----------------------
mon-1.2.0-6.fc14
----------------
moon-buggy-1.0.51-4.fc14
------------------------
mopac7-1.15-9.fc14
------------------
* Wed Jul 07 2010 Carl Byington <carl(a)five-ten-sg.com> 1.15-9
- Subpackage Licensing, main package requires -libs to get
license files.
moreutils-0.40-1.fc14
---------------------
* Wed Jul 14 2010 Marc Bradshaw <fedora(a)marcbradshaw.co.uk> 0.40-1.fc14
- new upstream version moreutils 0.40 released with these changes
- * lckdo: Now deprecated, since util-linux's flock(1) can do the same thing.
- * parallel: -i will now replace {} inside parameters, before the {} had to be a separate parameter.
- new upstream version moreutils 0.39 released with these changes
- * parallel: Fix exit code handling when commands are specified after --
- * parallel: Make -j 0 do something reasonable (start all jobs at once).
- * parallel: Fix to really avoid running new jobs when load is too high.
- * parallel: Fix logic error in code handling -l that could make parallel return a bogus 255 exit code when all jobs succeeded.
- * parallel: Allow a decimal load value to be specified with -l
- * Caps sillyness.
- * zrun: Add support for .xz files.
moserial-2.30.0-1.fc14
----------------------
mpir-1.3.1-3.fc14
-----------------
multitail-5.2.6-1.fc14
----------------------
munge-0.5.9-3.fc14
------------------
mysql++-3.1.0-2.fc14
--------------------
* Thu Jul 08 2010 Remi Collet <Fedora(a)FamilleCollet.com> 3.1.0-2
- add LICENSE to manuals subpackage
* Sun Jun 20 2010 Remi Collet <Fedora(a)FamilleCollet.com> 3.1.0-1
- update to 3.1.0
mysql-connector-c++-1.1.0-0.2.bzr888.fc14
-----------------------------------------
mythes-1.2.1-1.fc14
-------------------
* Mon Jun 21 2010 Caolán McNamara <caolanm(a)redhat.com> - 1.2.1-1
- latest version
* Thu Mar 11 2010 Caolán McNamara <caolanm(a)redhat.com> - 1.2.0-1
- initial version
nano-2.2.4-1.fc14
-----------------
* Thu Apr 15 2010 Kamil Dudka <kdudka(a)redhat.com> - 2.2.4-1
- new upstream release
- CVE-2010-1160, CVE-2010-1161 (#582739)
ncid-0.78-2.fc14
----------------
* Mon Jul 12 2010 Eric Sandeen <sandeen(a)redhat.com> 0.78-2
- Add doc/LICENSE to -client subpackage docs
nedit-5.5-23.fc14
-----------------
* Fri Mar 19 2010 Jindrich Novy <jnovy(a)redhat.com> 5.5-23
- remove (TM) from package description (#542473)
netlabel_tools-0.19-8.fc14
--------------------------
* Thu Jun 17 2010 Peter Vrabec <pvrabec(a)redhat.com> - 0.19-8
- fixing return codes (#602291)
netmask-2.3.12-1.fc14
---------------------
* Mon May 10 2010 Ville Skyttä <ville.skytta(a)iki.fi> - 2.3.12-1
- Update to 2.3.12 (#590609), info dir entry patch applied upstream.
netpanzer-0.8.3.svn612010-2.fc14
--------------------------------
* Tue Jun 01 2010 Jon Ciesla <limb(a)jcomserv.net> 0.8.3-2
- Correct checkout for 0.8.3 per upstream, BZ598120.
- Scons fixes.
- Added sound back in.
netsniff-ng-0.5.5.0-0.4.211svn.fc14
-----------------------------------
nfswatch-4.99.11-1.fc14
-----------------------
* Fri Apr 23 2010 Christian Iseli <Christian.Iseli(a)licr.org> 4.99.11-1
- new upstream version
ngrep-1.45-7.fc14
-----------------
nilfs-utils-2.0.18-1.fc14
-------------------------
* Mon Apr 12 2010 Eric Sandeen <sandeen(a)redhat.com> 2.0.18-1
- New upstream release
nitrogen-1.5.1-3.fc14
---------------------
njam-1.25-12.fc14
-----------------
* Fri Sep 10 2010 Hans de Goede <hdegoede(a)redhat.com> 1.25-12
- Fix compilation with gcc 4.5
noip-2.1.9-7.fc14
-----------------
nomarch-1.4-6.fc14
------------------
normaliz-2.2-3.fc14
-------------------
nss-pam-ldapd-0.7.7-1.fc14
--------------------------
* Wed Jul 07 2010 Nalin Dahyabhai <nalin(a)redhat.com> 0.7.7-1
- update to 0.7.7
nut-2.4.3-5.fc14
----------------
nvi-1.81.6-2.fc14
-----------------
opendchub-0.8.2-2.fc14
----------------------
openlierox-0.57-0.15.beta8.fc14
-------------------------------
* Wed Aug 11 2010 David Malcolm <dmalcolm(a)redhat.com> - 0.57-0.15.beta8
- recompiling .py files against Python 2.7 (rhbz#623342)
openobex-1.5-1.fc14
-------------------
openocd-0.4.0-1.fc14
--------------------
openoffice.org-extendedPDF-1.4-10.fc14
--------------------------------------
* Mon Jul 19 2010 Orion Poplawski <orion(a)cora.nwra.com> 1.4-10
- Don't build a debug package (bug #615038)
openvas-scanner-3.0.2-4.fc14
----------------------------
* Fri Apr 16 2010 Michal Ambroz <rebus at, seznam.cz> - 3.0.2-4
- subdirectories for nvt feeds
optipng-0.6.4-1.fc14
--------------------
ovaldi-5.6.4-1.fc14
-------------------
p7zip-9.13-1.fc14
-----------------
* Thu Jul 08 2010 Matthias Saou <http://freshrpms.net/> 9.13-1
- Update to 9.13.
- Update norar and nostrip patches.
pam_radius-1.3.17-2.fc14
------------------------
panoglview-0.2.2-8.fc14
-----------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.2.2-8
- rebuilt against wxGTK-2.8.11-2
paps-0.6.8-14.fc14
------------------
* Tue Jul 27 2010 Akira TAGOH <tagoh(a)redhat.com> - 0.6.8-14
- Fix the infinite loop in splitting paragraphs (#618483)
pari-2.3.5-1.fc14
-----------------
* Fri Jul 09 2010 Paul Howarth <paul(a)city-fan.org> - 2.3.5-1
- update to 2.3.5 (see CHANGES for details)
- filter out perl dependencies from %{_datadir}/pari/PARI/
pax-utils-0.2.1-1.fc14
----------------------
* Wed Jul 07 2010 Dominik Mierzejewski <rpm(a)greysector.net> 0.2.1-1
- updated to 0.2.1, upstream changelog:
Fix garbage in symbol matching output.
pbzip2-1.1.1-1.fc14
-------------------
* Sat Apr 17 2010 Jeff Gilchrist <pbzip2(a)compression.ca> - 1.1.1-1
- Release 1.1.1
pcp-3.3.3-1.fc14
----------------
pcsc-lite-1.6.4-1.fc14
----------------------
* Sun Aug 15 2010 Kalev Lember <kalev(a)smartlink.ee> - 1.6.4-1
- Update to 1.6.4
- Buildrequire graphviz for apidoc generation
* Wed Aug 04 2010 Kalev Lember <kalev(a)smartlink.ee> - 1.6.2-1
- Update to 1.6.2
- Dropped upstreamed patches
- Removed configure --disable-dependency-tracking option which is the
default with configure macro.
pdf2svg-0.2.1-4.fc14
--------------------
* Thu Aug 19 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 0.2.1-4
- rebuild (poppler)
pdfresurrect-0.10-1.fc14
------------------------
pekwm-0.1.12-4.fc14
-------------------
pengupop-2.2.2-6.fc14
---------------------
* Fri Jun 25 2010 Jon Ciesla <limb(a)jcomserv.net> 2.2.2-6
- Fix for dsolink FTBFS, BZ 599890.
pgbouncer-1.3.3-1.fc14
----------------------
pianobooster-0.6.4b-2.fc14
--------------------------
* Thu May 06 2010 Christian Krause <chkr(a)fedoraproject.org> - 0.6.4b-2
- Link libpthread and libGL explicitly
* Thu May 06 2010 Christian Krause <chkr(a)fedoraproject.org> - 0.6.4b-1
- Update to new upstream version 0.6.4b (fixes BZ 571030)
- Fix permission problem on source files in debuginfo package
pidgin-birthday-reminder-1.5-2.fc14
-----------------------------------
* Fri Jun 04 2010 Kalev Lember <kalev(a)smartlink.ee> - 1.5-2
- ExcludeArch s390 s390x where we don't have pidgin
pidgin-gfire-0.9.2-2.fc14
-------------------------
pidgin-libnotify-0.14-4.fc14
----------------------------
pingus-0.7.2-11.fc14
--------------------
* Thu Jul 29 2010 Bill Nottingham <notting(a)redhat.com> - 0.7.2-11
- Rebuild for boost-1.44, again
pkcs11-helper-1.07-5.fc14
-------------------------
* Thu Jul 01 2010 Kalev Lember <kalev(a)smartlink.ee> - 1.07-5
- use System Environment/Libraries group for main package
- removed R: pkgconfig from devel subpackage
plasma-runner-events-0.3.0-3.fc14
---------------------------------
plotmm-0.1.2-12.fc14
--------------------
pmars-0.9.2-4.fc14
------------------
pmount-0.9.22-1.fc14
--------------------
podofo-0.8.1-2.fc14
-------------------
* Tue Jun 08 2010 Dan Horák <dan[at]danny.cz> 0.8.1-2
- fix building tests
* Mon Jun 07 2010 Dan Horák <dan[at]danny.cz> 0.8.1-1
- updated to 0.8.1
podsleuth-0.6.7-1.fc14
----------------------
poedit-1.4.6.1-2.fc14
---------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 1.4.6.1-2
- rebuilt against wxGTK-2.8.11-2
polipo-1.0.4.1-2.fc14
---------------------
polkit-qt-0.96.1-4.fc14
-----------------------
* Fri Oct 15 2010 Radek Novacek <rnovacek(a)redhat.com> - 0.96.1-4
- Next attempt of fix-deprecated-warnings patch
* Thu Oct 14 2010 Jaroslav Reznik <jreznik(a)redhat.com> - 0.96.1-3
- Revert fix-deprecated-warnings as it causes kde#254150
postal-0.70-6.fc14
------------------
* Fri Apr 23 2010 David Nalley <david(a)gnsa.us> - 0.70-6
- patched for implicit DSO linking
postgresql-ip4r-1.05-1.fc14
---------------------------
* Mon Jul 19 2010 Devrim GÜNDÜZ <devrim(a)gunduz.org> - 1.05-1
- Update to 1.05.
powermanga-0.90-8.fc14
----------------------
pptp-1.7.2-9.fc14
-----------------
primer3-2.2.2-pre1.fc14
-----------------------
* Sat Apr 24 2010 pingou <pingou(a)pingoured.fr> - 2.2.2-pre1
- Build version 2.2.2 beta
privoxy-3.0.16-3.fc14
---------------------
* Thu Apr 29 2010 Karsten Hopp <karsten(a)redhat.com> 3.0.16-3
- add zlib-devel to build requirements (#509557)
proxytunnel-1.9.0-4.fc14
------------------------
psacct-6.5.4-5.fc14
-------------------
* Mon Jun 28 2010 Ivana Hutarova Varekova <varekova(a)redhat.com> - 6.5.4-5
- remove obsolete patches
psi-0.14-3.fc14
---------------
psiconv-0.9.8-5.fc14.2
----------------------
* Tue Oct 05 2010 jkeating - 0.9.8-5.2
- Rebuilt for gcc bug 634757
psutils-1.17-36.fc14
--------------------
* Thu Jul 08 2010 Tomas Smetana <tsmetana(a)redhat.com> 1.17-36
- add the LICENSE file to the perl subpackage
purple-microblog-0.3.0-3.fc14
-----------------------------
* Fri Aug 13 2010 Matěj Cepl <mcepl(a)redhat.com> - 0.3.0-3
- Make build for EL5.
pxz-4.999.9-1.beta.20100608git.fc14
-----------------------------------
qca-ossl-2.0.0-0.10.beta3.fc14
------------------------------
* Thu Apr 29 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 2.0.0-0.10.beta3
- add minimal qt4 dep
- don't own %{_qt4_plugindir}/crypto/
qdbm-1.8.78-1.fc14
------------------
* Fri Aug 27 2010 Mamoru Tasaka <mtasaka(a)ioa.s.u-tokyo.ac.jp> - 1.8.78-1
- 1.8.78
qdevelop-0.28-1.fc14
--------------------
* Sun Apr 18 2010 Nicoleau Fabien <nicoleau.fabien(a)gmail.com> - 0.28-1
- Update to 0.28
- Patch for qt 4.5.1 no more required
- New plugins package
- Using translation files
- Changed initialization for QString to avoid compilation issues
qelectrotech-0.22-1.fc14
------------------------
qjson-0.7.1-2.fc14.1
--------------------
* Tue Oct 05 2010 jkeating - 0.7.1-2.1
- Rebuilt for gcc bug 634757
qrencode-3.1.1-4.fc14
---------------------
qsf-1.2.7-5.fc14
----------------
* Wed Mar 17 2010 Miroslav Lichvar <mlichvar(a)redhat.com> 1.2.7-5
- rebuild with new gdbm
- use bcond macros
qsynth-0.3.5-1.fc14
-------------------
qtiocompressor-2.3.1-1.fc14
---------------------------
qtpfsgui-1.9.3-5.fc14
---------------------
* Mon May 31 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 4.4.80-2
- rebuild (exiv2)
quazip-0.3-2.fc14
-----------------
quesoglc-0.7.2-1.fc14
---------------------
quilt-0.48-1.fc14
-----------------
qwt-5.2.1-1.fc14
----------------
* Fri Apr 16 2010 Frank Büttner <frank-buettner(a)gmx.net> - 5.2.1-1
- update to 5.2.1
radvd-1.6-2.fc14
----------------
* Fri May 21 2010 Jiri Skala <jskala(a)redhat.com> - 1.6-2
- ensure fax group id == fax user id
ragel-6.6-2.fc14
----------------
* Tue Aug 24 2010 Adam Tkac <atkac redhat com> - 6.6-2
- rebuild to ensure F14 has higher NVR than F13
rapidsvn-0.12.0-2.fc14
----------------------
* Wed Jul 14 2010 Dan Horák <dan(a)danny.cz> - 0.12.0-2
- rebuilt against wxGTK-2.8.11-2
re2c-0.13.5-1.fc14
------------------
* Mon Jul 12 2010 Matthias Saou <http://freshrpms.net/> 0.13.5-1
- Update to 0.13.5.
- Update URL to the one used in the included spec file.
recode-3.6-29.fc14
------------------
* Wed Jul 07 2010 Zoltan Kota <z.kota[AT]gmx.net> 3.6-29
- Fix build on x86_64. Run autoreconf to update config files.
autoconf >= 2.64 needs to patch the flex.m4 file.
Fixing FTBFS bug #564601.
remctl-2.11-11.fc14
-------------------
* Wed Jun 02 2010 Marcela Maslanova <mmaslano(a)redhat.com> - 2.11-11
- Mass rebuild with perl-5.12.0
rest-0.6.4-2.fc14.1
-------------------
* Tue Oct 05 2010 jkeating - 0.6.4-2.1
- Rebuilt for gcc bug 634757
rhdb-utils-8.4.0-3.fc14
-----------------------
* Fri Jun 04 2010 Tom Lane <tgl(a)redhat.com> 8.4.0-3
- Add -fno-strict-aliasing to CFLAGS per rpmdiff complaint, and -fwrapv
too just to be on the safe side.
Related: #596204
rhnsd-4.9.3-1.fc14
------------------
* Fri Mar 19 2010 Jan Pazdziora 4.9.3-1
- Check return value of regcomp, fix a memory leak (Joshua Roys)
rhythmbox-equalizer-1.4-1.fc14
------------------------------
* Sun May 30 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> 1.4-1
- New upstream release
- Drop the presets per user patch ( gstreamer presets are now used instead )
ristretto-0.0.91-1.fc14
-----------------------
* Tue Jul 13 2010 Christoph Wickert <cwickert(a)fedoraproject.org> - 0.0.91-1
- Update to 0.0.91 (Development release for next major version)
- Require xfce4-doc for directory ownership of the nex docs
rlwrap-0.37-1.fc14
------------------
rng-tools-3-2.fc14
------------------
* Sat Jul 03 2010 Jeff Garzik <jgarzik(a)redhat.com> - 3-2
- comply with renaming guidelines, by Providing rng-utils = 1:2.0-4.2
roboptim-trajectory-0.5-2.fc14
------------------------------
rocksndiamonds-3.3.0.1-1.fc14
-----------------------------
* Thu Jul 08 2010 Tom "spot" Callaway <tcallawa(a)redhat.com> - 3.3.0.1-1
- 3.3.0.1 (upstream finally dropped bad music files!)
rogue-5.4.5-6.fc14
------------------
rply-1.01-3.fc14
----------------
* Sun Mar 21 2010 Mario Ceresa mrceresa(a)gmail.com rply 1.01-3
- Added CMake modules to detect the package
rsvndump-0.5.3-1.fc14
---------------------
rubberband-1.5.0-2.fc14
-----------------------
* Sat Jul 03 2010 Michel Salim <salimma(a)fedoraproject.org> - 1.5.0-2
- Fixed pkg-config version declaration
rwho-0.17-33.fc14
-----------------
* Fri Feb 26 2010 Jiri Moskovcak <jmoskovc(a)redhat.com> - 0.17-33
- added README
sblim-sfcb-1.3.8-1.fc14
-----------------------
* Wed Jun 23 2010 Vitezslav Crhonek <vcrhonek(a)redhat.com> - 1.3.8-1
- Update to sblim-sfcb-1.3.8
- Fix unmatched calls of closeLogging() and startLogging()
schismtracker-20100101-1.fc14
-----------------------------
scim-sayura-0.3.0-5.fc14
------------------------
* Tue Sep 07 2010 Parag Nemade <paragn AT fedoraproject.org> - 0.3.0-5
- Fix FTBFS
- Drop provides and obsoletes
yum-3.2.28-7.fc14
-----------------
* Tue May 31 2011 James Antill <james at fedoraproject.org> - 3.2.28-7
- Change arm basearch to arm
* Wed May 11 2011 James Antill <james at fedoraproject.org> - 3.2.28-6
- Update consolidate_libc to fix new version issue.
- Limit skip-broken to 30 loops, for rel-eng.
Summary:
Added Packages: 0
Removed Packages: 0
Modified Packages: 406
12 years
ARM summit at Plumbers 2011
by Steve McIntyre
Hi folks,
Following on from the founding of the cross-distro ARM mailing list,
I'd like to propose an ARM summit at this year's Linux Plumbers
conference [1]. I'm hoping for a slot on Thursday evening, but this
remains to be confirmed at this point.
We had some lively discussion about the state of ARM Linux distros at
the Linaro Connect [2] event in Cambridge last week. It rapidly became
clear that some of the topics we discussed deserve a wider audience,
so we're suggesting a meetup at Plumbers for that bigger
discussion. The initial proposed agenda is:
* ARM hard-float
+ What is it and why does it matter?
+ How can distributions keep compatible (i.e. gcc triplet to
describe the port)?
* Adding support for ARM as an architecture to the Linux Standard
Base (LSB)
+ Does it matter?
+ What's needed?
* FHS - multi-arch coming soon, how do we proceed?
* 3D support on ARM platforms
+ Open GL vs. GLES - which is appropriate?
but I'm sure that other people will think of more issues they'd like
to discuss. :-)
If you wish to attend, please reply to the cross-distro list and let
us know to expect you. Make sure you're registered to attend Plumbers
Conf, and get your travel and accommodation organised ASAP.
[1] http://www.linuxplumbersconf.org/2011/
[2] http://connect.linaro.org/
Cheers,
--
Steve McIntyre steve.mcintyre(a)linaro.org
<http://www.linaro.org/> Linaro.org | Open source software for ARM SoCs
12 years
ARM F-14 Branched report: 20110831 changes
by Fedora compose checker
Compose started at Wed Aug 31 13:20:59 UTC 2011
Broken deps for arm
----------------------------------------------------------
389-admin-1.1.16-1.fc13.armv5tel requires libicui18n.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicuuc.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicudata.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicui18n.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicuuc.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicudata.so.42
389-console-1.1.4-1.fc14.noarch requires java >= 1:1.6.0
389-ds-1.2.1-1.fc14.noarch requires 389-ds-console-doc
389-ds-1.2.1-1.fc14.noarch requires 389-admin-console-doc
389-ds-base-1.2.6-1.fc14.armv5tel requires libicui18n.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicuuc.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicudata.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicui18n.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicuuc.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicudata.so.42
AcetoneISO-6.7-7.fc12.armv5tel requires kdewebdev
GMT-coastlines-2.1.0-1.fc14.noarch requires GMT-common
JSDoc-1.10.2-9.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
Mayavi-3.3.2-1.fc13.armv5tel requires libpython2.6.so.1.0
Mayavi-3.3.2-1.fc13.armv5tel requires python(abi) = 0:2.6
MiniCopier-0.5-1.fc14.noarch requires java >= 1:1.6.0
PackageKit-smart-0.6.9-4.fc14.armv5tel requires smart
Perlbal-1.76-1.fc14.noarch requires perl(Perlbal::XS::HTTPHeaders)
PgsLookAndFeel-1.1-4.20090805cvs.fc14.noarch requires java >= 1:1.6.0
PolicyKit-olpc-1.2-2.fc11.noarch requires /var/lib/PolicyKit-public
PyAmanith-0.3.35-8.fc12.armv5tel requires python(abi) = 0:2.6
PyAmanith-0.3.35-8.fc12.armv5tel requires libpython2.6.so.1.0
QuantLib-test-0.9.9-1.fc13.armv5tel requires libboost_unit_test_framework.so.1.41.0
R-BSgenome-1.14.2-1.fc12.noarch requires R-Biostrings
R-BSgenome-1.14.2-1.fc12.noarch requires R-IRanges
R-GenomicFeatures-0.0.9-2.fc14.noarch requires R-IRanges
R-core-2.13.0-1.fc13.armv5tel requires libicui18n.so.42
R-core-2.13.0-1.fc13.armv5tel requires libicuuc.so.42
RBTools-0.2-5.fc14.noarch requires python(abi) = 0:2.6
RabbIT-4.1-9.fc13.noarch requires java >= 1:1.6.0
RasmusDSP-0.1-3.20090321cvs.fc12.armv5tel requires java >= 0:1.7
ScientificPython-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-2.8-12.fc13.armv5tel requires libpython2.6.so.1.0
ScientificPython-qt-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-tk-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
SolarModel-2.1-7.fc14.armv5tel requires libIrrlicht.so.1.6
TVAnytimeAPI-1.3-6.fc12.noarch requires java >= 1:1.6.0
TnL-data-071111-5.fc12.noarch requires TnL >= 0:071111
adonthell-0.3.5-0.8.fc12.armv5tel requires libpython2.6.so.1.0
aduna-root-poms-13-1.fc13.noarch requires logback
alchemist-1.0.37-8.fc12.armv5tel requires python-abi = 0:2.6
alchemist-1.0.37-8.fc12.armv5tel requires python(abi) = 0:2.6
aldrin-0.13-5.fc14.noarch requires pyzzub >= 0:0.2.6
alienarena-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alienarena-server-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alsa-firmware-1.0.23-1.fc14.noarch requires alsa-tools-firmware >= 0:1.0.23
antlr-maven-plugin-2.1-3.20101012svn12849.fc14.noarch requires java >= 1:1.6.0
antlrworks-1.4-4.fc14.noarch requires antlr3-tool
antlrworks-1.4-4.fc14.noarch requires java-devel >= 1:1.6.0
apache-commons-beanutils-1.8.3-2.fc14.noarch requires java >= 1:1.6.0
apache-commons-codec-1.4-10.fc14.noarch requires java >= 1:1.6.0
apache-commons-compress-1.0-8.fc14.noarch requires java >= 1:1.6.0
apache-commons-exec-1.0.1-2.fc13.noarch requires java >= 1:1.6.0
1:apache-commons-io-1.4-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-lang-2.5-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-launcher-1.1-5.20100521svn936225.fc14.noarch requires java >= 1:1.6.0
apache-commons-logging-1.1.1-11.fc14.noarch requires java >= 1:1.6.0
apache-commons-math-2.0-6.fc13.noarch requires java >= 1:1.6.0
apache-commons-net-2.0-6.fc14.noarch requires java >= 1:1.6.0
apbs-1.2.1-2.fc13.armv5tel requires python(abi) = 0:2.6
appframework-1.03-6.fc12.noarch requires java >= 1:1.6.0
appliance-tools-004.5-1.fc14.noarch requires qemu-img
apt-python-0.5.15lorg3.95-0.git416.6.fc13.armv5tel requires python(abi) = 0:2.6
ardour-2.8.7-1.fc13.armv5tel requires liblo.so.0
arduino-0021-1.fc14.noarch requires arduino-doc = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires arduino-core = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires java >= 1:1.6.0
asterisk-snmp-1.6.2.6-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
aubio-python-0.3.2-8.fc13.armv5tel requires python(abi) = 0:2.6
autobuild-applet-1.0.3-10.fc12.armv5tel requires libpython2.6.so.1.0
autotrust-0.3.1-3.fc13.armv5tel requires libunbound.so.1
azureus-4.5.1.0-1.fc14.noarch requires eclipse-swt >= 0:3.5
azureus-4.5.1.0-1.fc14.noarch requires java >= 1:1.6.0
backintime-kde-0.9.26-4.fc14.noarch requires PyKDE4
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Core) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Widgets) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Services) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.ThickClient) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena.Gui) = 0:1.6.0.0
barry-0.17-0.6.20110126git.fc13.armv5tel requires libboost_serialization.so.1.41.0
batik-1.7-6.fc12.noarch requires java-1.6.0-openjdk >= 1:1.6.0.0
beansbinding-1.2.1-5.fc12.noarch requires java >= 1:1.6.0
belier-1.2-4.fc13.noarch requires python(abi) = 0:2.6
bes-3.8.4-2.fc14.armv5tel requires libdap.so.10
beteckna-fonts-0.3-6.fc14.noarch requires beteckna-fonts-common = 0:0.3-6.fc14
bibletime-2.7.3-1.fc14.armv5tel requires libicui18n.so.42
bibletime-2.7.3-1.fc14.armv5tel requires libicuuc.so.42
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-pyuno
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-writer
bindex-2.2-2.svn96.fc14.noarch requires java >= 1:1.6.0
blueman-1.21-4.fc13.armv5tel requires python(abi) = 0:2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires /usr/bin/python2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires python(abi) = 0:2.6
bolzplatz2006-1.0.3-10.fc13.armv5tel requires libjawt.so(SUNWprivate_1.1)
bolzplatz2006-1.0.3-10.fc13.armv5tel requires java-1.6.0-openjdk
bouncycastle-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-mail-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-tsp-1.45-1.fc13.armv5tel requires java >= 0:1.7
bugzilla-3.6.2-1.fc14.noarch requires bugzilla-contrib
bzr-gtk-0.98.0-1.fc13.armv5tel requires python(abi) = 0:2.6
calibre-0.7.20-1.fc14.armv5tel requires libpodofo.so.0.8.0
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires python(abi) = 0:2.6
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires libpython2.6.so.1.0
canto-0.7.4-1.fc12.armv5tel requires python(abi) = 0:2.6
canto-0.7.4-1.fc12.armv5tel requires libpython2.6.so.1.0
cas-1.0-1.fc14.noarch requires crash
cbios-openmsx-0.23-2.fc12.noarch requires openmsx >= 0:0.5.0
ccsm-0.8.4-4.fc14.noarch requires compizconfig-python >= 0:0.8.4
ccsm-0.8.4-4.fc14.noarch requires libcompizconfig >= 0:0.8.4
cfdg-fe-0.1-4.fc12.armv5tel requires cfdg
cglib-2.2-6.fc13.noarch requires java >= 0:1.6.0
cinepaint-0.22.1-14.fc12.armv5tel requires libpython2.6.so.1.0
cinepaint-0.22.1-14.fc12.armv5tel requires python(abi) = 0:2.6
cinepaint-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
cinepaint-libs-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-gtk-0.4.so.0
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-0.4.so.0
1:clojure-1.2.0-1.fc14.noarch requires java >= 1:1.6
cman-3.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
cman-3.1.1-1.fc13.armv5tel requires fence-virt >= 0:0.2.1-1
cman-3.1.1-1.fc13.armv5tel requires modcluster >= 0:0.18.1-1
cmusphinx3-python-0.8-3.fc12.armv5tel requires python(abi) = 0:2.6
cmusphinx3-python-0.8-3.fc12.armv5tel requires libpython2.6.so.1.0
cobertura-1.9.3-1.fc14.noarch requires java >= 1:1.6.0
coccinella-0.96.18-1.fc14.noarch requires iaxclient
codeblocks-contrib-10.05-1.fc13.armv5tel requires valgrind
colossus-0.10.3-1.fc14.armv5tel requires java >= 0:1.6
compiz-manager-0.6.0-10.fc12.noarch requires compiz
compiz-manager-0.6.0-10.fc12.noarch requires libcompizconfig
compizconfig-backend-kconfig4-0.8.4-2.fc13.armv5tel requires libcompizconfig.so.0
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-job-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-ec2-enhanced-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires condor >= 0:7.0.2-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-job-hooks-common >= 0:1.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires condor >= 0:7.2.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-ec2-enhanced-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires python-condor-job-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires condor >= 0:7.0.2-4
condor-low-latency-1.0-19.fc12.noarch requires python-condor-job-hooks-common
condor-low-latency-1.0-19.fc12.noarch requires condor >= 0:7.0.2-4
conmux-0.0-11.493svn.fc14.noarch requires conmux-client = 0:0.0-11.493svn.fc14
conmux-0.0-11.493svn.fc14.noarch requires perl(Conmux)
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires libpython2.6.so.1.0
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires python(abi) = 0:2.6
couchdb-1.0.0-1.fc14.armv5tel requires libicui18n.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicudata.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicuuc.so.42
cpm-0.23-0.3.beta.fc12.armv5tel requires libdotconf-1.0.so.0
cryptkeeper-0.9.5-1.fc14.armv5tel requires fuse-encfs
cvs2svn-2.3.0-0.3.r4998svn.fc14.noarch requires cvs2commons
dap-freeform_handler-3.8.1-1.fc14.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libbes_dispatch.so.7
dap-server-3.9.3-2.fc12.armv5tel requires libdap.so.10
dap-server-3.9.3-2.fc12.armv5tel requires libbes_dispatch.so.7
dap-server-cgi-3.9.3-2.fc12.armv5tel requires dap-hdf4_handler
dbus-java-2.7-4.fc14.noarch requires java-1.6.0-openjdk
dcbd-0.9.19-3.fc13.armv5tel requires libconfig.so.8
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch-records = 0:0.6.6-2.fc14
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch = 0:0.6.6-2.fc14
ditaa-0.9-4.r74.fc14.noarch requires java >= 1:1.6.0
django-addons-0.6.3-1.fc13.noarch requires python(abi) = 0:2.6
django-ajax-selects-1.1.4-3.fc13.noarch requires python(abi) = 0:2.6
django-authopenid-0.9.6-4.fc12.noarch requires python(abi) = 0:2.6
django-reversion-1.3.2-2.fc13.noarch requires python(abi) = 0:2.6
django-simple-captcha-0.2.0-4.fc13.noarch requires python(abi) = 0:2.6
django-staticfiles-0.3.2-3.fc13.noarch requires python(abi) = 0:2.6
django-threadedcomments-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
django-tracking-0.2.7-1.fc13.noarch requires python(abi) = 0:2.6
dnsjava-2.0.6-7.fc12.noarch requires java >= 0:1.7
dogtag-pki-1.3.0-2.fc13.noarch requires pki-common-javadoc
dogtag-pki-1.3.0-2.fc13.noarch requires pki-util-javadoc
dogtag-pki-console-ui-1.3.2-2.fc14.noarch requires java >= 1:1.6.0
dpkt-1.7-2.fc13.noarch requires python(abi) = 0:2.6
dracut-fips-006-3.fc14.noarch requires hmaccalc
drpython-3.11.1-1.fc13.noarch requires python(abi) = 0:2.6
dssi-1.1.0-2.fc14.armv5tel requires liblo.so.0
dssi-examples-1.1.0-2.fc14.armv5tel requires liblo.so.0
dwdiff-1.7-2.fc14.armv5tel requires libicui18n.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicudata.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicuuc.so.42
dx-samples-4.4.0-6.fc12.noarch requires dx
echo-artist-0.1.1-3.fc12.noarch requires inkscape
echolinux-0.17a-6.fc13.armv5tel requires libforms.so.1
eclipse-anyedit-2.2.0-2.fc12.noarch requires eclipse-platform >= 0:3.4.0
eclipse-birt-2.5.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.1
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-jdt
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.5
eclipse-cmakeed-1.1.5-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-collabnet-merge-2.0.0-1.fc13.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-2.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-sdk-2.0.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-dtp-1.8.0-1.fc14.noarch requires eclipse-platform >= 1:3.4.2
eclipse-eclemma-1.5.0-2.fc14.noarch requires eclipse-jdt >= 1:3.4.1
eclipse-eclox-0.8.0-4.20090616svn.fc13.noarch requires eclipse-platform
eclipse-egit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-emf-2.6.0-2.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-emf-query-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-emf-transaction-1.3.1-2.fc13.noarch requires eclipse-platform >= 1:3.5.1
eclipse-emf-validation-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-xsd-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-epic-0.6.35-2.fc12.noarch requires eclipse-platform >= 0:3.4
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-rpm-editor
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-changelog
eclipse-findbugs-1.3.9-2.fc13.noarch requires eclipse-jdt
eclipse-findbugs-1.3.9-2.fc13.noarch requires java-1.6.0-openjdk
eclipse-findbugs-1.3.9-2.fc13.noarch requires ant-findbugs
eclipse-gef-3.6.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.1
eclipse-gef-sdk-3.6.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.1
eclipse-jgit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-m2m-qvtoml-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-manpage-0.0.1-0.svn24060.1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mdt-ocl-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-mdt-uml2-3.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-jdt
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mylyn-3.4.0-4.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-mylyn-cdt-3.4.0-4.fc14.noarch requires eclipse-cdt
eclipse-mylyn-java-3.4.0-4.fc14.noarch requires eclipse-jdt
eclipse-mylyn-pde-3.4.0-4.fc14.noarch requires eclipse-pde
eclipse-nls-3.5.0.v20090620043401-2.fc12.noarch requires eclipse-platform >= 0:3.4.0-18
eclipse-photran-5.0.0-0.4.200910081739.fc13.noarch requires eclipse-cdt >= 1:6.0
eclipse-photran-6.0.3-3.fc14.noarch requires eclipse-cdt >= 1:7.0.0
eclipse-phpeclipse-1.2.3-2.fc14.noarch requires eclipse-platform >= 0:3.4
eclipse-ptp-pldt-upc-4.0.3-3.fc14.noarch requires eclipse-cdt-parsers >= 1:7.0.0
eclipse-quickrex-3.5.0-12.fc12.noarch requires eclipse-platform >= 0:3.2.1
eclipse-rpmstubby-0.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-rse-3.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-shelled-2.0.0-0.M3.1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires ice-java >= 0:3.3.1
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-platform >= 0:3.2
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-setools >= 0:3.3.2.2
eclipse-subclipse-1.6.12-1.fc14.noarch requires eclipse-platform
eclipse-svnkit-1.3.3-5.fc14.noarch requires eclipse-platform
eclipse-systemtapgui-1.1-1.fc14.noarch requires eclipse-platform
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-jdt
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-texlipse-1.3.0-2.20090829cvs.fc12.noarch requires eclipse-platform
eclipse-veditor-0.6.3-4.fc12.noarch requires eclipse-platform
edje-0.9.9.050-7.fc13.armv5tel requires libembryo.so.0
edje-devel-0.9.9.050-7.fc13.armv5tel requires inkscape
eet-1.2.3-2.fc13.armv5tel requires libeina-ver-svn-05.so.0
ekg-1.8-0.6.rc1.fc12.armv5tel requires libpython2.6.so.1.0
electric-8.09-1.fc12.noarch requires java-1.6.0-openjdk
emacs-common-tuareg-1.45.6-9.fc12.noarch requires ocaml-emacs
emacs-spice-mode-1.2.25-4.fc14.noarch requires gwave
ember-media-0.5.6-3.noarch requires ember >= 0:0.5.6
emerald-themes-0.5.2-5.fc14.noarch requires compiz >= 0:0.5.2
emerald-themes-0.5.2-5.fc14.noarch requires emerald >= 0:0.5.2
epiphany-2.30.2-1.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-0.2.2-4.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-python-0.2.2-4.fc13.armv5tel requires python(abi) = 0:2.6
ethos-python-0.2.2-4.fc13.armv5tel requires libpython2.6.so.1.0
fedora-business-cards-0.2.4.2-4.fc14.noarch requires inkscape >= 0:0.47-0.11.20090602svn
fedora-gnat-project-common-1.2-2.fc14.noarch requires gcc-gnat
fedora-gnat-project-common-1.2-2.fc14.noarch requires libgnat-static
fedora-idm-console-1.1.3-2.fc12.armv5tel requires java >= 1:1.6.0
fedora-package-config-smart-13-21.armv5tel requires smart
fedora-usermgmt-0.11-1405.fc14.noarch requires instance(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires setup(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires fedora-usermgmt-core = 0:0.11-1405.fc14
felix-framework-2.0.5-3.fc14.noarch requires java >= 1:1.6.0
felix-main-2.0.5-5.fc14.noarch requires java >= 1:1.6.0
felix-osgi-compendium-1.4.0-3.fc14.noarch requires java >= 1:1.6.0
felix-osgi-core-1.4.0-2.fc14.noarch requires java >= 1:1.6.0
felix-osgi-foundation-1.2.0-3.fc14.noarch requires java >= 1:1.6.0
felix-parent-1.2.1-2.fc14.noarch requires maven-release-plugin
felix-parent-1.2.1-2.fc14.noarch requires maven-plugin-plugin
fence-agents-3.1.4-1.fc13.armv5tel requires /usr/bin/virsh
1:fife-0.3.1-2.fc13.armv5tel requires libboost_filesystem.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires python(abi) = 0:2.6
1:fife-0.3.1-2.fc13.armv5tel requires libpython2.6.so.1.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_system.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_regex.so.1.41.0
findbugs-1.3.9-3.fc14.noarch requires java-1.6.0-openjdk
findbugs-contrib-4.2.0-1.fc14.noarch requires java-1.6.0-openjdk
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firewalk-5.0-5.fc12.armv5tel requires libpcap.so.0.9
firmware-extract-2.0.13-3.fc13.noarch requires python(abi) = 0:2.6
firstaidkit-plugin-grub-0.2.17-1.fc14.armv5tel requires grub
fluidsynth-dssi-1.0.0-2.fc12.armv5tel requires liblo.so.0
fonttools-2.2-7.fc12.armv5tel requires python(abi) = 0:2.6
fonttools-2.2-7.fc12.armv5tel requires libpython2.6.so.1.0
fop-0.95-5.fc14.noarch requires java-1.6.0-openjdk
freecol-0.8.3-2.fc12.noarch requires java-1.6.0-openjdk
freemarker-2.3.13-8.fc14.noarch requires java >= 1:1.6.0
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libml.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcxcore.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libhighgui.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcvaux.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcv.so.2
frescobaldi-1.0.3-1.fc14.noarch requires PyKDE4
frinika-0.6.0-3.fc13.noarch requires java >= 0:1.7
fusion-icon-0.1.0-0.8.5e2dc9git.fc14.noarch requires fusion-icon-ui=0.1.0-0.8.5e2dc9git.fc14
gaupol-0.17-2.fc14.noarch requires aeidon
gazpacho-0.7.2-8.fc14.noarch requires python-kiwi-gazpacho
gcompris-9.5-1.fc13.armv5tel requires libpython2.6.so.1.0
gdata-java-1.41.2-1.fc14.noarch requires java >= 1:1.6.0
gdb-heap-0.5-1.fc14.armv5tel requires glibc(armv5tel-32) = 0:2.12.90
gdcm-2.0.16-5.fc12.armv5tel requires libpoppler.so.5
gdcm-python-2.0.16-5.fc12.armv5tel requires python(abi) = 0:2.6
gdcm-python-2.0.16-5.fc12.armv5tel requires libpython2.6.so.1.0
gedit-valencia-0.3.0-4.fc13.armv5tel requires libvala.so.0
geeqie-1.0-9.fc13.armv5tel requires libexiv2.so.6
geronimo-annotation-1.0-2.fc14.noarch requires java >= 1:1.6.0
geronimo-interceptor-1.0.1-2.fc14.noarch requires java >= 1:1.6.0
geronimo-jpa-1.1.1-3.fc14.noarch requires java >= 1:1.6.0
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-plugin
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-enforcer
gg2-core-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gg2-libs-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gget-0.0.4-12.fc12.armv5tel requires python(abi) = 0:2.6
ghmm-0.7-4.svn2286.fc13.armv5tel requires libpython2.6.so.1.0
ghmm-0.7-4.svn2286.fc13.armv5tel requires python(abi) = 0:2.6
ginac-1.5.6-1.fc13.armv5tel requires libcln.so.6
ginac-devel-1.5.6-1.fc13.armv5tel requires pkgconfig(cln) >= 0:1.1.6
ginac-devel-1.5.6-1.fc13.armv5tel requires cln-devel
ginac-utils-1.5.6-1.fc13.armv5tel requires libcln.so.6
gkrellxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager-setup >= 0:3
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
glom-1.14.1-1.fc13.armv5tel requires python(abi) = 0:2.6
glom-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
glom-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
gmpc-0.19.1-3.1.fc14.armv5tel requires libmicrohttpd.so.5
gmpy-1.14-1.fc13.armv5tel requires python(abi) = 0:2.6
gmpy-1.14-1.fc13.armv5tel requires libpython2.6.so.1.0
gnome-applet-music-2.5.1-4.fc12.armv5tel requires python(abi) = 0:2.6
gnome-bluetooth-moblin-2.30.0-1.fc13.armv5tel requires libmoblin-panel.so.0
gnome-chemistry-utils-gnumeric-0.12.8-2.fc13.armv5tel requires libspreadsheet-1.10.0.so
1:gnome-games-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
1:gnome-games-extra-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
gnome-hearts-0.3-4.fc12.armv5tel requires libpython2.6.so.1.0
gnome-python2-brasero-2.32.0-1.fc14.armv5tel requires libbrasero-media.so.0
gnome-python2-brasero-2.32.0-1.fc14.armv5tel requires libbrasero-burn.so.0
gnome-valgrind-session-1.1-5.fc12.noarch requires valgrind
gnomecatalog-0.3.4.2-3.fc12.noarch requires python(abi) = 0:2.6
gnote-0.7.3-2.fc13.armv5tel requires libboost_system-mt.so.1.41.0
gnote-0.7.3-2.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
1:gnubg-0.9.0.1-8.fc12.armv5tel requires libpython2.6.so.1.0
grc-0.70-6.fc12.noarch requires gnuradio
gspiceui-0.9.98-2.fc14.armv5tel requires gwave
gstreamer-java-1.4-2.fc14.noarch requires java >= 1:1.6.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libgmyth.so.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libWildMidi.so.0
gthumb-2.12.0-1.fc14.armv5tel requires libbrasero-burn.so.0
gtk-redshift-1.6-3.fc13.armv5tel requires python(abi) = 0:2.6
gtkparasite-0-0.4.20090120git928494e5.fc12.armv5tel requires libpython2.6.so.1.0
gxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
halberd-0.2.3-2.fc12.noarch requires python(abi) = 0:2.6
hamcrest-1.1-9.2.fc12.armv5tel requires java-1.6.0
hamlib-python-1.2.9-1.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires libpython2.6.so.1.0
hexter-dssi-0.6.2-3.fc12.armv5tel requires liblo.so.0
holland-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-common-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqldump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqllvm-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-pgdump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-xtrabackup-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
htmlparser-1.6-5.fc12.1.noarch requires java >= 1:1.6.0
hugin-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hydrogen-drumkits-0.9.3-3.20080907.fc12.noarch requires hydrogen >= 0:0.9.3
hyperestraier-perl-1.4.13-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
ibus-qt-1.3.1-2.fc14.armv5tel requires libicui18n.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicudata.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicuuc.so.42
ibus-table-extraphrase-1.2.0.20100305-1.fc14.noarch requires pkgconfig(ibus-table)
icc_examin-0.46-3.fc12.armv5tel requires liboyranos.so.0.1.9
idm-console-framework-1.1.5-1.fc14.noarch requires java >= 1:1.6.0
imagej-1.43-1.m.fc13.noarch requires java-devel >= 0:1.6.0
impressive-0.10.3-5.fc13.noarch requires python(abi) = 0:2.6
ini4j-0.4.1-2.fc12.noarch requires java >= 1:1.6.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngcclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngeclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires initng >= 0:0.6.8
inksmoto-0.7.0-4.fc14.noarch requires inkscape
input-pad-python-1.0.1-2.fc13.armv5tel requires python(abi) = 0:2.6
input-pad-python-1.0.1-2.fc13.armv5tel requires libpython2.6.so.1.0
istanbul-0.2.2-14.fc13.armv5tel requires python(abi) = 0:2.6
jabber-roster-0.1.0-1.fc13.noarch requires python(abi) = 0:2.6
jakarta-commons-codec-1.4-5.fc13.noarch requires java >= 1:1.6.0
jakarta-commons-compress-1.0-1.fc13.noarch requires java >= 1:1.6.0
jamin-0.95.0-8.20100210cvs.fc13.armv5tel requires liblo.so.0
java-augeas-0.0.2-1.fc14.noarch requires java >= 1:1.5.0
java-gnome-4.0.16-2.fc14.armv5tel requires java >= 1:1.6.0
javacsv-2.0-3.fc13.noarch requires java >= 1:1.5
javahelp2-2.0.05-8.fc12.noarch requires java >= 1:1.6.0
javassist-3.9.0-7.fc13.noarch requires java >= 1:1.6.0
jaxodraw-2.0.1-8.fc14.noarch requires java >= 1:1.6.0
jcalendar-1.3.2-3.fc12.noarch requires java >= 1:1.6.0
jcharts-0.7.5-4.fc14.noarch requires java >= 1:1.6.0
jemmy-2.3.0.0-4.fc12.noarch requires java >= 1:1.6.0
jericho-html-3.1-3.fc14.noarch requires java >= 1:1.6.0
jettison-1.2-1.fc14.noarch requires java >= 1:1.6.0
jeuclid-3.1.3-12.fc12.noarch requires java >= 1:1.6.0
jffi-0.6.5-4.fc13.armv5tel requires java >= 1:1.6.0
jide-oss-2.7.6-3.1340svn.fc14.noarch requires java >= 1:1.6.0
jmod-0.9-2.fc12.armv5tel requires java >= 0:1.7
jmol-11.8.26-1.fc14.noarch requires java >= 1:1.6.0
jna-3.2.7-4.fc14.armv5tel requires java >= 1:1.6.0
jnr-constants-0.7-2.fc14.noarch requires java >= 1:1.6.0
jnr-x86asm-0.1-2.fc14.noarch requires java >= 1:1.6.0
joda-time-1.6.2-2.tzdata2010l.fc14.noarch requires java >= 1:1.6.0
josm-0-0.11.3592svn.fc14.noarch requires java >= 1:1.6.0
jpcap-0.7-8.fc12.armv5tel requires java >= 1:1.6
2:jtidy-1.0-0.9.20100930svn1125.fc14.noarch requires java >= 1:1.6.0
junit4-4.8.2-1.fc14.noarch requires java-1.6.0
jython-2.2.1-4.6.fc14.noarch requires java >= 1:1.6.0
kanyremote-5.11.8-1.fc14.noarch requires PyKDE4
kbluetooth-0.4.1-1.fc13.armv5tel requires libknotificationitem-1.so.1
kcbench-0.3-6.1.noarch requires kcbench-datafiles
kcbench-data-0.1-6.fc14.noarch requires kcbench-data-2.6.35 = 0:0.1-6.fc14
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires libexiv2.so.6
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libcln.so.6
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libgps.so.18
kdebase-workspace-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires PyKDE4 >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires python(abi) = 0:2.6
6:kdegames-4.5.5-1.fc13.armv5tel requires PyKDE4
7:kdegraphics-libs-4.4.2-3.fc13.armv5tel requires libexiv2.so.6
6:kdelibs-4.5.2-5.fc14.armv5tel requires phonon(armv5tel-32) >= 0:4.4.3
kdelibs3-devel-3.5.10-23.fc13.armv5tel requires libkdnssd-devel
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
7:kdenetwork-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdepim-libs-4.4.10-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires akonadi(armv5tel-32) >= 0:1.4.3
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires kdepimlibs-akonadi(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kross(python)
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires libpython2.6.so.1.0
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-minimal-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-printer-applet-4.5.5-1.fc13.armv5tel requires PyKDE4
kdm-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdm-4.5.5-1.fc13.armv5tel requires kde-settings-kdm
klavaro-1.6.0-1.fc13.armv5tel requires libgtkdatabox-0.9.0.so.1
kmess-2.0.6.1-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kmid2-0.2.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
2:koffice-langpack-2.2.2-1.fc14.noarch requires koffice-core >= 2:2.2.1
koji-vm-1.6.0-1.fc14.noarch requires qemu-img
koji-vm-1.6.0-1.fc14.noarch requires libvirt-python
konversation-1.3.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kpackagekit-0.6.1-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
kphotobymail-0.4.1-8.fc14.noarch requires PyKDE >= 0:3.16
kreetingkard_templates-0.2.0-4.fc12.noarch requires kreetingkard >= 0:0.7.1
ktorrent-libs-4.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kvirc-4.0.4-1.fc13.armv5tel requires libpython2.6.so.1.0
l2fprod-common-7.3-6.20090428cvs.fc12.noarch requires java >= 1:1.6.0
laf-plugin-1.0-6.fc12.noarch requires java >= 1:1.6.0
lazygal-0.4.1-4.fc12.noarch requires python(abi) = 0:2.6
lekhonee-0.7-3.fc14.noarch requires lekhonee-lib = 0:0.7-3.fc14
lekhonee-0.7-3.fc14.noarch requires PyKDE4
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1(liboggz.so.0.2)
libbluray-0.1-0.3.20101028gitc32862b77dea4.fc13.armv5tel requires java-1.6.0
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickCore.so.2
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickWand.so.2
libktorrent-1.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
libmatroska-0.9.0-1.fc14.armv5tel requires libebml.so.0
libmatthew-java-0.7.2-3.fc14.armv5tel requires java-1.6.0-openjdk
libphidget-java-2.1.8.20110310-1.fc13.armv5tel requires java >= 1:1.6.0
libpst-python-0.6.49-1.fc13.armv5tel requires python(abi) = 0:2.6
libpst-python-0.6.49-1.fc13.armv5tel requires libboost_python.so.1.41.0
libqalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
libqalculate-devel-0.9.7-2.fc13.armv5tel requires cln-devel
librtfcomp-python-1.1-6.fc12.armv5tel requires python(abi) = 0:2.6
libvirt-java-0.4.6-1.fc14.noarch requires libvirt-client >= 0:0.8.2
libvirt-java-0.4.6-1.fc14.noarch requires java >= 1:1.5.0
libxfce4ui-devel-4.7.2-2.fc14.armv5tel requires libgladeui-1.so.9
libyaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
listen-0.6.5-2.fc13.armv5tel requires libpython2.6.so.1.0
liveusb-creator-3.9.2-2.fc14.noarch requires syslinux
log4j-1.2.16-3.fc14.noarch requires java >= 1:1.6.0
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires xmms
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires libxmms.so.1
lv2-fil-plugins-2.0-3.fc13.armv5tel requires liblo.so.0
lxmusic-0.4.2-1.fc13.armv5tel requires libxmmsclient.so.5
maniadrive-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maniadrive-track-editor-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-filtering
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-repository-builder
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires java >= 1:1.6.0
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-shared-reporting-impl >= 0:2.0.4.3
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-plugin-testing-harness >= 0:1.2
maven-checkstyle-plugin-2.5-3.fc14.noarch requires plexus-containers-container-default
maven-checkstyle-plugin-2.5-3.fc14.noarch requires java >= 1:1.6.0
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-common-artifact-filters
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-dependency-analyzer
maven-doxia-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires plexus-containers-container-default
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-ejb-plugin-2.2.1-5.fc14.noarch requires maven-plugin-testing-harness
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-invoker
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-impl
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-api
maven-jar-plugin-2.3-3.fc14.noarch requires maven-plugin-testing-harness
maven-javadoc-plugin-2.7-3.fc14.noarch requires maven-shared-invoker
maven-plugin-bundle-2.0.0-4.fc12.noarch requires maven-shared-dependency-tree
maven-plugin-bundle-2.0.0-4.fc12.noarch requires plexus-containers-container-default
maven-plugin-exec-1.1-1.fc12.noarch requires maven-shared-plugin-testing-harness
maven-pmd-plugin-2.5-1.fc14.noarch requires maven-plugin-testing-harness
maven-remote-resources-plugin-1.1-6.fc14.noarch requires maven-shared-artifact-resolver
maven-resources-plugin-2.2-7.fc14.noarch requires maven-plugin-testing-harness
maven-scm-1.4-2.fc14.noarch requires netbeans-cvsclient >= 0:6.9
maven-shade-plugin-1.3.3-2.fc14.noarch requires java >= 1:1.6.0
maven2-2.2.1-13.fc14.noarch requires maven-shared-repository-builder
maven2-2.2.1-13.fc14.noarch requires maven-shared-filtering
maven2-2.2.1-13.fc14.noarch requires maven-plugin-testing-harness
maven2-2.2.1-13.fc14.noarch requires maven-shared-dependency-tree
maven2-2.2.1-13.fc14.noarch requires plexus-containers-container-default
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-api
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-plugin
maven2-2.2.1-13.fc14.noarch requires maven-shared-common-artifact-filters
maven2-2.2.1-13.fc14.noarch requires maven-shared-downloader
maven2-2.2.1-13.fc14.noarch requires maven-shared-file-management
maven2-2.2.1-13.fc14.noarch requires maven-shared-reporting-api
maven2-2.2.1-13.fc14.noarch requires maven-shared-io
maven2-plugin-shade-1.2.2-2.fc13.noarch requires maven-shared-dependency-tree
mediawiki-CategoryTree-45462-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-Cite-0-0.6.20080901svn.fc12.noarch requires mediawiki
mediawiki-HNP-1.1.2-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-HTTP302Found-1.0-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-LdapAccount-0.1-1.fc13.noarch requires mediawiki >= 0:1.13
mediawiki-ParserFunctions-1.1.1-6.svn45003.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-SpecialInterwiki-0-0.7.20080913svn.fc12.noarch requires mediawiki >= 0:1.12
mediawiki-StubManager-1.3.0-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-imagemap-0-0.3.r37906.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-openid-0.8.2-9.0.1.noarch requires mediawiki
mediawiki-rss-1.5-3.fc12.noarch requires mediawiki >= 0:0.14
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki-nomath
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki
mediawiki-wikicalendar-1.16-1.fc12.noarch requires mediawiki
mingw32-OpenSceneGraph-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-OpenThreads-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-SDL_image-1.2.10-1.fc13.noarch requires mingw32(libpng12-0.dll)
mingw32-boost-1.41.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsq3-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsqlite3x-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libtiff-3.9.4-1.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-pcre-8.10-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-qt-4.7.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
minicomputer-1.41-2.fc13.armv5tel requires liblo.so.0
mirage-0.9.5.2-1.fc13.armv5tel requires libpython2.6.so.1.0
mirage-0.9.5.2-1.fc13.armv5tel requires python(abi) = 0:2.6
mirrormanager-1.3.7-1.fc14.noarch requires python-basemap >= 0:0.99.4
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
moblin-panel-applications-0.0.2-1.fc12.armv5tel requires libmoblin-panel.so.0
moblin-panel-media-0.0.8-0.2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-pasteboard-0.0.2-2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libebook-1.2.so.9
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libedataserver-1.2.so.13
moblin-panel-status-0.0.10-2.fc13.armv5tel requires libmoblin-panel.so.0
mod_annodex-0.2.2-13.fc13.armv5tel requires liboggz.so.1
mojo-parent-24-5.fc14.noarch requires maven-plugin-plugin
mojo-parent-24-5.fc14.noarch requires plexus-containers-component-javadoc
moovida-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-bad-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-good-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
mozvoikko-1.0-21.fc13.armv5tel requires gecko-libs >= 0:1.9.2.17
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
msort-8.53-1.fc13.armv5tel requires libicutu.so.42
msort-8.53-1.fc13.armv5tel requires libicuuc.so.42
1:msv-javadoc-2009.1-3.fc14.noarch requires relaxngDatatype-javadoc
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Defaults)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Timeout)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::TLSClient)
munin-1.4.5-4.fc14.noarch requires munin-common = 0:1.4.5
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Config)
museek+-bindings-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-mucous-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-murmur-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
nachocalendar-0.23-3.fc12.noarch requires java >= 1:1.6.0
nekobee-dssi-0.1.7-3.fc12.armv5tel requires liblo.so.0
netbeans-6.9-2.fc14.noarch requires netbeans-java4 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires netbeans-apisupport2 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires java >= 1:1.6.0
netbeans-6.9-2.fc14.noarch requires netbeans-ide13 >= 0:6.9
netbeans-javaparser-6.9-1.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-harness-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-resolver-6.7.1-1.fc12.noarch requires java >= 1:1.6.0
netbeans-svnclientadapter-6.7.1-2.fc12.noarch requires java >= 1:1.6.0
network-manager-netbook-1.7.1-0.1.fc13.armv5tel requires libmoblin-panel.so.0
notmuch-0.5-1.fc13.armv5tel requires libxapian.so.15
nyquist-3.03-3.fc12.armv5tel requires liblo.so.0
nyquist-3.03-3.fc12.armv5tel requires java-1.6.0-openjdk
ocfs2-tools-1.4.3-5.fc13.armv5tel requires redhat-lsb
ocfs2console-1.4.3-5.fc13.armv5tel requires python(abi) = 0:2.6
openbabel-2.2.3-1.fc13.armv5tel requires libstdinchi.so.1
opencsv-2.2-2.fc14.noarch requires java >= 1:1.6.0
opengrok-0.9-1.fc14.noarch requires lucene-contrib > 0:2
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires latex2emf
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-writer >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-draw >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicui18n.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicuuc.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicudata.so.42
openwsman-perl-2.2.0-3.fc12.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
openwsman-python-2.2.0-3.fc12.armv5tel requires python(abi) = 0:2.6
osutil-1.3.1-3.fc13.armv5tel requires java >= 1:1.6.0
ovirt-server-0.100-5.fc14.noarch requires ruby-qmf
ovirt-server-0.100-5.fc14.noarch requires qmf
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-client
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-server
ovirt-server-0.100-5.fc14.noarch requires ruby-libvirt >= 0:0.0.2
oyranos-0.2.0-2.fc13.armv5tel requires shared-color-profiles-extra
pAgenda-3.2-5.fc12.noarch requires python(abi) = 0:2.6
pacemaker-1.1.4-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
pacemaker-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
pacemaker-cts-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
parrot-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-3.0.0-1.fc13.armv5tel requires libicudata.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicudata.so.42
patcher-0.6-3.fc13.noarch requires python(abi) = 0:2.6
pcapy-0.10.5-6.fc12.armv5tel requires libpython2.6.so.1.0
pcapy-0.10.5-6.fc12.armv5tel requires python(abi) = 0:2.6
pdf-renderer-0-0.6.20090405cvs.fc12.armv5tel requires java >= 0:1.7
perl-CGI-Application-Plugin-JSON-1.02-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Application-Plugin-LinkIntegrity-0.06-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Emulate-PSGI-0.10-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Catalyst-Devel-1.27-2.fc14.noarch requires perl-Catalyst-Runtime-scripts
perl-Cflow-1.053-12.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Config-INI-MVP-0.024-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Const-Fast-0.006-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-OpenSSL-PKCS10-0.06-14.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-SSLeay-0.58-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Data-Alias-1.07-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Cover-0.65-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Declare-0.006004-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Email-Simple-Creator-1.424-6.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Frontier-RPC-0.07b4p1-10.fc14.noarch requires perl-Frontier-RPC-doc
perl-GPS-PRN-0.05-5.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Git-CPAN-Patch-0.2.1-3.fc14.noarch requires git-cpan-patch = 0:0.2.1-3.fc14
perl-Gnome2-1.042-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-IO-Compress-Bzip2-2.015-1.fc12.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-MIME-Base32-1.02a-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Mail-Box-Parser-C-3.006-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-GMP-2.06-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-Pari-2.010806-6.fc14.armv5tel requires pari(armv5tel-32) = 0:2.3.4
perl-Monotone-0.48.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
1:perl-NKF-2.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Net-SSLeay-1.36-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-PDF-Haru-1.00-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-POSIX-strptime-0.10-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Pegex-0.11-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Razor-Agent-2.85-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Reaper-1.00-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Regexp-Copy-0.06-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-SVN-Mirror-0.75-2.fc11.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt) >= 0:0.2.1
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires libvirt >= 0:0.6.4
perl-Task-Catalyst-3.0000-4.fc14.noarch requires /usr/bin/catalyst.pl
perl-Template-Toolkit-2.22-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Text-PDF-0.29a-4.fc14.noarch requires pdf-tools = 0:0.29a-4.fc14
perl-Tk-TableMatrix-1.23-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Tk-Text-SuperText-0.9.4-3.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Verilog-CodeGen-0.9.4-4.fc14.noarch requires tkgate
perl-WWW-Pastebin-RafbNet-Create-0.001-4.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-WWW-Salesforce-0.13-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-libapreq2-2.13-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-openbabel-2.2.3-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
3:perl-version-0.82-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
phatch-0.2.7-2.fc14.noarch requires phatch-cli = 0:0.2.7-2.fc14
phoronix-test-suite-1.8.1-2.fc12.noarch requires compat-libstdc++-33
phoronix-test-suite-1.8.1-2.fc12.noarch requires java-openjdk
photoprint-borders-0.0.2-5.fc12.noarch requires photoprint
1:php-eaccelerator-0.9.6.1-2.fc14.armv5tel requires php-common = 0:5.3.2
php-facedetect-1.0.0-6.fc14.armv5tel requires opencv
php-facedetect-1.0.0-6.fc14.armv5tel requires libcv.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcvaux.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcxcore.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libhighgui.so.2
php-intl-5.3.3-1.fc14.armv5tel requires libicuio.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicui18n.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicudata.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicuuc.so.42
picard-0.12.1-1.fc13.armv5tel requires python(abi) = 0:2.6
picard-0.12.1-1.fc13.armv5tel requires libpython2.6.so.1.0
piccolo2d-1.3-5.fc14.noarch requires eclipse-swt
picviz-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
picviz-0.6-2.fc12.armv5tel requires libpython2.6.so.1.0
picviz-gui-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
pigment-python-0.3.12-2.fc12.armv5tel requires python(abi) = 0:2.6
pinot-0.94-4.fc13.armv5tel requires libxapian.so.15
pki-ca-1.3.6-1.fc14.noarch requires java >= 1:1.6.0
pki-common-1.3.8-1.fc14.noarch requires java >= 1:1.6.0
pki-console-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pki-java-tools-1.3.1-1.fc14.noarch requires java >= 1:1.6.0
pki-kra-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-ocsp-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-silent-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-symkey-1.3.2-4.fc13.armv5tel requires java >= 1:1.6.0
pki-tks-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-util-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pl-jpl-5.7.11-5.fc12.armv5tel requires libverify.so
pl-jpl-5.7.11-5.fc12.armv5tel requires libjvm.so(SUNWprivate_1.1)
pl-jpl-5.7.11-5.fc12.armv5tel requires libjava.so
plexus-active-collections-1.0-0.2.beta2.fc14.noarch requires java >= 1:1.6.0
plexus-appserver-1.0-0.4.a5.2.11.fc13.noarch requires xmlrpc
plexus-cli-1.2-8.fc12.noarch requires plexus-containers-container-default
plexus-component-api-1.0-0.5.alpha15.fc14.noarch requires java-devel >= 1:1.6.0
plexus-maven-plugin-1.3.8-3.fc14.noarch requires maven-shared-reporting-impl
plexus-maven-plugin-1.3.8-3.fc14.noarch requires plexus-runtime-builder >= 0:1.0-0.a9.2
plexus-naming-1.0-0.5.a3.fc12.noarch requires java >= 1:1.6.0
plexus-registry-1.0-0.3.a3.fc13.noarch requires plexus-containers-container-default
plexus-registry-1.0-0.3.a3.fc13.noarch requires java >= 1:1.6.0
plexus-xmlrpc-1.0-0.4.b4.2.17.fc14.noarch requires xmlrpc
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires python(abi) = 0:2.6
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires libpython2.6.so.1.0
poker-bot-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-client-lib-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-engine-1.3.4-1.fc13.noarch requires python(abi) = 0:2.6
poker-network-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-server-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires /usr/bin/python2.6
poker3d-data-1.1.36-5.fc12.noarch requires poker3d >= 0:1.1.36
poky-depends-6-6.fc13.noarch requires compat-gcc-34
poky-depends-6-6.fc13.noarch requires qemu >= 0:0.8.2
pony-0.4-2.fc14.noarch requires PyKDE4
portecle-1.5-2.fc14.noarch requires jre >= 0:1.6.0
postr-0.12.3-8.fc12.armv5tel requires python(abi) = 0:2.6
ppl-java-0.10.2-11.fc13.armv5tel requires java >= 1:1.6.0
proguard-4.5.1-1.fc14.noarch requires java >= 1:1.6.0
protobuf-python-2.2.0-2.fc13.armv5tel requires python(abi) = 0:2.6
pungi-2.1.4-1.fc14.noarch requires anaconda >= 0:14.3
purple-plugin_pack-pidgin-xmms-2.6.3-1.fc13.armv5tel requires libxmms.so.1
pxe-kexec-0.2.3-2.fc13.armv5tel requires kexec-tools
pyfacebook-0.1-0.2.20090208svn173.fc12.noarch requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires libpython2.6.so.1.0
pyfuzzy-0.1.0-2.fc13.noarch requires python(abi) = 0:2.6
pyfuzzy-0.1.0-2.fc13.noarch requires antlr3-python
pyliblo-0.8.1-3.fc14.armv5tel requires liblo.so.0
pymongo-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
pymongo-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymongo-gridfs-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymunk-0.8.4-3.fc14.noarch requires chipmunk >= 0:4.1.0
pypoker-eval-137.0-1.fc13.armv5tel requires python(abi) = 0:2.6
pypoker-eval-137.0-1.fc13.armv5tel requires libpython2.6.so.1.0
pyrenamer-0.6.0.1-4.fc12.noarch requires python(abi) = 0:2.6
python-amqplib-0.6.1-2.fc13.noarch requires python(abi) = 0:2.6
python-asyncmongo-0.1-1.fc13.noarch requires python(abi) = 0:2.6
python-bson-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
python-bson-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
python-dulwich-0.6.2-1.fc13.armv5tel requires libpython2.6.so.1.0
python-dulwich-0.6.2-1.fc13.armv5tel requires python(abi) = 0:2.6
python-iso8601-0.1.4-2.fc13.noarch requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires libpython2.6.so.1.0
python-keybinder-0.2.2-5.fc13.armv5tel requires python(abi) = 0:2.6
python-lash-0.5.4-9.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires libpython2.6.so.1.0
python-mox-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
python-mwlib-0.11.2-7.20090522hg2956.fc14.armv5tel requires LabPlot
python-nufw-2.2.21-7.fc13.armv5tel requires python(abi) = 0:2.6
python-oauth2-1.2.1-1.fc13.noarch requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires libpython2.6.so.1.0
python-openoffice-0.1-0.6.20090228svn34.fc14.noarch requires openoffice.org-pyuno
python-ordereddict-1.1-2.fc13.noarch requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python-abi = 0:2.6
python-redis-2.0.0-1.fc13.noarch requires python(abi) = 0:2.6
python-repoze-who-testutil-1.0-1.fc14.noarch requires python(abi) = 0:2.6
python-sleekxmpp-1.0-0.7.beta2.fc13.noarch requires python(abi) = 0:2.6
python-snack-2.2.10-12.fc12.armv5tel requires python(abi) = 0:2.6
python-soaplib-0.8.1-4.fc13.noarch requires python(abi) = 0:2.6
python-sqlalchemy0.5-0.5.5-1.fc10.noarch requires python(abi) = 0:2.5
python-tilecache-2.11-5.fc13.noarch requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires libpython2.6.so.1.0
python-tunepimp-0.5.3-16.fc12.armv5tel requires python(abi) = 0:2.6
python-urllib2_kerberos-0.1.6-4.fc12.noarch requires python(abi) = 0:2.6
python-virtinst-0.500.4-1.fc14.noarch requires libvirt-python >= 0:0.2.0
python-visual-5.61-1.fc13.armv5tel requires libboost_thread-mt.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires libboost_signals.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires python(abi) = 0:2.6
python-visual-5.61-1.fc13.armv5tel requires libboost_python.so.1.41.0
pytrailer-0.6.0-1.fc13.noarch requires python(abi) = 0:2.6
pyxmms-2.06-12.fc14.armv5tel requires libxmms.so.1
qalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
qalculate-gtk-0.9.7-1.fc13.armv5tel requires libcln.so.6
qct-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qct-mercurial-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qdox-1.11-3.fc14.noarch requires java >= 1:1.6.0
qedje-python-0.4.0-6.fc13.armv5tel requires python(abi) = 0:2.6
qedje-python-0.4.0-6.fc13.armv5tel requires libpython2.6.so.1.0
qemu-launcher-1.7.4-7.fc12.noarch requires qemu
qmtest-2.4.1-3.fc12.armv5tel requires python(abi) = 0:2.6
qmtest-2.4.1-3.fc12.armv5tel requires libpython2.6.so.1.0
qtgpsc-0.2.3-6.fc12.armv5tel requires libgps.so.18
qtiplot-0.9.7.14-1.fc13.armv5tel requires libpython2.6.so.1.0
qtparted-0.4.5-23.fc13.armv5tel requires libparted-2.1.so.0
quadkonsole-2.0.2-5.fc12.armv5tel requires kdebase3
raidem-music-1.0-4.fc12.noarch requires raidem >= 0:0.3.1
rainbow-0.8.6-1.fc13.armv5tel requires python(abi) = 0:2.6
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libparrot.so.2.3.0
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicudata.so.42
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicuuc.so.42
raydium-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
rcssserver3d-0.6.5-2.fc13.armv5tel requires libkerosin.so.2
rcssserver3d-0.6.5-2.fc13.armv5tel requires liboxygen.so.5
rdesktop-1.6.0-10.fc13.armv5tel requires libao.so.2
rear-1.7.25-1.fc14.noarch requires redhat-lsb
recoll-1.15.8-2.fc13.armv5tel requires libxapian.so.15
rekall-python-2.4.6-12.fc12.armv5tel requires python(abi) = 0:2.6
rekall-python-2.4.6-12.fc12.armv5tel requires libpython2.6.so.1.0
resapplet-0.1.1-10.fc14.armv5tel requires system-config-display
revelation-0.4.11-9.armv5tel requires python(abi) = 0:2.6
revisor-2.2-2.fc14.noarch requires revisor-gui = 0:2.2-2.fc14
rhnsd-4.9.3-1.fc14.armv5tel requires rhn-check >= 0:0.0.8
rhythmbox-0.12.8-4.fc13.armv5tel requires libpython2.6.so.1.0
rhythmbox-0.12.8-4.fc13.armv5tel requires libbrasero-media.so.0
rkhunter-1.3.6-7.fc14.noarch requires prelink
rmic-maven-plugin-1.1-3.fc14.noarch requires java >= 1:1.6.0
rome-0.9-6.fc13.noarch requires java >= 1:1.6.0
rpy-2.0.8-8.fc13.armv5tel requires python(abi) = 0:2.6
rpy-2.0.8-8.fc13.armv5tel requires libpython2.6.so.1.0
rt3-3.8.8-3.fc14.noarch requires rt3-mailgate
rtorrent-0.8.6-3.fc13.armv5tel requires libtorrent.so.11
ruby-icon-artist-0.1.92-1.fc13.noarch requires inkscape
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler-glib.so.4
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler.so.5
rubygem-rb-inotify-0.8.1-2.fc13.noarch requires rubygem(ffi)
rxvt-unicode-9.10-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires python(abi) = 0:2.6
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires libpython2.6.so.1.0
sagator-1.2.1-2.fc14.noarch requires sagator-core = 0:1.2.1-2.fc14
sat4j-2.2.0-1.fc14.noarch requires java >= 1:1.6
sblim-cim-client-1.3.9.1-1.fc13.noarch requires tog-pegasus >= 2:2.5.1
sblim-tools-libra-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-tools-libra-devel-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-wbemcli-1.6.0-5.fc12.armv5tel requires tog-pegasus
scipy-0.7.1-3.fc13.armv5tel requires python(abi) = 0:2.6
scipy-0.7.1-3.fc13.armv5tel requires libpython2.6.so.1.0
scout-0.4-6.fc13.noarch requires python(abi) = 0:2.6
seed-2.30.0-2.fc13.armv5tel requires libgirepository-1.0.so.0
seedit-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
seedit-gui-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
sems-dsm-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-ivr-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-python-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sepostgresql-8.4.3-2582.fc14.armv5tel requires postgresql-server = 0:8.4.3
sipwitch-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-cgi-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-forward-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-scripting-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-subscriber-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-zeroconf-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-runtime-0.7.6-0.fc13.armv5tel requires libucommon.so.2
skanlite-0.4-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
skf-perl-1.97.4-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
skf-python-1.97.4-1.fc13.armv5tel requires python(abi) = 0:2.6
skinlf-6.7-10.cvs20091205.fc13.noarch requires java >= 1:1.6.0
skyviewer-1.0.0-4.fc14.armv5tel requires libQGLViewer.so.2.3.5
solang-0.4.1-7.fc13.armv5tel requires libbrasero-media.so.0
solang-0.4.1-7.fc13.armv5tel requires libbrasero-burn.so.0
sonic-visualiser-1.7.2-1.fc14.armv5tel requires liblo.so.0
sooperlooper-1.6.13-5.fc14.armv5tel requires liblo.so.0
sound-juicer-2.31.6-1.fc14.armv5tel requires libbrasero-media.so.0
spacewalk-backend-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-config-files-common-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-iss-export-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-server-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-postgresql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires spacewalk-admin >= 0:0.1.1-0
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python-gzipstream
spacewalk-backend-xml-export-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-xmlrpc-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-koan-0.2.5-2.fc14.noarch requires rhn-check
spacewalk-koan-0.2.5-2.fc14.noarch requires koan >= 0:1.4.3
spamassassin-3.3.2-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
spectrum-1.4.7-1.fc13.armv5tel requires python(abi) = 0:2.6
spectrum-1.4.7-1.fc13.armv5tel requires libMagick++.so.2
spring-maps-default-0.1-6.fc12.noarch requires spring
spyder-2.0.11-1.fc13.noarch requires python(abi) = 0:2.6
sqljet-1.0.3-1.fc14.noarch requires antlr3-java
stringtemplate-3.2.1-1.fc13.noarch requires java >= 1:1.6.0
suck-4.3.2-29.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
swingx-0.9.4-7.fc12.noarch requires java >= 0:1.6.0
syck-python-0.61-11.fc13.armv5tel requires python(abi) = 0:2.6
syck-python-0.61-11.fc13.armv5tel requires libpython2.6.so.1.0
system-config-kdump-2.0.4-7.fc14.noarch requires kexec-tools
system-config-kickstart-2.8.6-2.fc14.noarch requires anaconda >= 0:11.4.0.42-1
7:system-config-printer-kde-4.4.2-1.fc13.armv5tel requires PyKDE4
systemtap-testsuite-1.6-1.fc14.armv5tel requires prelink
taggle-1.0-1.fc14.noarch requires java >= 1:1.6.0
tailor-0.9.35-10.fc14.noarch requires python-vcpx = 0:0.9.35-10.fc14
taskjuggler-2.4.3-3.fc12.armv5tel requires libkcal.so.2
taskjuggler-libs-2.4.3-3.fc12.armv5tel requires libkcal.so.2
testdisk-6.12-1.fc13.armv5tel requires libntfs-3g.so.81
tetex-tex4ht-1.0.2008_09_16_1413-3.fc12.armv5tel requires java-1.6.0-openjdk
texmakerx-2.1-3.fc13.armv5tel requires libpoppler.so.5
texworks-0.4.0-1.fc13.armv5tel requires libpython2.6.so.1.0
tigase-utils-3.3.9-2.fc14.noarch requires java >= 0:1.6.0
tigase-xmltools-3.3.4-4.fc14.noarch requires java >= 0:1.6.0
tomcat5-5.5.27-7.4.fc12.noarch requires java-1.6.0-devel
tomcat5-5.5.27-7.4.fc12.noarch requires /lib/lsb/init-functions
tomcat5-common-lib-5.5.27-7.4.fc12.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcat6-6.0.26-7.fc14.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcatjss-1.2.1-1.fc13.noarch requires java >= 1:1.6.0
tomoe-0.6.0-15.fc12.armv5tel requires libpython2.6.so.1.0
tomoe-0.6.0-15.fc12.armv5tel requires python(abi) = 0:2.6
tomoe-gtk-devel-0.6.0-11.fc12.armv5tel requires python(abi) = 0:2.6
toot2-3-0.6.227svn.fc13.noarch requires java >= 0:1.7
tootaudioservers-3-0.3.80svn.fc13.armv5tel requires java >= 0:1.7
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tortoisehg-1.1.10-1.fc13.armv5tel requires python(abi) = 0:2.6
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmyth.so.0
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmythupnp.so.0
translate-toolkit-1.8.0-1.fc14.noarch requires aeidon
tritonus-0.3.7-0.5.20090419cvs.fc12.armv5tel requires java >= 0:1.6
trytond-1.6.0-4.fc14.noarch requires trytond-server = 0:1.6.0-4.fc14
ufraw-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-cinepaint-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-gimp-0.16-2.fc13.armv5tel requires libexiv2.so.6
unbound-munin-1.4.4-2.fc14.armv5tel requires munin-node
uniconvertor-1.1.4-2.fc12.armv5tel requires python(abi) = 0:2.6
uniconvertor-1.1.4-2.fc12.armv5tel requires libpython2.6.so.1.0
unoconv-0.3-4.fc12.noarch requires openoffice.org-pyuno
vecmath-0-2.20090922cvs.fc13.noarch requires java >= 1:1.6.0
vecmath1.2-1.14-5.fc13.noarch requires java >= 1:1.6.0
vegastrike-0.5.0-16.fc13.armv5tel requires libpython2.6.so.1.0
vegastrike-0.5.0-16.fc13.armv5tel requires libboost_python.so.1.41.0
veusz-1.7-1.fc13.armv5tel requires python(abi) = 0:2.6
veusz-1.7-1.fc13.armv5tel requires libpython2.6.so.1.0
viking-0.9.91-3.fc13.armv5tel requires libgps.so.18
virt-manager-0.8.5-1.fc14.noarch requires libvirt-python >= 0:0.7.0
virt-v2v-0.3.2-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Virt)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs::Lib)
virt-v2v-0.3.2-2.fc13.noarch requires perl-libguestfs >= 1:1.0.68
virt-v2v-0.3.2-2.fc13.noarch requires /usr/bin/qemu-img
vtk-examples-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
vtk-python-5.4.2-34.fc12.armv5tel requires python(abi) = 0:2.6
vtk-python-5.4.2-34.fc12.armv5tel requires libpython2.6.so.1.0
vtk-testing-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
w3c-markup-validator-1.1-1.fc14.noarch requires w3c-markup-validator-libs = 0:1.1
webkitgtk-1.1.22-1.fc13.armv5tel requires libicudata.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicudata.so.42
weka-3.6.2-4.fc14.noarch requires java >= 1:1.6.0
weka-3.6.2-4.fc14.noarch requires javasqlite
whysynth-dssi-20100922-1.fc13.armv5tel requires liblo.so.0
wordgroupz-0.3.1-3.fc13.noarch requires python(abi) = 0:2.6
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_filesystem.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_system.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_regex.so.1.41.0
xchat-gnome-0.26.1-10.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xchat-gnome-0.26.1-10.fc13.armv5tel requires libpython2.6.so.1.0
xiphos-3.1.4-1.fc13.armv5tel requires libsword-1.6.2.so
xiphos-3.1.4-1.fc13.armv5tel requires libgtkhtml-editor.so.0
xml-writer-0.2-2.fc12.noarch requires java >= 1:1.6.0
xmlenc-0.52-7.fc12.noarch requires java >= 1:1.6.0
xmms-acme-0.4.3-11.armv5tel requires xmms >= 0:1.0.0
xmms-acme-0.4.3-11.armv5tel requires libxmms.so.1
xmms-adplug-1.2-9.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires xmms
xmms-arts-0.7.1-9.armv5tel requires xmms-libs
xmms-flac-1.2.1-1.fc13.armv5tel requires libxmms.so.1
xmms-lirc-1.4-14.armv5tel requires xmms
xmms-modplug-2.05-18.fc14.armv5tel requires xmms-libs(armv5tel-32)
xmms-musepack-1.2-8.fc12.armv5tel requires libxmms.so.1
xmms-pulse-0.9.4-8.fc12.armv5tel requires libxmms.so.1
xmms-scrobbler-0.4.0-8.fc12.armv5tel requires xmms >= 0:1.2.4
xmms-speex-0.9.1-15.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires xmms
xmms-xosd-2.2.14-13.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires libxmms.so.1
xom-1.0-5.6.fc14.noarch requires icu4j
xournal-0.4.5-3.fc13.armv5tel requires libpoppler-glib.so.4
1:xrootd-client-admin-perl-3.0.3-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xstream-1.3.1-1.fc14.noarch requires xpp3-minimal
xsynth-dssi-0.9.4-1.fc13.armv5tel requires liblo.so.0
xtvd-gui-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xtvd-lib-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xxdiff-tools-3.2-11.fc12.armv5tel requires python(abi) = 0:2.6
yakuake-2.9.7-1.fc14.armv5tel requires 4.5.2
yakuake-2.9.7-1.fc14.armv5tel requires kdebase4>=
yaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
yum-rhn-plugin-1.1.3-2.fc14.noarch requires rhn-setup
zathura-0.0.8.2-1.fc13.armv5tel requires libpoppler-glib.so.4
zinnia-perl-0.06-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zinnia-python-0.06-4.fc13.armv5tel requires python(abi) = 0:2.6
zinnia-python-0.06-4.fc13.armv5tel requires libpython2.6.so.1.0
zoneminder-1.24.2-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zynjacku-5-4.fc13.armv5tel requires python(abi) = 0:2.6
Loaded plugins: langpacks, presto, refresh-packagekit
Updated Packages:
gcc-4.5.1-5.fc14.1
------------------
* Fri Aug 26 2011 Daniel Drake <dsd(a)laptop.org> 4.5.1-6
- add fixes from #733549 and #697685 for ARM
* Fri Nov 12 2010 Jakub Jelinek <jakub(a)redhat.com> 4.5.1-5
- update from gcc-4_5-branch
- PRs bootstrap/44455, bootstrap/44621, c++/45894, c++/45983, c++/46024,
c++/46160, c/44772, c/45969, debug/42487, debug/44832, debug/45656,
debug/45939, fortran/42169, fortran/45748, fortran/46007,
fortran/46140, fortran/46152, java/43839, libffi/45677,
libfortran/45710, libgfortran/46010, libgfortran/46373,
libstdc++/45403, libstdc++/45711, libstdc++/45924, libstdc++/45999,
middle-end/43690, middle-end/44569, middle-end/45569,
middle-end/45869, middle-end/46019, middle-end/46419,
rtl-opt/46226, rtl-optimization/43358, rtl-optimization/44691,
rtl-optimization/46237, target/42070, target/43715, target/43764,
target/44452, target/45820, target/45843, target/45946, target/46098,
target/46153, target/46419, tree-optimization/45314,
tree-optimization/45752, tree-optimization/45854,
tree-optimization/45902, tree-optimization/45982,
tree-optimization/46099, tree-optimization/46107,
tree-optimization/46165, tree-optimization/46167,
tree-optimization/46177, tree-optimization/46355
- -Wunused-but-set* fix for computed goto (PR c/46015)
- fix -Wunused-but-set* for ObjC and ObjC++
- VTA backports
- PRs bootstrap/43994, bootstrap/45630, debug/43478, debug/44023,
debug/46171, debug/46252, debug/46255, rtl-optimization/45162,
tree-optimization/46066
gssdp-0.8.0-1.fc14.1
--------------------
* Wed Sep 29 2010 jkeating - 0.8.0-1.1
- Rebuilt for gcc bug 634757
guake-0.4.2-2.fc14
------------------
Summary:
Added Packages: 0
Removed Packages: 0
Modified Packages: 3
12 years
ARMv7hl build failure
by d.marlin
I was looking at some of the package build failures and saw that the
package gettext is failing due to test failures. Looking on the web I
see that others have indicated that the test that fails may be related
to the gnulib used for m4:
http://lists.gnu.org/archive/html/bug-m4/2011-07/msg00003.html
"This is failing with EINVAL instead of ENOENT, which is contrary
to POSIX. However, this kernel bug has already been papered over
in gnulib, which means that it is merely a matter of updating m4
to use newer gnulib to make this test failure go away."
It looks like the "fix"/workaround (if it is indeed correct) may have
come after we built m4 for stage3.
I'm not that familiar with the stage3 builds, and what may or may not
have been done to get them to build for ARM, so if someone familiar with
it would not mind looking into this, I would appreciate it.
Thank you,
d.marlin
12 years
ARM F-14 Branched report: 20110829 changes
by Fedora compose checker
Compose started at Mon Aug 29 18:20:37 UTC 2011
Broken deps for arm
----------------------------------------------------------
389-admin-1.1.16-1.fc13.armv5tel requires libicui18n.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicuuc.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicudata.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicui18n.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicuuc.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicudata.so.42
389-console-1.1.4-1.fc14.noarch requires java >= 1:1.6.0
389-ds-1.2.1-1.fc14.noarch requires 389-ds-console-doc
389-ds-1.2.1-1.fc14.noarch requires 389-admin-console-doc
389-ds-base-1.2.6-1.fc14.armv5tel requires libicui18n.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicuuc.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicudata.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicui18n.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicuuc.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicudata.so.42
AcetoneISO-6.7-7.fc12.armv5tel requires kdewebdev
GMT-coastlines-2.1.0-1.fc14.noarch requires GMT-common
JSDoc-1.10.2-9.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
Mayavi-3.3.2-1.fc13.armv5tel requires libpython2.6.so.1.0
Mayavi-3.3.2-1.fc13.armv5tel requires python(abi) = 0:2.6
MiniCopier-0.5-1.fc14.noarch requires java >= 1:1.6.0
PackageKit-smart-0.6.9-4.fc14.armv5tel requires smart
Perlbal-1.76-1.fc14.noarch requires perl(Perlbal::XS::HTTPHeaders)
PgsLookAndFeel-1.1-4.20090805cvs.fc14.noarch requires java >= 1:1.6.0
PolicyKit-olpc-1.2-2.fc11.noarch requires /var/lib/PolicyKit-public
PyAmanith-0.3.35-8.fc12.armv5tel requires python(abi) = 0:2.6
PyAmanith-0.3.35-8.fc12.armv5tel requires libpython2.6.so.1.0
QuantLib-test-0.9.9-1.fc13.armv5tel requires libboost_unit_test_framework.so.1.41.0
R-BSgenome-1.14.2-1.fc12.noarch requires R-Biostrings
R-BSgenome-1.14.2-1.fc12.noarch requires R-IRanges
R-GenomicFeatures-0.0.9-2.fc14.noarch requires R-IRanges
R-core-2.13.0-1.fc13.armv5tel requires libicui18n.so.42
R-core-2.13.0-1.fc13.armv5tel requires libicuuc.so.42
RBTools-0.2-5.fc14.noarch requires python(abi) = 0:2.6
RabbIT-4.1-9.fc13.noarch requires java >= 1:1.6.0
RasmusDSP-0.1-3.20090321cvs.fc12.armv5tel requires java >= 0:1.7
ScientificPython-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-2.8-12.fc13.armv5tel requires libpython2.6.so.1.0
ScientificPython-qt-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-tk-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
SolarModel-2.1-7.fc14.armv5tel requires libIrrlicht.so.1.6
TVAnytimeAPI-1.3-6.fc12.noarch requires java >= 1:1.6.0
TnL-data-071111-5.fc12.noarch requires TnL >= 0:071111
adonthell-0.3.5-0.8.fc12.armv5tel requires libpython2.6.so.1.0
aduna-root-poms-13-1.fc13.noarch requires logback
alchemist-1.0.37-8.fc12.armv5tel requires python-abi = 0:2.6
alchemist-1.0.37-8.fc12.armv5tel requires python(abi) = 0:2.6
aldrin-0.13-5.fc14.noarch requires pyzzub >= 0:0.2.6
alienarena-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alienarena-server-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alsa-firmware-1.0.23-1.fc14.noarch requires alsa-tools-firmware >= 0:1.0.23
antlr-maven-plugin-2.1-3.20101012svn12849.fc14.noarch requires java >= 1:1.6.0
antlrworks-1.4-4.fc14.noarch requires antlr3-tool
antlrworks-1.4-4.fc14.noarch requires java-devel >= 1:1.6.0
apache-commons-beanutils-1.8.3-2.fc14.noarch requires java >= 1:1.6.0
apache-commons-codec-1.4-10.fc14.noarch requires java >= 1:1.6.0
apache-commons-compress-1.0-8.fc14.noarch requires java >= 1:1.6.0
apache-commons-exec-1.0.1-2.fc13.noarch requires java >= 1:1.6.0
1:apache-commons-io-1.4-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-lang-2.5-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-launcher-1.1-5.20100521svn936225.fc14.noarch requires java >= 1:1.6.0
apache-commons-logging-1.1.1-11.fc14.noarch requires java >= 1:1.6.0
apache-commons-math-2.0-6.fc13.noarch requires java >= 1:1.6.0
apache-commons-net-2.0-6.fc14.noarch requires java >= 1:1.6.0
apbs-1.2.1-2.fc13.armv5tel requires python(abi) = 0:2.6
appframework-1.03-6.fc12.noarch requires java >= 1:1.6.0
appliance-tools-004.5-1.fc14.noarch requires qemu-img
apt-python-0.5.15lorg3.95-0.git416.6.fc13.armv5tel requires python(abi) = 0:2.6
ardour-2.8.7-1.fc13.armv5tel requires liblo.so.0
arduino-0021-1.fc14.noarch requires arduino-doc = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires arduino-core = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires java >= 1:1.6.0
asterisk-snmp-1.6.2.6-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
aubio-python-0.3.2-8.fc13.armv5tel requires python(abi) = 0:2.6
autobuild-applet-1.0.3-10.fc12.armv5tel requires libpython2.6.so.1.0
autotrust-0.3.1-3.fc13.armv5tel requires libunbound.so.1
azureus-4.5.1.0-1.fc14.noarch requires eclipse-swt >= 0:3.5
azureus-4.5.1.0-1.fc14.noarch requires java >= 1:1.6.0
backintime-kde-0.9.26-4.fc14.noarch requires PyKDE4
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Core) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Widgets) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Services) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.ThickClient) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena.Gui) = 0:1.6.0.0
barry-0.17-0.6.20110126git.fc13.armv5tel requires libboost_serialization.so.1.41.0
batik-1.7-6.fc12.noarch requires java-1.6.0-openjdk >= 1:1.6.0.0
beansbinding-1.2.1-5.fc12.noarch requires java >= 1:1.6.0
belier-1.2-4.fc13.noarch requires python(abi) = 0:2.6
bes-3.8.4-2.fc14.armv5tel requires libdap.so.10
beteckna-fonts-0.3-6.fc14.noarch requires beteckna-fonts-common = 0:0.3-6.fc14
bibletime-2.7.3-1.fc14.armv5tel requires libicui18n.so.42
bibletime-2.7.3-1.fc14.armv5tel requires libicuuc.so.42
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-pyuno
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-writer
bindex-2.2-2.svn96.fc14.noarch requires java >= 1:1.6.0
blueman-1.21-4.fc13.armv5tel requires python(abi) = 0:2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires /usr/bin/python2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires python(abi) = 0:2.6
bolzplatz2006-1.0.3-10.fc13.armv5tel requires libjawt.so(SUNWprivate_1.1)
bolzplatz2006-1.0.3-10.fc13.armv5tel requires java-1.6.0-openjdk
bouncycastle-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-mail-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-tsp-1.45-1.fc13.armv5tel requires java >= 0:1.7
bugzilla-3.6.2-1.fc14.noarch requires bugzilla-contrib
bzr-gtk-0.98.0-1.fc13.armv5tel requires python(abi) = 0:2.6
calibre-0.7.20-1.fc14.armv5tel requires libpodofo.so.0.8.0
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires python(abi) = 0:2.6
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires libpython2.6.so.1.0
canto-0.7.4-1.fc12.armv5tel requires python(abi) = 0:2.6
canto-0.7.4-1.fc12.armv5tel requires libpython2.6.so.1.0
cas-1.0-1.fc14.noarch requires crash
cbios-openmsx-0.23-2.fc12.noarch requires openmsx >= 0:0.5.0
ccsm-0.8.4-4.fc14.noarch requires compizconfig-python >= 0:0.8.4
ccsm-0.8.4-4.fc14.noarch requires libcompizconfig >= 0:0.8.4
cfdg-fe-0.1-4.fc12.armv5tel requires cfdg
cglib-2.2-6.fc13.noarch requires java >= 0:1.6.0
cinepaint-0.22.1-14.fc12.armv5tel requires libpython2.6.so.1.0
cinepaint-0.22.1-14.fc12.armv5tel requires python(abi) = 0:2.6
cinepaint-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
cinepaint-libs-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-gtk-0.4.so.0
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-0.4.so.0
1:clojure-1.2.0-1.fc14.noarch requires java >= 1:1.6
cman-3.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
cman-3.1.1-1.fc13.armv5tel requires fence-virt >= 0:0.2.1-1
cman-3.1.1-1.fc13.armv5tel requires modcluster >= 0:0.18.1-1
cmusphinx3-python-0.8-3.fc12.armv5tel requires python(abi) = 0:2.6
cmusphinx3-python-0.8-3.fc12.armv5tel requires libpython2.6.so.1.0
cobertura-1.9.3-1.fc14.noarch requires java >= 1:1.6.0
coccinella-0.96.18-1.fc14.noarch requires iaxclient
codeblocks-contrib-10.05-1.fc13.armv5tel requires valgrind
colossus-0.10.3-1.fc14.armv5tel requires java >= 0:1.6
compiz-manager-0.6.0-10.fc12.noarch requires compiz
compiz-manager-0.6.0-10.fc12.noarch requires libcompizconfig
compizconfig-backend-kconfig4-0.8.4-2.fc13.armv5tel requires libcompizconfig.so.0
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-job-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-ec2-enhanced-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires condor >= 0:7.0.2-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-job-hooks-common >= 0:1.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires condor >= 0:7.2.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-ec2-enhanced-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires python-condor-job-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires condor >= 0:7.0.2-4
condor-low-latency-1.0-19.fc12.noarch requires python-condor-job-hooks-common
condor-low-latency-1.0-19.fc12.noarch requires condor >= 0:7.0.2-4
conmux-0.0-11.493svn.fc14.noarch requires conmux-client = 0:0.0-11.493svn.fc14
conmux-0.0-11.493svn.fc14.noarch requires perl(Conmux)
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires libpython2.6.so.1.0
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires python(abi) = 0:2.6
couchdb-1.0.0-1.fc14.armv5tel requires libicui18n.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicudata.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicuuc.so.42
cpm-0.23-0.3.beta.fc12.armv5tel requires libdotconf-1.0.so.0
cryptkeeper-0.9.5-1.fc14.armv5tel requires fuse-encfs
cvs2svn-2.3.0-0.3.r4998svn.fc14.noarch requires cvs2commons
dap-freeform_handler-3.8.1-1.fc14.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libbes_dispatch.so.7
dap-server-3.9.3-2.fc12.armv5tel requires libdap.so.10
dap-server-3.9.3-2.fc12.armv5tel requires libbes_dispatch.so.7
dap-server-cgi-3.9.3-2.fc12.armv5tel requires dap-hdf4_handler
dbus-java-2.7-4.fc14.noarch requires java-1.6.0-openjdk
dcbd-0.9.19-3.fc13.armv5tel requires libconfig.so.8
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch-records = 0:0.6.6-2.fc14
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch = 0:0.6.6-2.fc14
ditaa-0.9-4.r74.fc14.noarch requires java >= 1:1.6.0
django-addons-0.6.3-1.fc13.noarch requires python(abi) = 0:2.6
django-ajax-selects-1.1.4-3.fc13.noarch requires python(abi) = 0:2.6
django-authopenid-0.9.6-4.fc12.noarch requires python(abi) = 0:2.6
django-reversion-1.3.2-2.fc13.noarch requires python(abi) = 0:2.6
django-simple-captcha-0.2.0-4.fc13.noarch requires python(abi) = 0:2.6
django-staticfiles-0.3.2-3.fc13.noarch requires python(abi) = 0:2.6
django-threadedcomments-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
django-tracking-0.2.7-1.fc13.noarch requires python(abi) = 0:2.6
dnsjava-2.0.6-7.fc12.noarch requires java >= 0:1.7
dogtag-pki-1.3.0-2.fc13.noarch requires pki-common-javadoc
dogtag-pki-1.3.0-2.fc13.noarch requires pki-util-javadoc
dogtag-pki-console-ui-1.3.2-2.fc14.noarch requires java >= 1:1.6.0
dpkt-1.7-2.fc13.noarch requires python(abi) = 0:2.6
dracut-fips-006-3.fc14.noarch requires hmaccalc
drpython-3.11.1-1.fc13.noarch requires python(abi) = 0:2.6
dssi-1.1.0-2.fc14.armv5tel requires liblo.so.0
dssi-examples-1.1.0-2.fc14.armv5tel requires liblo.so.0
dwdiff-1.7-2.fc14.armv5tel requires libicui18n.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicudata.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicuuc.so.42
dx-samples-4.4.0-6.fc12.noarch requires dx
echo-artist-0.1.1-3.fc12.noarch requires inkscape
echolinux-0.17a-6.fc13.armv5tel requires libforms.so.1
eclipse-anyedit-2.2.0-2.fc12.noarch requires eclipse-platform >= 0:3.4.0
eclipse-birt-2.5.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.1
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-jdt
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.5
eclipse-cmakeed-1.1.5-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-collabnet-merge-2.0.0-1.fc13.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-2.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-sdk-2.0.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-dtp-1.8.0-1.fc14.noarch requires eclipse-platform >= 1:3.4.2
eclipse-eclemma-1.5.0-2.fc14.noarch requires eclipse-jdt >= 1:3.4.1
eclipse-eclox-0.8.0-4.20090616svn.fc13.noarch requires eclipse-platform
eclipse-egit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-emf-2.6.0-2.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-emf-query-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-emf-transaction-1.3.1-2.fc13.noarch requires eclipse-platform >= 1:3.5.1
eclipse-emf-validation-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-xsd-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-epic-0.6.35-2.fc12.noarch requires eclipse-platform >= 0:3.4
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-rpm-editor
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-changelog
eclipse-findbugs-1.3.9-2.fc13.noarch requires eclipse-jdt
eclipse-findbugs-1.3.9-2.fc13.noarch requires java-1.6.0-openjdk
eclipse-findbugs-1.3.9-2.fc13.noarch requires ant-findbugs
eclipse-gef-3.6.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.1
eclipse-gef-sdk-3.6.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.1
eclipse-jgit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-m2m-qvtoml-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-manpage-0.0.1-0.svn24060.1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mdt-ocl-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-mdt-uml2-3.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-jdt
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mylyn-3.4.0-4.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-mylyn-cdt-3.4.0-4.fc14.noarch requires eclipse-cdt
eclipse-mylyn-java-3.4.0-4.fc14.noarch requires eclipse-jdt
eclipse-mylyn-pde-3.4.0-4.fc14.noarch requires eclipse-pde
eclipse-nls-3.5.0.v20090620043401-2.fc12.noarch requires eclipse-platform >= 0:3.4.0-18
eclipse-photran-5.0.0-0.4.200910081739.fc13.noarch requires eclipse-cdt >= 1:6.0
eclipse-photran-6.0.3-3.fc14.noarch requires eclipse-cdt >= 1:7.0.0
eclipse-phpeclipse-1.2.3-2.fc14.noarch requires eclipse-platform >= 0:3.4
eclipse-ptp-pldt-upc-4.0.3-3.fc14.noarch requires eclipse-cdt-parsers >= 1:7.0.0
eclipse-quickrex-3.5.0-12.fc12.noarch requires eclipse-platform >= 0:3.2.1
eclipse-rpmstubby-0.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-rse-3.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-shelled-2.0.0-0.M3.1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires ice-java >= 0:3.3.1
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-platform >= 0:3.2
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-setools >= 0:3.3.2.2
eclipse-subclipse-1.6.12-1.fc14.noarch requires eclipse-platform
eclipse-svnkit-1.3.3-5.fc14.noarch requires eclipse-platform
eclipse-systemtapgui-1.1-1.fc14.noarch requires eclipse-platform
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-jdt
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-texlipse-1.3.0-2.20090829cvs.fc12.noarch requires eclipse-platform
eclipse-veditor-0.6.3-4.fc12.noarch requires eclipse-platform
edje-0.9.9.050-7.fc13.armv5tel requires libembryo.so.0
edje-devel-0.9.9.050-7.fc13.armv5tel requires inkscape
eet-1.2.3-2.fc13.armv5tel requires libeina-ver-svn-05.so.0
ekg-1.8-0.6.rc1.fc12.armv5tel requires libpython2.6.so.1.0
electric-8.09-1.fc12.noarch requires java-1.6.0-openjdk
emacs-common-tuareg-1.45.6-9.fc12.noarch requires ocaml-emacs
emacs-spice-mode-1.2.25-4.fc14.noarch requires gwave
ember-media-0.5.6-3.noarch requires ember >= 0:0.5.6
emerald-themes-0.5.2-5.fc14.noarch requires compiz >= 0:0.5.2
emerald-themes-0.5.2-5.fc14.noarch requires emerald >= 0:0.5.2
epiphany-2.30.2-1.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-0.2.2-4.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-python-0.2.2-4.fc13.armv5tel requires python(abi) = 0:2.6
ethos-python-0.2.2-4.fc13.armv5tel requires libpython2.6.so.1.0
fedora-business-cards-0.2.4.2-4.fc14.noarch requires inkscape >= 0:0.47-0.11.20090602svn
fedora-gnat-project-common-1.2-2.fc14.noarch requires gcc-gnat
fedora-gnat-project-common-1.2-2.fc14.noarch requires libgnat-static
fedora-idm-console-1.1.3-2.fc12.armv5tel requires java >= 1:1.6.0
fedora-package-config-smart-13-21.armv5tel requires smart
fedora-usermgmt-0.11-1405.fc14.noarch requires instance(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires setup(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires fedora-usermgmt-core = 0:0.11-1405.fc14
felix-framework-2.0.5-3.fc14.noarch requires java >= 1:1.6.0
felix-main-2.0.5-5.fc14.noarch requires java >= 1:1.6.0
felix-osgi-compendium-1.4.0-3.fc14.noarch requires java >= 1:1.6.0
felix-osgi-core-1.4.0-2.fc14.noarch requires java >= 1:1.6.0
felix-osgi-foundation-1.2.0-3.fc14.noarch requires java >= 1:1.6.0
felix-parent-1.2.1-2.fc14.noarch requires maven-release-plugin
felix-parent-1.2.1-2.fc14.noarch requires maven-plugin-plugin
fence-agents-3.1.4-1.fc13.armv5tel requires /usr/bin/virsh
1:fife-0.3.1-2.fc13.armv5tel requires libboost_filesystem.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires python(abi) = 0:2.6
1:fife-0.3.1-2.fc13.armv5tel requires libpython2.6.so.1.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_system.so.1.41.0
1:fife-0.3.1-2.fc13.armv5tel requires libboost_regex.so.1.41.0
findbugs-1.3.9-3.fc14.noarch requires java-1.6.0-openjdk
findbugs-contrib-4.2.0-1.fc14.noarch requires java-1.6.0-openjdk
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firewalk-5.0-5.fc12.armv5tel requires libpcap.so.0.9
firmware-extract-2.0.13-3.fc13.noarch requires python(abi) = 0:2.6
firstaidkit-plugin-grub-0.2.17-1.fc14.armv5tel requires grub
fluidsynth-dssi-1.0.0-2.fc12.armv5tel requires liblo.so.0
fonttools-2.2-7.fc12.armv5tel requires python(abi) = 0:2.6
fonttools-2.2-7.fc12.armv5tel requires libpython2.6.so.1.0
fop-0.95-5.fc14.noarch requires java-1.6.0-openjdk
freecol-0.8.3-2.fc12.noarch requires java-1.6.0-openjdk
freemarker-2.3.13-8.fc14.noarch requires java >= 1:1.6.0
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libml.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcxcore.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libhighgui.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcvaux.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcv.so.2
frescobaldi-1.0.3-1.fc14.noarch requires PyKDE4
frinika-0.6.0-3.fc13.noarch requires java >= 0:1.7
fusion-icon-0.1.0-0.8.5e2dc9git.fc14.noarch requires fusion-icon-ui=0.1.0-0.8.5e2dc9git.fc14
gaupol-0.17-2.fc14.noarch requires aeidon
gazpacho-0.7.2-8.fc14.noarch requires python-kiwi-gazpacho
gcompris-9.5-1.fc13.armv5tel requires libpython2.6.so.1.0
gdata-java-1.41.2-1.fc14.noarch requires java >= 1:1.6.0
gdb-heap-0.5-1.fc14.armv5tel requires glibc(armv5tel-32) = 0:2.12.90
gdcm-2.0.16-5.fc12.armv5tel requires libpoppler.so.5
gdcm-python-2.0.16-5.fc12.armv5tel requires python(abi) = 0:2.6
gdcm-python-2.0.16-5.fc12.armv5tel requires libpython2.6.so.1.0
gedit-valencia-0.3.0-4.fc13.armv5tel requires libvala.so.0
geeqie-1.0-9.fc13.armv5tel requires libexiv2.so.6
geronimo-annotation-1.0-2.fc14.noarch requires java >= 1:1.6.0
geronimo-interceptor-1.0.1-2.fc14.noarch requires java >= 1:1.6.0
geronimo-jpa-1.1.1-3.fc14.noarch requires java >= 1:1.6.0
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-plugin
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-enforcer
gg2-core-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gg2-libs-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gget-0.0.4-12.fc12.armv5tel requires python(abi) = 0:2.6
ghmm-0.7-4.svn2286.fc13.armv5tel requires libpython2.6.so.1.0
ghmm-0.7-4.svn2286.fc13.armv5tel requires python(abi) = 0:2.6
ginac-1.5.6-1.fc13.armv5tel requires libcln.so.6
ginac-devel-1.5.6-1.fc13.armv5tel requires pkgconfig(cln) >= 0:1.1.6
ginac-devel-1.5.6-1.fc13.armv5tel requires cln-devel
ginac-utils-1.5.6-1.fc13.armv5tel requires libcln.so.6
gkrellxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager-setup >= 0:3
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
glom-1.14.1-1.fc13.armv5tel requires python(abi) = 0:2.6
glom-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
glom-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libboost_python.so.1.41.0
gmpc-0.19.1-3.1.fc14.armv5tel requires libmicrohttpd.so.5
gmpy-1.14-1.fc13.armv5tel requires python(abi) = 0:2.6
gmpy-1.14-1.fc13.armv5tel requires libpython2.6.so.1.0
gnome-applet-music-2.5.1-4.fc12.armv5tel requires python(abi) = 0:2.6
gnome-bluetooth-moblin-2.30.0-1.fc13.armv5tel requires libmoblin-panel.so.0
gnome-chemistry-utils-gnumeric-0.12.8-2.fc13.armv5tel requires libspreadsheet-1.10.0.so
1:gnome-games-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
1:gnome-games-extra-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
gnome-hearts-0.3-4.fc12.armv5tel requires libpython2.6.so.1.0
gnome-python2-brasero-2.32.0-1.fc14.armv5tel requires libbrasero-media.so.0
gnome-python2-brasero-2.32.0-1.fc14.armv5tel requires libbrasero-burn.so.0
gnome-valgrind-session-1.1-5.fc12.noarch requires valgrind
gnomecatalog-0.3.4.2-3.fc12.noarch requires python(abi) = 0:2.6
gnote-0.7.3-2.fc13.armv5tel requires libboost_system-mt.so.1.41.0
gnote-0.7.3-2.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
1:gnubg-0.9.0.1-8.fc12.armv5tel requires libpython2.6.so.1.0
grc-0.70-6.fc12.noarch requires gnuradio
gspiceui-0.9.98-2.fc14.armv5tel requires gwave
gstreamer-java-1.4-2.fc14.noarch requires java >= 1:1.6.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libgmyth.so.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libWildMidi.so.0
gthumb-2.12.0-1.fc14.armv5tel requires libbrasero-burn.so.0
gtk-redshift-1.6-3.fc13.armv5tel requires python(abi) = 0:2.6
gtkparasite-0-0.4.20090120git928494e5.fc12.armv5tel requires libpython2.6.so.1.0
guake-0.4.2-2.fc13.armv5tel requires libpython2.6.so.1.0
gxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
halberd-0.2.3-2.fc12.noarch requires python(abi) = 0:2.6
hamcrest-1.1-9.2.fc12.armv5tel requires java-1.6.0
hamlib-python-1.2.9-1.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires libpython2.6.so.1.0
hexter-dssi-0.6.2-3.fc12.armv5tel requires liblo.so.0
holland-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-common-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqldump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqllvm-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-pgdump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-xtrabackup-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
htmlparser-1.6-5.fc12.1.noarch requires java >= 1:1.6.0
hugin-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hydrogen-drumkits-0.9.3-3.20080907.fc12.noarch requires hydrogen >= 0:0.9.3
hyperestraier-perl-1.4.13-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
ibus-qt-1.3.1-2.fc14.armv5tel requires libicui18n.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicudata.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicuuc.so.42
ibus-table-extraphrase-1.2.0.20100305-1.fc14.noarch requires pkgconfig(ibus-table)
icc_examin-0.46-3.fc12.armv5tel requires liboyranos.so.0.1.9
idm-console-framework-1.1.5-1.fc14.noarch requires java >= 1:1.6.0
imagej-1.43-1.m.fc13.noarch requires java-devel >= 0:1.6.0
impressive-0.10.3-5.fc13.noarch requires python(abi) = 0:2.6
ini4j-0.4.1-2.fc12.noarch requires java >= 1:1.6.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngcclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngeclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires initng >= 0:0.6.8
inksmoto-0.7.0-4.fc14.noarch requires inkscape
input-pad-python-1.0.1-2.fc13.armv5tel requires python(abi) = 0:2.6
input-pad-python-1.0.1-2.fc13.armv5tel requires libpython2.6.so.1.0
istanbul-0.2.2-14.fc13.armv5tel requires python(abi) = 0:2.6
jabber-roster-0.1.0-1.fc13.noarch requires python(abi) = 0:2.6
jakarta-commons-codec-1.4-5.fc13.noarch requires java >= 1:1.6.0
jakarta-commons-compress-1.0-1.fc13.noarch requires java >= 1:1.6.0
jamin-0.95.0-8.20100210cvs.fc13.armv5tel requires liblo.so.0
java-augeas-0.0.2-1.fc14.noarch requires java >= 1:1.5.0
java-gnome-4.0.16-2.fc14.armv5tel requires java >= 1:1.6.0
javacsv-2.0-3.fc13.noarch requires java >= 1:1.5
javahelp2-2.0.05-8.fc12.noarch requires java >= 1:1.6.0
javassist-3.9.0-7.fc13.noarch requires java >= 1:1.6.0
jaxodraw-2.0.1-8.fc14.noarch requires java >= 1:1.6.0
jcalendar-1.3.2-3.fc12.noarch requires java >= 1:1.6.0
jcharts-0.7.5-4.fc14.noarch requires java >= 1:1.6.0
jemmy-2.3.0.0-4.fc12.noarch requires java >= 1:1.6.0
jericho-html-3.1-3.fc14.noarch requires java >= 1:1.6.0
jettison-1.2-1.fc14.noarch requires java >= 1:1.6.0
jeuclid-3.1.3-12.fc12.noarch requires java >= 1:1.6.0
jffi-0.6.5-4.fc13.armv5tel requires java >= 1:1.6.0
jide-oss-2.7.6-3.1340svn.fc14.noarch requires java >= 1:1.6.0
jmod-0.9-2.fc12.armv5tel requires java >= 0:1.7
jmol-11.8.26-1.fc14.noarch requires java >= 1:1.6.0
jna-3.2.7-4.fc14.armv5tel requires java >= 1:1.6.0
jnr-constants-0.7-2.fc14.noarch requires java >= 1:1.6.0
jnr-x86asm-0.1-2.fc14.noarch requires java >= 1:1.6.0
joda-time-1.6.2-2.tzdata2010l.fc14.noarch requires java >= 1:1.6.0
josm-0-0.11.3592svn.fc14.noarch requires java >= 1:1.6.0
jpcap-0.7-8.fc12.armv5tel requires java >= 1:1.6
2:jtidy-1.0-0.9.20100930svn1125.fc14.noarch requires java >= 1:1.6.0
junit4-4.8.2-1.fc14.noarch requires java-1.6.0
jython-2.2.1-4.6.fc14.noarch requires java >= 1:1.6.0
kanyremote-5.11.8-1.fc14.noarch requires PyKDE4
kbluetooth-0.4.1-1.fc13.armv5tel requires libknotificationitem-1.so.1
kcbench-0.3-6.1.noarch requires kcbench-datafiles
kcbench-data-0.1-6.fc14.noarch requires kcbench-data-2.6.35 = 0:0.1-6.fc14
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires libexiv2.so.6
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libcln.so.6
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libgps.so.18
kdebase-workspace-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires PyKDE4 >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires python(abi) = 0:2.6
6:kdegames-4.5.5-1.fc13.armv5tel requires PyKDE4
7:kdegraphics-libs-4.4.2-3.fc13.armv5tel requires libexiv2.so.6
6:kdelibs-4.5.2-5.fc14.armv5tel requires phonon(armv5tel-32) >= 0:4.4.3
kdelibs3-devel-3.5.10-23.fc13.armv5tel requires libkdnssd-devel
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
7:kdenetwork-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdepim-libs-4.4.10-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires akonadi(armv5tel-32) >= 0:1.4.3
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires kdepimlibs-akonadi(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kross(python)
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires libpython2.6.so.1.0
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-minimal-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-printer-applet-4.5.5-1.fc13.armv5tel requires PyKDE4
kdm-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdm-4.5.5-1.fc13.armv5tel requires kde-settings-kdm
klavaro-1.6.0-1.fc13.armv5tel requires libgtkdatabox-0.9.0.so.1
kmess-2.0.6.1-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kmid2-0.2.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
2:koffice-langpack-2.2.2-1.fc14.noarch requires koffice-core >= 2:2.2.1
koji-vm-1.6.0-1.fc14.noarch requires qemu-img
koji-vm-1.6.0-1.fc14.noarch requires libvirt-python
konversation-1.3.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kpackagekit-0.6.1-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
kphotobymail-0.4.1-8.fc14.noarch requires PyKDE >= 0:3.16
kreetingkard_templates-0.2.0-4.fc12.noarch requires kreetingkard >= 0:0.7.1
ktorrent-libs-4.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kvirc-4.0.4-1.fc13.armv5tel requires libpython2.6.so.1.0
l2fprod-common-7.3-6.20090428cvs.fc12.noarch requires java >= 1:1.6.0
laf-plugin-1.0-6.fc12.noarch requires java >= 1:1.6.0
lazygal-0.4.1-4.fc12.noarch requires python(abi) = 0:2.6
lekhonee-0.7-3.fc14.noarch requires lekhonee-lib = 0:0.7-3.fc14
lekhonee-0.7-3.fc14.noarch requires PyKDE4
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1(liboggz.so.0.2)
libbluray-0.1-0.3.20101028gitc32862b77dea4.fc13.armv5tel requires java-1.6.0
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickCore.so.2
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickWand.so.2
libktorrent-1.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
libmatroska-0.9.0-1.fc14.armv5tel requires libebml.so.0
libmatthew-java-0.7.2-3.fc14.armv5tel requires java-1.6.0-openjdk
libphidget-java-2.1.8.20110310-1.fc13.armv5tel requires java >= 1:1.6.0
libpst-python-0.6.49-1.fc13.armv5tel requires python(abi) = 0:2.6
libpst-python-0.6.49-1.fc13.armv5tel requires libboost_python.so.1.41.0
libqalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
libqalculate-devel-0.9.7-2.fc13.armv5tel requires cln-devel
librtfcomp-python-1.1-6.fc12.armv5tel requires python(abi) = 0:2.6
libvirt-java-0.4.6-1.fc14.noarch requires libvirt-client >= 0:0.8.2
libvirt-java-0.4.6-1.fc14.noarch requires java >= 1:1.5.0
libxfce4ui-devel-4.7.2-2.fc14.armv5tel requires libgladeui-1.so.9
libyaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
listen-0.6.5-2.fc13.armv5tel requires libpython2.6.so.1.0
liveusb-creator-3.9.2-2.fc14.noarch requires syslinux
log4j-1.2.16-3.fc14.noarch requires java >= 1:1.6.0
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires xmms
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires libxmms.so.1
lv2-fil-plugins-2.0-3.fc13.armv5tel requires liblo.so.0
lxmusic-0.4.2-1.fc13.armv5tel requires libxmmsclient.so.5
maniadrive-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maniadrive-track-editor-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-filtering
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-repository-builder
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires java >= 1:1.6.0
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-shared-reporting-impl >= 0:2.0.4.3
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-plugin-testing-harness >= 0:1.2
maven-checkstyle-plugin-2.5-3.fc14.noarch requires plexus-containers-container-default
maven-checkstyle-plugin-2.5-3.fc14.noarch requires java >= 1:1.6.0
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-common-artifact-filters
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-dependency-analyzer
maven-doxia-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires plexus-containers-container-default
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-ejb-plugin-2.2.1-5.fc14.noarch requires maven-plugin-testing-harness
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-invoker
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-impl
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-api
maven-jar-plugin-2.3-3.fc14.noarch requires maven-plugin-testing-harness
maven-javadoc-plugin-2.7-3.fc14.noarch requires maven-shared-invoker
maven-plugin-bundle-2.0.0-4.fc12.noarch requires maven-shared-dependency-tree
maven-plugin-bundle-2.0.0-4.fc12.noarch requires plexus-containers-container-default
maven-plugin-exec-1.1-1.fc12.noarch requires maven-shared-plugin-testing-harness
maven-pmd-plugin-2.5-1.fc14.noarch requires maven-plugin-testing-harness
maven-remote-resources-plugin-1.1-6.fc14.noarch requires maven-shared-artifact-resolver
maven-resources-plugin-2.2-7.fc14.noarch requires maven-plugin-testing-harness
maven-scm-1.4-2.fc14.noarch requires netbeans-cvsclient >= 0:6.9
maven-shade-plugin-1.3.3-2.fc14.noarch requires java >= 1:1.6.0
maven2-2.2.1-13.fc14.noarch requires maven-shared-repository-builder
maven2-2.2.1-13.fc14.noarch requires maven-shared-filtering
maven2-2.2.1-13.fc14.noarch requires maven-plugin-testing-harness
maven2-2.2.1-13.fc14.noarch requires maven-shared-dependency-tree
maven2-2.2.1-13.fc14.noarch requires plexus-containers-container-default
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-api
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-plugin
maven2-2.2.1-13.fc14.noarch requires maven-shared-common-artifact-filters
maven2-2.2.1-13.fc14.noarch requires maven-shared-downloader
maven2-2.2.1-13.fc14.noarch requires maven-shared-file-management
maven2-2.2.1-13.fc14.noarch requires maven-shared-reporting-api
maven2-2.2.1-13.fc14.noarch requires maven-shared-io
maven2-plugin-shade-1.2.2-2.fc13.noarch requires maven-shared-dependency-tree
mediawiki-CategoryTree-45462-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-Cite-0-0.6.20080901svn.fc12.noarch requires mediawiki
mediawiki-HNP-1.1.2-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-HTTP302Found-1.0-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-LdapAccount-0.1-1.fc13.noarch requires mediawiki >= 0:1.13
mediawiki-ParserFunctions-1.1.1-6.svn45003.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-SpecialInterwiki-0-0.7.20080913svn.fc12.noarch requires mediawiki >= 0:1.12
mediawiki-StubManager-1.3.0-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-imagemap-0-0.3.r37906.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-openid-0.8.2-9.0.1.noarch requires mediawiki
mediawiki-rss-1.5-3.fc12.noarch requires mediawiki >= 0:0.14
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki-nomath
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki
mediawiki-wikicalendar-1.16-1.fc12.noarch requires mediawiki
mingw32-OpenSceneGraph-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-OpenThreads-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-SDL_image-1.2.10-1.fc13.noarch requires mingw32(libpng12-0.dll)
mingw32-boost-1.41.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsq3-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsqlite3x-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libtiff-3.9.4-1.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-pcre-8.10-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-qt-4.7.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
minicomputer-1.41-2.fc13.armv5tel requires liblo.so.0
mirage-0.9.5.2-1.fc13.armv5tel requires libpython2.6.so.1.0
mirage-0.9.5.2-1.fc13.armv5tel requires python(abi) = 0:2.6
mirrormanager-1.3.7-1.fc14.noarch requires python-basemap >= 0:0.99.4
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_regex-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_system-mt.so.1.41.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libboost_filesystem-mt.so.1.41.0
moblin-panel-applications-0.0.2-1.fc12.armv5tel requires libmoblin-panel.so.0
moblin-panel-media-0.0.8-0.2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-pasteboard-0.0.2-2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libebook-1.2.so.9
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libedataserver-1.2.so.13
moblin-panel-status-0.0.10-2.fc13.armv5tel requires libmoblin-panel.so.0
mod_annodex-0.2.2-13.fc13.armv5tel requires liboggz.so.1
mojo-parent-24-5.fc14.noarch requires maven-plugin-plugin
mojo-parent-24-5.fc14.noarch requires plexus-containers-component-javadoc
moovida-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-bad-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-good-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
mozvoikko-1.0-21.fc13.armv5tel requires gecko-libs >= 0:1.9.2.17
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
msort-8.53-1.fc13.armv5tel requires libicutu.so.42
msort-8.53-1.fc13.armv5tel requires libicuuc.so.42
1:msv-javadoc-2009.1-3.fc14.noarch requires relaxngDatatype-javadoc
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Defaults)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Timeout)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::TLSClient)
munin-1.4.5-4.fc14.noarch requires munin-common = 0:1.4.5
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Config)
museek+-bindings-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-mucous-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-murmur-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
nachocalendar-0.23-3.fc12.noarch requires java >= 1:1.6.0
nekobee-dssi-0.1.7-3.fc12.armv5tel requires liblo.so.0
netbeans-6.9-2.fc14.noarch requires netbeans-java4 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires netbeans-apisupport2 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires java >= 1:1.6.0
netbeans-6.9-2.fc14.noarch requires netbeans-ide13 >= 0:6.9
netbeans-javaparser-6.9-1.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-harness-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-resolver-6.7.1-1.fc12.noarch requires java >= 1:1.6.0
netbeans-svnclientadapter-6.7.1-2.fc12.noarch requires java >= 1:1.6.0
network-manager-netbook-1.7.1-0.1.fc13.armv5tel requires libmoblin-panel.so.0
notmuch-0.5-1.fc13.armv5tel requires libxapian.so.15
nyquist-3.03-3.fc12.armv5tel requires liblo.so.0
nyquist-3.03-3.fc12.armv5tel requires java-1.6.0-openjdk
ocfs2-tools-1.4.3-5.fc13.armv5tel requires redhat-lsb
ocfs2console-1.4.3-5.fc13.armv5tel requires python(abi) = 0:2.6
openbabel-2.2.3-1.fc13.armv5tel requires libstdinchi.so.1
opencsv-2.2-2.fc14.noarch requires java >= 1:1.6.0
opengrok-0.9-1.fc14.noarch requires lucene-contrib > 0:2
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires latex2emf
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-writer >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-draw >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicui18n.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicuuc.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicudata.so.42
openwsman-perl-2.2.0-3.fc12.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
openwsman-python-2.2.0-3.fc12.armv5tel requires python(abi) = 0:2.6
osutil-1.3.1-3.fc13.armv5tel requires java >= 1:1.6.0
ovirt-server-0.100-5.fc14.noarch requires ruby-qmf
ovirt-server-0.100-5.fc14.noarch requires qmf
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-client
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-server
ovirt-server-0.100-5.fc14.noarch requires ruby-libvirt >= 0:0.0.2
oyranos-0.2.0-2.fc13.armv5tel requires shared-color-profiles-extra
pAgenda-3.2-5.fc12.noarch requires python(abi) = 0:2.6
pacemaker-1.1.4-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
pacemaker-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
pacemaker-cts-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
parrot-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-3.0.0-1.fc13.armv5tel requires libicudata.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicudata.so.42
patcher-0.6-3.fc13.noarch requires python(abi) = 0:2.6
pcapy-0.10.5-6.fc12.armv5tel requires libpython2.6.so.1.0
pcapy-0.10.5-6.fc12.armv5tel requires python(abi) = 0:2.6
pdf-renderer-0-0.6.20090405cvs.fc12.armv5tel requires java >= 0:1.7
perl-CGI-Application-Plugin-JSON-1.02-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Application-Plugin-LinkIntegrity-0.06-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Emulate-PSGI-0.10-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Catalyst-Devel-1.27-2.fc14.noarch requires perl-Catalyst-Runtime-scripts
perl-Cflow-1.053-12.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Config-INI-MVP-0.024-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Const-Fast-0.006-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-OpenSSL-PKCS10-0.06-14.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-SSLeay-0.58-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Data-Alias-1.07-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Cover-0.65-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Declare-0.006004-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Email-Simple-Creator-1.424-6.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Frontier-RPC-0.07b4p1-10.fc14.noarch requires perl-Frontier-RPC-doc
perl-GPS-PRN-0.05-5.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Git-CPAN-Patch-0.2.1-3.fc14.noarch requires git-cpan-patch = 0:0.2.1-3.fc14
perl-Gnome2-1.042-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-IO-Compress-Bzip2-2.015-1.fc12.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-MIME-Base32-1.02a-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Mail-Box-Parser-C-3.006-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-GMP-2.06-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-Pari-2.010806-6.fc14.armv5tel requires pari(armv5tel-32) = 0:2.3.4
perl-Monotone-0.48.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
1:perl-NKF-2.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Net-SSLeay-1.36-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-PDF-Haru-1.00-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-POSIX-strptime-0.10-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Pegex-0.11-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Razor-Agent-2.85-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Reaper-1.00-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Regexp-Copy-0.06-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-SVN-Mirror-0.75-2.fc11.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt) >= 0:0.2.1
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires libvirt >= 0:0.6.4
perl-Task-Catalyst-3.0000-4.fc14.noarch requires /usr/bin/catalyst.pl
perl-Template-Toolkit-2.22-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Text-PDF-0.29a-4.fc14.noarch requires pdf-tools = 0:0.29a-4.fc14
perl-Tk-TableMatrix-1.23-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Tk-Text-SuperText-0.9.4-3.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Verilog-CodeGen-0.9.4-4.fc14.noarch requires tkgate
perl-WWW-Pastebin-RafbNet-Create-0.001-4.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-WWW-Salesforce-0.13-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-libapreq2-2.13-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-openbabel-2.2.3-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
3:perl-version-0.82-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
phatch-0.2.7-2.fc14.noarch requires phatch-cli = 0:0.2.7-2.fc14
phoronix-test-suite-1.8.1-2.fc12.noarch requires compat-libstdc++-33
phoronix-test-suite-1.8.1-2.fc12.noarch requires java-openjdk
photoprint-borders-0.0.2-5.fc12.noarch requires photoprint
1:php-eaccelerator-0.9.6.1-2.fc14.armv5tel requires php-common = 0:5.3.2
php-facedetect-1.0.0-6.fc14.armv5tel requires opencv
php-facedetect-1.0.0-6.fc14.armv5tel requires libcv.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcvaux.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcxcore.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libhighgui.so.2
php-intl-5.3.3-1.fc14.armv5tel requires libicuio.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicui18n.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicudata.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicuuc.so.42
picard-0.12.1-1.fc13.armv5tel requires python(abi) = 0:2.6
picard-0.12.1-1.fc13.armv5tel requires libpython2.6.so.1.0
piccolo2d-1.3-5.fc14.noarch requires eclipse-swt
picviz-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
picviz-0.6-2.fc12.armv5tel requires libpython2.6.so.1.0
picviz-gui-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
pigment-python-0.3.12-2.fc12.armv5tel requires python(abi) = 0:2.6
pinot-0.94-4.fc13.armv5tel requires libxapian.so.15
pki-ca-1.3.6-1.fc14.noarch requires java >= 1:1.6.0
pki-common-1.3.8-1.fc14.noarch requires java >= 1:1.6.0
pki-console-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pki-java-tools-1.3.1-1.fc14.noarch requires java >= 1:1.6.0
pki-kra-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-ocsp-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-silent-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-symkey-1.3.2-4.fc13.armv5tel requires java >= 1:1.6.0
pki-tks-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-util-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pl-jpl-5.7.11-5.fc12.armv5tel requires libverify.so
pl-jpl-5.7.11-5.fc12.armv5tel requires libjvm.so(SUNWprivate_1.1)
pl-jpl-5.7.11-5.fc12.armv5tel requires libjava.so
plexus-active-collections-1.0-0.2.beta2.fc14.noarch requires java >= 1:1.6.0
plexus-appserver-1.0-0.4.a5.2.11.fc13.noarch requires xmlrpc
plexus-cli-1.2-8.fc12.noarch requires plexus-containers-container-default
plexus-component-api-1.0-0.5.alpha15.fc14.noarch requires java-devel >= 1:1.6.0
plexus-maven-plugin-1.3.8-3.fc14.noarch requires maven-shared-reporting-impl
plexus-maven-plugin-1.3.8-3.fc14.noarch requires plexus-runtime-builder >= 0:1.0-0.a9.2
plexus-naming-1.0-0.5.a3.fc12.noarch requires java >= 1:1.6.0
plexus-registry-1.0-0.3.a3.fc13.noarch requires plexus-containers-container-default
plexus-registry-1.0-0.3.a3.fc13.noarch requires java >= 1:1.6.0
plexus-xmlrpc-1.0-0.4.b4.2.17.fc14.noarch requires xmlrpc
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires python(abi) = 0:2.6
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires libpython2.6.so.1.0
poker-bot-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-client-lib-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-engine-1.3.4-1.fc13.noarch requires python(abi) = 0:2.6
poker-network-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-server-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires /usr/bin/python2.6
poker3d-data-1.1.36-5.fc12.noarch requires poker3d >= 0:1.1.36
poky-depends-6-6.fc13.noarch requires compat-gcc-34
poky-depends-6-6.fc13.noarch requires qemu >= 0:0.8.2
pony-0.4-2.fc14.noarch requires PyKDE4
portecle-1.5-2.fc14.noarch requires jre >= 0:1.6.0
postr-0.12.3-8.fc12.armv5tel requires python(abi) = 0:2.6
ppl-java-0.10.2-11.fc13.armv5tel requires java >= 1:1.6.0
proguard-4.5.1-1.fc14.noarch requires java >= 1:1.6.0
protobuf-python-2.2.0-2.fc13.armv5tel requires python(abi) = 0:2.6
pungi-2.1.4-1.fc14.noarch requires anaconda >= 0:14.3
purple-plugin_pack-pidgin-xmms-2.6.3-1.fc13.armv5tel requires libxmms.so.1
pxe-kexec-0.2.3-2.fc13.armv5tel requires kexec-tools
pyfacebook-0.1-0.2.20090208svn173.fc12.noarch requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires libpython2.6.so.1.0
pyfuzzy-0.1.0-2.fc13.noarch requires python(abi) = 0:2.6
pyfuzzy-0.1.0-2.fc13.noarch requires antlr3-python
pyliblo-0.8.1-3.fc14.armv5tel requires liblo.so.0
pymongo-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
pymongo-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymongo-gridfs-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymunk-0.8.4-3.fc14.noarch requires chipmunk >= 0:4.1.0
pypoker-eval-137.0-1.fc13.armv5tel requires python(abi) = 0:2.6
pypoker-eval-137.0-1.fc13.armv5tel requires libpython2.6.so.1.0
pyrenamer-0.6.0.1-4.fc12.noarch requires python(abi) = 0:2.6
python-amqplib-0.6.1-2.fc13.noarch requires python(abi) = 0:2.6
python-asyncmongo-0.1-1.fc13.noarch requires python(abi) = 0:2.6
python-bson-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
python-bson-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
python-dulwich-0.6.2-1.fc13.armv5tel requires libpython2.6.so.1.0
python-dulwich-0.6.2-1.fc13.armv5tel requires python(abi) = 0:2.6
python-iso8601-0.1.4-2.fc13.noarch requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires libpython2.6.so.1.0
python-keybinder-0.2.2-5.fc13.armv5tel requires python(abi) = 0:2.6
python-lash-0.5.4-9.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires libpython2.6.so.1.0
python-mox-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
python-mwlib-0.11.2-7.20090522hg2956.fc14.armv5tel requires LabPlot
python-nufw-2.2.21-7.fc13.armv5tel requires python(abi) = 0:2.6
python-oauth2-1.2.1-1.fc13.noarch requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires libpython2.6.so.1.0
python-openoffice-0.1-0.6.20090228svn34.fc14.noarch requires openoffice.org-pyuno
python-ordereddict-1.1-2.fc13.noarch requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python-abi = 0:2.6
python-redis-2.0.0-1.fc13.noarch requires python(abi) = 0:2.6
python-repoze-who-testutil-1.0-1.fc14.noarch requires python(abi) = 0:2.6
python-sleekxmpp-1.0-0.7.beta2.fc13.noarch requires python(abi) = 0:2.6
python-snack-2.2.10-12.fc12.armv5tel requires python(abi) = 0:2.6
python-soaplib-0.8.1-4.fc13.noarch requires python(abi) = 0:2.6
python-sqlalchemy0.5-0.5.5-1.fc10.noarch requires python(abi) = 0:2.5
python-tilecache-2.11-5.fc13.noarch requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires libpython2.6.so.1.0
python-tunepimp-0.5.3-16.fc12.armv5tel requires python(abi) = 0:2.6
python-urllib2_kerberos-0.1.6-4.fc12.noarch requires python(abi) = 0:2.6
python-virtinst-0.500.4-1.fc14.noarch requires libvirt-python >= 0:0.2.0
python-visual-5.61-1.fc13.armv5tel requires libboost_thread-mt.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires libboost_signals.so.1.41.0
python-visual-5.61-1.fc13.armv5tel requires python(abi) = 0:2.6
python-visual-5.61-1.fc13.armv5tel requires libboost_python.so.1.41.0
pytrailer-0.6.0-1.fc13.noarch requires python(abi) = 0:2.6
pyxmms-2.06-12.fc14.armv5tel requires libxmms.so.1
qalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
qalculate-gtk-0.9.7-1.fc13.armv5tel requires libcln.so.6
qct-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qct-mercurial-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qdox-1.11-3.fc14.noarch requires java >= 1:1.6.0
qedje-python-0.4.0-6.fc13.armv5tel requires python(abi) = 0:2.6
qedje-python-0.4.0-6.fc13.armv5tel requires libpython2.6.so.1.0
qemu-launcher-1.7.4-7.fc12.noarch requires qemu
qmtest-2.4.1-3.fc12.armv5tel requires python(abi) = 0:2.6
qmtest-2.4.1-3.fc12.armv5tel requires libpython2.6.so.1.0
qtgpsc-0.2.3-6.fc12.armv5tel requires libgps.so.18
qtiplot-0.9.7.14-1.fc13.armv5tel requires libpython2.6.so.1.0
qtparted-0.4.5-23.fc13.armv5tel requires libparted-2.1.so.0
quadkonsole-2.0.2-5.fc12.armv5tel requires kdebase3
raidem-music-1.0-4.fc12.noarch requires raidem >= 0:0.3.1
rainbow-0.8.6-1.fc13.armv5tel requires python(abi) = 0:2.6
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libparrot.so.2.3.0
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicudata.so.42
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicuuc.so.42
raydium-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
rcssserver3d-0.6.5-2.fc13.armv5tel requires libkerosin.so.2
rcssserver3d-0.6.5-2.fc13.armv5tel requires liboxygen.so.5
rdesktop-1.6.0-10.fc13.armv5tel requires libao.so.2
rear-1.7.25-1.fc14.noarch requires redhat-lsb
recoll-1.15.8-2.fc13.armv5tel requires libxapian.so.15
rekall-python-2.4.6-12.fc12.armv5tel requires python(abi) = 0:2.6
rekall-python-2.4.6-12.fc12.armv5tel requires libpython2.6.so.1.0
resapplet-0.1.1-10.fc14.armv5tel requires system-config-display
revelation-0.4.11-9.armv5tel requires python(abi) = 0:2.6
revisor-2.2-2.fc14.noarch requires revisor-gui = 0:2.2-2.fc14
rhnsd-4.9.3-1.fc14.armv5tel requires rhn-check >= 0:0.0.8
rhythmbox-0.12.8-4.fc13.armv5tel requires libpython2.6.so.1.0
rhythmbox-0.12.8-4.fc13.armv5tel requires libbrasero-media.so.0
rkhunter-1.3.6-7.fc14.noarch requires prelink
rmic-maven-plugin-1.1-3.fc14.noarch requires java >= 1:1.6.0
rome-0.9-6.fc13.noarch requires java >= 1:1.6.0
rpy-2.0.8-8.fc13.armv5tel requires python(abi) = 0:2.6
rpy-2.0.8-8.fc13.armv5tel requires libpython2.6.so.1.0
rt3-3.8.8-3.fc14.noarch requires rt3-mailgate
rtorrent-0.8.6-3.fc13.armv5tel requires libtorrent.so.11
ruby-icon-artist-0.1.92-1.fc13.noarch requires inkscape
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler-glib.so.4
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler.so.5
rubygem-rb-inotify-0.8.1-2.fc13.noarch requires rubygem(ffi)
rxvt-unicode-9.10-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires python(abi) = 0:2.6
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires libpython2.6.so.1.0
sagator-1.2.1-2.fc14.noarch requires sagator-core = 0:1.2.1-2.fc14
sat4j-2.2.0-1.fc14.noarch requires java >= 1:1.6
sblim-cim-client-1.3.9.1-1.fc13.noarch requires tog-pegasus >= 2:2.5.1
sblim-tools-libra-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-tools-libra-devel-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-wbemcli-1.6.0-5.fc12.armv5tel requires tog-pegasus
scipy-0.7.1-3.fc13.armv5tel requires python(abi) = 0:2.6
scipy-0.7.1-3.fc13.armv5tel requires libpython2.6.so.1.0
scout-0.4-6.fc13.noarch requires python(abi) = 0:2.6
seed-2.30.0-2.fc13.armv5tel requires libgirepository-1.0.so.0
seedit-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
seedit-gui-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
sems-dsm-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-ivr-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-python-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sepostgresql-8.4.3-2582.fc14.armv5tel requires postgresql-server = 0:8.4.3
sipwitch-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-cgi-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-forward-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-scripting-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-subscriber-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-zeroconf-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-runtime-0.7.6-0.fc13.armv5tel requires libucommon.so.2
skanlite-0.4-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
skf-perl-1.97.4-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
skf-python-1.97.4-1.fc13.armv5tel requires python(abi) = 0:2.6
skinlf-6.7-10.cvs20091205.fc13.noarch requires java >= 1:1.6.0
skyviewer-1.0.0-4.fc14.armv5tel requires libQGLViewer.so.2.3.5
solang-0.4.1-7.fc13.armv5tel requires libbrasero-media.so.0
solang-0.4.1-7.fc13.armv5tel requires libbrasero-burn.so.0
sonic-visualiser-1.7.2-1.fc14.armv5tel requires liblo.so.0
sooperlooper-1.6.13-5.fc14.armv5tel requires liblo.so.0
sound-juicer-2.31.6-1.fc14.armv5tel requires libbrasero-media.so.0
spacewalk-backend-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-config-files-common-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-iss-export-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-server-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-postgresql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires spacewalk-admin >= 0:0.1.1-0
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python-gzipstream
spacewalk-backend-xml-export-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-xmlrpc-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-koan-0.2.5-2.fc14.noarch requires rhn-check
spacewalk-koan-0.2.5-2.fc14.noarch requires koan >= 0:1.4.3
spamassassin-3.3.2-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
spectrum-1.4.7-1.fc13.armv5tel requires python(abi) = 0:2.6
spectrum-1.4.7-1.fc13.armv5tel requires libMagick++.so.2
spring-maps-default-0.1-6.fc12.noarch requires spring
spyder-2.0.11-1.fc13.noarch requires python(abi) = 0:2.6
sqljet-1.0.3-1.fc14.noarch requires antlr3-java
stringtemplate-3.2.1-1.fc13.noarch requires java >= 1:1.6.0
suck-4.3.2-29.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
swingx-0.9.4-7.fc12.noarch requires java >= 0:1.6.0
syck-python-0.61-11.fc13.armv5tel requires python(abi) = 0:2.6
syck-python-0.61-11.fc13.armv5tel requires libpython2.6.so.1.0
system-config-kdump-2.0.4-7.fc14.noarch requires kexec-tools
system-config-kickstart-2.8.6-2.fc14.noarch requires anaconda >= 0:11.4.0.42-1
7:system-config-printer-kde-4.4.2-1.fc13.armv5tel requires PyKDE4
systemtap-testsuite-1.6-1.fc14.armv5tel requires prelink
taggle-1.0-1.fc14.noarch requires java >= 1:1.6.0
tailor-0.9.35-10.fc14.noarch requires python-vcpx = 0:0.9.35-10.fc14
taskjuggler-2.4.3-3.fc12.armv5tel requires libkcal.so.2
taskjuggler-libs-2.4.3-3.fc12.armv5tel requires libkcal.so.2
testdisk-6.12-1.fc13.armv5tel requires libntfs-3g.so.81
tetex-tex4ht-1.0.2008_09_16_1413-3.fc12.armv5tel requires java-1.6.0-openjdk
texmakerx-2.1-3.fc13.armv5tel requires libpoppler.so.5
texworks-0.4.0-1.fc13.armv5tel requires libpython2.6.so.1.0
tigase-utils-3.3.9-2.fc14.noarch requires java >= 0:1.6.0
tigase-xmltools-3.3.4-4.fc14.noarch requires java >= 0:1.6.0
tomcat5-5.5.27-7.4.fc12.noarch requires java-1.6.0-devel
tomcat5-5.5.27-7.4.fc12.noarch requires /lib/lsb/init-functions
tomcat5-common-lib-5.5.27-7.4.fc12.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcat6-6.0.26-7.fc14.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcatjss-1.2.1-1.fc13.noarch requires java >= 1:1.6.0
tomoe-0.6.0-15.fc12.armv5tel requires libpython2.6.so.1.0
tomoe-0.6.0-15.fc12.armv5tel requires python(abi) = 0:2.6
tomoe-gtk-devel-0.6.0-11.fc12.armv5tel requires python(abi) = 0:2.6
toot2-3-0.6.227svn.fc13.noarch requires java >= 0:1.7
tootaudioservers-3-0.3.80svn.fc13.armv5tel requires java >= 0:1.7
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tortoisehg-1.1.10-1.fc13.armv5tel requires python(abi) = 0:2.6
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmyth.so.0
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmythupnp.so.0
translate-toolkit-1.8.0-1.fc14.noarch requires aeidon
tritonus-0.3.7-0.5.20090419cvs.fc12.armv5tel requires java >= 0:1.6
trytond-1.6.0-4.fc14.noarch requires trytond-server = 0:1.6.0-4.fc14
ufraw-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-cinepaint-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-gimp-0.16-2.fc13.armv5tel requires libexiv2.so.6
unbound-munin-1.4.4-2.fc14.armv5tel requires munin-node
uniconvertor-1.1.4-2.fc12.armv5tel requires python(abi) = 0:2.6
uniconvertor-1.1.4-2.fc12.armv5tel requires libpython2.6.so.1.0
unoconv-0.3-4.fc12.noarch requires openoffice.org-pyuno
vecmath-0-2.20090922cvs.fc13.noarch requires java >= 1:1.6.0
vecmath1.2-1.14-5.fc13.noarch requires java >= 1:1.6.0
vegastrike-0.5.0-16.fc13.armv5tel requires libpython2.6.so.1.0
vegastrike-0.5.0-16.fc13.armv5tel requires libboost_python.so.1.41.0
veusz-1.7-1.fc13.armv5tel requires python(abi) = 0:2.6
veusz-1.7-1.fc13.armv5tel requires libpython2.6.so.1.0
viking-0.9.91-3.fc13.armv5tel requires libgps.so.18
virt-manager-0.8.5-1.fc14.noarch requires libvirt-python >= 0:0.7.0
virt-v2v-0.3.2-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Virt)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs::Lib)
virt-v2v-0.3.2-2.fc13.noarch requires perl-libguestfs >= 1:1.0.68
virt-v2v-0.3.2-2.fc13.noarch requires /usr/bin/qemu-img
vtk-examples-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
vtk-python-5.4.2-34.fc12.armv5tel requires python(abi) = 0:2.6
vtk-python-5.4.2-34.fc12.armv5tel requires libpython2.6.so.1.0
vtk-testing-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
w3c-markup-validator-1.1-1.fc14.noarch requires w3c-markup-validator-libs = 0:1.1
webkitgtk-1.1.22-1.fc13.armv5tel requires libicudata.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicudata.so.42
weka-3.6.2-4.fc14.noarch requires java >= 1:1.6.0
weka-3.6.2-4.fc14.noarch requires javasqlite
whysynth-dssi-20100922-1.fc13.armv5tel requires liblo.so.0
wordgroupz-0.3.1-3.fc13.noarch requires python(abi) = 0:2.6
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_filesystem.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_system.so.1.41.0
wp_tray-0.5.3-13.fc13.armv5tel requires libboost_regex.so.1.41.0
xchat-gnome-0.26.1-10.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xchat-gnome-0.26.1-10.fc13.armv5tel requires libpython2.6.so.1.0
xiphos-3.1.4-1.fc13.armv5tel requires libsword-1.6.2.so
xiphos-3.1.4-1.fc13.armv5tel requires libgtkhtml-editor.so.0
xml-writer-0.2-2.fc12.noarch requires java >= 1:1.6.0
xmlenc-0.52-7.fc12.noarch requires java >= 1:1.6.0
xmms-acme-0.4.3-11.armv5tel requires xmms >= 0:1.0.0
xmms-acme-0.4.3-11.armv5tel requires libxmms.so.1
xmms-adplug-1.2-9.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires xmms
xmms-arts-0.7.1-9.armv5tel requires xmms-libs
xmms-flac-1.2.1-1.fc13.armv5tel requires libxmms.so.1
xmms-lirc-1.4-14.armv5tel requires xmms
xmms-modplug-2.05-18.fc14.armv5tel requires xmms-libs(armv5tel-32)
xmms-musepack-1.2-8.fc12.armv5tel requires libxmms.so.1
xmms-pulse-0.9.4-8.fc12.armv5tel requires libxmms.so.1
xmms-scrobbler-0.4.0-8.fc12.armv5tel requires xmms >= 0:1.2.4
xmms-speex-0.9.1-15.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires xmms
xmms-xosd-2.2.14-13.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires libxmms.so.1
xom-1.0-5.6.fc14.noarch requires icu4j
xournal-0.4.5-3.fc13.armv5tel requires libpoppler-glib.so.4
1:xrootd-client-admin-perl-3.0.3-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xstream-1.3.1-1.fc14.noarch requires xpp3-minimal
xsynth-dssi-0.9.4-1.fc13.armv5tel requires liblo.so.0
xtvd-gui-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xtvd-lib-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xxdiff-tools-3.2-11.fc12.armv5tel requires python(abi) = 0:2.6
yakuake-2.9.7-1.fc14.armv5tel requires 4.5.2
yakuake-2.9.7-1.fc14.armv5tel requires kdebase4>=
yaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
yum-rhn-plugin-1.1.3-2.fc14.noarch requires rhn-setup
zathura-0.0.8.2-1.fc13.armv5tel requires libpoppler-glib.so.4
zinnia-perl-0.06-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zinnia-python-0.06-4.fc13.armv5tel requires python(abi) = 0:2.6
zinnia-python-0.06-4.fc13.armv5tel requires libpython2.6.so.1.0
zoneminder-1.24.2-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zynjacku-5-4.fc13.armv5tel requires python(abi) = 0:2.6
Loaded plugins: langpacks, presto, refresh-packagekit
New package: busybox-1.15.1-11.fc14
Statically linked binary providing simplified versions of system commands
New package: csound-5.10.1-21.fc14
A sound synthesis language and library
New package: libaccounts-glib-0.45-1.fc14
Nokia Maemo Accounts base library
New package: libpeas-0.5.5-1.fc14
Plug-ins implementation convenience library
New package: silgraphite-2.3.1-3.fc14
Font rendering capabilities for complex non-Roman writing systems
Updated Packages:
OpenIPMI-2.0.18-4.fc14
----------------------
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 2.0.18-4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
alltray-0.71a-1.fc14
--------------------
archimedes-0.9.1-1.fc14
-----------------------
at-spi2-atk-0.3.91.1-1.fc14
---------------------------
* Tue Aug 31 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.91.1-1
- Update to 0.3.91.1
* Fri Aug 27 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.90-2
- Make the gtk module resident to prevent crashes
* Wed Aug 18 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.90-1
- Update to 0.3.90
* Mon Aug 02 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.6-1
- Update to 0.3.6
* Mon Jul 12 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.5-1
- Update to 0.3.5
* Tue Jun 29 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.4-1
- Update to 0.3.4
* Tue Jun 08 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.3-1
- Update to 0.3.3
- Include gtk3 module
- Drop gtk deps, since we don't want to depend on both gtk2 and gtk3;
instead own the directories
* Tue Jun 01 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.2-2
- Don't relocate the dbus a11y stack
* Fri May 28 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.2-1
- Update to 0.3.2
* Sat May 15 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.1-1
- Update to 0.3.1
at-spi2-core-0.3.4-1.fc14
-------------------------
* Tue Jun 29 2010 Matthias Clasen <mclasen(a)redhat.com> - 0.3.4-1
- Update to 0.3.4
attica-0.1.4-1.fc14
-------------------
audacity-1.3.13-0.4.beta.fc14
-----------------------------
* Wed May 04 2011 David Timms <iinet.net.au@dtimms> - 1.3.13-0.4.beta
- add Requires on audacity folder path to pick up either audacity* package
* Sat Apr 30 2011 David Timms <iinet.net.au@dtimms> - 1.3.13-0.4.beta
- fix files and dir ownership including -manual files in the main package
* Tue Apr 26 2011 David Timms <iinet.net.au@dtimms> - 1.3.13-0.3.beta
- add audacity manual help file Source and subpackage
* Sun Apr 24 2011 David Timms <iinet.net.au@dtimms> - 1.3.13-0.2.beta
- upgrade to 1.3.13-beta
- drop patches included in upstream release
- convert desktop file to a patch against new upstream .desktop file.
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.3.12-0.7.beta
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
bit-0.4.90-11.fc14.1
--------------------
* Fri Oct 08 2010 Jesse Keating <jkeating(a)redhat.com> - 0.4.90-11.1
- Rebuild for gcc bug 634757
* Thu Sep 16 2010 Rick L Vinyard Jr <rvinyard(a)cs.nmsu.edu> - 0.4.90-11
- Patch for changes to g++ C++0x in f14
- Fix obsoletes by lowering version to 0.4.90 from 0.5.0
bluefish-2.0.2-1.fc14
---------------------
* Fri Sep 17 2010 Paul Howarth <paul(a)city-fan.org> - 2.0.2-1
- Update to 2.0.2 (minor bugfix and minor feature enhancement release)
- Two crashes have been resolved
- A "jump to reference" feature has been added
- Translations improved
* Tue Sep 07 2010 Paul Howarth <paul(a)city-fan.org> - 2.0.2-0.1.rc1
- Update to 2.0.2-rc1
- Drop patch for #626246, no longer needed
- License changed from GPLv2+ to GPLv3+
boost-1.44.0-9.fc14
-------------------
* Sat Jun 18 2011 Peter Robinson <pbrobinson(a)gmail.com> - 1.44.0-9
- Fix compile on ARM platforms
* Fri Apr 01 2011 Petr Machata <pmachata(a)redhat.com> - 1.44.0-8
- Yet another way to pass -DBOOST_LIB_INSTALL_DIR to cmake. Passing
via CMAKE_CXX_FLAGS for some reason breaks when rpm re-quotes the
expression as a result of %{optflags} expansion.
- Resolves: #667294
* Mon Jan 10 2011 Denis Arnaud <denis.arnaud_fedora(a)m4x.org> - 1.44.0-7
- Integrated Petr's work to fix missing Boost.Filesystem V3 issue
- Resolves: #667740
* Thu Jan 06 2011 Petr Machata <pmachata(a)redhat.com> - 1.44.0-6
- Don't override CXXFLAGS with -DBOOST_IOSTREAMS_USE_DEPRECATED
- Resolves: #667294
* Mon Jan 03 2011 Petr Machata <pmachata(a)redhat.com> - 1.44.0-5
- Add boost-random DSOs
- Resolves: #665679
* Wed Dec 08 2010 Petr Machata <pmachata(a)redhat.com> - 1.44.0-4
- Build with support for iostreams deprecated functions
- Resolves: #654480
* Fri Dec 03 2010 Tom "spot" Callaway <spot(a)fedoraproject.org> - 1.44.0-3
- also package build-system.jam in boost-build
brasero-2.32.0-1.fc14
---------------------
* Tue Sep 28 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.32.0-1
- Update to 2.32.0
* Tue Aug 31 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.91-1
- Update to 2.31.91
* Thu Aug 19 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.90-1
- Update to 2.31.90
* Wed Aug 11 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.5-4
- Rebuild against a newer nautilus
* Thu Aug 05 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.5-3
- Rebuild against gtk2
ccgo-0.3.6.4-1.fc14
-------------------
ccid-1.4.0-1.fc14
-----------------
* Wed Aug 04 2010 Kalev Lember <kalev(a)smartlink.ee> - 1.4.0-1
- Update to 1.4.0
- Build against libusb1 instead of libusb 0.1
- Install libccidtwin configuration file
- Spec file clean up
chktex-1.6.4-7.fc14
-------------------
* Sun Sep 19 2010 Sergio Pascual <sergiopr at fedoraproject.org> - 1.6.4-7
- Fixing FTBFS (bz #631095). Removing checks
* Mon Dec 28 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 1.6.4-6
- Virtual requires on latex
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 1.6.4-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
clipper-2.1-14.20100511cvs.fc14
-------------------------------
* Mon Jul 05 2010 Tim Fenn <fenn(a)stanford.edu> - 2.1-14.20100511cvs
- update to 20100511cvs, soname bump
cryptkeeper-0.9.5-1.fc14
------------------------
easystroke-0.5.3-2.fc14
-----------------------
* Wed Aug 04 2010 Rahul Sundaram <sundaram(a)fedoraproject.org> - 0.5.3-2
- Rebuild for Boost soname bump
- Update spec to match current guidelines
epdfview-0.1.7-7.20100621svn.fc14
---------------------------------
* Thu Aug 19 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 0.1.7-7.20100621svn
- rebuild (poppler)
gconf-editor-2.32.0-1.fc14
--------------------------
* Wed Sep 29 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.32.0-1
- Update to 2.32.0
gedit-plugins-2.31.6-1.fc14
---------------------------
* Thu Sep 02 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> 2.31.6-1
- Updated to 2.31.6
- FTBFS 599912
* Wed Aug 11 2010 David Malcolm <dmalcolm(a)redhat.com> - 2.31.1-2
- recompiling .py files against Python 2.7 (rhbz#623308)
* Wed May 19 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> 2.31.1-1
- Updated to 2.31.1
* Fri Apr 23 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> 2.30.0-1
- Updated to 2.30.0
gkrellm-2.3.4-3.fc14
--------------------
* Mon Jun 21 2010 Ville Skyttä <ville.skytta(a)iki.fi> - 2.3.4-3
- Make -devel gtk2-devel dependency ISA qualified.
gkrellm-volume-2.1.13-13.fc14
-----------------------------
gnofract4d-3.13-1.fc14
----------------------
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> - 3.13-1
- rebuild to ensure F14 has higher NVR than F13
- following changes have been merged from F13 [Stewart Adam]
- Update to 3.13
- Require gcc (fixes #571970)
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 3.12-4
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
gnome-applet-alarm-clock-0.3.1-2.fc14
-------------------------------------
* Mon Sep 27 2010 Christoph Wickert <cwickert(a)fedoraproject.org> - 0.3.1-2
- Fix crash when enabling autostart (#615699 and #619770)
gnome-mag-0.16.1-1.fc14
-----------------------
gnome-nettool-2.31.6-1.fc14
---------------------------
* Thu Aug 19 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.6-1
- Update to 2.31.6
gtk+extra-2.1.2-3.fc14
----------------------
* Tue Sep 14 2010 Roy Rankin <rrankin[AT]ihug[DOT]com[DOT]au> - 2.1.2-3
- Patches to configuration, Makefile and marshall
* Sat Jun 12 2010 Roy Rankin <rrankin[AT]ihug[DOT]com[DOT]au> - 2.1.2-2
- Patch to compile with gtk2-2.21
gtkhtml2-2.11.1-8.fc14
----------------------
* Mon Mar 08 2010 Matthew Barnes <mbarnes(a)redhat.com> - 2.11.1-8
- Stop pulling in gnome-vfs2 just for some test programs.
gucharmap-2.32.0-1.fc14
-----------------------
* Wed Sep 29 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.32.0-1
- Update to 2.32.0
gudev-sharp-0.1-3.fc14
----------------------
imlib-1.9.15-14.fc14
--------------------
* Fri May 14 2010 Paul Howarth <paul(a)city-fan.org> 1:1.9.15-14
- EL-6 builds don't need manual pkgconfig dependency
- Fix up patches to avoid need for autotools during build
- Comment patches
iok-1.3.11-1.fc14
-----------------
isomd5sum-1.0.6-2.fc14
----------------------
* Wed Jun 30 2010 Michael Schwendt <mschwendt(a)fedoraproject.org> - 1:1.0.6-2
- Add virtual -static package to -devel package (#609607).
jana-0.4.5-0.8.20100520gitacd72f2.fc14
--------------------------------------
* Wed Sep 22 2010 Peter Robinson <pbrobinson(a)gmail.com> 0.4.5-0.8.20100520gitb416a41
- Bump build
* Mon Jul 26 2010 Peter Robinson <pbrobinson(a)gmail.com> 0.4.5-0.7.20100520gitacd72f2
- new upstream git snapshot
libdmapsharing-1.9.0.21-1.fc14
------------------------------
* Fri Jun 04 2010 W. Michael Petullo <mike[(a)]flyn.org> - 1.9.0.21-1
- New upstream version.
* Fri May 28 2010 W. Michael Petullo <mike[(a)]flyn.org> - 1.9.0.18-1
- New upstream version.
* Fri Aug 28 2009 W. Michael Petullo <mike[(a)]flyn.org> - 1.9.0.13-1
- New upstream version.
libgdl-2.30.1-1.fc14
--------------------
* Thu Oct 07 2010 Tom "spot" Callaway <tcallawa(a)redhat.com> - 1:2.30.1-1
- revert to 2.30.1, bump epoch to 1
- see: https://bugzilla.redhat.com/show_bug.cgi?id=635333
libgnomeprint22-2.18.7-1.fc14
-----------------------------
libgnomeprintui22-2.18.5-1.fc14
-------------------------------
libieee1284-0.2.11-9.fc14
-------------------------
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 0.2.11-9
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
libisofs-0.6.34-1.fc14
----------------------
* Sun Jul 04 2010 Robert Scheck <robert(a)fedoraproject.org> 0.6.34-1
- Upgrade to 0.6.34
libucil-0.9.8-5.fc14
--------------------
* Wed Sep 15 2010 Kamil Dudka <kdudka(a)redhat.com> 0.9.8-5
- upstream patch for #632439
- check return value of theora_encode_init() (#627890)
libunicapgtk-0.9.8-3.fc14
-------------------------
* Fri Sep 24 2010 Kamil Dudka <kdudka(a)redhat.com> 0.9.8-3
- add missing lock/unlock in unicapgtk_video_display_set_pause() (#532289)
lv2-EQ10Q-plugins-1.0-7.fc14
----------------------------
* Wed Jul 28 2010 David Cornette <rpm(a)davidcornette.com> 1.0-7
- Rebuilt for newly rebuilt lv2-c++-tools-devel
lv2-c++-tools-1.0.3-4.fc14
--------------------------
* Tue Jul 27 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> - 1.0.3-4
- Rebuild against new boost
lxinput-0.3.0-1.fc14
--------------------
* Sun Aug 08 2010 Christoph Wickert <cwickert(a)fedoraproject.org> - 0.3.0-1
- Update to 0.3.0 (fixes #599623)
- Remove all patches because they were upstreamed
mftrace-1.2.15-5.fc14
---------------------
* Wed Aug 11 2010 David Malcolm <dmalcolm(a)redhat.com> - 1.2.15-5
- recompiling .py files against Python 2.7 (rhbz#623337)
nforenum-4.0.0-1.fc14
---------------------
notify-sharp-0.4.0-0.11.20100411svn.fc14
----------------------------------------
* Sun Apr 11 2010 Christian Krause <chkr(a)fedoraproject.org> - 0.4.0-0.11.20100411svn
- Update to latest snapshot
- Fix minor directory ownership issue (BZ 512564)
openconnect-2.25-1.fc14
-----------------------
* Sat May 15 2010 David Woodhouse <David.Woodhouse(a)intel.com> - 2.25-1
- Update to 2.25.
papyrus-0.13.3-2.fc14.1
-----------------------
* Fri Oct 08 2010 Jesse Keating <jkeating(a)redhat.com> - 0.13.3-2.1
- Rebuild for gcc bug 634757
* Tue Sep 14 2010 Rick L Vinyard Jr <rvinyard(a)cs.nmsu.edu> - 0.13.3-2
- Patch for changes to g++ C++0x in f14
pida-0.5.1-12.fc14
------------------
* Sat Jul 31 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 0.5.1-12
- use python_sitearch again (or fails to build on 64bit)
- change %files a bit
* Wed Jul 21 2010 David Malcolm <dmalcolm(a)redhat.com> - 0.5.1-11
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
rabbitvcs-0.13.3-2.fc14
-----------------------
* Sat Jul 31 2010 Thomas Spura <tomspur(a)fedoraproject.org> - 0.13.3-2
- Rebuild for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
raul-0.7.0-1.fc14
-----------------
rawstudio-1.2-6.fc14.20100907svn3521
------------------------------------
* Wed Sep 08 2010 Gianluca Sforna <giallu gmail com>
- Fix BuildRequires
- Add updated patch for X11 link issue
* Tue Sep 07 2010 Gianluca Sforna <giallu gmail com>
- move to a snapshot
- drop upstreamed patches
- add find-lang
- remove .la files
- disable static library build
rb_libtorrent-0.14.11-1.fc14
----------------------------
* Wed Aug 25 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 0.14.11-1
- rb_libtorrent-0.14.11
- track lib soname
* Thu Jul 29 2010 Mamoru Tasaka <mtasaka(a)ioa.s.u-tokyo.ac.jp> - 0.14.10-4
- Patch for python2.7 and g++4.5
- Pass -fno-strict-aliasing for now
- Copy from F-13 branch (F-14 branch still used 0.14.8)
setroubleshoot-2.2.102-1.fc14
-----------------------------
* Mon Oct 04 2010 Dan Walsh <dwalsh(a)redhat.com> - 2.2.102-1
- Remove default width request so that the app can expand with different langs.
* Mon Oct 04 2010 Dan Walsh <dwalsh(a)redhat.com> - 2.2.101-1
- Fix date presentation for 24 hour clock to display correctly in sv_SE locale.
- Add translations for seapplet patch from Ville-Pekka Vainio
simple-scan-2.31.91-1.fc14
--------------------------
* Tue Aug 31 2010 Matthias Clasen <mclasen(a)redhat.com> - 2.31.91-1
- Update to 2.31.91
sphinxbase-0.6.1-1.fc14
-----------------------
* Mon Aug 16 2010 Jerry James <loganjerry(a)gmail.com> - 0.6.1-1
- New upstream release
* Thu Jul 22 2010 David Malcolm <dmalcolm(a)redhat.com> - 0.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
sword-1.6.1-3.fc14
------------------
* Fri Apr 02 2010 Caolán McNamara <caolanm(a)redhat.com> - 1.6.1-3
- rebuild for icu 4.4
tinyxml-2.6.1-1.fc14
--------------------
* Mon May 03 2010 Rakesh Pandit <rakesh(a)fedoraproject.org> - 2.6.1-1
- Updated to 2.6.1
torium-0.4.2-9.fc14
-------------------
* Wed Aug 25 2010 Leigh Scott <leigh123linux(a)googlemail.com> - 0.4.2-9
- track lib soname
valide-0.7.0-7.20100923bzr557.fc14
----------------------------------
* Fri Oct 08 2010 Jonathan MERCIER <bioinfornatics at gmail.com> 0.7.0-8.20100923bzr557
- Fix spec
* Sat Sep 04 2010 Jonathan MERCIER <bioinfornatics at gmail.com> 0.7.0-5.20100904svn689
- Update to last revision (689)
* Fri Sep 03 2010 Jonathan MERCIER <bioinfornatics at gmail.com> 0.7.0-4
- Update to stable release 0.7.0
* Thu Sep 02 2010 Jonathan MERCIER <bioinfornatics at gmail.com> 0.7-320100901svn686
- Update to revision 686
* Fri Aug 06 2010 Jonathan MERCIER <bioinfornatics at gmail.com> 0.7-2.20100727svn664
- Update to revision 664 version 0.7
vifir-0.7-2.fc14
----------------
* Thu Aug 19 2010 Rex Dieter <rdieter(a)fedoraproject.org> - 0.7-2
- rebuild (poppler)
xskat-4.0.0-5.fc14
------------------
Summary:
Added Packages: 5
Removed Packages: 0
Modified Packages: 64
12 years
Fedora 15 ARM hardfp Virtual FAD (Fedora Activity Day) - TODAY
by Jon Masters
Folks,
We are hosting another one of our regular Fedora 15 hardfp Virtual
Fedora Activity Day today Friday August 26th 2011, at 14:00UTC (10:00
Eastern Daylight Time). The purpose of this session is to co-ordinate
the continued bootstrap of F15 hardfp (hardware floating point).
Previously, we performed initial bootstrap (stage1), then proceeded to
get RPM working natively within an ARMv7 hardfp environment (stage2),
then got yum and mock working (stage3). We are now in what we are
calling "stage4" in which we are rebuilding the world of packages using
mock, but are not yet using Koji to do so - that will be stage5, the
final stage before we are able to say that we have completed bringup.
We need helping building packages within a mock environment for F15. To
do this, we have made your life as a (potential) volunteer somewhat more
straightforward through the creation of a standard image that you can
install onto an ARMv7 compatible board (tested on Panda, we believe this
should also work on Beagle, and can be made to run on Tegra-2 boards
like Trimslice with a replacement kernel - ask us for assistance). Once
you have done this, the resulting system will contain a simple script
that you can use to randomly retrieve a package that needs building and
have it build without you having to even issue a single mock command :)
To participate, visit the following link:
http://scotland.proximity.on.ca/fedora-arm/f15hardfp/bootstrap/rootfs_sta...
Follow the instructions contained within the readme file to extract the
"uboot", "boot", and "root" archives onto an SD Card for your device.
These instructions will destroy whatever is already installed. If you
are familiar with using chroots, you can also retrieve the "root" image
and chroot into it if you would prefer (after bind mounting /proc, /dev,
etc.). We generally prefer not using chroots at this stage however.
Once you have followed the setup instructions:
0). Configure /etc/sysconfig/network
and /etc/sysconfig/network-scripts/ifcfg-eth* according to your setup.
The ones in that image statically assign "tenaya.bos.jonmasters.org".
1). Login to your board as root (password is "fedora"). Change the
password if you would like to do so.
2). Become the "builder" user. You can either "su - builder" or you can
"passwd builder", and then login remotely/on the console.
3). Optional, but recommended, use "screen -S builder" or similar to
start a screen session that you can leave running.
4). Run the simple building script: ./arm-rebuild.sh
5). Monitor the arm mailing list. It is likely that a newer version of
the builder script will be posted later today or before Monday. When
that happens, we may change the SSH keys used in the build image, which
would have the effect of forcing everyone to update. The purpose of that
being to prevent any existing builders running the older script version.
Instructions will be posted for updating a couple files will be posted.
Please join us on IRC: #fedora-arm on irc.freenode.org.
Further documentation will be provided on the Fedora ARM wiki today,
however this email should provide sufficient setup information now.
Jon.
12 years
ARM F-14 Branched report: 20110826 changes
by Fedora compose checker
Compose started at vie ago 26 20:08:20 UTC 2011
Broken deps for arm
----------------------------------------------------------
389-admin-1.1.16-1.fc13.armv5tel requires libicui18n.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicuuc.so.42
389-admin-1.1.16-1.fc13.armv5tel requires libicudata.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicui18n.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicuuc.so.42
389-adminutil-1.1.10-1.fc14.armv5tel requires libicudata.so.42
389-console-1.1.4-1.fc14.noarch requires java >= 1:1.6.0
389-ds-1.2.1-1.fc14.noarch requires 389-ds-console-doc
389-ds-1.2.1-1.fc14.noarch requires 389-admin-console-doc
389-ds-base-1.2.6-1.fc14.armv5tel requires libicui18n.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicuuc.so.42
389-ds-base-1.2.6-1.fc14.armv5tel requires libicudata.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicui18n.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicuuc.so.42
389-dsgw-1.1.6-1.fc13.armv5tel requires libicudata.so.42
AcetoneISO-6.7-7.fc12.armv5tel requires kdewebdev
CGAL-3.6.1-1.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
GMT-coastlines-2.1.0-1.fc14.noarch requires GMT-common
HippoDraw-python-1.21.1-12.fc14.armv5tel requires libboost_python.so.1.44.0
JSDoc-1.10.2-9.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
Mayavi-3.3.2-1.fc13.armv5tel requires libpython2.6.so.1.0
Mayavi-3.3.2-1.fc13.armv5tel requires python(abi) = 0:2.6
MiniCopier-0.5-1.fc14.noarch requires java >= 1:1.6.0
PackageKit-smart-0.6.9-4.fc14.armv5tel requires smart
Perlbal-1.76-1.fc14.noarch requires perl(Perlbal::XS::HTTPHeaders)
PgsLookAndFeel-1.1-4.20090805cvs.fc14.noarch requires java >= 1:1.6.0
PolicyKit-olpc-1.2-2.fc11.noarch requires /var/lib/PolicyKit-public
PyAmanith-0.3.35-8.fc12.armv5tel requires python(abi) = 0:2.6
PyAmanith-0.3.35-8.fc12.armv5tel requires libpython2.6.so.1.0
R-BSgenome-1.14.2-1.fc12.noarch requires R-Biostrings
R-BSgenome-1.14.2-1.fc12.noarch requires R-IRanges
R-GenomicFeatures-0.0.9-2.fc14.noarch requires R-IRanges
R-core-2.13.0-1.fc13.armv5tel requires libicui18n.so.42
R-core-2.13.0-1.fc13.armv5tel requires libicuuc.so.42
RBTools-0.2-5.fc14.noarch requires python(abi) = 0:2.6
RabbIT-4.1-9.fc13.noarch requires java >= 1:1.6.0
RasmusDSP-0.1-3.20090321cvs.fc12.armv5tel requires java >= 0:1.7
ScientificPython-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-2.8-12.fc13.armv5tel requires libpython2.6.so.1.0
ScientificPython-qt-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
ScientificPython-tk-2.8-12.fc13.armv5tel requires python(abi) = 0:2.6
SolarModel-2.1-7.fc14.armv5tel requires libIrrlicht.so.1.6
SteGUI-0.0.1-16.fc12.armv5tel requires csound-fltk
TVAnytimeAPI-1.3-6.fc12.noarch requires java >= 1:1.6.0
TnL-data-071111-5.fc12.noarch requires TnL >= 0:071111
adonthell-0.3.5-0.8.fc12.armv5tel requires libpython2.6.so.1.0
aduna-root-poms-13-1.fc13.noarch requires logback
akonadi-1.4.0-1.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
alchemist-1.0.37-8.fc12.armv5tel requires python-abi = 0:2.6
alchemist-1.0.37-8.fc12.armv5tel requires python(abi) = 0:2.6
aldrin-0.13-5.fc14.noarch requires pyzzub >= 0:0.2.6
alienarena-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alienarena-server-7.40-2.fc14.armv5tel requires alienarena-data = 0:20100715
alsa-firmware-1.0.23-1.fc14.noarch requires alsa-tools-firmware >= 0:1.0.23
antlr-maven-plugin-2.1-3.20101012svn12849.fc14.noarch requires java >= 1:1.6.0
antlrworks-1.4-4.fc14.noarch requires antlr3-tool
antlrworks-1.4-4.fc14.noarch requires java-devel >= 1:1.6.0
apache-commons-beanutils-1.8.3-2.fc14.noarch requires java >= 1:1.6.0
apache-commons-codec-1.4-10.fc14.noarch requires java >= 1:1.6.0
apache-commons-compress-1.0-8.fc14.noarch requires java >= 1:1.6.0
apache-commons-exec-1.0.1-2.fc13.noarch requires java >= 1:1.6.0
1:apache-commons-io-1.4-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-lang-2.5-6.fc14.noarch requires java >= 1:1.6.0
apache-commons-launcher-1.1-5.20100521svn936225.fc14.noarch requires java >= 1:1.6.0
apache-commons-logging-1.1.1-11.fc14.noarch requires java >= 1:1.6.0
apache-commons-math-2.0-6.fc13.noarch requires java >= 1:1.6.0
apache-commons-net-2.0-6.fc14.noarch requires java >= 1:1.6.0
apbs-1.2.1-2.fc13.armv5tel requires python(abi) = 0:2.6
appframework-1.03-6.fc12.noarch requires java >= 1:1.6.0
appliance-tools-004.5-1.fc14.noarch requires qemu-img
apt-python-0.5.15lorg3.95-0.git416.6.fc13.armv5tel requires python(abi) = 0:2.6
aqsis-1.6.0-5.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
aqsis-1.6.0-5.fc14.armv5tel requires libboost_system-mt.so.1.44.0
aqsis-1.6.0-5.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
aqsis-1.6.0-5.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_system-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_wave-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
aqsis-core-1.6.0-5.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
aqsis-libs-1.6.0-5.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
aqsis-libs-1.6.0-5.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
aqsis-libs-1.6.0-5.fc14.armv5tel requires libboost_system-mt.so.1.44.0
aqsis-libs-1.6.0-5.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
aqsis-libs-1.6.0-5.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
ardour-2.8.7-1.fc13.armv5tel requires liblo.so.0
arduino-0021-1.fc14.noarch requires arduino-doc = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires arduino-core = 0:0021-1.fc14
arduino-0021-1.fc14.noarch requires java >= 1:1.6.0
asc-2.2.0.0-9.fc14.armv5tel requires libboost_regex.so.1.44.0
asterisk-snmp-1.6.2.6-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
aubio-python-0.3.2-8.fc13.armv5tel requires python(abi) = 0:2.6
autobuild-applet-1.0.3-10.fc12.armv5tel requires libpython2.6.so.1.0
autotrust-0.3.1-3.fc13.armv5tel requires libunbound.so.1
avogadro-1.0.1-6.fc14.armv5tel requires libboost_python-mt.so.1.44.0
avogadro-libs-1.0.1-6.fc14.armv5tel requires libboost_python-mt.so.1.44.0
azureus-4.5.1.0-1.fc14.noarch requires eclipse-swt >= 0:3.5
azureus-4.5.1.0-1.fc14.noarch requires java >= 1:1.6.0
backintime-kde-0.9.26-4.fc14.noarch requires PyKDE4
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Core) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Widgets) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.Services) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Banshee.ThickClient) = 0:1.6.0.0
banshee-community-extensions-1.6.0-1.fc13.armv5tel requires mono(Hyena.Gui) = 0:1.6.0.0
bastet-0.43-8.fc14.armv5tel requires libboost_program_options.so.1.44.0
batik-1.7-6.fc12.noarch requires java-1.6.0-openjdk >= 1:1.6.0.0
beansbinding-1.2.1-5.fc12.noarch requires java >= 1:1.6.0
belier-1.2-4.fc13.noarch requires python(abi) = 0:2.6
bes-3.8.4-2.fc14.armv5tel requires libdap.so.10
beteckna-fonts-0.3-6.fc14.noarch requires beteckna-fonts-common = 0:0.3-6.fc14
bibletime-2.7.3-1.fc14.armv5tel requires libicui18n.so.42
bibletime-2.7.3-1.fc14.armv5tel requires libicuuc.so.42
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-pyuno
bibus-1.5.1-3.fc14.armv5tel requires openoffice.org-writer
bindex-2.2-2.svn96.fc14.noarch requires java >= 1:1.6.0
blueman-1.21-4.fc13.armv5tel requires python(abi) = 0:2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires /usr/bin/python2.6
bmpanel2-cfg-2.1-0.6.pre1.fc13.noarch requires python(abi) = 0:2.6
bolzplatz2006-1.0.3-10.fc13.armv5tel requires libjawt.so(SUNWprivate_1.1)
bolzplatz2006-1.0.3-10.fc13.armv5tel requires java-1.6.0-openjdk
boost-graph-1.41.0-11.fc13.armv5tel requires libicui18n.so.42
boost-graph-1.41.0-11.fc13.armv5tel requires libicuuc.so.42
boost-python-1.41.0-11.fc13.armv5tel requires libpython2.6.so.1.0
boost-regex-1.41.0-11.fc13.armv5tel requires libicui18n.so.42
boost-regex-1.41.0-11.fc13.armv5tel requires libicuuc.so.42
bouncycastle-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-mail-1.45-1.fc13.armv5tel requires java >= 0:1.7
bouncycastle-tsp-1.45-1.fc13.armv5tel requires java >= 0:1.7
bugzilla-3.6.2-1.fc14.noarch requires bugzilla-contrib
bzr-gtk-0.98.0-1.fc13.armv5tel requires python(abi) = 0:2.6
calibre-0.7.20-1.fc14.armv5tel requires libpodofo.so.0.8.0
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires python(abi) = 0:2.6
canorus-0.7-6.R1213.20100530svn.fc13.armv5tel requires libpython2.6.so.1.0
canto-0.7.4-1.fc12.armv5tel requires python(abi) = 0:2.6
canto-0.7.4-1.fc12.armv5tel requires libpython2.6.so.1.0
cas-1.0-1.fc14.noarch requires crash
cbios-openmsx-0.23-2.fc12.noarch requires openmsx >= 0:0.5.0
ccsm-0.8.4-4.fc14.noarch requires compizconfig-python >= 0:0.8.4
ccsm-0.8.4-4.fc14.noarch requires libcompizconfig >= 0:0.8.4
cfdg-fe-0.1-4.fc12.armv5tel requires cfdg
cglib-2.2-6.fc13.noarch requires java >= 0:1.6.0
chess-1.0-30.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
cinepaint-0.22.1-14.fc12.armv5tel requires libpython2.6.so.1.0
cinepaint-0.22.1-14.fc12.armv5tel requires python(abi) = 0:2.6
cinepaint-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
cinepaint-libs-0.22.1-14.fc12.armv5tel requires liboyranos.so.0.1.9
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-gtk-0.4.so.0
claws-mail-plugins-geolocation-3.7.6-3.fc14.armv5tel requires libchamplain-0.4.so.0
1:clojure-1.2.0-1.fc14.noarch requires java >= 1:1.6
cman-3.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
cman-3.1.1-1.fc13.armv5tel requires fence-virt >= 0:0.2.1-1
cman-3.1.1-1.fc13.armv5tel requires modcluster >= 0:0.18.1-1
cmusphinx3-python-0.8-3.fc12.armv5tel requires python(abi) = 0:2.6
cmusphinx3-python-0.8-3.fc12.armv5tel requires libpython2.6.so.1.0
cobertura-1.9.3-1.fc14.noarch requires java >= 1:1.6.0
coccinella-0.96.18-1.fc14.noarch requires iaxclient
codeblocks-contrib-10.05-1.fc13.armv5tel requires valgrind
colossus-0.10.3-1.fc14.armv5tel requires java >= 0:1.6
compiz-manager-0.6.0-10.fc12.noarch requires compiz
compiz-manager-0.6.0-10.fc12.noarch requires libcompizconfig
compizconfig-backend-kconfig4-0.8.4-2.fc13.armv5tel requires libcompizconfig.so.0
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-job-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires python-condor-ec2-enhanced-hooks-common
condor-ec2-enhanced-1.0-17.fc12.noarch requires condor >= 0:7.0.2-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-job-hooks-common >= 0:1.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires condor >= 0:7.2.0-4
condor-ec2-enhanced-hooks-1.0-19.1.fc14.noarch requires python-condor-ec2-enhanced-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires python-condor-job-hooks-common
condor-job-hooks-1.0-12.1.fc14.noarch requires condor >= 0:7.0.2-4
condor-low-latency-1.0-19.fc12.noarch requires python-condor-job-hooks-common
condor-low-latency-1.0-19.fc12.noarch requires condor >= 0:7.0.2-4
conmux-0.0-11.493svn.fc14.noarch requires conmux-client = 0:0.0-11.493svn.fc14
conmux-0.0-11.493svn.fc14.noarch requires perl(Conmux)
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires libpython2.6.so.1.0
coot-0.6.1-3.20100127svn2740.fc13.armv5tel requires python(abi) = 0:2.6
couchdb-1.0.0-1.fc14.armv5tel requires libicui18n.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicudata.so.42
couchdb-1.0.0-1.fc14.armv5tel requires libicuuc.so.42
cpm-0.23-0.3.beta.fc12.armv5tel requires libdotconf-1.0.so.0
cryptkeeper-0.9.5-1.fc13.armv5tel requires fuse-encfs
cvs2svn-2.3.0-0.3.r4998svn.fc14.noarch requires cvs2commons
dap-freeform_handler-3.8.1-1.fc14.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libdap.so.10
dap-netcdf_handler-3.8.3-4.fc13.armv5tel requires libbes_dispatch.so.7
dap-server-3.9.3-2.fc12.armv5tel requires libdap.so.10
dap-server-3.9.3-2.fc12.armv5tel requires libbes_dispatch.so.7
dap-server-cgi-3.9.3-2.fc12.armv5tel requires dap-hdf4_handler
dbus-java-2.7-4.fc14.noarch requires java-1.6.0-openjdk
dcbd-0.9.19-3.fc13.armv5tel requires libconfig.so.8
dchroot-1.4.10-1.fc14.armv5tel requires libboost_regex.so.1.44.0
dchroot-1.4.10-1.fc14.armv5tel requires libboost_program_options.so.1.44.0
dchroot-1.4.10-1.fc14.armv5tel requires libboost_system.so.1.44.0
dchroot-1.4.10-1.fc14.armv5tel requires libboost_filesystem.so.1.44.0
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch-records = 0:0.6.6-2.fc14
desktopcouch-0.6.6-2.fc14.noarch requires python-desktopcouch = 0:0.6.6-2.fc14
ditaa-0.9-4.r74.fc14.noarch requires java >= 1:1.6.0
django-addons-0.6.3-1.fc13.noarch requires python(abi) = 0:2.6
django-ajax-selects-1.1.4-3.fc13.noarch requires python(abi) = 0:2.6
django-authopenid-0.9.6-4.fc12.noarch requires python(abi) = 0:2.6
django-reversion-1.3.2-2.fc13.noarch requires python(abi) = 0:2.6
django-simple-captcha-0.2.0-4.fc13.noarch requires python(abi) = 0:2.6
django-staticfiles-0.3.2-3.fc13.noarch requires python(abi) = 0:2.6
django-threadedcomments-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
django-tracking-0.2.7-1.fc13.noarch requires python(abi) = 0:2.6
dnsjava-2.0.6-7.fc12.noarch requires java >= 0:1.7
dogtag-pki-1.3.0-2.fc13.noarch requires pki-common-javadoc
dogtag-pki-1.3.0-2.fc13.noarch requires pki-util-javadoc
dogtag-pki-console-ui-1.3.2-2.fc14.noarch requires java >= 1:1.6.0
dpkt-1.7-2.fc13.noarch requires python(abi) = 0:2.6
dracut-fips-006-3.fc14.noarch requires hmaccalc
drpython-3.11.1-1.fc13.noarch requires python(abi) = 0:2.6
dssi-1.1.0-2.fc14.armv5tel requires liblo.so.0
dssi-examples-1.1.0-2.fc14.armv5tel requires liblo.so.0
dwdiff-1.7-2.fc14.armv5tel requires libicui18n.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicudata.so.42
dwdiff-1.7-2.fc14.armv5tel requires libicuuc.so.42
dx-samples-4.4.0-6.fc12.noarch requires dx
easystroke-0.5.3-1.fc14.armv5tel requires libboost_serialization-mt.so.1.44.0
echo-artist-0.1.1-3.fc12.noarch requires inkscape
echolinux-0.17a-6.fc13.armv5tel requires libforms.so.1
eclipse-anyedit-2.2.0-2.fc12.noarch requires eclipse-platform >= 0:3.4.0
eclipse-birt-2.5.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.1
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-jdt
eclipse-checkstyle-5.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.5
eclipse-cmakeed-1.1.5-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-collabnet-merge-2.0.0-1.fc13.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-2.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-dltk-sdk-2.0.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-dtp-1.8.0-1.fc14.noarch requires eclipse-platform >= 1:3.4.2
eclipse-eclemma-1.5.0-2.fc14.noarch requires eclipse-jdt >= 1:3.4.1
eclipse-eclox-0.8.0-4.20090616svn.fc13.noarch requires eclipse-platform
eclipse-egit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-emf-2.6.0-2.fc14.noarch requires eclipse-platform >= 1:3.5.0
eclipse-emf-query-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-emf-transaction-1.3.1-2.fc13.noarch requires eclipse-platform >= 1:3.5.1
eclipse-emf-validation-1.4.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-emf-xsd-sdk-2.6.0-2.fc14.noarch requires eclipse-pde >= 1:3.5.0
eclipse-epic-0.6.35-2.fc12.noarch requires eclipse-platform >= 0:3.4
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-rpm-editor
eclipse-fedorapackager-0.1.3-1.fc14.noarch requires eclipse-changelog
eclipse-findbugs-1.3.9-2.fc13.noarch requires eclipse-jdt
eclipse-findbugs-1.3.9-2.fc13.noarch requires java-1.6.0-openjdk
eclipse-findbugs-1.3.9-2.fc13.noarch requires ant-findbugs
eclipse-gef-3.6.0-1.fc14.noarch requires eclipse-platform >= 1:3.5.1
eclipse-gef-sdk-3.6.0-1.fc14.noarch requires eclipse-pde >= 1:3.5.1
eclipse-jgit-0.9.0-0.1.20100825git.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-m2m-qvtoml-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-manpage-0.0.1-0.svn24060.1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mdt-ocl-3.0.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-mdt-uml2-3.1.0-1.fc14.noarch requires eclipse-platform >= 1:3.6.0
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-jdt
eclipse-moreunit-1.3.3-3.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-mylyn-3.4.0-4.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-mylyn-cdt-3.4.0-4.fc14.noarch requires eclipse-cdt
eclipse-mylyn-java-3.4.0-4.fc14.noarch requires eclipse-jdt
eclipse-mylyn-pde-3.4.0-4.fc14.noarch requires eclipse-pde
eclipse-nls-3.5.0.v20090620043401-2.fc12.noarch requires eclipse-platform >= 0:3.4.0-18
eclipse-photran-5.0.0-0.4.200910081739.fc13.noarch requires eclipse-cdt >= 1:6.0
eclipse-photran-6.0.3-3.fc14.noarch requires eclipse-cdt >= 1:7.0.0
eclipse-phpeclipse-1.2.3-2.fc14.noarch requires eclipse-platform >= 0:3.4
eclipse-ptp-pldt-upc-4.0.3-3.fc14.noarch requires eclipse-cdt-parsers >= 1:7.0.0
eclipse-quickrex-3.5.0-12.fc12.noarch requires eclipse-platform >= 0:3.2.1
eclipse-rpmstubby-0.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-rse-3.2-1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-shelled-2.0.0-0.M3.1.fc14.noarch requires eclipse-platform >= 1:3.4.0
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires ice-java >= 0:3.3.1
eclipse-slice2java-3.3.1.20091005-1.fc13.noarch requires eclipse-platform >= 0:3.4.0
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-platform >= 0:3.2
eclipse-slide-1.3.15-3.fc12.noarch requires eclipse-setools >= 0:3.3.2.2
eclipse-subclipse-1.6.12-1.fc14.noarch requires eclipse-platform
eclipse-svnkit-1.3.3-5.fc14.noarch requires eclipse-platform
eclipse-systemtapgui-1.1-1.fc14.noarch requires eclipse-platform
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-jdt
eclipse-testframework-3.6.0-1.fc14.noarch requires eclipse-platform >= 0:3.4.0
eclipse-texlipse-1.3.0-2.20090829cvs.fc12.noarch requires eclipse-platform
eclipse-veditor-0.6.3-4.fc12.noarch requires eclipse-platform
edje-0.9.9.050-7.fc13.armv5tel requires libembryo.so.0
edje-devel-0.9.9.050-7.fc13.armv5tel requires inkscape
eet-1.2.3-2.fc13.armv5tel requires libeina-ver-svn-05.so.0
ekg-1.8-0.6.rc1.fc12.armv5tel requires libpython2.6.so.1.0
electric-8.09-1.fc12.noarch requires java-1.6.0-openjdk
emacs-common-tuareg-1.45.6-9.fc12.noarch requires ocaml-emacs
emacs-spice-mode-1.2.25-4.fc14.noarch requires gwave
ember-media-0.5.6-3.noarch requires ember >= 0:0.5.6
emerald-themes-0.5.2-5.fc14.noarch requires compiz >= 0:0.5.2
emerald-themes-0.5.2-5.fc14.noarch requires emerald >= 0:0.5.2
epiphany-2.30.2-1.fc13.armv5tel requires libgirepository-1.0.so.0
esperanza-0.4.0-7.20100601git.fc14.armv5tel requires libboost_signals-mt.so.1.44.0
ethos-0.2.2-4.fc13.armv5tel requires libgirepository-1.0.so.0
ethos-python-0.2.2-4.fc13.armv5tel requires python(abi) = 0:2.6
ethos-python-0.2.2-4.fc13.armv5tel requires libpython2.6.so.1.0
fedora-business-cards-0.2.4.2-4.fc14.noarch requires inkscape >= 0:0.47-0.11.20090602svn
fedora-gnat-project-common-1.2-2.fc14.noarch requires gcc-gnat
fedora-gnat-project-common-1.2-2.fc14.noarch requires libgnat-static
fedora-idm-console-1.1.3-2.fc12.armv5tel requires java >= 1:1.6.0
fedora-package-config-smart-13-21.armv5tel requires smart
fedora-usermgmt-0.11-1405.fc14.noarch requires instance(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires setup(fedora-usermgmt)
fedora-usermgmt-0.11-1405.fc14.noarch requires fedora-usermgmt-core = 0:0.11-1405.fc14
felix-framework-2.0.5-3.fc14.noarch requires java >= 1:1.6.0
felix-main-2.0.5-5.fc14.noarch requires java >= 1:1.6.0
felix-osgi-compendium-1.4.0-3.fc14.noarch requires java >= 1:1.6.0
felix-osgi-core-1.4.0-2.fc14.noarch requires java >= 1:1.6.0
felix-osgi-foundation-1.2.0-3.fc14.noarch requires java >= 1:1.6.0
felix-parent-1.2.1-2.fc14.noarch requires maven-release-plugin
felix-parent-1.2.1-2.fc14.noarch requires maven-plugin-plugin
fence-agents-3.1.4-1.fc13.armv5tel requires /usr/bin/virsh
1:fife-0.3.1-2.fc13.armv5tel requires python(abi) = 0:2.6
1:fife-0.3.1-2.fc13.armv5tel requires libpython2.6.so.1.0
findbugs-1.3.9-3.fc14.noarch requires java-1.6.0-openjdk
findbugs-contrib-4.2.0-1.fc14.noarch requires java-1.6.0-openjdk
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-libfbembed-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicui18n.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicuuc.so.42
firebird-superserver-2.1.3.18185.0-6.fc13.armv5tel requires libicudata.so.42
firewalk-5.0-5.fc12.armv5tel requires libpcap.so.0.9
firmware-extract-2.0.13-3.fc13.noarch requires python(abi) = 0:2.6
firstaidkit-plugin-grub-0.2.17-1.fc14.armv5tel requires grub
fluidsynth-dssi-1.0.0-2.fc12.armv5tel requires liblo.so.0
fonttools-2.2-7.fc12.armv5tel requires python(abi) = 0:2.6
fonttools-2.2-7.fc12.armv5tel requires libpython2.6.so.1.0
fop-0.95-5.fc14.noarch requires java-1.6.0-openjdk
freecol-0.8.3-2.fc12.noarch requires java-1.6.0-openjdk
freemarker-2.3.13-8.fc14.noarch requires java >= 1:1.6.0
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libml.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcxcore.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libhighgui.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcvaux.so.2
frei0r-plugins-1.1.22-4.fc14.armv5tel requires libcv.so.2
frescobaldi-1.0.3-1.fc14.noarch requires PyKDE4
frinika-0.6.0-3.fc13.noarch requires java >= 0:1.7
fusecompress-2.6-8.20100223git754bc0de.fc14.armv5tel requires libboost_serialization-mt.so.1.44.0
fusecompress-2.6-8.20100223git754bc0de.fc14.armv5tel requires libboost_system-mt.so.1.44.0
fusecompress-2.6-8.20100223git754bc0de.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
fusecompress-2.6-8.20100223git754bc0de.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
fusecompress-2.6-8.20100223git754bc0de.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
fusion-icon-0.1.0-0.8.5e2dc9git.fc14.noarch requires fusion-icon-ui=0.1.0-0.8.5e2dc9git.fc14
gaupol-0.17-2.fc14.noarch requires aeidon
gazpacho-0.7.2-8.fc14.noarch requires python-kiwi-gazpacho
gcompris-9.5-1.fc13.armv5tel requires libpython2.6.so.1.0
gdata-java-1.41.2-1.fc14.noarch requires java >= 1:1.6.0
gdb-heap-0.5-1.fc14.armv5tel requires glibc(armv5tel-32) = 0:2.12.90
gdcm-2.0.16-5.fc12.armv5tel requires libpoppler.so.5
gdcm-python-2.0.16-5.fc12.armv5tel requires python(abi) = 0:2.6
gdcm-python-2.0.16-5.fc12.armv5tel requires libpython2.6.so.1.0
gedit-valencia-0.3.0-4.fc13.armv5tel requires libvala.so.0
geeqie-1.0-9.fc13.armv5tel requires libexiv2.so.6
geronimo-annotation-1.0-2.fc14.noarch requires java >= 1:1.6.0
geronimo-interceptor-1.0.1-2.fc14.noarch requires java >= 1:1.6.0
geronimo-jpa-1.1.1-3.fc14.noarch requires java >= 1:1.6.0
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-plugin
geronimo-parent-poms-1.6-3.fc13.noarch requires maven2-plugin-enforcer
gg2-core-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gg2-libs-2.3.0-16.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
gget-0.0.4-12.fc12.armv5tel requires python(abi) = 0:2.6
ghmm-0.7-4.svn2286.fc13.armv5tel requires libpython2.6.so.1.0
ghmm-0.7-4.svn2286.fc13.armv5tel requires python(abi) = 0:2.6
ginac-1.5.6-1.fc13.armv5tel requires libcln.so.6
ginac-devel-1.5.6-1.fc13.armv5tel requires pkgconfig(cln) >= 0:1.1.6
ginac-devel-1.5.6-1.fc13.armv5tel requires cln-devel
ginac-utils-1.5.6-1.fc13.armv5tel requires libcln.so.6
gkrellxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
glob2-0.9.4.4-1.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-condor-4.4-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-fork-4.2-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-lsf-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-pbs-4.1-1.fc14.noarch requires globus-gass-cache-program >= 0:2
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager >= 0:10.59
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gram-job-manager-setup >= 0:3
globus-gram-job-manager-setup-sge-2.5-1.fc14.noarch requires globus-gass-cache-program >= 0:2
glom-1.14.1-1.fc13.armv5tel requires python(abi) = 0:2.6
glom-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
glom-libs-1.14.1-1.fc13.armv5tel requires libpython2.6.so.1.0
gmpc-0.19.1-3.1.fc14.armv5tel requires libmicrohttpd.so.5
gmpy-1.14-1.fc13.armv5tel requires python(abi) = 0:2.6
gmpy-1.14-1.fc13.armv5tel requires libpython2.6.so.1.0
1:gnash-0.8.8-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
1:gnash-0.8.8-4.fc14.armv5tel requires libboost_date_time-mt.so.1.44.0
1:gnash-cygnal-0.8.8-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
1:gnash-cygnal-0.8.8-4.fc14.armv5tel requires libboost_date_time-mt.so.1.44.0
gnofract4d-3.13-1.fc13.armv5tel requires python(abi) = 0:2.6
gnofract4d-3.13-1.fc13.armv5tel requires libpython2.6.so.1.0
gnome-applet-music-2.5.1-4.fc12.armv5tel requires python(abi) = 0:2.6
gnome-bluetooth-moblin-2.30.0-1.fc13.armv5tel requires libmoblin-panel.so.0
gnome-chemistry-utils-gnumeric-0.12.8-2.fc13.armv5tel requires libspreadsheet-1.10.0.so
1:gnome-games-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
1:gnome-games-extra-2.30.1-1.fc13.armv5tel requires python(abi) = 0:2.6
gnome-hearts-0.3-4.fc12.armv5tel requires libpython2.6.so.1.0
gnome-valgrind-session-1.1-5.fc12.noarch requires valgrind
gnomecatalog-0.3.4.2-3.fc12.noarch requires python(abi) = 0:2.6
1:gnubg-0.9.0.1-8.fc12.armv5tel requires libpython2.6.so.1.0
grc-0.70-6.fc12.noarch requires gnuradio
gspiceui-0.9.98-2.fc14.armv5tel requires gwave
gstreamer-java-1.4-2.fc14.noarch requires java >= 1:1.6.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libgmyth.so.0
gstreamer-plugins-bad-free-extras-0.10.20-3.fc14.armv5tel requires libWildMidi.so.0
gtk-redshift-1.6-3.fc13.armv5tel requires python(abi) = 0:2.6
gtkparasite-0-0.4.20090120git928494e5.fc12.armv5tel requires libpython2.6.so.1.0
guake-0.4.2-2.fc13.armv5tel requires libpython2.6.so.1.0
gxmms2-0.7.0-6.20090811git.fc13.armv5tel requires libxmmsclient.so.5
halberd-0.2.3-2.fc12.noarch requires python(abi) = 0:2.6
hamcrest-1.1-9.2.fc12.armv5tel requires java-1.6.0
hamlib-python-1.2.9-1.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires python(abi) = 0:2.6
healpy-0.9.6.1-4.fc12.armv5tel requires libpython2.6.so.1.0
hexter-dssi-0.6.2-3.fc12.armv5tel requires liblo.so.0
holland-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-common-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqldump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-mysqllvm-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-pgdump-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
holland-xtrabackup-1.0.6-3.fc13.noarch requires python(abi) = 0:2.6
htmlparser-1.6-5.fc12.1.noarch requires java >= 1:1.6.0
hugin-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libexiv2.so.5
hugin-base-2009.4.0-1.fc13.armv5tel requires libboost_thread-mt.so.5
hydrogen-drumkits-0.9.3-3.20080907.fc12.noarch requires hydrogen >= 0:0.9.3
hyperestraier-perl-1.4.13-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
ibus-qt-1.3.1-2.fc14.armv5tel requires libicui18n.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicudata.so.42
ibus-qt-1.3.1-2.fc14.armv5tel requires libicuuc.so.42
ibus-table-extraphrase-1.2.0.20100305-1.fc14.noarch requires pkgconfig(ibus-table)
icc_examin-0.46-3.fc12.armv5tel requires liboyranos.so.0.1.9
idm-console-framework-1.1.5-1.fc14.noarch requires java >= 1:1.6.0
imagej-1.43-1.m.fc13.noarch requires java-devel >= 0:1.6.0
impressive-0.10.3-5.fc13.noarch requires python(abi) = 0:2.6
ini4j-0.4.1-2.fc12.noarch requires java >= 1:1.6.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngcclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires libngeclient.so.0
initng-conf-gtk-0.5.1-6.fc12.armv5tel requires initng >= 0:0.6.8
inksmoto-0.7.0-4.fc14.noarch requires inkscape
input-pad-python-1.0.1-2.fc13.armv5tel requires python(abi) = 0:2.6
input-pad-python-1.0.1-2.fc13.armv5tel requires libpython2.6.so.1.0
istanbul-0.2.2-14.fc13.armv5tel requires python(abi) = 0:2.6
jabber-roster-0.1.0-1.fc13.noarch requires python(abi) = 0:2.6
jakarta-commons-codec-1.4-5.fc13.noarch requires java >= 1:1.6.0
jakarta-commons-compress-1.0-1.fc13.noarch requires java >= 1:1.6.0
jamin-0.95.0-8.20100210cvs.fc13.armv5tel requires liblo.so.0
java-augeas-0.0.2-1.fc14.noarch requires java >= 1:1.5.0
java-gnome-4.0.16-2.fc14.armv5tel requires java >= 1:1.6.0
javacsv-2.0-3.fc13.noarch requires java >= 1:1.5
javahelp2-2.0.05-8.fc12.noarch requires java >= 1:1.6.0
javassist-3.9.0-7.fc13.noarch requires java >= 1:1.6.0
jaxodraw-2.0.1-8.fc14.noarch requires java >= 1:1.6.0
jcalendar-1.3.2-3.fc12.noarch requires java >= 1:1.6.0
jcharts-0.7.5-4.fc14.noarch requires java >= 1:1.6.0
jemmy-2.3.0.0-4.fc12.noarch requires java >= 1:1.6.0
jericho-html-3.1-3.fc14.noarch requires java >= 1:1.6.0
jettison-1.2-1.fc14.noarch requires java >= 1:1.6.0
jeuclid-3.1.3-12.fc12.noarch requires java >= 1:1.6.0
jffi-0.6.5-4.fc13.armv5tel requires java >= 1:1.6.0
jide-oss-2.7.6-3.1340svn.fc14.noarch requires java >= 1:1.6.0
jmod-0.9-2.fc12.armv5tel requires java >= 0:1.7
jmol-11.8.26-1.fc14.noarch requires java >= 1:1.6.0
jna-3.2.7-4.fc14.armv5tel requires java >= 1:1.6.0
jnr-constants-0.7-2.fc14.noarch requires java >= 1:1.6.0
jnr-x86asm-0.1-2.fc14.noarch requires java >= 1:1.6.0
joda-time-1.6.2-2.tzdata2010l.fc14.noarch requires java >= 1:1.6.0
josm-0-0.11.3592svn.fc14.noarch requires java >= 1:1.6.0
jpcap-0.7-8.fc12.armv5tel requires java >= 1:1.6
2:jtidy-1.0-0.9.20100930svn1125.fc14.noarch requires java >= 1:1.6.0
junit4-4.8.2-1.fc14.noarch requires java-1.6.0
jython-2.2.1-4.6.fc14.noarch requires java >= 1:1.6.0
kanyremote-5.11.8-1.fc14.noarch requires PyKDE4
kbluetooth-0.4.1-1.fc13.armv5tel requires libknotificationitem-1.so.1
kcbench-0.3-6.1.noarch requires kcbench-datafiles
kcbench-data-0.1-6.fc14.noarch requires kcbench-data-2.6.35 = 0:0.1-6.fc14
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdebase-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires libexiv2.so.6
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdebase-runtime-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libcln.so.6
kdebase-workspace-4.5.5-1.fc13.armv5tel requires libgps.so.18
kdebase-workspace-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires PyKDE4 >= 0:4.5.5
kdebase-workspace-python-applet-4.5.5-1.fc13.armv5tel requires python(abi) = 0:2.6
6:kdegames-4.5.5-1.fc13.armv5tel requires PyKDE4
7:kdegraphics-libs-4.4.2-3.fc13.armv5tel requires libexiv2.so.6
6:kdelibs-4.5.2-5.fc14.armv5tel requires phonon(armv5tel-32) >= 0:4.4.3
kdelibs3-devel-3.5.10-23.fc13.armv5tel requires libkdnssd-devel
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
7:kdenetwork-libs-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
6:kdepim-libs-4.4.10-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires akonadi(armv5tel-32) >= 0:1.4.3
kdepim-runtime-libs-4.4.10-1.fc13.armv5tel requires kdepimlibs-akonadi(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kdepimlibs(armv5tel-32) >= 0:4.5.5
kdesdk-4.5.5-1.fc13.armv5tel requires kross(python)
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires libpython2.6.so.1.0
6:kdeutils-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-minimal-libs-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
6:kdeutils-printer-applet-4.5.5-1.fc13.armv5tel requires PyKDE4
kdm-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kdm-4.5.5-1.fc13.armv5tel requires kde-settings-kdm
klavaro-1.6.0-1.fc13.armv5tel requires libgtkdatabox-0.9.0.so.1
kmess-2.0.6.1-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kmid2-0.2.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
2:koffice-langpack-2.2.2-1.fc14.noarch requires koffice-core >= 2:2.2.1
koji-vm-1.6.0-1.fc14.noarch requires qemu-img
koji-vm-1.6.0-1.fc14.noarch requires libvirt-python
konversation-1.3.1-2.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kpackagekit-0.6.1-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
kphotobymail-0.4.1-8.fc14.noarch requires PyKDE >= 0:3.16
kreetingkard_templates-0.2.0-4.fc12.noarch requires kreetingkard >= 0:0.7.1
ktorrent-libs-4.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
kvirc-4.0.4-1.fc13.armv5tel requires libpython2.6.so.1.0
l2fprod-common-7.3-6.20090428cvs.fc12.noarch requires java >= 1:1.6.0
laf-plugin-1.0-6.fc12.noarch requires java >= 1:1.6.0
lazygal-0.4.1-4.fc12.noarch requires python(abi) = 0:2.6
lekhonee-0.7-3.fc14.noarch requires lekhonee-lib = 0:0.7-3.fc14
lekhonee-0.7-3.fc14.noarch requires PyKDE4
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1
libannodex-0.7.3-14.fc13.armv5tel requires liboggz.so.1(liboggz.so.0.2)
libbluray-0.1-0.3.20101028gitc32862b77dea4.fc13.armv5tel requires java-1.6.0
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickCore.so.2
libdmtx-utils-0.7.2-3.fc13.armv5tel requires libMagickWand.so.2
libktorrent-1.0.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
libmatroska-0.9.0-1.fc14.armv5tel requires libebml.so.0
libmatthew-java-0.7.2-3.fc14.armv5tel requires java-1.6.0-openjdk
liborigin2-13092010-1.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
liborigin2-13092010-1.fc14.armv5tel requires libboost_date_time-mt.so.1.44.0
libphidget-java-2.1.8.20110310-1.fc13.armv5tel requires java >= 1:1.6.0
libpst-python-0.6.49-1.fc13.armv5tel requires python(abi) = 0:2.6
libqalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
libqalculate-devel-0.9.7-2.fc13.armv5tel requires cln-devel
librtfcomp-python-1.1-6.fc12.armv5tel requires python(abi) = 0:2.6
libvirt-java-0.4.6-1.fc14.noarch requires libvirt-client >= 0:0.8.2
libvirt-java-0.4.6-1.fc14.noarch requires java >= 1:1.5.0
libxfce4ui-devel-4.7.2-2.fc14.armv5tel requires libgladeui-1.so.9
libyaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
libyaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
listen-0.6.5-2.fc13.armv5tel requires libpython2.6.so.1.0
liveusb-creator-3.9.2-2.fc14.noarch requires syslinux
log4j-1.2.16-3.fc14.noarch requires java >= 1:1.6.0
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires xmms
1:logjam-xmms-4.6.0-1.fc13.armv5tel requires libxmms.so.1
lv2-fil-plugins-2.0-3.fc13.armv5tel requires liblo.so.0
lxmusic-0.4.2-1.fc13.armv5tel requires libxmmsclient.so.5
lyx-2.0.0-0.5.alpha5.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
lyx-2.0.0-0.5.alpha5.fc14.armv5tel requires libboost_signals-mt.so.1.44.0
maniadrive-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maniadrive-track-editor-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-filtering
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires maven-shared-repository-builder
maven-assembly-plugin-2.2-0.4.beta5.fc14.noarch requires java >= 1:1.6.0
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-shared-reporting-impl >= 0:2.0.4.3
maven-checkstyle-plugin-2.5-3.fc14.noarch requires maven-plugin-testing-harness >= 0:1.2
maven-checkstyle-plugin-2.5-3.fc14.noarch requires plexus-containers-container-default
maven-checkstyle-plugin-2.5-3.fc14.noarch requires java >= 1:1.6.0
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-common-artifact-filters
maven-dependency-plugin-2.2-0.2.svn949573.fc14.noarch requires maven-shared-dependency-analyzer
maven-doxia-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires plexus-containers-container-default
maven-doxia-sitetools-1.1.2-3.fc14.noarch requires java >= 1:1.6.0
maven-ejb-plugin-2.2.1-5.fc14.noarch requires maven-plugin-testing-harness
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-invoker
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-impl
maven-invoker-plugin-1.5-3.fc14.noarch requires maven-shared-reporting-api
maven-jar-plugin-2.3-3.fc14.noarch requires maven-plugin-testing-harness
maven-javadoc-plugin-2.7-3.fc14.noarch requires maven-shared-invoker
maven-plugin-bundle-2.0.0-4.fc12.noarch requires maven-shared-dependency-tree
maven-plugin-bundle-2.0.0-4.fc12.noarch requires plexus-containers-container-default
maven-plugin-exec-1.1-1.fc12.noarch requires maven-shared-plugin-testing-harness
maven-pmd-plugin-2.5-1.fc14.noarch requires maven-plugin-testing-harness
maven-remote-resources-plugin-1.1-6.fc14.noarch requires maven-shared-artifact-resolver
maven-resources-plugin-2.2-7.fc14.noarch requires maven-plugin-testing-harness
maven-scm-1.4-2.fc14.noarch requires netbeans-cvsclient >= 0:6.9
maven-shade-plugin-1.3.3-2.fc14.noarch requires java >= 1:1.6.0
maven2-2.2.1-13.fc14.noarch requires maven-shared-repository-builder
maven2-2.2.1-13.fc14.noarch requires maven-shared-filtering
maven2-2.2.1-13.fc14.noarch requires maven-plugin-testing-harness
maven2-2.2.1-13.fc14.noarch requires maven-shared-dependency-tree
maven2-2.2.1-13.fc14.noarch requires plexus-containers-container-default
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-api
maven2-2.2.1-13.fc14.noarch requires maven-enforcer-plugin
maven2-2.2.1-13.fc14.noarch requires maven-shared-common-artifact-filters
maven2-2.2.1-13.fc14.noarch requires maven-shared-downloader
maven2-2.2.1-13.fc14.noarch requires maven-shared-file-management
maven2-2.2.1-13.fc14.noarch requires maven-shared-reporting-api
maven2-2.2.1-13.fc14.noarch requires maven-shared-io
maven2-plugin-shade-1.2.2-2.fc13.noarch requires maven-shared-dependency-tree
mbox2eml-0.1.1-4.fc14.armv5tel requires libboost_system.so.1.44.0
mbox2eml-0.1.1-4.fc14.armv5tel requires libboost_filesystem.so.1.44.0
mediawiki-CategoryTree-45462-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-Cite-0-0.6.20080901svn.fc12.noarch requires mediawiki
mediawiki-HNP-1.1.2-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-HTTP302Found-1.0-2.fc12.noarch requires mediawiki >= 0:1.14.0
mediawiki-LdapAccount-0.1-1.fc13.noarch requires mediawiki >= 0:1.13
mediawiki-ParserFunctions-1.1.1-6.svn45003.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-SpecialInterwiki-0-0.7.20080913svn.fc12.noarch requires mediawiki >= 0:1.12
mediawiki-StubManager-1.3.0-3.fc12.noarch requires mediawiki >= 0:1.10
mediawiki-imagemap-0-0.3.r37906.fc12.noarch requires mediawiki >= 0:1.13
mediawiki-openid-0.8.2-9.0.1.noarch requires mediawiki
mediawiki-rss-1.5-3.fc12.noarch requires mediawiki >= 0:0.14
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki-nomath
mediawiki-semantic-1.4.2-2.fc12.noarch requires mediawiki
mediawiki-wikicalendar-1.16-1.fc12.noarch requires mediawiki
mingw32-OpenSceneGraph-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-OpenThreads-2.8.3-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-SDL_image-1.2.10-1.fc13.noarch requires mingw32(libpng12-0.dll)
mingw32-boost-1.41.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsq3-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libsqlite3x-20071018-10.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-libtiff-3.9.4-1.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-pcre-8.10-2.fc14.noarch requires mingw32(libstdc++-6.dll)
mingw32-qt-4.7.0-2.fc14.noarch requires mingw32(libstdc++-6.dll)
minicomputer-1.41-2.fc13.armv5tel requires liblo.so.0
mirage-0.9.5.2-1.fc13.armv5tel requires libpython2.6.so.1.0
mirage-0.9.5.2-1.fc13.armv5tel requires python(abi) = 0:2.6
mirrormanager-1.3.7-1.fc14.noarch requires python-basemap >= 0:0.99.4
mkvtoolnix-3.3.0-1.fc13.armv5tel requires libebml.so.0
mkvtoolnix-gui-3.3.0-1.fc13.armv5tel requires libebml.so.0
moblin-panel-applications-0.0.2-1.fc12.armv5tel requires libmoblin-panel.so.0
moblin-panel-media-0.0.8-0.2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-pasteboard-0.0.2-2.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libmoblin-panel.so.0
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libebook-1.2.so.9
moblin-panel-people-0.0.10-5.fc13.armv5tel requires libedataserver-1.2.so.13
moblin-panel-status-0.0.10-2.fc13.armv5tel requires libmoblin-panel.so.0
mod_annodex-0.2.2-13.fc13.armv5tel requires liboggz.so.1
mojo-parent-24-5.fc14.noarch requires maven-plugin-plugin
mojo-parent-24-5.fc14.noarch requires plexus-containers-component-javadoc
moovida-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-bad-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
moovida-plugins-good-1.0.9-3.fc14.noarch requires moovida-base = 0:1.0.9
mozvoikko-1.0-21.fc13.armv5tel requires gecko-libs >= 0:1.9.2.17
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-apps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-base-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-gui-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hmtslam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-hwdrivers-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-maps-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-obs-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-opengl-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-reactivenav-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-slam-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-topography-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libml.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcxcore.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libhighgui.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcvaux.so.2
mrpt-vision-0.9.0-0.4.fc14.armv5tel requires libcv.so.2
msort-8.53-1.fc13.armv5tel requires libicutu.so.42
msort-8.53-1.fc13.armv5tel requires libicuuc.so.42
1:msv-javadoc-2009.1-3.fc14.noarch requires relaxngDatatype-javadoc
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Defaults)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Timeout)
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::TLSClient)
munin-1.4.5-4.fc14.noarch requires munin-common = 0:1.4.5
munin-1.4.5-4.fc14.noarch requires perl(Munin::Common::Config)
museek+-bindings-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-mucous-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
museek+-murmur-0.3-0.2.20100126svn1206.fc13.armv5tel requires python(abi) = 0:2.6
nachocalendar-0.23-3.fc12.noarch requires java >= 1:1.6.0
nekobee-dssi-0.1.7-3.fc12.armv5tel requires liblo.so.0
netbeans-6.9-2.fc14.noarch requires netbeans-java4 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires netbeans-apisupport2 >= 0:6.9
netbeans-6.9-2.fc14.noarch requires java >= 1:1.6.0
netbeans-6.9-2.fc14.noarch requires netbeans-ide13 >= 0:6.9
netbeans-javaparser-6.9-1.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-platform-harness-6.9-4.fc14.noarch requires java >= 1:1.6.0
netbeans-resolver-6.7.1-1.fc12.noarch requires java >= 1:1.6.0
netbeans-svnclientadapter-6.7.1-2.fc12.noarch requires java >= 1:1.6.0
network-manager-netbook-1.7.1-0.1.fc13.armv5tel requires libmoblin-panel.so.0
notmuch-0.5-1.fc13.armv5tel requires libxapian.so.15
nyquist-3.03-3.fc12.armv5tel requires liblo.so.0
nyquist-3.03-3.fc12.armv5tel requires java-1.6.0-openjdk
ocfs2-tools-1.4.3-5.fc13.armv5tel requires redhat-lsb
ocfs2console-1.4.3-5.fc13.armv5tel requires python(abi) = 0:2.6
openbabel-2.2.3-1.fc13.armv5tel requires libstdinchi.so.1
opencsv-2.2-2.fc14.noarch requires java >= 1:1.6.0
opengrok-0.9-1.fc14.noarch requires lucene-contrib > 0:2
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-extendedPDF-1.4-10.fc14.armv5tel requires openoffice.org-core
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires latex2emf
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-writer >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-draw >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openoffice.org-ooolatex-4.0.0-0.7.beta2.fc12.1.noarch requires openoffice.org-core >= 1:2.3.0-6.14
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicui18n.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicuuc.so.42
openttd-1.0.3-0.1.RC1.fc14.armv5tel requires libicudata.so.42
openwsman-perl-2.2.0-3.fc12.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
openwsman-python-2.2.0-3.fc12.armv5tel requires python(abi) = 0:2.6
osutil-1.3.1-3.fc13.armv5tel requires java >= 1:1.6.0
ovirt-server-0.100-5.fc14.noarch requires ruby-qmf
ovirt-server-0.100-5.fc14.noarch requires qmf
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-client
ovirt-server-0.100-5.fc14.noarch requires qpid-cpp-server
ovirt-server-0.100-5.fc14.noarch requires ruby-libvirt >= 0:0.0.2
oyranos-0.2.0-2.fc13.armv5tel requires shared-color-profiles-extra
pAgenda-3.2-5.fc12.noarch requires python(abi) = 0:2.6
pacemaker-1.1.4-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
pacemaker-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
pacemaker-cts-1.1.4-5.fc13.armv5tel requires python(abi) = 0:2.6
parrot-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-3.0.0-1.fc13.armv5tel requires libicudata.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicuuc.so.42
parrot-devel-3.0.0-1.fc13.armv5tel requires libicudata.so.42
patcher-0.6-3.fc13.noarch requires python(abi) = 0:2.6
pcapy-0.10.5-6.fc12.armv5tel requires libpython2.6.so.1.0
pcapy-0.10.5-6.fc12.armv5tel requires python(abi) = 0:2.6
pdf-renderer-0-0.6.20090405cvs.fc12.armv5tel requires java >= 0:1.7
perl-CGI-Application-Plugin-JSON-1.02-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Application-Plugin-LinkIntegrity-0.06-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-CGI-Emulate-PSGI-0.10-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Catalyst-Devel-1.27-2.fc14.noarch requires perl-Catalyst-Runtime-scripts
perl-Cflow-1.053-12.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Config-INI-MVP-0.024-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Const-Fast-0.006-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-OpenSSL-PKCS10-0.06-14.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Crypt-SSLeay-0.58-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Data-Alias-1.07-6.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Cover-0.65-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Devel-Declare-0.006004-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Email-Simple-Creator-1.424-6.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Frontier-RPC-0.07b4p1-10.fc14.noarch requires perl-Frontier-RPC-doc
perl-GPS-PRN-0.05-5.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Git-CPAN-Patch-0.2.1-3.fc14.noarch requires git-cpan-patch = 0:0.2.1-3.fc14
perl-Gnome2-1.042-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-IO-Compress-Bzip2-2.015-1.fc12.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-MIME-Base32-1.02a-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Mail-Box-Parser-C-3.006-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-GMP-2.06-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Math-Pari-2.010806-6.fc14.armv5tel requires pari(armv5tel-32) = 0:2.3.4
perl-Monotone-0.48.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
1:perl-NKF-2.1.1-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Net-SSLeay-1.36-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-PDF-Haru-1.00-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-POSIX-strptime-0.10-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Pegex-0.11-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Razor-Agent-2.85-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Reaper-1.00-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Regexp-Copy-0.06-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-SVN-Mirror-0.75-2.fc11.noarch requires perl(:MODULE_COMPAT_5.10.0)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt)
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires perl(Sys::Virt) >= 0:0.2.1
perl-Sys-Virt-TCK-0.1.0-7.fc14.noarch requires libvirt >= 0:0.6.4
perl-Task-Catalyst-3.0000-4.fc14.noarch requires /usr/bin/catalyst.pl
perl-Template-Toolkit-2.22-5.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Text-PDF-0.29a-4.fc14.noarch requires pdf-tools = 0:0.29a-4.fc14
perl-Tk-TableMatrix-1.23-7.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-Tk-Text-SuperText-0.9.4-3.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-Verilog-CodeGen-0.9.4-4.fc14.noarch requires tkgate
perl-WWW-Pastebin-RafbNet-Create-0.001-4.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-WWW-Salesforce-0.13-1.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
perl-libapreq2-2.13-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
perl-openbabel-2.2.3-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
3:perl-version-0.82-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
phatch-0.2.7-2.fc14.noarch requires phatch-cli = 0:0.2.7-2.fc14
phoronix-test-suite-1.8.1-2.fc12.noarch requires compat-libstdc++-33
phoronix-test-suite-1.8.1-2.fc12.noarch requires java-openjdk
photoprint-borders-0.0.2-5.fc12.noarch requires photoprint
1:php-eaccelerator-0.9.6.1-2.fc14.armv5tel requires php-common = 0:5.3.2
php-facedetect-1.0.0-6.fc14.armv5tel requires opencv
php-facedetect-1.0.0-6.fc14.armv5tel requires libcv.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcvaux.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libcxcore.so.2
php-facedetect-1.0.0-6.fc14.armv5tel requires libhighgui.so.2
php-intl-5.3.3-1.fc14.armv5tel requires libicuio.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicui18n.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicudata.so.42
php-intl-5.3.3-1.fc14.armv5tel requires libicuuc.so.42
picard-0.12.1-1.fc13.armv5tel requires python(abi) = 0:2.6
picard-0.12.1-1.fc13.armv5tel requires libpython2.6.so.1.0
piccolo2d-1.3-5.fc14.noarch requires eclipse-swt
picviz-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
picviz-0.6-2.fc12.armv5tel requires libpython2.6.so.1.0
picviz-gui-0.6-2.fc12.armv5tel requires python(abi) = 0:2.6
pida-0.5.1-10.fc12.armv5tel requires python(abi) = 0:2.6
pida-0.5.1-10.fc12.armv5tel requires libpython2.6.so.1.0
pigment-python-0.3.12-2.fc12.armv5tel requires python(abi) = 0:2.6
pingus-0.7.2-11.fc14.armv5tel requires libboost_signals.so.1.44.0
pinot-0.94-4.fc13.armv5tel requires libxapian.so.15
pki-ca-1.3.6-1.fc14.noarch requires java >= 1:1.6.0
pki-common-1.3.8-1.fc14.noarch requires java >= 1:1.6.0
pki-console-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pki-java-tools-1.3.1-1.fc14.noarch requires java >= 1:1.6.0
pki-kra-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-ocsp-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-silent-1.3.4-1.fc14.noarch requires java >= 1:1.6.0
pki-symkey-1.3.2-4.fc13.armv5tel requires java >= 1:1.6.0
pki-tks-1.3.3-1.fc14.noarch requires java >= 1:1.6.0
pki-util-1.3.2-1.fc14.noarch requires java >= 1:1.6.0
pl-jpl-5.7.11-5.fc12.armv5tel requires libverify.so
pl-jpl-5.7.11-5.fc12.armv5tel requires libjvm.so(SUNWprivate_1.1)
pl-jpl-5.7.11-5.fc12.armv5tel requires libjava.so
plee-the-bear-0.4.1-7.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
plee-the-bear-0.4.1-7.fc14.armv5tel requires libboost_system-mt.so.1.44.0
plee-the-bear-0.4.1-7.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
plexus-active-collections-1.0-0.2.beta2.fc14.noarch requires java >= 1:1.6.0
plexus-appserver-1.0-0.4.a5.2.11.fc13.noarch requires xmlrpc
plexus-cli-1.2-8.fc12.noarch requires plexus-containers-container-default
plexus-component-api-1.0-0.5.alpha15.fc14.noarch requires java-devel >= 1:1.6.0
plexus-maven-plugin-1.3.8-3.fc14.noarch requires maven-shared-reporting-impl
plexus-maven-plugin-1.3.8-3.fc14.noarch requires plexus-runtime-builder >= 0:1.0-0.a9.2
plexus-naming-1.0-0.5.a3.fc12.noarch requires java >= 1:1.6.0
plexus-registry-1.0-0.3.a3.fc13.noarch requires plexus-containers-container-default
plexus-registry-1.0-0.3.a3.fc13.noarch requires java >= 1:1.6.0
plexus-xmlrpc-1.0-0.4.b4.2.17.fc14.noarch requires xmlrpc
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires python(abi) = 0:2.6
pocketsphinx-python-0.5.1-4.fc13.armv5tel requires libpython2.6.so.1.0
poker-bot-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-client-lib-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-engine-1.3.4-1.fc13.noarch requires python(abi) = 0:2.6
poker-network-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker-server-1.7.3-3.fc12.noarch requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires python(abi) = 0:2.6
poker2d-1.7.3-3.fc12.armv5tel requires /usr/bin/python2.6
poker3d-data-1.1.36-5.fc12.noarch requires poker3d >= 0:1.1.36
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_system-mt.so.1.44.0
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
pokerth-0.8-0.1.beta3.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
poky-depends-6-6.fc13.noarch requires compat-gcc-34
poky-depends-6-6.fc13.noarch requires qemu >= 0:0.8.2
pony-0.4-2.fc14.noarch requires PyKDE4
portecle-1.5-2.fc14.noarch requires jre >= 0:1.6.0
postr-0.12.3-8.fc12.armv5tel requires python(abi) = 0:2.6
ppl-java-0.10.2-11.fc13.armv5tel requires java >= 1:1.6.0
proguard-4.5.1-1.fc14.noarch requires java >= 1:1.6.0
protobuf-python-2.2.0-2.fc13.armv5tel requires python(abi) = 0:2.6
pungi-2.1.4-1.fc14.noarch requires anaconda >= 0:14.3
purple-plugin_pack-pidgin-xmms-2.6.3-1.fc13.armv5tel requires libxmms.so.1
pxe-kexec-0.2.3-2.fc13.armv5tel requires kexec-tools
pyactivemq-0.1.0-7.20100214svn209.fc14.armv5tel requires libboost_python.so.1.44.0
pyexiv2-0.1.3-11.fc14.armv5tel requires libboost_python.so.1.44.0
pyfacebook-0.1-0.2.20090208svn173.fc12.noarch requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires python(abi) = 0:2.6
pyflowtools-0.3.4-6.fc12.armv5tel requires libpython2.6.so.1.0
pyfuzzy-0.1.0-2.fc13.noarch requires python(abi) = 0:2.6
pyfuzzy-0.1.0-2.fc13.noarch requires antlr3-python
pyliblo-0.8.1-3.fc14.armv5tel requires liblo.so.0
pymilia-0.3.0-4.fc14.armv5tel requires libboost_python.so.1.44.0
pymongo-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
pymongo-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymongo-gridfs-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
pymunk-0.8.4-3.fc14.noarch requires chipmunk >= 0:4.1.0
pypoker-eval-137.0-1.fc13.armv5tel requires python(abi) = 0:2.6
pypoker-eval-137.0-1.fc13.armv5tel requires libpython2.6.so.1.0
pyrenamer-0.6.0.1-4.fc12.noarch requires python(abi) = 0:2.6
python-amqplib-0.6.1-2.fc13.noarch requires python(abi) = 0:2.6
python-asyncmongo-0.1-1.fc13.noarch requires python(abi) = 0:2.6
python-bson-1.9-4.fc13.armv5tel requires libpython2.6.so.1.0
python-bson-1.9-4.fc13.armv5tel requires python(abi) = 0:2.6
python-dulwich-0.6.2-1.fc13.armv5tel requires libpython2.6.so.1.0
python-dulwich-0.6.2-1.fc13.armv5tel requires python(abi) = 0:2.6
1:python-gnash-0.8.8-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
1:python-gnash-0.8.8-4.fc14.armv5tel requires libboost_date_time-mt.so.1.44.0
python-iso8601-0.1.4-2.fc13.noarch requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires python(abi) = 0:2.6
python-kaa-display-0.1.0-3.fc13.armv5tel requires libpython2.6.so.1.0
python-keybinder-0.2.2-5.fc13.armv5tel requires python(abi) = 0:2.6
python-lash-0.5.4-9.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires python(abi) = 0:2.6
python-libdmtx-0.7.2-3.fc13.armv5tel requires libpython2.6.so.1.0
python-mox-0.5.3-2.fc13.noarch requires python(abi) = 0:2.6
python-mwlib-0.11.2-7.20090522hg2956.fc14.armv5tel requires LabPlot
python-nufw-2.2.21-7.fc13.armv5tel requires python(abi) = 0:2.6
python-oauth2-1.2.1-1.fc13.noarch requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires python(abi) = 0:2.6
python-openbabel-2.2.3-1.fc13.armv5tel requires libpython2.6.so.1.0
python-openoffice-0.1-0.6.20090228svn34.fc14.noarch requires openoffice.org-pyuno
python-ordereddict-1.1-2.fc13.noarch requires python(abi) = 0:2.6
python-polybori-0.5-9.fc14.armv5tel requires libboost_python.so.1.44.0
python-psycopg-1.1.21-13.fc12.armv5tel requires python(abi) = 0:2.6
python-psycopg-1.1.21-13.fc12.armv5tel requires python-abi = 0:2.6
python-redis-2.0.0-1.fc13.noarch requires python(abi) = 0:2.6
python-repoze-who-testutil-1.0-1.fc14.noarch requires python(abi) = 0:2.6
python-sleekxmpp-1.0-0.7.beta2.fc13.noarch requires python(abi) = 0:2.6
python-snack-2.2.10-12.fc12.armv5tel requires python(abi) = 0:2.6
python-soaplib-0.8.1-4.fc13.noarch requires python(abi) = 0:2.6
python-sqlalchemy0.5-0.5.5-1.fc10.noarch requires python(abi) = 0:2.5
python-tag-0.94.5-6.fc14.armv5tel requires libboost_python-mt.so.1.44.0
python-tilecache-2.11-5.fc13.noarch requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires python(abi) = 0:2.6
python-tre-0.8.0-1.fc13.armv5tel requires libpython2.6.so.1.0
python-tunepimp-0.5.3-16.fc12.armv5tel requires python(abi) = 0:2.6
python-urllib2_kerberos-0.1.6-4.fc12.noarch requires python(abi) = 0:2.6
python-virtinst-0.500.4-1.fc14.noarch requires libvirt-python >= 0:0.2.0
python-visual-5.61-1.fc13.armv5tel requires python(abi) = 0:2.6
pytrailer-0.6.0-1.fc13.noarch requires python(abi) = 0:2.6
pyxmms-2.06-12.fc14.armv5tel requires libxmms.so.1
qalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
qalculate-gtk-0.9.7-1.fc13.armv5tel requires libcln.so.6
1:qbittorrent-2.4.0-2.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
1:qbittorrent-2.4.0-2.fc14.armv5tel requires libboost_system-mt.so.1.44.0
1:qbittorrent-2.4.0-2.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
1:qbittorrent-nox-2.4.0-2.fc14.armv5tel requires libboost_system-mt.so.1.44.0
qct-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qct-mercurial-1.7-4.fc12.armv5tel requires python(abi) = 0:2.6
qdox-1.11-3.fc14.noarch requires java >= 1:1.6.0
qedje-python-0.4.0-6.fc13.armv5tel requires python(abi) = 0:2.6
qedje-python-0.4.0-6.fc13.armv5tel requires libpython2.6.so.1.0
qemu-launcher-1.7.4-7.fc12.noarch requires qemu
qmtest-2.4.1-3.fc12.armv5tel requires python(abi) = 0:2.6
qmtest-2.4.1-3.fc12.armv5tel requires libpython2.6.so.1.0
qtgpsc-0.2.3-6.fc12.armv5tel requires libgps.so.18
qtiplot-0.9.7.14-1.fc13.armv5tel requires libpython2.6.so.1.0
qtparted-0.4.5-23.fc13.armv5tel requires libparted-2.1.so.0
quadkonsole-2.0.2-5.fc12.armv5tel requires kdebase3
rabbitvcs-core-0.13.3-1.fc13.noarch requires python(abi) = 0:2.6
raidem-music-1.0-4.fc12.noarch requires raidem >= 0:0.3.1
rainbow-0.8.6-1.fc13.armv5tel requires python(abi) = 0:2.6
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libparrot.so.2.3.0
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicudata.so.42
rakudo-0.0.2010.04_2.3.0-1.fc13.armv5tel requires libicuuc.so.42
rawstudio-1.2-5.fc14.armv5tel requires libexiv2.so.6
raydium-1.2-21.fc14.armv5tel requires libphp5-5.3.2.so
rb_libtorrent-0.14.10-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
rb_libtorrent-0.14.10-4.fc14.armv5tel requires libboost_system-mt.so.1.44.0
rb_libtorrent-0.14.10-4.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
rb_libtorrent-examples-0.14.10-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
rb_libtorrent-examples-0.14.10-4.fc14.armv5tel requires libboost_system-mt.so.1.44.0
rb_libtorrent-examples-0.14.10-4.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
rb_libtorrent-examples-0.14.10-4.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
rb_libtorrent-examples-0.14.10-4.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
rb_libtorrent-python-0.14.10-4.fc14.armv5tel requires libboost_python-mt.so.1.44.0
rb_libtorrent-python-0.14.10-4.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
rb_libtorrent-python-0.14.10-4.fc14.armv5tel requires libboost_system-mt.so.1.44.0
rb_libtorrent-python-0.14.10-4.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
rcsslogplayer-14.0.1-3.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
rcssmonitor-14.1.0-2.fc14.armv5tel requires libboost_program_options-mt.so.1.44.0
rcssserver-14.0.3-2.fc14.armv5tel requires libboost_system-mt.so.1.44.0
rcssserver-14.0.3-2.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
rcssserver3d-0.6.5-2.fc13.armv5tel requires libkerosin.so.2
rcssserver3d-0.6.5-2.fc13.armv5tel requires liboxygen.so.5
rdesktop-1.6.0-10.fc13.armv5tel requires libao.so.2
rear-1.7.25-1.fc14.noarch requires redhat-lsb
recoll-1.15.8-2.fc13.armv5tel requires libxapian.so.15
referencer-1.1.6-5.fc14.armv5tel requires libboost_regex.so.1.44.0
rekall-python-2.4.6-12.fc12.armv5tel requires python(abi) = 0:2.6
rekall-python-2.4.6-12.fc12.armv5tel requires libpython2.6.so.1.0
resapplet-0.1.1-10.fc14.armv5tel requires system-config-display
revelation-0.4.11-9.armv5tel requires python(abi) = 0:2.6
revisor-2.2-2.fc14.noarch requires revisor-gui = 0:2.2-2.fc14
rhnsd-4.9.3-1.fc14.armv5tel requires rhn-check >= 0:0.0.8
rhythmbox-0.12.8-4.fc13.armv5tel requires libpython2.6.so.1.0
rkhunter-1.3.6-7.fc14.noarch requires prelink
rmic-maven-plugin-1.1-3.fc14.noarch requires java >= 1:1.6.0
rmol-0.23.1-1.fc14.armv5tel requires libboost_date_time.so.1.44.0
rmol-0.23.1-1.fc14.armv5tel requires libboost_program_options.so.1.44.0
rome-0.9-6.fc13.noarch requires java >= 1:1.6.0
rpy-2.0.8-8.fc13.armv5tel requires python(abi) = 0:2.6
rpy-2.0.8-8.fc13.armv5tel requires libpython2.6.so.1.0
rt3-3.8.8-3.fc14.noarch requires rt3-mailgate
rtorrent-0.8.6-3.fc13.armv5tel requires libtorrent.so.11
ruby-icon-artist-0.1.92-1.fc13.noarch requires inkscape
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler-glib.so.4
ruby-poppler-0.90.4-1.0.fc13.armv5tel requires libpoppler.so.5
rubygem-rb-inotify-0.8.1-2.fc13.noarch requires rubygem(ffi)
rxvt-unicode-9.10-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires python(abi) = 0:2.6
sK1-0.9.1-0.2.pre_rev730.fc12.armv5tel requires libpython2.6.so.1.0
sagator-1.2.1-2.fc14.noarch requires sagator-core = 0:1.2.1-2.fc14
sat4j-2.2.0-1.fc14.noarch requires java >= 1:1.6
sblim-cim-client-1.3.9.1-1.fc13.noarch requires tog-pegasus >= 2:2.5.1
sblim-tools-libra-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-tools-libra-devel-0.2.3-1.fc13.armv5tel requires tog-pegasus
sblim-wbemcli-1.6.0-5.fc12.armv5tel requires tog-pegasus
schroot-1.4.10-1.fc14.armv5tel requires libboost_regex.so.1.44.0
schroot-1.4.10-1.fc14.armv5tel requires libboost_program_options.so.1.44.0
schroot-1.4.10-1.fc14.armv5tel requires libboost_system.so.1.44.0
schroot-1.4.10-1.fc14.armv5tel requires libboost_filesystem.so.1.44.0
scipy-0.7.1-3.fc13.armv5tel requires python(abi) = 0:2.6
scipy-0.7.1-3.fc13.armv5tel requires libpython2.6.so.1.0
scout-0.4-6.fc13.noarch requires python(abi) = 0:2.6
seed-2.30.0-2.fc13.armv5tel requires libgirepository-1.0.so.0
seedit-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
seedit-gui-2.2.0-7.fc12.armv5tel requires python(abi) = 0:2.6
sems-dsm-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-ivr-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sems-python-1.3.1-4.fc13.armv5tel requires libpython2.6.so.1.0
sepostgresql-8.4.3-2582.fc14.armv5tel requires postgresql-server = 0:8.4.3
simspark-0.2.1-2.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
simspark-0.2.1-2.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
sipwitch-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-cgi-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-forward-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-scripting-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-subscriber-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-plugin-zeroconf-0.7.6-0.fc13.armv5tel requires libucommon.so.2
sipwitch-runtime-0.7.6-0.fc13.armv5tel requires libucommon.so.2
skanlite-0.4-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
skf-perl-1.97.4-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
skf-python-1.97.4-1.fc13.armv5tel requires python(abi) = 0:2.6
skinlf-6.7-10.cvs20091205.fc13.noarch requires java >= 1:1.6.0
skyviewer-1.0.0-4.fc14.armv5tel requires libQGLViewer.so.2.3.5
soci-3.0.0-18.fc14.armv5tel requires libboost_date_time.so.1.44.0
soci-3.0.0-18.fc14.armv5tel requires libboost_program_options.so.1.44.0
soci-mysql-3.0.0-18.fc14.armv5tel requires libboost_date_time.so.1.44.0
soci-mysql-3.0.0-18.fc14.armv5tel requires libboost_program_options.so.1.44.0
soci-postgresql-3.0.0-18.fc14.armv5tel requires libboost_date_time.so.1.44.0
soci-postgresql-3.0.0-18.fc14.armv5tel requires libboost_program_options.so.1.44.0
sonic-visualiser-1.7.2-1.fc14.armv5tel requires liblo.so.0
sooperlooper-1.6.13-5.fc14.armv5tel requires liblo.so.0
source-highlight-3.1.4-1.fc14.armv5tel requires libboost_regex.so.1.44.0
spacewalk-backend-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-config-files-common-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-iss-export-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-server-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-sql-postgresql-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires spacewalk-admin >= 0:0.1.1-0
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-tools-1.2.74-2.fc13.noarch requires python-gzipstream
spacewalk-backend-xml-export-libs-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-backend-xmlrpc-1.2.74-2.fc13.noarch requires python(abi) = 0:2.6
spacewalk-koan-0.2.5-2.fc14.noarch requires rhn-check
spacewalk-koan-0.2.5-2.fc14.noarch requires koan >= 0:1.4.3
spamassassin-3.3.2-1.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
spectrum-1.4.7-1.fc13.armv5tel requires python(abi) = 0:2.6
spectrum-1.4.7-1.fc13.armv5tel requires libMagick++.so.2
sphinxbase-python-0.4.1-2.fc13.armv5tel requires python(abi) = 0:2.6
sphinxbase-python-0.4.1-2.fc13.armv5tel requires libpython2.6.so.1.0
spring-maps-default-0.1-6.fc12.noarch requires spring
spyder-2.0.11-1.fc13.noarch requires python(abi) = 0:2.6
sqljet-1.0.3-1.fc14.noarch requires antlr3-java
stringtemplate-3.2.1-1.fc13.noarch requires java >= 1:1.6.0
suck-4.3.2-29.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
sugar-memorize-33-4.fc14.noarch requires csound
swingx-0.9.4-7.fc12.noarch requires java >= 0:1.6.0
sword-1.6.1-2.fc14.armv5tel requires libicui18n.so.42
sword-1.6.1-2.fc14.armv5tel requires libicuuc.so.42
sword-1.6.1-2.fc14.armv5tel requires libicuio.so.42
sword-1.6.1-2.fc14.armv5tel requires libicudata.so.42
syck-python-0.61-11.fc13.armv5tel requires python(abi) = 0:2.6
syck-python-0.61-11.fc13.armv5tel requires libpython2.6.so.1.0
system-config-kdump-2.0.4-7.fc14.noarch requires kexec-tools
system-config-kickstart-2.8.6-2.fc14.noarch requires anaconda >= 0:11.4.0.42-1
7:system-config-printer-kde-4.4.2-1.fc13.armv5tel requires PyKDE4
systemtap-testsuite-1.6-1.fc14.armv5tel requires prelink
taggle-1.0-1.fc14.noarch requires java >= 1:1.6.0
tailor-0.9.35-10.fc14.noarch requires python-vcpx = 0:0.9.35-10.fc14
taskjuggler-2.4.3-3.fc12.armv5tel requires libkcal.so.2
taskjuggler-libs-2.4.3-3.fc12.armv5tel requires libkcal.so.2
testdisk-6.12-1.fc13.armv5tel requires libntfs-3g.so.81
tetex-tex4ht-1.0.2008_09_16_1413-3.fc12.armv5tel requires java-1.6.0-openjdk
texmakerx-2.1-3.fc13.armv5tel requires libpoppler.so.5
texworks-0.4.0-1.fc13.armv5tel requires libpython2.6.so.1.0
tigase-utils-3.3.9-2.fc14.noarch requires java >= 0:1.6.0
tigase-xmltools-3.3.4-4.fc14.noarch requires java >= 0:1.6.0
tomcat5-5.5.27-7.4.fc12.noarch requires java-1.6.0-devel
tomcat5-5.5.27-7.4.fc12.noarch requires /lib/lsb/init-functions
tomcat5-common-lib-5.5.27-7.4.fc12.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcat6-6.0.26-7.fc14.noarch requires java-1.6.0
tomcat6-6.0.26-7.fc14.noarch requires /lib/lsb/init-functions
tomcatjss-1.2.1-1.fc13.noarch requires java >= 1:1.6.0
tomoe-0.6.0-15.fc12.armv5tel requires libpython2.6.so.1.0
tomoe-0.6.0-15.fc12.armv5tel requires python(abi) = 0:2.6
tomoe-gtk-devel-0.6.0-11.fc12.armv5tel requires python(abi) = 0:2.6
toot2-3-0.6.227svn.fc13.noarch requires java >= 0:1.7
tootaudioservers-3-0.3.80svn.fc13.armv5tel requires java >= 0:1.7
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
tor-lsb-0.2.1.29-1300.fc13.noarch requires lsb-core-noarch
torium-0.4.2-8.fc14.armv5tel requires libboost_date_time.so.1.44.0
torium-0.4.2-8.fc14.armv5tel requires libboost_thread-mt.so.1.44.0
torium-0.4.2-8.fc14.armv5tel requires libboost_program_options.so.1.44.0
torium-0.4.2-8.fc14.armv5tel requires libboost_regex.so.1.44.0
torium-0.4.2-8.fc14.armv5tel requires libboost_system-mt.so.1.44.0
torium-0.4.2-8.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
tortoisehg-1.1.10-1.fc13.armv5tel requires python(abi) = 0:2.6
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmyth.so.0
1:totem-mythtv-2.32.0-1.fc14.armv5tel requires libgmythupnp.so.0
translate-toolkit-1.8.0-1.fc14.noarch requires aeidon
tritonus-0.3.7-0.5.20090419cvs.fc12.armv5tel requires java >= 0:1.6
trytond-1.6.0-4.fc14.noarch requires trytond-server = 0:1.6.0-4.fc14
ufraw-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-cinepaint-0.16-2.fc13.armv5tel requires libexiv2.so.6
ufraw-gimp-0.16-2.fc13.armv5tel requires libexiv2.so.6
unbound-munin-1.4.4-2.fc14.armv5tel requires munin-node
uniconvertor-1.1.4-2.fc12.armv5tel requires python(abi) = 0:2.6
uniconvertor-1.1.4-2.fc12.armv5tel requires libpython2.6.so.1.0
unoconv-0.3-4.fc12.noarch requires openoffice.org-pyuno
urg-0.8.7-3.fc14.armv5tel requires libboost_filesystem-mt.so.1.44.0
valide-0.7-0.28.20101105svn609.fc13.armv5tel requires libvala.so.0
vecmath-0-2.20090922cvs.fc13.noarch requires java >= 1:1.6.0
vecmath1.2-1.14-5.fc13.noarch requires java >= 1:1.6.0
vegastrike-0.5.0-16.fc13.armv5tel requires libpython2.6.so.1.0
veusz-1.7-1.fc13.armv5tel requires python(abi) = 0:2.6
veusz-1.7-1.fc13.armv5tel requires libpython2.6.so.1.0
viking-0.9.91-3.fc13.armv5tel requires libgps.so.18
virt-manager-0.8.5-1.fc14.noarch requires libvirt-python >= 0:0.7.0
virt-v2v-0.3.2-2.fc13.noarch requires perl(:MODULE_COMPAT_5.10.1)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Virt)
virt-v2v-0.3.2-2.fc13.noarch requires perl(Sys::Guestfs::Lib)
virt-v2v-0.3.2-2.fc13.noarch requires perl-libguestfs >= 1:1.0.68
virt-v2v-0.3.2-2.fc13.noarch requires /usr/bin/qemu-img
vtk-examples-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
vtk-python-5.4.2-34.fc12.armv5tel requires python(abi) = 0:2.6
vtk-python-5.4.2-34.fc12.armv5tel requires libpython2.6.so.1.0
vtk-testing-5.4.2-34.fc12.armv5tel requires vtkdata = 0:5.4.2
w3c-markup-validator-1.1-1.fc14.noarch requires w3c-markup-validator-libs = 0:1.1
webkitgtk-1.1.22-1.fc13.armv5tel requires libicudata.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicui18n.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicuuc.so.42
webkitgtk-devel-1.1.22-1.fc13.armv5tel requires libicudata.so.42
weka-3.6.2-4.fc14.noarch requires java >= 1:1.6.0
weka-3.6.2-4.fc14.noarch requires javasqlite
wesnoth-1.8.4-1.fc14.armv5tel requires libboost_regex-mt.so.1.44.0
wesnoth-1.8.4-1.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
wesnoth-server-1.8.4-1.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
wesnoth-tools-1.8.4-1.fc14.armv5tel requires libboost_iostreams-mt.so.1.44.0
whysynth-dssi-20100922-1.fc13.armv5tel requires liblo.so.0
wordgroupz-0.3.1-3.fc13.noarch requires python(abi) = 0:2.6
xchat-gnome-0.26.1-10.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xchat-gnome-0.26.1-10.fc13.armv5tel requires libpython2.6.so.1.0
xiphos-3.1.4-1.fc13.armv5tel requires libsword-1.6.2.so
xiphos-3.1.4-1.fc13.armv5tel requires libgtkhtml-editor.so.0
xml-writer-0.2-2.fc12.noarch requires java >= 1:1.6.0
xmlenc-0.52-7.fc12.noarch requires java >= 1:1.6.0
xmms-acme-0.4.3-11.armv5tel requires xmms >= 0:1.0.0
xmms-acme-0.4.3-11.armv5tel requires libxmms.so.1
xmms-adplug-1.2-9.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires libxmms.so.1
xmms-alarm-0.3.7-10.fc12.armv5tel requires xmms
xmms-arts-0.7.1-9.armv5tel requires xmms-libs
xmms-flac-1.2.1-1.fc13.armv5tel requires libxmms.so.1
xmms-lirc-1.4-14.armv5tel requires xmms
xmms-modplug-2.05-18.fc14.armv5tel requires xmms-libs(armv5tel-32)
xmms-musepack-1.2-8.fc12.armv5tel requires libxmms.so.1
xmms-pulse-0.9.4-8.fc12.armv5tel requires libxmms.so.1
xmms-scrobbler-0.4.0-8.fc12.armv5tel requires xmms >= 0:1.2.4
xmms-speex-0.9.1-15.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires libxmms.so.1
xmms-xmp-3.3.0-2.fc13.armv5tel requires xmms
xmms-xosd-2.2.14-13.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires xmms
xmmsctrl-1.8-6.fc12.armv5tel requires libxmms.so.1
xom-1.0-5.6.fc14.noarch requires icu4j
xournal-0.4.5-3.fc13.armv5tel requires libpoppler-glib.so.4
1:xrootd-client-admin-perl-3.0.3-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
xsd-3.3.0-2.fc14.armv5tel requires libboost_regex.so.1.44.0
xsd-3.3.0-2.fc14.armv5tel requires libboost_system.so.1.44.0
xsd-3.3.0-2.fc14.armv5tel requires libboost_filesystem.so.1.44.0
xstream-1.3.1-1.fc14.noarch requires xpp3-minimal
xsynth-dssi-0.9.4-1.fc13.armv5tel requires liblo.so.0
xtvd-gui-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xtvd-lib-2.0.1-4.fc12.noarch requires java >= 1:1.6.0
xxdiff-tools-3.2-11.fc12.armv5tel requires python(abi) = 0:2.6
yakuake-2.9.7-1.fc14.armv5tel requires 4.5.2
yakuake-2.9.7-1.fc14.armv5tel requires kdebase4>=
yaz-3.0.49-2.fc14.armv5tel requires libicui18n.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicuuc.so.42
yaz-3.0.49-2.fc14.armv5tel requires libicudata.so.42
yum-rhn-plugin-1.1.3-2.fc14.noarch requires rhn-setup
zathura-0.0.8.2-1.fc13.armv5tel requires libpoppler-glib.so.4
zinnia-perl-0.06-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zinnia-python-0.06-4.fc13.armv5tel requires python(abi) = 0:2.6
zinnia-python-0.06-4.fc13.armv5tel requires libpython2.6.so.1.0
zoneminder-1.24.2-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
zynjacku-5-4.fc13.armv5tel requires python(abi) = 0:2.6
Complementos cargados:langpacks, presto, refresh-packagekit
Updated Packages:
asunder-2.0-1.fc14
------------------
boost-1.41.0-11.fc13
--------------------
cairo-clock-0.3.4-5.fc14
------------------------
* mar jun 01 2010 Benoît Marcelin <sereinity(a)online.fr> 0.3.4-5
- Increase release for 564959
easytag-2.1.6-5.fc14
--------------------
* vie abr 30 2010 Matthias Saou <http://freshrpms.net/> 2.1.6-5
- Actually apply the patch to remove x-directory/normal.
- Include patch to fix empty decription with flac pictures (#559828).
- Include patch to fix load from txt feature (#562317).
12 years
Re: [fedora-arm] ARM summit at Plumbers 2011
by Luke Kenneth Casson Leighton
russell, good to hear from you.
can i recommend, that although this is a really wide set of
cross-posting on a discussion that underpins pretty much everything
(except gnu/hurd and minix) because it's linux kernel, that, just as
steve kindly advised, we keep this to e.g.
cross-distro(a)lists.linaro.org? i'll be doing that from now on [after
this] perhaps including arm-netbooks as well, but will be taking off
all the distros.
so - folks, let's be clear: please move this discussion to
cross-distro(a)lists.linaro.org, and, if it's worthwhile discussing in
person, please do contact steve, so he can keep the slot open at the
Plumbers 2011 summit.
On Fri, Aug 26, 2011 at 5:35 PM, Russell King - ARM Linux
<linux(a)arm.linux.org.uk> wrote:
> On Fri, Aug 26, 2011 at 11:11:41AM -0500, Bill Gatliff wrote:
>> As such refactoring consolidated larger and larger chunks of kernel
>> code, new designs would gravitate towards those consolidated
>> implementations because they would be the dominant references.
>
> Don't bet on it. That's not how it works (unfortunately.)
>
> Just look at the many serial port inventions dreamt up by SoC designers -
> everyone is different from each other. Now consider: why didn't they use
> a well established standard 16550A or later design?
*sigh* because they wanted to save power. or pins. or... just be
bloody-minded.
> This "need to be different" is so heavily embedded in the mindset of the
> hardware people that I doubt "providing consolidated implementations"
> will make the blind bit of difference.
i think... russell... after they are told, repeatedly, "no, you can't
have that pile of junk in the mainline linux kernel, Get With The
Programme", you'd think that, cumulatively if they end up having to
maintain a 6mb patch full of such shit, they _might_ get with the
programme?
and if they don't, well.... who honestly cares? if they don't, it's
not *your* problem, is it? _they_ pay their employees to continue to
main a pile of junk, instead of spongeing off of _your_ time (and
linus's, and everyone else's in the Free Software Community).
> I doubt that hardware people
> coming up with these abominations even care one bit about what's in
> the kernel.
then don't f******g make it _your_ problem, or anyone else's, upstream!! :)
this is the core of the proposal that i have been advocating: if it's
"selfish", i.e. as bill and many many others clearly agree with "if
the bang-per-buck ratio is on the low side" then keep it *out* the
mainline linux kernel...
... and that really is the end of the matter.
the sensible people that i've been talking to about this are truly
puzzled as to why the principles of "cooperation and collaboration"
behind free software are just being... completely ignored, in
something as vital as The Linux Kernel, and they feel that it's really
blindingly obvious that the "bang-per-buck" ratio of patches to
mainline linux kernel need to go up.
so the core of the proposal that is the proposed
"selfish-vs-cooperation patch policy" is quite simple: if the patch
has _some_ evidence of collaboration, cooperation, refactoring,
sharing - *anything* that increases the bang-per-buck ratio with
respect to the core fundamental principles of Free Software - it goes
to the next phase [which is technical evaluation etc. etc.].
otherwise, it's absolutely out, regardless of its technical
correctness, and that's the end of it.
the linux kernel mainline source tree should *not* be a
dumping-ground for a bunch of selfish self-centred pathological
profit-mongering corporations whose employees end up apologising in
sheer embarrassment as they submit time-pressured absolutely shit
non-cooperative and impossible-to-maintain code.
you're not the only one, russell, who is pissed off at having to tidy
up SoC vendors' patches. there's another ARM-Linux guy, forget his
name, specialises in samsung: two years ago he said that he was
getting fed up with receiving yet another pile of rushed junk... and
that's *just* him, specialising in samsung ARM SoCs!
we're just stunned that you, the recipient of _multiple_ SoC vendors
piles of shite, have tolerated this for so long!
anyway - i've endeavoured to put together some examples, in case
that's not clear: i admit it's quite hard to create clear examples,
and would greatly appreciate help doing so. i've had some very much
appreciated help from one of the openwrt developers (thanks!)
clarifying by creating another example that's similar to one which
wasn't clear.
http://lkcl.net/linux/linux-selfish.vs.cooperation.html
this should be _fun_, guys. it shouldn't be a chore. if you're not
enjoying it, and not being paid, tell the people who are clearly
taking the piss to f*** off!
but - i also would like to underscore this with another idea: "lead
by example" (which is why i've kept the large cross-distro list) we -
the free software community - are seeing tons of nice lovely android
tablets, tons of nice lovely expensive bits of big iron and/or x86
laptops, and only in very small areas (OpenRD Ultimate, GuruPlug,
Pandaboard, IMX53QSB, Origen) are our needs for actual hardware which
_we_ want (and i'm *not* being presumptious here - i'm inviting people
to *say* what they want) just aren't being met.
who wants a bloody 800x600 VIA VunnnderMedia ARM9 350mhz tablet, to
do linux kernel and gnu/linux distribution development on, _anyway_???
and who the hell wants only 512mb of RAM (iMX51). and who in their
right fucking mind dreamed up that 1024x600 LCD panel size?
so here's what i propose:
we, The Free Software Community, want Our Figureheads (linus, bruce,
alan, russell) to call us to arms (so to speak), to band together a la
KickStarter http://kickstarter.org (or other), so that we can create
the hardware platform(s) that *we* want, and, in the process, can take
the opportunity to sort out the Linux Kernel mainline tree in the
process (learning by doing, doing by leading, leading by example etc.
etc.)
apart from anything - and this goes to you, linus and russell - i
think that you would be much happier taking a break from doing git
patch conflict management, _actually_ getting down and dirty with some
real device driver writing, and i think you'd be much happier doing
that knowing that the device you were writing those kernel drivers for
was something that actual real free software developers really really
wanted.
now, as i said above: i don't _dare_ to presume that i know what
actual real free software developers want, in terms of hardware, but
there's a small sampling on the debian-arm mailing list... let me drop
you roughly in the middle of it, here:
http://lists.debian.org/debian-arm/2011/08/msg00045.html mostly that
was focussed around those little engineering boards (panda, IMX53QSB,
origen etc.) but my aim here is to get people to think:
what hardware, which is fully free-software-compliant, that you would
buy and recommend to others, that could also be attractive in
mass-volume, do _you_ want to see, that would be useful to _you_?
i'm getting fed up of seeing stuff come out of factories that's
completely useless. or gpl-violating. and/or requires
reverse-engineering.
http://lkcl.net/linux/ideal-vs-reality.of.product.development.html for
some background.
as a free software developer, what hardware do YOU want?
answers on this one to arm-netbooks(a)lists.phcomp.co.uk (subscription
required, please remember)
and, lastly - linus, russell, alan, bruce: there are people out there
who would really appreciate if you could take up this call. not just
me. we'd like to see you using your skills, and actually be happy and
enjoy doing nitty-gritty linux kernel development, to the benefit of
the free software community, instead of turning into patch
junkies^H^H^H^H^H^Hmonkeys^H^H^H^H^H^H^Hmanagers.
l.
12 years