ppc.koji.fedoraproject.org back online
by Josh Boyer
Hi All,
As the subject says, the buildsystem is back online. It has been
upgraded to koji 1.6.0 and the two builder instances are running a new
enough kernel to build for F14 now. They should also be able to build
from the Fedora git repos as well.
I would like to thank Stephen Smoogen and Dennis Gilmore for their
extraordinary help in getting the machines rebuilt and accessible.
Let the building begin.
josh
12 years, 9 months
Fedora 15 ppc
by Adrian Reber
I started to rebuild current rawhide for ppc (and a bit for ppc64).
I am now at the point where I have all packages required for
"yum groupinstall buildsys-build" rebuilt from rawhide.
The biggest problems so far was python (and python3), which could no
longer be built on Linux ppc:
https://bugzilla.redhat.com/show_bug.cgi?id=661510
http://bugs.python.org/issue10655
But that is fixed now. I will continue to rebuild more and more packages
for ppc and ppc64 and will soon post the results here.
Adrian
12 years, 9 months
building PPC Fedora packages, from the beginning
by Hollis Blanchard
I don't know anything about the Fedora development process. So can
someone point me to a page describing how it's supposed to work? I'm
looking for something like this:
1. Go to http://ppc.koji.fedoraproject.org/koji/builds?order=-state
and pick a broken package.
2. Run fedpkg something something to get the source.
3. Patch it.
4. Run koji something something to build with your patch.
5. Once it works, send patch somewhere.
Do I need an account in the koji web interface? When I click the
"login" link I get SSL errors.
-Hollis
12 years, 9 months
plymouth on ppc patch
by Adrian Reber
To build plymouth (plymouth-0.8.4-0.20101119.2) on ppc I had to create
following patch. Before sending it to the maintainer I wanted to present
it here to make sure it is the correct way to fix it.
PAGE_SIZE seems to be not defined on ppc and following patch fixes
building plymouth:
@@ -46,7 +46,7 @@
#include <time.h>
#include <linux/fs.h>
#include <linux/vt.h>
-
+#include <unistd.h>
#include <dlfcn.h>
#include "ply-logger.h"
@@ -971,6 +971,7 @@
char *command_line;
ssize_t bytes_read;
int fd;
+ int ps;
ssize_t i;
path = NULL;
@@ -986,8 +987,9 @@
goto error;
}
- command_line = calloc (PAGE_SIZE, sizeof (char));
- bytes_read = read (fd, command_line, PAGE_SIZE - 1);
+ ps = getpagesize();
+ command_line = calloc (ps, sizeof (char));
+ bytes_read = read (fd, command_line, ps - 1);
if (bytes_read < 0)
{
ply_trace ("Could not read %s: %m", path);
Is that the correct way to solve it?
Adrian
12 years, 9 months
Re: Fedora-ppc Digest, Vol 74, Issue 1
by Robert Hagan
Thanks Adrian.. your kind work is most appreciated and I am sure you
will be well rewarded. I look forward to your results.. Thanks very
much. Robert.
On Sat, Dec 11, 2010 at 8:00 PM,
<fedora-ppc-request(a)lists.infradead.org> wrote:
> Send Fedora-ppc mailing list submissions to
> fedora-ppc(a)lists.infradead.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.infradead.org/mailman/listinfo/fedora-ppc
> or, via email, send a message with subject or body 'help' to
> fedora-ppc-request(a)lists.infradead.org
>
> You can reach the person managing the list at
> fedora-ppc-owner(a)lists.infradead.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Fedora-ppc digest..."
>
>
> Today's Topics:
>
> 1. Fedora 15 ppc (Adrian Reber)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sat, 11 Dec 2010 09:14:58 +0100
> From: Adrian Reber <adrian(a)lisas.de>
> To: fedora-ppc(a)lists.infradead.org
> Subject: Fedora 15 ppc
> Message-ID: <20101211081457.GA1018(a)lisas.de>
> Content-Type: text/plain; charset=us-ascii
>
> I started to rebuild current rawhide for ppc (and a bit for ppc64).
>
> I am now at the point where I have all packages required for
> "yum groupinstall buildsys-build" rebuilt from rawhide.
>
> The biggest problems so far was python (and python3), which could no
> longer be built on Linux ppc:
>
> https://bugzilla.redhat.com/show_bug.cgi?id=661510
> http://bugs.python.org/issue10655
>
> But that is fixed now. I will continue to rebuild more and more packages
> for ppc and ppc64 and will soon post the results here.
>
> Adrian
>
>
>
> ------------------------------
>
> _______________________________________________
> Fedora-ppc mailing list
> Fedora-ppc(a)lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/fedora-ppc
>
>
> End of Fedora-ppc Digest, Vol 74, Issue 1
> *****************************************
>
--
Robert J. Hagan
HaganRJ(a)State.gov
Mil: robert.hagan(a)iraq.centcom.mil
robert.j.hagan(a)ugov.gov
DSN: 318-864 0703, COM: +1 240-553-9212
mobile: AsiaCell: 011 964 7808499797, T-mobile +1 401 219 1213
GvSMS: +1 502 286 9775; Blackberry SMS +1 571-243-9390
SIPR-only: Robert.Hagan(a)s-iraq.centcom.smil.mil
12 years, 9 months