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, 5 months
Slow USB storage on A9 processors
by Peter Robinson
Hey All,
I know it was discussed a while ago how the USB storage on PandaBoards
was slow, not sure what the resolution was but saw this article on LWN
that looks like our problem there for those that might not have seen
the post elsewhere and are interested.
https://lwn.net/Articles/457145/
Peter
10 years, 10 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, 6 months
armv5tel F15 toolchain update
by Daniel Drake
Hi,
quick update as I know things are waiting on this..
gcc-4.6.1 bootstrap built ok (with java as usual, without cloog due to
circular dependency)
then built libtool-2.4-6.fc15 which goes along with it
then built cloog
So far so good.
Now rebuilding the real, unmodified gcc-4.6.1 from f15 mainline.
Should be done in 2-3 days.
Then we will be good to continue with building the rest of the toolchain.
Daniel
11 years, 8 months
ARM F-14 Branched report: 20110929 changes
by Fedora compose checker
Compose started at jue sep 29 15:54:51 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-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-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
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.11.1-4.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
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
TVAnytimeAPI-1.3-6.fc12.noarch requires java >= 1:1.6.0
TnL-data-071111-5.fc12.noarch requires TnL >= 0:071111
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
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
appframework-1.03-6.fc12.noarch requires java >= 1:1.6.0
appliance-tools-004.5-1.fc14.noarch requires qemu-img
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)
autobuild-applet-1.0.3-10.fc12.armv5tel requires libpython2.6.so.1.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
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
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
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
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
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
cglib-2.2-6.fc13.noarch requires java >= 0:1.6.0
choqok-libs-1.0-1.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
cinepaint-libs-0.22.1-19.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
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
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-4.fc14.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)
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-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
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-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
e_dbus-0.5.0.050-4.fc13.armv5tel requires libevas.so.0
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
ecore-0.9.9.050-8.fc13.armv5tel requires libevas.so.0
edje-0.9.9.050-7.fc13.armv5tel requires libevas.so.0
edje-0.9.9.050-7.fc13.armv5tel requires libembryo.so.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
emotion-0.1.0.042-6.fc13.armv5tel requires libevas.so.0
epiphany-2.30.2-1.fc13.armv5tel requires libwebkit-1.0.so.2
epiphany-2.30.2-1.fc13.armv5tel requires libgirepository-1.0.so.0
epiphany-extensions-2.30.1-2.fc13.armv5tel requires libwebkit-1.0.so.2
epsilon-0.3.0.012-10.fc13.armv5tel requires libevas.so.0
epsilon-xine-0.3.0.012-10.fc13.armv5tel requires libevas.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-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.89-21.armv5tel requires smart
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
fldigi-3.20.32-1.fc13.armv5tel requires libxmlrpc_server++.so.6
fldigi-3.20.32-1.fc13.armv5tel requires libxmlrpc_server_abyss++.so.6
fldigi-3.20.32-1.fc13.armv5tel requires libxmlrpc++.so.6
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
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
2:gimp-help-browser-2.6.10-5.fc14.armv5tel requires libwebkit-1.0.so.2
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
gmpc-0.19.1-3.1.fc14.armv5tel requires libwebkit-1.0.so.2
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-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
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 libjpeg.so.62(LIBJPEG_6.2)
gtk-redshift-1.6-3.fc13.armv5tel requires python(abi) = 0:2.6
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
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-base-2010.0.0-6.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
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
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
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
kcm-gtk-0.5.3-7.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
kcm_touchpad-0.3.1-6.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
1:kde-plasma-networkmanagement-0.9-0.35.20110221.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
kdeartwork-4.5.5-1.fc13.armv5tel requires kdebase-workspace >= 0:4.5.5
kdeartwork-kxs-4.5.5-1.fc13.armv5tel requires kdebase-workspace >= 0:4.5.5
6:kdebase-4.5.5-1.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
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.2-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
kdebase-workspace-4.5.2-1.fc14.armv5tel requires libcln.so.6
kdebase-workspace-4.5.2-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
kdebase-workspace-python-applet-4.5.2-1.fc14.armv5tel requires PyKDE4 >= 0:4.5.2
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 libjpeg.so.62(LIBJPEG_6.2)
kdelibs3-devel-3.5.10-23.fc13.armv5tel requires libkdnssd-devel
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdebase-workspace >= 0:4.5.5
6:kdemultimedia-4.5.5-1.fc13.armv5tel requires kdelibs4(armv5tel-32) >= 0:4.5.5
7:kdenetwork-4.5.5-1.fc13.armv5tel requires kdebase-runtime >= 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-4.4.10-1.fc13.armv5tel requires kdebase-runtime >= 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)
7:kdetoys-4.5.5-1.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
6:kdeutils-4.5.5-1.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
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.2-1.fc14.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
kobby-1.0-0.3.b4.fc13.armv5tel requires libinfinity-0.3.so.0
kobby-1.0-0.3.b4.fc13.armv5tel requires libinftext-0.3.so.0
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-4.0.5-1.fc13.armv5tel requires kdebase-runtime >= 0:4.5.5
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
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
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
libqalculate-0.9.7-2.fc13.armv5tel requires libcln.so.6
libqalculate-devel-0.9.7-2.fc13.armv5tel requires cln-devel
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.fc13.armv5tel requires libgladeui-1.so.9
link-grammar-java-4.6.7-3.fc14.armv5tel requires java >= 1:1.6.0
liveusb-creator-3.9.2-2.fc14.noarch requires syslinux
log4j-1.2.16-3.fc14.noarch requires java >= 1:1.6.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-SDL_image-1.2.10-1.fc13.noarch requires mingw32(libpng12-0.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 libmatroska.so.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 libmatroska.so.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
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)
nachocalendar-0.23-3.fc12.noarch requires java >= 1:1.6.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-8.fc14.armv5tel requires redhat-lsb
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
pAgenda-3.2-5.fc12.noarch requires python(abi) = 0:2.6
patcher-0.6-3.fc13.noarch 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-Gtk2-MozEmbed-0.08-6.fc14.29.armv5tel requires gecko-libs = 0:1.9.2.22
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-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-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-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)
3:perl-version-0.82-2.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
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-gd-5.3.3-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
piccolo2d-1.3-5.fc14.noarch requires eclipse-swt
pigment-python-0.3.12-2.fc12.armv5tel requires python(abi) = 0:2.6
pino-0.2.11-1.fc13.armv5tel requires libwebkit-1.0.so.2
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
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
postgresql-plparrot-0.04-5.fc13.armv5tel requires libparrot.so.3.0.0
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
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
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
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-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-oauth2-1.2.1-1.fc13.noarch requires python(abi) = 0:2.6
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-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-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-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
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
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
quadkonsole-2.0.2-5.fc12.armv5tel requires kdebase3
raidem-music-1.0-4.fc12.noarch requires raidem >= 0:0.3.1
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
revisor-cli-2.2-2.fc14.noarch requires anaconda-runtime
revisor-cli-2.2-2.fc14.noarch requires custom-kickstarts
revisor-cobbler-2.2-2.fc14.noarch requires koan
rhnsd-4.9.3-1.fc14.armv5tel requires rhn-check >= 0:0.0.8
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 R-core = 0:2.13.0
rpy-2.0.8-8.fc13.armv5tel requires libpython2.6.so.1.0
rtorrent-0.8.6-3.fc13.armv5tel requires libtorrent.so.11
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)
rubygem-zoom-0.4.1-7.fc12.armv5tel requires libyaz.so.3
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
scout-0.4-6.fc13.noarch requires python(abi) = 0:2.6
seed-2.30.0-2.fc13.armv5tel requires libwebkit-1.0.so.2
seed-2.30.0-2.fc13.armv5tel requires libgirepository-1.0.so.0
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
skanlite-0.4-1.fc13.armv5tel requires kdelibs4 >= 0:4.5.5
skinlf-6.7-10.cvs20091205.fc13.noarch requires java >= 1:1.6.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
spring-maps-default-0.1-6.fc12.noarch requires spring
springlobby-0.95-1.fc14.armv5tel 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
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
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
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-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.17-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
ufraw-cinepaint-0.17-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
ufraw-gimp-0.17-1.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
unbound-munin-1.4.5-2.fc14.armv5tel requires munin-node
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-18.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
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-5.6.0-36.fc14.armv5tel requires libjpeg.so.62(LIBJPEG_6.2)
weka-3.6.2-4.fc14.noarch requires java >= 1:1.6.0
weka-3.6.2-4.fc14.noarch requires javasqlite
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
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
xom-1.0-5.6.fc14.noarch requires icu4j
xstream-1.3.1-1.fc14.noarch requires xpp3-minimal
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
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
zoneminder-1.24.2-4.fc13.armv5tel requires perl(:MODULE_COMPAT_5.10.1)
Complementos cargados:langpacks, presto, refresh-packagekit
New package: aide-0.14-5.fc14
Intrusion detection environment
New package: ecl-10.4.1-1.fc14
Embeddable Common-Lisp
New package: erlang-erlydtl-0.6.0-1.fc14
Erlang implementation of the Django Template Language.
New package: rakudo-star-0.0.2010.09_2.8.0-1.fc14
Rakudo, Perl6-modules, Blizkost and documentation
New package: springlobby-0.95-1.fc14
A lobby client for the spring RTS game engine
New package: tkgate-2.0-10.beta10.fc14
An event driven digital circuit simulator
New package: xca-0.8.1-1400.fc14
Graphical X.509 certificate management tool
Updated Packages:
389-adminutil-1.1.10-2.fc14
---------------------------
* vie abr 02 2010 Caolán McNamara <caolanm(a)redhat.com> - 1.1.10-2
- rebuild for icu 4.4
11 years, 8 months
Status of SRPMs in stage4, with pretty colors
by DJ Delorie
Based on an internal mirror of the various repositories (i.e. it might
be slightly out of date), I wrote a script to compare the SRPMs
(diff'ing the contents) generated during stage4 with SRPMs from other
sources (mostly, F15 official ones, but also from SRPMs still in the
builder queues). Color coded with diffs and stats:
http://djdelorie.fedorapeople.org/armv7-srpms.html
(uses javascript to show/hide diffs)
Summary:
99 SRPMs are of the .0.armN variety (only 5 I couldn't find the
upstream to diff against)
3 SRPMs in stage 4 have the same NVR as GA/updates BUT DIFFER IN
CONTENT (glibc and gdesklets vs GA, crash has changelog diffs vs
development)
5 SRPMs match rawhide
11 SRPMs show up in the builder queues ("others") but not upstream
0 SRPMs that show up in the builder queues differ in content
30 SRPMs I couldn't find outside stage4 (might be from an older
rawhide)
4704 SRPMs match GA or updates (name and content match)
Note: the HTML file is about 1 MB
11 years, 8 months
Arm on Qualcomm 7200A
by Kellerman
Hi people, before all sorry for my bad english, I am latinoamerican
Ambassador, especifically in Venezuelan, I have a smartphone Huawei, Model
UM840. Actually is smartphone leader in Movilnet Carrier.
My idea is: Run Fedora in um840 to promote Fedora in my country.
um840 use a ARM11 Family processor, Qualcomm 7200A at 528Mhz with 198mb RAM.
The phone have Android OS (2.1).
if Android is based in Linux Kernel, then I think in port Fedora Linux to
phone.
but I have two problems.
1) I don't know a bootloader to dual boot (Android + Fedora)
2) I don't know How to port Fedora 12 Arm in readable binary image for
smartphone.
Again, sorry for my bad english & thanks.
Regards.
Kellerman Rivero (kelito)
Fedora Ambassador
11 years, 8 months
Platform "arm" requested
by Jon Masters
Folks,
I have requested that the platform "arm" be created in Bugzilla after
discussing this with David last week. We can use it as a catch-all to
reduce the confusion as some users don't know armv7 from arm9 or arm11!
We can of course add others, but I like "arm" to be in there.
Jon.
11 years, 8 months