Re: RFC: libinieditor-java

2005-11-10 Thread Wolfgang Baer

Hi Aldous,

Aldous D. Penaranda wrote:

Hello,

[...]

I was wondering if anyone else would have time to look at it and give
some comments. If the packaging seems okay, I would also like to ask
for a sponsor if anyone would be willing.


(1)
Architecture: any

Java packages are Architecture: all ! This change will also mean to
use Build-Depends-Indep and to move the build stuff into the
binary-indep: target in the debian/rules file.

(2)
Depends: gij | kaffe | sablevm | java1-runtime | java2-runtime

IMHO its enough to depend on one concrete java1-runtime and most
packages in debian use kaffe there (but thats a personal viewpoint)

Depends: kaffe | java1-runtime | java2-runtime


Regards,
Wolfgang


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFC: libinieditor-java

2005-11-10 Thread Michael Koch
On Thu, Nov 10, 2005 at 09:13:01AM +0100, Wolfgang Baer wrote:
> Hi Aldous,
> 
> Aldous D. Penaranda wrote:
> >Hello,
> [...]
> >I was wondering if anyone else would have time to look at it and give
> >some comments. If the packaging seems okay, I would also like to ask
> >for a sponsor if anyone would be willing.
> 
> (1)
> Architecture: any
> 
> Java packages are Architecture: all ! This change will also mean to
> use Build-Depends-Indep and to move the build stuff into the
> binary-indep: target in the debian/rules file.
> 
> (2)
> Depends: gij | kaffe | sablevm | java1-runtime | java2-runtime
> 
> IMHO its enough to depend on one concrete java1-runtime and most
> packages in debian use kaffe there (but thats a personal viewpoint)
> 
> Depends: kaffe | java1-runtime | java2-runtime

Its better to depend on kaffe (>= 1.1.5) as older kaffe versions were
too broken kaffe kaffe 1.0.x was not really usable at all.


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RFC: libinieditor-java

2005-11-10 Thread Wolfgang Baer

Michael Koch wrote:

On Thu, Nov 10, 2005 at 09:13:01AM +0100, Wolfgang Baer wrote:

[...]

(2)
Depends: gij | kaffe | sablevm | java1-runtime | java2-runtime

IMHO its enough to depend on one concrete java1-runtime and most
packages in debian use kaffe there (but thats a personal viewpoint)

Depends: kaffe | java1-runtime | java2-runtime



Its better to depend on kaffe (>= 1.1.5) as older kaffe versions were
too broken kaffe kaffe 1.0.x was not really usable at all.


Right. However don't miss the epoch as otherwise its useless.

kaffe (>= 2:1.1.5)

Wolfgang


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



I have a problem help me

2005-11-10 Thread Avik Chatterjee
Hello,
   I'm avik.I have been facing a problem in a
typical Java program.The problem is...

Write a program in Java(Application not Applet)
that'll print the following:
   *
  ***
 *
***
I have done this but not more
class star 
{
  public static void main(String args[])
  {
for(int i=0;i<=10;i++) {
 for(int j=0;j<=i;j++)
 {
   System.out.print("*");  
 }
System.out.println();
}
  }
}
please help me.



__ 
Enjoy this Diwali with Y! India Click here 
http://in.promos.yahoo.com/fabmall/index.html


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: I have a problem help me

2005-11-10 Thread Vardan Gevorgyan
On Thursday 10 November 2005 09:53 pm, Avik Chatterjee wrote:
> ***
public class Starts {
public static void main(String[] args) {
printStarts(7);
}

public static void printStarts(int count) {
int startsCount = 1;
int spaceCount = count/2;

while(startsCount <= count) {
for(int i = 0; i < spaceCount; i++)
System.out.print(" ");
for(int p = 1; p <= startsCount; p++)
System.out.print("*");
System.out.println();
startsCount += 2;
spaceCount--;
}
}
}


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]