public inbox for rhug-rhats@sourceware.org
 help / color / mirror / Atom feed
* [naoko] PPC packages available
@ 2003-11-14 10:02 Gary Benson
  2003-11-18  0:46 ` Ray Auge
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Gary Benson @ 2003-11-14 10:02 UTC (permalink / raw)
  To: rhug-rhats

I just made the PPC packages available.  Let me know if they work!

Naoko is a subset of the RHUG packages that have been repackaged for
eventual inclusion in Red Hat Linux, basically Ant, Tomcat, and their
dependencies.  The packages are built for Red Hat Linux 9 and are
available at http://people.redhat.com/gbenson/naoko/.  You can use yum
on this URL.

Gary

[ gbenson@redhat.com ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [naoko] PPC packages available
  2003-11-14 10:02 [naoko] PPC packages available Gary Benson
@ 2003-11-18  0:46 ` Ray Auge
  2003-11-18  7:50   ` Paul Nasrat
  2003-11-18  6:20 ` [naoko] PPC rpms and Yellow Dog Linux Ray Auge
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Ray Auge @ 2003-11-18  0:46 UTC (permalink / raw)
  To: Gary Benson; +Cc: rhug-list

[Off topic] You wouldn't happen to have a build of Eclipse hiding in
there somewhere too, would you...

Thanks either way,
Ray 


On Fri, 2003-11-14 at 05:02, Gary Benson wrote:
> I just made the PPC packages available.  Let me know if they work!
> 
> Naoko is a subset of the RHUG packages that have been repackaged for
> eventual inclusion in Red Hat Linux, basically Ant, Tomcat, and their
> dependencies.  The packages are built for Red Hat Linux 9 and are
> available at http://people.redhat.com/gbenson/naoko/.  You can use yum
> on this URL.
> 
> Gary
> 
> [ gbenson@redhat.com ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [naoko] PPC rpms and Yellow Dog Linux
  2003-11-14 10:02 [naoko] PPC packages available Gary Benson
  2003-11-18  0:46 ` Ray Auge
@ 2003-11-18  6:20 ` Ray Auge
  2003-11-19 16:05 ` Ray Auge
  2003-11-19 16:05 ` [naoko] PPC packages available Ray Auge
  3 siblings, 0 replies; 6+ messages in thread
From: Ray Auge @ 2003-11-18  6:20 UTC (permalink / raw)
  To: rhug-list

Status of Naoko on Yellow Dog Linux 3.0.1, based on those PPC packages
(this all from a rookie, mind you, not much skill at real testing)

	1) force install of redhat-java-rpm-scripts
		(YDL has coreutils split into three seperate rpms, so 		deps failed,
but all the required tools are there and 		apparently of good versions)

	>rpm -i --nodeps redhat-java-rpm-scripts-1.0.2-2.noarch.rpm
	
	2) installed Naoko (in order)
		- junit, libgcc-ssa, libgcj-ssa
		- gcc-java-ssa, gcc-ssa, libgcj-ssa-devel
		- jaf
		- jakarta-regexp
		- cup
		- xerces-j, commons-logging, commons-collections
		- servletapi, javamail, bcel, commons-beanutils
		- commons-fileupload, xalan-j, commons-digester
		- mx4j, mysql-jdbc, struts, commons-modeler
		- tomcat, ant-libs, tomcat-libs, libstdc++-ssa

	3) first test was to compile something simple(with at least a couple
imports) with gcj:

////////////////////////////////////////////////////////
import java.util.Calendar;
import java.util.GregorianCalendar;

public class TestNaoko{

	private Calendar cal;
	
	public TestNaoko(){
		cal = new GregorianCalendar();
	}
	
	public String getSystemDate(){
		int year = cal.get(Calendar.YEAR);
		int month = cal.get(Calendar.MONTH);
		String mon = "";
		int day = cal.get(Calendar.DAY_OF_MONTH);
		int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
		String dow = "";
		switch(month){
			...
		}
		switch(dayOfWeek){
			...
		}
		return new String(dow + ", " + mon + " " + day + ", " + year);
	}
	
	public static void main(String[] args){
		TestNaoko t = new TestNaoko();
		System.out.println(t.getSystemDate());
	}

}
//////////////////////////////////////////////////////////////
compiled with:
	>gcj-ssa TestNaoko.java --main=TestNaoko -o TestNaoko
	>./TestNaoko
	Tuesday, November 18, 2003


	4) did further tests against xerces-j like this (arbitrary code):
	>gcj-ssa ServiceTracer.java Mapper.java MapTracer.java MapperRule.java
ActionNode.java --main=ServiceTracer -o ServiceTracer -L/usr/lib
-l-org-w3c-dom

	- outcome was good.

I'll assume that it's all good from here... Thank you very much Gary.
Now I can continue my Thesis with confidence.



PS: How do I assemble files arranged in a package:

	/last/
	/last/map/
	/last/map/Mapper.java
	/last/map/MapperRule.java
	/last/map/MapTracer.java
	/last/map/ServiceMapper.java
	/last/map/ActionNode.java

I tried:

>gcj-ssa last/map/*.java --main=last.map.Mapper -o Mapper -L/usr/lib
-l-org-w3c-dom

and get

>./Mapper
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)


Thanks

Ray

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [naoko] PPC packages available
  2003-11-18  0:46 ` Ray Auge
@ 2003-11-18  7:50   ` Paul Nasrat
  0 siblings, 0 replies; 6+ messages in thread
From: Paul Nasrat @ 2003-11-18  7:50 UTC (permalink / raw)
  To: rhug-list

On Mon, Nov 17, 2003 at 07:46:33PM -0500, Ray Auge wrote:
> [Off topic] You wouldn't happen to have a build of Eclipse hiding in
> there somewhere too, would you...

sources.redhat.com/eclipse/

I tried it on FC1 to no joy - may have to rebuild though.

Paul

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [naoko] PPC packages available
  2003-11-14 10:02 [naoko] PPC packages available Gary Benson
                   ` (2 preceding siblings ...)
  2003-11-19 16:05 ` Ray Auge
@ 2003-11-19 16:05 ` Ray Auge
  3 siblings, 0 replies; 6+ messages in thread
From: Ray Auge @ 2003-11-19 16:05 UTC (permalink / raw)
  To: Gary Benson; +Cc: rhug-list

[Off topic] You wouldn't happen to have a build of Eclipse hiding in
there somewhere too, would you...

Thanks either way,
Ray 


On Fri, 2003-11-14 at 05:02, Gary Benson wrote:
> I just made the PPC packages available.  Let me know if they work!
> 
> Naoko is a subset of the RHUG packages that have been repackaged for
> eventual inclusion in Red Hat Linux, basically Ant, Tomcat, and their
> dependencies.  The packages are built for Red Hat Linux 9 and are
> available at http://people.redhat.com/gbenson/naoko/.  You can use yum
> on this URL.
> 
> Gary
> 
> [ gbenson@redhat.com ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [naoko] PPC rpms and Yellow Dog Linux
  2003-11-14 10:02 [naoko] PPC packages available Gary Benson
  2003-11-18  0:46 ` Ray Auge
  2003-11-18  6:20 ` [naoko] PPC rpms and Yellow Dog Linux Ray Auge
@ 2003-11-19 16:05 ` Ray Auge
  2003-11-19 16:05 ` [naoko] PPC packages available Ray Auge
  3 siblings, 0 replies; 6+ messages in thread
From: Ray Auge @ 2003-11-19 16:05 UTC (permalink / raw)
  To: rhug-list

Status of Naoko on Yellow Dog Linux 3.0.1, based on those PPC packages
(this all from a rookie, mind you, not much skill at real testing)

	1) force install of redhat-java-rpm-scripts
		(YDL has coreutils split into three seperate rpms, so 		deps failed,
but all the required tools are there and 		apparently of good versions)

	>rpm -i --nodeps redhat-java-rpm-scripts-1.0.2-2.noarch.rpm
	
	2) installed Naoko (in order)
		- junit, libgcc-ssa, libgcj-ssa
		- gcc-java-ssa, gcc-ssa, libgcj-ssa-devel
		- jaf
		- jakarta-regexp
		- cup
		- xerces-j, commons-logging, commons-collections
		- servletapi, javamail, bcel, commons-beanutils
		- commons-fileupload, xalan-j, commons-digester
		- mx4j, mysql-jdbc, struts, commons-modeler
		- tomcat, ant-libs, tomcat-libs, libstdc++-ssa

	3) first test was to compile something simple(with at least a couple
imports) with gcj:

////////////////////////////////////////////////////////
import java.util.Calendar;
import java.util.GregorianCalendar;

public class TestNaoko{

	private Calendar cal;
	
	public TestNaoko(){
		cal = new GregorianCalendar();
	}
	
	public String getSystemDate(){
		int year = cal.get(Calendar.YEAR);
		int month = cal.get(Calendar.MONTH);
		String mon = "";
		int day = cal.get(Calendar.DAY_OF_MONTH);
		int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
		String dow = "";
		switch(month){
			...
		}
		switch(dayOfWeek){
			...
		}
		return new String(dow + ", " + mon + " " + day + ", " + year);
	}
	
	public static void main(String[] args){
		TestNaoko t = new TestNaoko();
		System.out.println(t.getSystemDate());
	}

}
//////////////////////////////////////////////////////////////
compiled with:
	>gcj-ssa TestNaoko.java --main=TestNaoko -o TestNaoko
	>./TestNaoko
	Tuesday, November 18, 2003


	4) did further tests against xerces-j like this (arbitrary code):
	>gcj-ssa ServiceTracer.java Mapper.java MapTracer.java MapperRule.java
ActionNode.java --main=ServiceTracer -o ServiceTracer -L/usr/lib
-l-org-w3c-dom

	- outcome was good.

I'll assume that it's all good from here... Thank you very much Gary.
Now I can continue my Thesis with confidence.



PS: How do I assemble files arranged in a package:

	/last/
	/last/map/
	/last/map/Mapper.java
	/last/map/MapperRule.java
	/last/map/MapTracer.java
	/last/map/ServiceMapper.java
	/last/map/ActionNode.java

I tried:

>gcj-ssa last/map/*.java --main=last.map.Mapper -o Mapper -L/usr/lib
-l-org-w3c-dom

and get

>./Mapper
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)
java.lang.NullPointerException
   at _Jv_equalUtf8Consts(_Jv_Utf8Const, _Jv_Utf8Const)
(/lib/ssa/libgcj.so.4.0.0)
   at last.map.MapTracer.getMapRules() (Unknown Source)
   at last.map.Mapper.Mapper(java.lang.String) (Unknown Source)
   at last.map.Mapper.main(java.lang.String[]) (Unknown Source)


Thanks

Ray

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-11-19 16:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-14 10:02 [naoko] PPC packages available Gary Benson
2003-11-18  0:46 ` Ray Auge
2003-11-18  7:50   ` Paul Nasrat
2003-11-18  6:20 ` [naoko] PPC rpms and Yellow Dog Linux Ray Auge
2003-11-19 16:05 ` Ray Auge
2003-11-19 16:05 ` [naoko] PPC packages available Ray Auge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).