Re: [Rdkit-discuss] RDKit C wrappers?

2020-04-27 Thread Stephan Michels

> Am 27.04.2020 um 09:58 schrieb Axel Pahl :
> 
> yes, I agree that manual wrapping would be a ton of work (and hard to 
> maintain).
> My question was not necessarily with a concrete language in mind, but since 
> you are asking (;-)), I am really excited about the Swift programming 
> language lately. Open Source, nice syntax, developed by Apple and endorsed by 
> Google as the next generation platform for machine learning ("Swift for 
> Tensorflow", 
> https://tryolabs.com/blog/2020/04/02/swift-googles-bet-on-differentiable-programming/
>  
> <https://tryolabs.com/blog/2020/04/02/swift-googles-bet-on-differentiable-programming/>).

Unfortunately Swift doesn’t support C++ yet. I use RDKit in my Swift projects 
by using an Objective-C Framework, where I wrap all necessary classes, which I 
need. These wrappers are far from complete. But I get my things done and it is 
cross compiled for x86 and arm.

Regards,
Stephan Michels

___
Rdkit-discuss mailing list
Rdkit-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rdkit-discuss


Re: adding something to a setter

2011-10-06 Thread Stephan Michels
I use KVO to execute custom code if a property has changed.

[self addObserver:self forKeyPath:@graphics 
options:(NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld) 
context:self];

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object 
change:(NSDictionary *)change context:(void *)context {
if (context != self) {
[super observeValueForKeyPath:keyPath ofObject:object change:change 
context:context];
}

if ([keyPath isEqualToString:@graphics]) {
[self setNeedsDisplay:YES];
}
}

AFAIK the observe method will not be executed instantaneously, but on the other 
side setNeedsDisplay has also a
deferred execution.

Stephan.

Am 06.10.2011 um 13:28 schrieb Torsten Curdt:

 The property syntax is great until you need one more thing.
 
 Think of a NSView and that view displays a value.
 
 @synthesize value;
 
 Now you also want to setNeedsDisplay: when a new value is set. So one
 can override the setter.
 
 - (void)setValue:(NSString*)theValue
 {
   ...
   [self setNeedsDisplay:YES];
 }
 
 but - you would have to implement the setter yourself. No big deal -
 but... it sucks.
 Is there a way to forward the setting to the originally synthesized
 setter? Super cannot be it.
 
 Of course one could add another selector that to the interface
 
  - (void) setValueAndUpdateDisplay:(NSString*)theValue
  {
self.value = theValue;
   [self setNeedsDisplay:YES];
  }
 
 ...but that sucks, too.
 
 There gotta be a better way!
 How do you deal with this?

___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: adding something to a setter

2011-10-06 Thread Stephan Michels

Am 06.10.2011 um 15:54 schrieb Torsten Curdt:

 Well, if the model is more complex and you bind the view to the model
 you can of course trigger the re-display on the observed changes. But
 what about a simple title property of e.g. a NSButton?
 
 ...and I guess triggering a re-display is not the only use case for
 this setter extension - or whatever you want to call it.

I never implement setters/getters for myself. I find it error-prone and it 
feels wrong to me.

To give you another example. I use KVO to generate background images
in UIButton

[self addObserver:self forKeyPath:@color options:NSKeyValueObservingOptionNew 
| NSKeyValueObservingOptionOld | NSKeyValueObservingOptionInitial context:NULL];
[self addObserver:self forKeyPath:@size options:NSKeyValueObservingOptionNew 
| NSKeyValueObservingOptionOld | NSKeyValueObservingOptionInitial context:NULL];
[self addObserver:self forKeyPath:@showShadow 
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld | 
NSKeyValueObservingOptionInitial context:NULL];

- (void)observeValueForKeyPath:(NSString *)keyPath
  ofObject:(id)object
change:(NSDictionary *)change
   context:(void *)context {
if (![change keyValueChanged]) {
return;
}

if([keyPath isEqualToString:@color] ||
   [keyPath isEqualToString:@size] ||
   [keyPath isEqualToString:@showShadow]) {
[self setBackgroundImage:[HDEButton 
backgroundImageForButtonWithColor:self.color size:self.size] 
forState:UIControlStateNormal];
[self setBackgroundImage:[HDEButton 
backgroundImageForButtonWithColor:HDEGrayBackgroundColor size:self.size] 
forState:UIControlStateDisabled];
[...]

Self observing works great for 
me.___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Dispatch queues and autorelease pools

2011-07-02 Thread Stephan Michels
Hi,
I have short question. Do I have to use an autorelease pool within a block for
a dispatch queue?

dispatch_async(background_queue(), ^{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

NSArray *array = [NSArray array];
NSLog(@array=%@, array);

[pool drain];
});

Or has the dispatch queue it's own pool?

Stephan Michels.___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Superscript attribute with CATextLayer

2008-10-20 Thread Stephan Michels
Hi,
I have the problem if I use super/subscript within an attributed string, then
it doesn't seems to work with CATextLayer, and I don't know why.

I tried NSSuperscriptAttributeName and NSBaselineOffsetAttributeName

  string = [[NSMutableAttributedString alloc] init];
  [string beginEditing];
  [string replaceCharactersInRange:NSMakeRange(0,0) withString:@CO2];
  [string addAttribute:NSFontAttributeName value:[NSFont
controlContentFontOfSize:12] range:NSMakeRange(0,3)];
  [string addAttribute:NSForegroundColorAttributeName value:[NSColor
blackColor] range:NSMakeRange(0,3)];

  [string addAttribute:NSUnderlineStyleAttributeName value:[NSNumber
numberWithInt:NSUnderlineStyleSingle] range:NSMakeRange(0,2)];

  // first case
  [string addAttribute:NSSuperscriptAttributeName value:[NSNumber
numberWithInt:-1] range:NSMakeRange(2,1)];
  // second case
  //[string addAttribute:NSBaselineOffsetAttributeName value:[NSNumber
numberWithInt:-5] range:NSMakeRange(2,1)];
  // third case
  //[string subscriptRange:NSMakeRange(2, 1)];

  [string endEditing];

It works perfectly with drawAtPoint:

- (void)drawRect:(NSRect)rect {
[string drawAtPoint:NSMakePoint(10, 20)];
}

But not with a CATextLayer

- (void)awakeFromNib {
self.wantsLayer = YES;

layer = [CATextLayer layer];
layer.string = string;
layer.bounds = CGRectMake(0, 0, layer.preferredFrameSize.width,
layer.preferredFrameSize.height);
layer.position = CGPointMake(10, 150);
layer.borderWidth = 1;
layer.anchorPoint = CGPointMake(0,0);

[self.layer addSublayer:layer];
}

Does anyone know how to solve it or have an explanation why it doesn't work?

Thank you,
Stephan Michels.
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: Superscript attribute with CATextLayer

2008-10-20 Thread Stephan Michels
2008/10/20 Scott Anguish [EMAIL PROTECTED]:
 what is the result?  do you have an image you can link to?

The result is that superscript attribute seems to be completely ignored.

I made a simple test project with a TextView (top), a CATextLayer(middle)
and with drawAtPoint:(bottom)

Screenshot:
http://rapidshare.com/files/155887033/TestView.png.html

Code:
http://rapidshare.com/files/155887694/AttributedStringTest.zip.html

I noticed that also other attributes are ignored like background color.

Stephan Michels.
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]


Re: [iText-questions] Problem with transparent images

2008-02-21 Thread Stephan Michels
2008/2/21, Eliot M Cline [EMAIL PROTECTED]:
 The only way I could keep acrobat reader from changing the color space to
 CMYK was to set the entire page containing our graphics to a transparency
 group and then set the colorspace accordingly. See the VB code snippet
 below.

Great! That worked.

Thank you,
Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] Problem with transparent images

2008-02-20 Thread Stephan Michels
2008/2/20, 1T3XT info [EMAIL PROTECTED]:
 Stephan Michels wrote:
  I made following screenshots to show the problem:

 I'm not sure what I'm supposed to see.
 In one screen there's a thicker border than in the other three
 screens. I guess that's your problem, but... I don't know what
 you are doing.

Yes, the thicker border is an additional problem.

The problem is that you see different colors in the second screenshot
than I have used to generate the PDF. You see the desired output on
the right side within Evince.

 Have you read the following remark about transparency:
 http://www.nabble.com/Re%3A-PDFStamper%3A-Color-of-text-in-PDF-changes-when-replacing-button-with-PNG-Image-p15485315.html

Good point, that the Acrobat Reader changes the colors to the CMYK
color space was one of my assumptions.

Hmm, so what can I do? How I can prevent that the Acrobat Reader
change to the CMYK color space?

Stephan Michels.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] Problem with transparent images

2008-02-20 Thread Stephan Michels
2008/2/20, Leonard Rosenthol [EMAIL PROTECTED]:
 On Feb 20, 2008, at 3:26 AM, Stephan Michels wrote:
  Good point, that the Acrobat Reader changes the colors to the CMYK
  color space was one of my assumptions.
 
  Hmm, so what can I do? How I can prevent that the Acrobat Reader
  change to the CMYK color space?

 Tell the PDF consumer what colorspace to use by explicitly setting
 the transparency blending space!

And how can I set the default transparency blending space with itext?
Or doesn't exist such option in PDF? Can I change this in Acrobat?

Can I use the method PdfWriter.setDefaultColorspace() for that?

Thanks,
Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] Problem with transparent images

2008-02-20 Thread Stephan Michels
2008/2/20, 1T3XT info [EMAIL PROTECTED]:
 Stephan Michels wrote:
  And how can I set the default transparency blending space with itext?

 Some pseudocode (so that you can Google for the keywords):

 PdfGState gs = new PdfGState();
 gs.setBlendMode(choose state);
 cb.setState(gs);

Hmm, doesn't help :-( I tried every blend mode, but this doesn't
prevent Acrobat from switching to the CMYK color space.

I made a little test class to reproduce the problem:
http://www.filespace.net/?d=A867FB691

And also a screenshot to compare the results:
http://www.filespace.net/?d=2D877E011

I understand why the border is thinner in the alpha version and the
black background of the non-alpha version.

What I don't understand is why Acrobat change the text and the border color.

Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] Problem with transparent images

2008-02-20 Thread Stephan Michels
2008/2/20, Leonard Rosenthol [EMAIL PROTECTED]:
  Hmm, doesn't help :-( I tried every blend mode, but this doesn't
  prevent Acrobat from switching to the CMYK color space.
 

 You need to set the COLORSPACE to DeviceRGB...

Thanks, but how can I achieve it? I tried

1.
ImgTemplate image2 = new ImgTemplate(template);
PdfArray colorspace = new PdfArray();
colorspace.add(PdfName.DEVICERGB);
PdfDictionary ad = new PdfDictionary();
ad.put(PdfName.COLORSPACE, colorspace);
image2.setAdditional(ad);

2.
PdfDictionary ad = new PdfDictionary();
ad.put(PdfName.COLORSPACE, PdfName.DEVICERGB);
image2.setAdditional(ad);

Without luck.

Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


[iText-questions] Problem with transparent images

2008-02-19 Thread Stephan Michels
Hi,
I have a problem with the Adobe Acrobat Reader and PDFs generated by iText.

The Acrobat Reader seems to mix or change colors, which are used in a
page if I use a image with an alpha channel.
I tracked down the problem to the method
Image.getInstance(java.awt.Image, java.awt.Color,   boolean). The
problem occurs if the method sets the ImageMask.

I made following screenshots to show the problem:

Comparison with a non-transparent image (Evince left, Adobe Acrobat
8.1.1 right):
http://www.filespace.net/?d=771E9FB31

Comparison with a transparent image (Evince left, Adobe Acrobat 8.1.1 right):
http://www.filespace.net/?d=669C21161

I don't know if it is a problem of the Acrobat Reader or iText. The
problem doesn't happen in Evince.

Does anyone see this problem before?

Thank you,
Stephan Michels.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] WordSpacing and CharacterSpacing

2008-01-29 Thread Stephan Michels
2008/1/28, Leonard Rosenthol [EMAIL PROTECTED]:
 On Jan 28, 2008, at 7:27 AM, Stephan Michels wrote:
  I can simply prevent orphans in a column if I check if the available
  height is smaller than e.g. 2 rows, then I put the paragraph into the
  next column.
  To prevent widows I have to adjust the character and word spacing so
  that I have an additional row. I know I can increase the c. and w.
  spacing only a little, just below the visibility, but sometimes it is
  enough to prevent the orphan.

 Why not implement this sort of stuff directly into iText (and then
 provide a patch)??  By doing widow and orphan control internally, in
 conjunction with a smarter justification algorithm that takes
 vertical issues into consideration will just improve iText.

Sure! My current experiement is to add the information about character
and word spacing to Chunk, copy the information to PdfChunk and then
using it to calculate the correct width in BidiLine.processLine().
The biggest hurdle is right now to combine it with the justify
alignment in PdfDocument.writeLineToContent().

If this works then you have the instrument to control windows and it
is possible to add an automatic algorithm.

Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


[iText-questions] WordSpacing and CharacterSpacing

2008-01-28 Thread Stephan Michels
Hi,

is it possible to set the word spacing and character spacing, for
example a paragraph?
I have to increase the values to prevent orphans in a column layout.

I inspected the source code and found that
PdfDocument.writeLineToContent() changed the values for justified
lines, but no way to change the value directly.

BTW, that the meaning of the value lastBaseFactor in this method?

Thank you,
Stephan Michels.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] WordSpacing and CharacterSpacing

2008-01-28 Thread Stephan Michels
2008/1/28, mister bean [EMAIL PROTECTED]:

 See p. 347-350 in the book. The methods you're looking for are
 setCharacterSpacing() and setWordSpacing().

Thanks, but AFAICS those values get lost if you use justified text and
it is not possible to define additional space.

Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] WordSpacing and CharacterSpacing

2008-01-28 Thread Stephan Michels
Sorry, I mixed widows and orphans before. I always do :-/

2008/1/28, Leonard Rosenthol [EMAIL PROTECTED]:
 But if you are justifying the text, what purpose do character  word
 spacing serve?

The jusitfy alignment distributes only the available space in the row.
But I want more space to get an additional row or two.

I can simply prevent orphans in a column if I check if the available
height is smaller than e.g. 2 rows, then I put the paragraph into the
next column.
To prevent widows I have to adjust the character and word spacing so
that I have an additional row. I know I can increase the c. and w.
spacing only a little, just below the visibility, but sometimes it is
enough to prevent the orphan.

Stephan.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Re: [iText-questions] Problem withColumnTextand SpaceAfterof paragraphs

2007-09-13 Thread Stephan Michels
Thank you for the quick reponse. The setAdjustFirstLine() method looks good.

I used the the ColumnText object a lot, but it has some drawbacks,
which I can only solve by invoking the go() method after every
element.

For example I set manually the position of every element to have a
baseline grid.
And to prevent orphans.

In another example I build a Word to PDF converter, but Word seems to
use a different way in using the leading and add the space between the
line after the the row instead of before the line.

Stephan.

-- 
Edna: This is a hobo suit, darling. You can't be seen in this. I
won't allow it.
Bob: Wait, what do you mean? *You* designed it.
Edna: I never look back, darling! It distracts from the now.
The Incredibles (2004)

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


[iText-questions] Problem with ColumnText and SpaceAfter of paragraphs

2007-09-12 Thread Stephan Michels
Hi,

I have the following problem, if I render text with a ColumnText
object then the output depends where I invoke go(). For example, I get
a different result if I do following steps

1. add paragraph 1 to ColumnText
2. add paragraph 2
3. invoke go()

and

1. add paragraph 1 to ColumnText
2. invoke go()
3. add paragraph 2
4. invoke go()

And I have a special problem with the SpaceAfter property of
paragraphs. I attached the code, which I use to reproduce this
behaviour at the end.

I appreciate every help on what I do wrong.
Thank you, Stephan Michels.

import java.io.*;

import com.lowagie.text.*;
import com.lowagie.text.pdf.*;

public class SpaceAfterTest
{
  private static final float COLUMN_WIDTH = 250f;

  public static void main(String[] args) throws FileNotFoundException,
DocumentException
  {
Document pdfDocument = new Document(PageSize.A4);
PdfWriter writer = PdfWriter.getInstance(pdfDocument, new
FileOutputStream(test.pdf));

pdfDocument.open();
PdfContentByte cb = writer.getDirectContent();

renderColumn1(pdfDocument, cb);
renderColumn2(pdfDocument, cb);

pdfDocument.close();
  }

  private static void renderColumn1(Document pdfDocument,
PdfContentByte cb) throws DocumentException
  {
cb.rectangle(pdfDocument.left(), pdfDocument.bottom(),
COLUMN_WIDTH, pdfDocument.top() - pdfDocument.bottom());
cb.stroke();

ColumnText ct = new ColumnText(cb);
ct.setUseAscender(true);
ct.setSimpleColumn(pdfDocument.left(), pdfDocument.bottom(),
pdfDocument.left() + COLUMN_WIDTH, pdfDocument.top());

Paragraph paragraph = new Paragraph(test text 1);
paragraph.setSpacingAfter(50);
ct.addElement(paragraph);

ct.addElement(new Paragraph(test text 2));

ct.go();
  }

  private static void renderColumn2(Document pdfDocument,
PdfContentByte cb) throws DocumentException
  {
cb.rectangle(pdfDocument.right() - COLUMN_WIDTH,
pdfDocument.bottom(), COLUMN_WIDTH, pdfDocument.top() -
pdfDocument.bottom());
cb.stroke();

ColumnText ct = new ColumnText(cb);
ct.setUseAscender(true);
ct.setSimpleColumn(pdfDocument.right() - COLUMN_WIDTH,
pdfDocument.bottom(), pdfDocument.right(), pdfDocument.top());

Paragraph paragraph = new Paragraph(test text 1);
paragraph.setSpacingAfter(50);
ct.addElement(paragraph);

ct.go(); // early go, to retrieve the yLine for example
// ct.setYLine(ct.getYLine() + ct.getDescender()); // doesn't help

ct.addElement(new Paragraph(test text 2));

ct.go();
  }

}


-- 
Edna: This is a hobo suit, darling. You can't be seen in this. I
won't allow it.
Bob: Wait, what do you mean? *You* designed it.
Edna: I never look back, darling! It distracts from the now.
The Incredibles (2004)

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/


Bug#389907: No printer in eclipse

2006-12-26 Thread Stephan Michels
There is no printer support available in 3.2, see
http://www.eclipse.org/swt/faq.php#printOnGTK

It will be available in 3.3.

Stephan Michels.



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



Re: jogl packages

2006-12-17 Thread Stephan Michels

2006/12/17, Jérôme Marant [EMAIL PROTECTED]:

Le dimanche 17 décembre 2006 01:03, Petter Reinholdtsen a écrit:
 [Jérôme Marant]
  I wanted to play with java packaging (cdbs, ant and so on) so I took
  the jogl packaging from svn and updated it.

 Cool.  Do you plan to upload it into Debian?  It is a dependency of
 worldwind2d, a java package I want to get into debian/main, so it
 would be great to have jogl in main. :)

Could you please check first if it works fine with worldwind2d?


I couldn't build the package :-/


output:
[...]
gluegen.cpptasks.configure.compiler:

c.configure:

c.build:

BUILD FAILED
/home/stephan/debian/jogl/jogl-1.1.0~pre-20061215/jogl/make/build.xml:1534:
The following error occurred while executing this line:
/home/stephan/debian/jogl/jogl-1.1.0~pre-20061215/jogl/make/build.xml:492:
The following error occurred while executing this line:
/home/stephan/debian/jogl/jogl-1.1.0~pre-20061215/gluegen/make/build.xml:411:
The following error occurred while executing this line:
/home/stephan/debian/jogl/jogl-1.1.0~pre-20061215/gluegen/make/build.xml:356:
The following error occurred while executing this line:
/home/stephan/debian/jogl/jogl-1.1.0~pre-20061215/gluegen/make/build.xml:296:
Requires '${compiler.cfg.id}'

Total time: 1 minute 48 seconds
make: *** [debian/stamp-ant-build] Fehler 1
debuild: fatal error at line 1228:
debian/rules build failed



Re: jogl packages

2006-12-17 Thread Stephan Michels

2006/12/17, Jérôme Marant [EMAIL PROTECTED]:

Le dimanche 17 décembre 2006 15:23, Stephan Michels a écrit:
 2006/12/17, Jérôme Marant [EMAIL PROTECTED]:
  Le dimanche 17 décembre 2006 01:03, Petter Reinholdtsen a écrit:
   [Jérôme Marant]
I wanted to play with java packaging (cdbs, ant and so on) so I took
the jogl packaging from svn and updated it.
  
   Cool.  Do you plan to upload it into Debian?  It is a dependency of
   worldwind2d, a java package I want to get into debian/main, so it
   would be great to have jogl in main. :)
 
  Could you please check first if it works fine with worldwind2d?

 I couldn't build the package :-/

On what architecture did you build it?


On PPC.

Stephan Michels.



Re: jogl

2006-12-01 Thread Stephan Michels

2006/12/1, Jérôme Marant [EMAIL PROTECTED]:

Hi,

jogl seems to be maintainted within Debian SVN's pkg-java project, but it has 
still
not been uploaded. Why's that?


No sponsor was interested.

And AFAIK some problems occur with the free-java stack. But I don't
know the current status.

Stephan.



[pkg-java] r2636 - in trunk/eclipse/debian: . extra patches

2006-10-22 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-10-22 10:15:59 + (Sun, 22 Oct 2006)
New Revision: 2636

Added:
   trunk/eclipse/debian/patches/eclipse-nativepresentation.dpatch
Removed:
   trunk/eclipse/debian/patches/eclipse-navtivepresentation.dpatch
Modified:
   trunk/eclipse/debian/extra/eclipse.sh
   trunk/eclipse/debian/extra/package-links.txt
   trunk/eclipse/debian/rules
Log:
The lib prefix to the package-links.txt links.
Ensure that the directories exist before.
Converted native presentation patch to 3.2
Show error dialog only if the mozilla/firefox wasn't found.


Modified: trunk/eclipse/debian/extra/eclipse.sh
===
--- trunk/eclipse/debian/extra/eclipse.sh   2006-10-22 09:43:45 UTC (rev 
2635)
+++ trunk/eclipse/debian/extra/eclipse.sh   2006-10-22 10:15:59 UTC (rev 
2636)
@@ -137,12 +137,13 @@
 export MOZILLA_FIVE_HOME=/usr/lib/mozilla-firefox
 elif [ -e /usr/lib/mozilla/libgtkembedmoz.so ]; then
 export MOZILLA_FIVE_HOME=/usr/lib/mozilla
+else
+$DIALOG \
+--warning \
+--title=Integrated browser support not working \
+--text=This Eclipse build doesn't have support for the integrated 
browser.
+[ $? -eq 0 ] || exit 1
 fi
-$DIALOG \
---warning \
---title=Integrated browser support not working \
---text=This Eclipse build doesn't have support for the integrated 
browser.
-   [ $? -eq 0 ] || exit 1
 
 # libraries from the mozilla choosen take precedence
 LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}

Modified: trunk/eclipse/debian/extra/package-links.txt
===
--- trunk/eclipse/debian/extra/package-links.txt2006-10-22 09:43:45 UTC 
(rev 2635)
+++ trunk/eclipse/debian/extra/package-links.txt2006-10-22 10:15:59 UTC 
(rev 2636)
@@ -1,25 +1,25 @@
-/usr/share/tomcat5.5/server/lib/tomcat-coyote.jar 
org.eclipse.tomcat_5.5.17/tomcat-coyote.jar
-/usr/share/tomcat5.5/common/lib/servlet-api.jar   
org.eclipse.tomcat_5.5.17/servlet.jar
-/usr/share/java/commons-collections.jar 
org.eclipse.tomcat_5.5.17/commons-collections.jar
-/usr/share/tomcat5.5/bin/bootstrap.jar
org.eclipse.tomcat_5.5.17/bootstrap.jar
-/usr/share/tomcat5.5/server/lib/tomcat-http.jar 
org.eclipse.tomcat_5.5.17/tomcat-http.jar
-/usr/share/java/commons-modeler.jar 
org.eclipse.tomcat_5.5.17/commons-modeler.jar
-/usr/share/java/commons-logging-api.jar 
org.eclipse.tomcat_5.5.17/commons-logging-api.jar
-/usr/share/java/commons-beanutils.jar   
org.eclipse.tomcat_5.5.17/commons-beanutils.jar
-/usr/share/tomcat5.5/server/lib/tomcat-util.jar   
org.eclipse.tomcat_5.5.17/tomcat-util.jar
-/usr/share/tomcat5.5/server/lib/servlets-invoker.jar  
org.eclipse.tomcat_5.5.17/servlets-invoker.jar
-/usr/share/java/commons-digester.jar
org.eclipse.tomcat_5.5.17/commons-digester.jar
-/usr/share/tomcat5.5/common/lib/jasper-runtime.jar
org.eclipse.tomcat_5.5.17/jasper-runtime.jar
-/usr/share/tomcat5.5/server/lib/servlets-default.jar  
org.eclipse.tomcat_5.5.17/servlets-default.jar
-/usr/share/tomcat5.5/common/lib/naming-factory.jar
org.eclipse.tomcat_5.5.17/naming-factory.jar
-/usr/share/tomcat5.5/server/lib/catalina.jar  
org.eclipse.tomcat_5.5.17/catalina.jar
-/usr/share/tomcat5.5/server/lib/catalina-optional.jar 
org.eclipse.tomcat_5.5.17/catalina-optional.jar
-/usr/share/java/mx4j.jar
org.eclipse.tomcat_5.5.17/mx4j-impl.jar
-/usr/share/java/mx4j.jar
org.eclipse.tomcat_5.5.17/mx4j-jmx.jar
-/usr/share/tomcat5.5/common/lib/naming-resources.jar  
org.eclipse.tomcat_5.5.17/naming-resources.jar
-/usr/share/tomcat5.5/common/lib/jasper-compiler.jar   
org.eclipse.tomcat_5.5.17/jasper-compiler.jar
-/usr/share/tomcat5.5/common/lib/jsp-api.jar   
org.eclipse.tomcat_5.5.17/jsp-api.jar
-/usr/share/java/commons-el.jar  
org.eclipse.tomcat_5.5.17/commons-el.jar
+/usr/share/tomcat5.5/server/lib/tomcat-coyote.jar 
org.eclipse.tomcat_5.5.17/lib/tomcat-coyote.jar
+/usr/share/tomcat5.5/common/lib/servlet-api.jar   
org.eclipse.tomcat_5.5.17/lib/servlet.jar
+/usr/share/java/commons-collections.jar 
org.eclipse.tomcat_5.5.17/lib/commons-collections.jar
+/usr/share/tomcat5.5/bin/bootstrap.jar
org.eclipse.tomcat_5.5.17/lib/bootstrap.jar
+/usr/share/tomcat5.5/server/lib/tomcat-http.jar 
org.eclipse.tomcat_5.5.17/lib/tomcat-http.jar
+/usr/share/java/commons-modeler.jar 
org.eclipse.tomcat_5.5.17/lib/commons-modeler.jar
+/usr/share/java/commons-logging-api.jar 
org.eclipse.tomcat_5.5.17/lib/commons-logging-api.jar
+/usr/share/java/commons-beanutils.jar   
org.eclipse.tomcat_5.5.17/lib/commons-beanutils.jar
+/usr/share/tomcat5.5/server/lib/tomcat-util.jar   

[pkg-java] r2637 - trunk/eclipse/debian

2006-10-22 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-10-22 10:30:49 + (Sun, 22 Oct 2006)
New Revision: 2637

Modified:
   trunk/eclipse/debian/changelog
Log:
Added changes to changelog


Modified: trunk/eclipse/debian/changelog
===
--- trunk/eclipse/debian/changelog  2006-10-22 10:15:59 UTC (rev 2636)
+++ trunk/eclipse/debian/changelog  2006-10-22 10:30:49 UTC (rev 2637)
@@ -65,6 +65,12 @@
   [ Vladimir Lapacek ]
   * Build jsch as a eclipse plugin.
 
+  [ Stephan Michels ]
+  * Added lib prefix to the links of the tomcat plugin in package-links.txt
+  * Ensured that the directories exist before links were created
+  * Converted native presentation patch to 3.2
+  * Show error dialog only if the mozilla/firefox wasn't found.
+
  -- Matthias Klose [EMAIL PROTECTED]  Sun, 22 Oct 2006 04:25:47 +0200
 
 eclipse (3.1.2-3) experimental; urgency=low


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[pkg-java] r2639 - trunk/eclipse/debian/extra

2006-10-22 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-10-22 15:39:36 + (Sun, 22 Oct 2006)
New Revision: 2639

Modified:
   trunk/eclipse/debian/extra/package-links.txt
Log:
Create link lib/servlet-api.jar instead of lib/servlet.jar


Modified: trunk/eclipse/debian/extra/package-links.txt
===
--- trunk/eclipse/debian/extra/package-links.txt2006-10-22 11:30:06 UTC 
(rev 2638)
+++ trunk/eclipse/debian/extra/package-links.txt2006-10-22 15:39:36 UTC 
(rev 2639)
@@ -1,43 +1,44 @@
 /usr/share/tomcat5.5/server/lib/tomcat-coyote.jar 
org.eclipse.tomcat_5.5.17/lib/tomcat-coyote.jar
-/usr/share/tomcat5.5/common/lib/servlet-api.jar   
org.eclipse.tomcat_5.5.17/lib/servlet.jar
-/usr/share/java/commons-collections.jar 
org.eclipse.tomcat_5.5.17/lib/commons-collections.jar
+/usr/share/tomcat5.5/common/lib/servlet-api.jar   
org.eclipse.tomcat_5.5.17/lib/servlet-api.jar
+/usr/share/tomcat5.5/server/lib/servlets-invoker.jar  
org.eclipse.tomcat_5.5.17/lib/servlets-invoker.jar
+/usr/share/java/commons-collections.jar   
org.eclipse.tomcat_5.5.17/lib/commons-collections.jar
 /usr/share/tomcat5.5/bin/bootstrap.jar
org.eclipse.tomcat_5.5.17/lib/bootstrap.jar
-/usr/share/tomcat5.5/server/lib/tomcat-http.jar 
org.eclipse.tomcat_5.5.17/lib/tomcat-http.jar
-/usr/share/java/commons-modeler.jar 
org.eclipse.tomcat_5.5.17/lib/commons-modeler.jar
-/usr/share/java/commons-logging-api.jar 
org.eclipse.tomcat_5.5.17/lib/commons-logging-api.jar
-/usr/share/java/commons-beanutils.jar   
org.eclipse.tomcat_5.5.17/lib/commons-beanutils.jar
+/usr/share/tomcat5.5/server/lib/tomcat-http.jar   
org.eclipse.tomcat_5.5.17/lib/tomcat-http.jar
+/usr/share/java/commons-modeler.jar   
org.eclipse.tomcat_5.5.17/lib/commons-modeler.jar
+/usr/share/java/commons-logging-api.jar   
org.eclipse.tomcat_5.5.17/lib/commons-logging-api.jar
+/usr/share/java/commons-beanutils.jar 
org.eclipse.tomcat_5.5.17/lib/commons-beanutils.jar
 /usr/share/tomcat5.5/server/lib/tomcat-util.jar   
org.eclipse.tomcat_5.5.17/lib/tomcat-util.jar
 /usr/share/tomcat5.5/server/lib/servlets-invoker.jar  
org.eclipse.tomcat_5.5.17/lib/servlets-invoker.jar
-/usr/share/java/commons-digester.jar
org.eclipse.tomcat_5.5.17/lib/commons-digester.jar
+/usr/share/java/commons-digester.jar  
org.eclipse.tomcat_5.5.17/lib/commons-digester.jar
 /usr/share/tomcat5.5/common/lib/jasper-runtime.jar
org.eclipse.tomcat_5.5.17/lib/jasper-runtime.jar
 /usr/share/tomcat5.5/server/lib/servlets-default.jar  
org.eclipse.tomcat_5.5.17/lib/servlets-default.jar
 /usr/share/tomcat5.5/common/lib/naming-factory.jar
org.eclipse.tomcat_5.5.17/lib/naming-factory.jar
 /usr/share/tomcat5.5/server/lib/catalina.jar  
org.eclipse.tomcat_5.5.17/lib/catalina.jar
 /usr/share/tomcat5.5/server/lib/catalina-optional.jar 
org.eclipse.tomcat_5.5.17/lib/catalina-optional.jar
-/usr/share/java/mx4j.jar
org.eclipse.tomcat_5.5.17/lib/mx4j-impl.jar
-/usr/share/java/mx4j.jar
org.eclipse.tomcat_5.5.17/lib/mx4j-jmx.jar
+/usr/share/java/mx4j.jar  
org.eclipse.tomcat_5.5.17/lib/mx4j-impl.jar
+/usr/share/java/mx4j.jar  
org.eclipse.tomcat_5.5.17/lib/mx4j-jmx.jar
 /usr/share/tomcat5.5/common/lib/naming-resources.jar  
org.eclipse.tomcat_5.5.17/lib/naming-resources.jar
 /usr/share/tomcat5.5/common/lib/jasper-compiler.jar   
org.eclipse.tomcat_5.5.17/lib/jasper-compiler.jar
 /usr/share/tomcat5.5/common/lib/jsp-api.jar   
org.eclipse.tomcat_5.5.17/lib/jsp-api.jar
-/usr/share/java/commons-el.jar  
org.eclipse.tomcat_5.5.17/lib/commons-el.jar
-/usr/share/ant/lib/ant-apache-log4j.jar 
org.apache.ant_1.6.5/lib/ant-apache-log4j.jar
-/usr/share/ant/lib/ant-apache-resolver.jar  
org.apache.ant_1.6.5/lib/ant-apache-resolver.jar
-/usr/share/ant/lib/ant-commons-logging.jar  
org.apache.ant_1.6.5/lib/ant-commons-logging.jar
-/usr/share/ant/lib/ant-nodeps.jar   
org.apache.ant_1.6.5/lib/ant-nodeps.jar
-/usr/share/ant/lib/ant-javamail.jar 
org.apache.ant_1.6.5/lib/ant-javamail.jar
-/usr/share/ant/lib/ant-jsch.jar 
org.apache.ant_1.6.5/lib/ant-jsch.jar
-/usr/share/ant/lib/ant-apache-bsf.jar   
org.apache.ant_1.6.5/lib/ant-apache-bsf.jar
-/usr/share/ant/lib/ant-apache-regexp.jar
org.apache.ant_1.6.5/lib/ant-apache-regexp.jar
-/usr/share/ant/lib/ant-apache-oro.jar   
org.apache.ant_1.6.5/lib/ant-apache-oro.jar
-/usr/share/ant/lib/ant-antlr.jar
org.apache.ant_1.6.5/lib/ant-antlr.jar
-/usr/share/ant/lib/ant-jdepend.jar  
org.apache.ant_1.6.5/lib/ant-jdepend.jar
-/usr/share/ant/lib/ant-junit.jar

[pkg-java] r2644 - in trunk/eclipse/debian: . patches

2006-10-22 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-10-22 19:18:54 + (Sun, 22 Oct 2006)
New Revision: 2644

Modified:
   trunk/eclipse/debian/changelog
   trunk/eclipse/debian/patches/eclipse-updatehomedir.dpatch
   trunk/eclipse/debian/rules
Log:
Updated updatehomedir patch from Fedora's repository


Modified: trunk/eclipse/debian/changelog
===
--- trunk/eclipse/debian/changelog  2006-10-22 19:01:04 UTC (rev 2643)
+++ trunk/eclipse/debian/changelog  2006-10-22 19:18:54 UTC (rev 2644)
@@ -71,6 +71,7 @@
   * Ensured that the directories exist before links were created
   * Converted native presentation patch to 3.2
   * Show error dialog only if the mozilla/firefox wasn't found.
+  * Updated updatehomedir patch from Fedora's repository
 
  -- Matthias Klose [EMAIL PROTECTED]  Sun, 22 Oct 2006 04:25:47 +0200
 

Modified: trunk/eclipse/debian/patches/eclipse-updatehomedir.dpatch
===
--- trunk/eclipse/debian/patches/eclipse-updatehomedir.dpatch   2006-10-22 
19:01:04 UTC (rev 2643)
+++ trunk/eclipse/debian/patches/eclipse-updatehomedir.dpatch   2006-10-22 
19:18:54 UTC (rev 2644)
@@ -23,111 +23,227 @@
 exit 0
 
 @DPATCH@
-diff -P -r -u 
../source-tree.orig/plugins/org.eclipse.update.ui/src/org/eclipse/update/internal/ui/wizards/ModeSelectionPage.java
 
source-tree/plugins/org.eclipse.update.ui/src/org/eclipse/update/internal/ui/wizards/ModeSelectionPage.java
 
../source-tree.orig/plugins/org.eclipse.update.ui/src/org/eclipse/update/internal/ui/wizards/ModeSelectionPage.java
2005-09-20 12:06:46.0 +0200
-+++ 
source-tree/plugins/org.eclipse.update.ui/src/org/eclipse/update/internal/ui/wizards/ModeSelectionPage.java
2005-09-20 14:18:57.0 +0200
-@@ -10,6 +10,7 @@
+diff -r -N -u 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/core/ConfiguredSite.java
 
source-tree/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/core/ConfiguredSite.java
+--- 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/core/ConfiguredSite.java
  2006-10-22 19:59:44.0 +0200
 
source-tree/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/core/ConfiguredSite.java
   2006-10-22 20:11:31.0 +0200
+@@ -35,6 +35,7 @@
+ import org.eclipse.core.runtime.IProgressMonitor;
+ import org.eclipse.core.runtime.IStatus;
+ import org.eclipse.core.runtime.MultiStatus;
++import org.eclipse.core.runtime.Platform;
+ import org.eclipse.osgi.util.NLS;
+ import org.eclipse.update.configuration.IActivity;
+ import org.eclipse.update.configuration.IConfiguredSite;
+@@ -803,7 +804,9 @@
+   }
+   } else {
+   File container = getSiteContaining(file);
+-  if (container != null) {
++  // allow the install location to pass even though it 
looks like this
++  // site is contained in another site
++  if (container != null  
!siteLocation.equals(Platform.getInstallLocation().getURL().getFile())) {
+   verifyStatus = createStatus(IStatus.ERROR, 
NLS.bind(Messages.ConfiguredSite_ContainedInAnotherSite, (new String[] { 
container.getAbsolutePath() })), null);
+   return verifyStatus;
+   }
+diff -r -N -u 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/OptionalFeatureSearchCategory.java
 
source-tree/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/OptionalFeatureSearchCategory.java
+--- 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/OptionalFeatureSearchCategory.java
 2006-10-22 19:59:44.0 +0200
 
source-tree/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/OptionalFeatureSearchCategory.java
  2006-10-22 20:11:31.0 +0200
+@@ -76,6 +76,13 @@
+   public IQueryUpdateSiteAdapter getQuerySearchSite() {
+   return null;
+   }
++  
++  /* (non-Javadoc)
++   * @see 
org.eclipse.update.internal.ui.search.ISearchQuery#getFeature()
++   */
++  public IFeature getFeature() {
++  return null;
++  }
+   }
+ 
+   public void addVersionedIdentifier(VersionedIdentifier vid) {
+diff -r -N -u 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/SiteSearchCategory.java
 
source-tree/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/SiteSearchCategory.java
+--- 
source-tree.orig/plugins/org.eclipse.update.core/src/org/eclipse/update/internal/search/SiteSearchCategory.java
2006-10-22 19:59:44.0 +0200
 

[Bug 67309] Re: UI freeze after some hours

2006-10-21 Thread Stephan Michels

** Attachment added: Error report
   http://librarian.launchpad.net/4918762/gnome-btdownload-Fehlerbericht.txt

-- 
UI freeze after some hours
https://launchpad.net/bugs/67309

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 67309] UI freeze after some hours

2006-10-21 Thread Stephan Michels
Public bug reported:

Some hours after I started a download the UI seems to be freezed.
If I move the window the report bug dialog opened.

I use the version 0.0.24-0ubuntu1 on a ppc machine.

** Affects: gnome-btdownload (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
UI freeze after some hours
https://launchpad.net/bugs/67309

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: Bioclipse 1.0

2006-08-14 Thread Stephan Michels

I saw on your packaging page that you already have attempted to package
Bioclipse for Debian.
http://wiki.bioclipse.net/index.php?title=Bioclipse_packaging_and_deployment

I wanted to have a look at your /debian directory, but I am unable to
find the sources. Anyway, do you need some help, or do you get enough
input form the debian pkg-java team? (note that I know nothing about
Java).


The package was in a very early stage. The problem is that we have still
no good and easy way to package Eclipse plugins or RCP apps like Bioclipse.
I made already a cdbs script, which easy the packing process, but stopped
the development for the moment, because of the transition from 3.1 to 3.2
and personal changes in my life.

I will get busy again with this and other things as soon as I get a
working internet access at my new home.

But help is always welcome. And yes, deep knownledge of java and Eclipse is
necessary :-/

Stephan Michels.


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



Re: jboss-4.0.4

2006-07-31 Thread Stephan Michels

Hi Christian!

2006/7/31, Christian Thalinger [EMAIL PROTECTED]:

13:02:10,416 WARN  [URLDeploymentScanner] Scan URL, caught
java.io.IOException: Could not list directory
'/home/twisti/src/cacao/jboss/jboss-4.0.4.GA/server/default/deploy',
reason unknown

I thinks it's related to the number of open files.  Because, I tried to
run the jboss applet with gappletviewer after getting this exception and
got this exception from jboss:

13:05:29,510 ERROR [PoolTcpEndpoint] Endpoint
ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=8080] ignored
exception: java.io.IOException: Too many open files
java.io.IOException: Too many open files
   at gnu.java.net.VMPlainSocketImpl.accept(Native Method)
   at gnu.java.net.PlainSocketImpl.accept(PlainSocketImpl.java:282)

Any hints and bugfixes are welcome :-)


I don't know if it is related to your problem, but the too many open
files thing reminds me of this bug:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25760

Stephan Michels.



Bug#372880: eclipse can't start: problem opening page

2006-06-15 Thread Stephan Michels

2006/6/15, Arnaud Vandyck [EMAIL PROTECTED]:

Michael Koch wrote:
 I can't reproduce this here on i386. Can you please make the output
 of /usr/bin/eclise -debug -consoleLog available?

Attached.

Note that when I click OK on the error window, everything disapears, but
I have to C-c to stop the process (but it's not eating the cpu).


Hi Arnaud!

Have you tried also cacao or jamvm? I wonder if its an gcj-only
problem. Eclipse on
ppc with gcj works for me.

Have you a special ppc machine?

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#372880: eclipse can't start: problem opening page

2006-06-15 Thread Stephan Michels

2006/6/15, Arnaud Vandyck [EMAIL PROTECTED]:

Michael Koch wrote:
 I can't reproduce this here on i386. Can you please make the output
 of /usr/bin/eclise -debug -consoleLog available?

Attached.

Note that when I click OK on the error window, everything disapears, but
I have to C-c to stop the process (but it's not eating the cpu).


Hi Arnaud!

Have you tried also cacao or jamvm? I wonder if its an gcj-only
problem. Eclipse on
ppc with gcj works for me.

Have you a special ppc machine?

Stephan Michels.


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



Bug#372880: eclipse can't start: problem opening page

2006-06-15 Thread Stephan Michels

2006/6/15, Arnaud Vandyck [EMAIL PROTECTED]:

Michael Koch wrote:
 I can't reproduce this here on i386. Can you please make the output
 of /usr/bin/eclise -debug -consoleLog available?

Attached.

Note that when I click OK on the error window, everything disapears, but
I have to C-c to stop the process (but it's not eating the cpu).


Hi Arnaud!

Have you tried also cacao or jamvm? I wonder if its an gcj-only
problem. Eclipse on
ppc with gcj works for me.

Have you a special ppc machine?

Stephan Michels.


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



r2130 - trunk/jogl/debian

2006-05-21 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-05-21 09:18:10 + (Sun, 21 May 2006)
New Revision: 2130

Modified:
   trunk/jogl/debian/rules
Log:
Install all shared object files like libjogl_awt and libjogl_drihack.


Modified: trunk/jogl/debian/rules
===
--- trunk/jogl/debian/rules 2006-05-20 11:07:02 UTC (rev 2129)
+++ trunk/jogl/debian/rules 2006-05-21 09:18:10 UTC (rev 2130)
@@ -25,6 +25,8 @@
 
 install/libjogl-jni::
install -m 644 jogl/build/obj/libjogl.so 
debian/libjogl-jni/usr/lib/jni/libjogl.so
+   install -m 644 jogl/build/obj/libjogl_awt.so 
debian/libjogl-jni/usr/lib/jni/libjogl_awt.so
+   install -m 644 jogl/build/obj/libjogl_drihack.so 
debian/libjogl-jni/usr/lib/jni/libjogl_drihack.so
 
 clean::
-rm -rf gluegen/build


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


[Bug 35669] Re: neither /etc/asound.conf or ~/.asoundrc setup in package configuration

2006-05-19 Thread Stephan Michels
*** This bug is a duplicate of bug 31699 ***

I had similar problems. My problem was that gnome-sound-properties
didn't start esd. I got following output:

ALSA lib confmisc.c:1107:(snd_func_refer) Unable to find definition 
'defaults.pcm.card'
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer returned 
error: No such file or directory
ALSA lib confmisc.c:242:(snd_func_getenv) error evaluating default
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_getenv returned 
error: No such file or directory
ALSA lib conf.c:3951:(snd_config_expand) Args evaluate error: No such file or 
directory
ALSA lib pcm.c:2102:(snd_pcm_open_noupdate) Unknown PCM default

That problem went away after I added to my .asoundrc.asoundconf:
defaults.pcm.device 0
defaults.pcm.subdevice -1
pcm.device 1

Now I have: 
!defaults.pcm.card SoundSticks
defaults.ctl.card SoundSticks
defaults.pcm.device 0
defaults.pcm.subdevice -1
pcm.device 1

FYI, I have a mac mini with USB Harman Kardon Soundsticks.

-- 
neither /etc/asound.conf or ~/.asoundrc setup in package configuration
https://launchpad.net/bugs/35669

--
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


Bug#344514: Man page for efj is missing

2006-05-18 Thread Stephan Michels

Here is the link to the Eclipse Bug report for the stand-alone
formatter:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=75333

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#344514: Man page for efj is missing

2006-05-18 Thread Stephan Michels

Here is the link to the Eclipse Bug report for the stand-alone
formatter:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=75333

Stephan Michels.



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 I think this is a duplicate of #359979, found here:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=359979

 Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all to
 fix...

I'll will look later at that issue today or next days. Maybe Matthias
knows more about the amd64 issue.

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 As you can see in the provided link, it's just a missing dependency...

I just asked Matthias. And he said, that it is already fixed. So, I
will see if I can do an upload. The problem is that we have to handle
also the transition to gcj-4.1

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 I think this is a duplicate of #359979, found here:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=359979

 Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all to
 fix...

I'll will look later at that issue today or next days. Maybe Matthias
knows more about the amd64 issue.

Stephan Michels.



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 As you can see in the provided link, it's just a missing dependency...

I just asked Matthias. And he said, that it is already fixed. So, I
will see if I can do an upload. The problem is that we have to handle
also the transition to gcj-4.1

Stephan Michels.



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 I think this is a duplicate of #359979, found here:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=359979

 Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all to
 fix...

I'll will look later at that issue today or next days. Maybe Matthias
knows more about the amd64 issue.

Stephan Michels.



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 As you can see in the provided link, it's just a missing dependency...

I just asked Matthias. And he said, that it is already fixed. So, I
will see if I can do an upload. The problem is that we have to handle
also the transition to gcj-4.1

Stephan Michels.



Bug#364368: Build-Dep on mozilla (library), please transition to xulrunner

2006-04-22 Thread Stephan Michels
2006/4/23, Marc 'HE' Brockschmidt [EMAIL PROTECTED]:
 It looks like your package still depends on a mozilla library in
 testing. As upstream declared mozilla to be dead and moved all
 functionality that is needed to embed gecko and friends to a new
 software suite (xulrunner), you should update your package to work with
 those. At the moment, it looks like we don't want to release etch with
 mozilla [1].

Yes, it is planned to use xulrunner instead of mozilla. We will make
the transition as soon as possible.


Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#364368: Build-Dep on mozilla (library), please transition to xulrunner

2006-04-22 Thread Stephan Michels
2006/4/23, Marc 'HE' Brockschmidt [EMAIL PROTECTED]:
 It looks like your package still depends on a mozilla library in
 testing. As upstream declared mozilla to be dead and moved all
 functionality that is needed to embed gecko and friends to a new
 software suite (xulrunner), you should update your package to work with
 those. At the moment, it looks like we don't want to release etch with
 mozilla [1].

Yes, it is planned to use xulrunner instead of mozilla. We will make
the transition as soon as possible.


Stephan Michels.



r2054 - in trunk/eclipse-ve/debian: . patches

2006-04-22 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-04-23 05:17:12 + (Sun, 23 Apr 2006)
New Revision: 2054

Added:
   trunk/eclipse-ve/debian/eclipse-pdebuild.mk
Modified:
   trunk/eclipse-ve/debian/patches/eclipse-ve-patch-jemutil.patch
   trunk/eclipse-ve/debian/patches/eclipse-ve-perfmsr.jar.patch
   trunk/eclipse-ve/debian/patches/eclipse-ve-swtprint.patch
   trunk/eclipse-ve/debian/rules
Log:
Using eclipse pdebuild cdbs script.
Added targets to fetch additional stuff.


Added: trunk/eclipse-ve/debian/eclipse-pdebuild.mk
===
--- trunk/eclipse-ve/debian/eclipse-pdebuild.mk 2006-04-18 22:36:52 UTC (rev 
2053)
+++ trunk/eclipse-ve/debian/eclipse-pdebuild.mk 2006-04-23 05:17:12 UTC (rev 
2054)
@@ -0,0 +1,322 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2005 Ivan Dubrov [EMAIL PROTECTED]
+# Description: Builds and cleans packages which use an Eclipse PDE Build
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307 USA.
+#
+# The file is modified by Stephan Michels[EMAIL PROTECTED]
+
+
+ifndef _cdbs_bootstrap
+_cdbs_scripts_path ?= /usr/lib/cdbs
+_cdbs_rules_path ?= /usr/share/cdbs/1/rules
+_cdbs_class_path ?= /usr/share/cdbs/1/class
+endif
+
+ifndef _cdbs_class_eclipse_pde
+_cdbs_class_eclipse_pde := 1
+
+include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
+include $(_cdbs_rules_path)/debhelper.mk$(_cdbs_makefile_suffix)
+
+# Version of the upstream package
+DEB_UPSTREAM_VERSION=$(shell echo $(DEB_NOEPOCH_VERSION) | grep -o '^[^\-]*')
+
+
+# The home directory of the Java Runtime Environment (JRE) or Java Development
+# Kit (JDK). You can either directly set JAVA_HOME in debian/rules or set
+# JAVA_HOME_DIRS to multiple possible home directories. The first existing
+# directory from this list is used for JAVA_HOME. You can also override
+# JAVACMD in case you don't want to use the default JAVA_HOME/bin/java.
+JAVA_HOME = $(shell for jh in $(JAVA_HOME_DIRS); do if [ -d $$jh ]; then \
+echo $${jh}; exit 0; fi; done)
+JAVACMD   = $(JAVA_HOME)/bin/java
+
+
+# Directory that contains additional plugins to be used during the build
+PDEBUILD_BASELOCATION ?= /usr/share/eclipse
+
+# Component of the package, which should be builded (required)
+PDEBUILD_COMPONENT ?=
+
+# PDE Build release engineering directory, with build.properties and
+# customTargets.xml
+PDEBUILD_BUILDER ?= $(PDEBUILD_COMPONENT)
+
+# Determine the most recent PDE Build scripts plugin version
+ifndef PDE_VERSION
+PDEBUILD_VERSION := $(shell ls $(PDEBUILD_BASELOCATION)/plugins/ | \
+   grep 
^org\.eclipse\.pde\.build_[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*$$ | \
+   sed s%org\.eclipse\.pde\.build_\(.*\)%\1% | \
+   sort  -t. -k1,1 -k2,2 -k3,3 -n -r | head -n 1)
+endif
+
+# PDE Build scrips
+PDEBUILD_SCRIPTS ?= 
$(PDEBUILD_BASELOCATION)/plugins/org.eclipse.pde.build_$(PDEBUILD_VERSION)/scripts
+
+# PDE Build Ant script
+PDEBUILD_BUILDFILE ?= $(PDEBUILD_SCRIPTS)/build.xml
+
+# Eclipse temporary configuration store
+PDEBUILD_CONFIG ?= debian/tmp/configure
+
+# Eclipse temporary workspace
+PDEBUILD_DATA ?= debian/tmp/workspace
+
+# Directory where plugins are built. Should contain two subdirectories,
+# plugins and features. Each of these contains plugins and features that
+# are built.
+PDEBUILD_BUILDDIR ?= src
+
+#
+PDEBUILD_OPTS ?=
+
+#
+PDEBUILD_VMARGS ?=
+
+
+# Current plaform, which should be used to build the plugins
+ifeq ($(DEB_HOST_ARCH),i386)
+PDEBUILD_PLATFORM ?= x86
+endif
+ifeq ($(DEB_HOST_ARCH),ia64)
+PDEBUILD_PLATFORM ?= ia64
+endif
+ifeq ($(DEB_HOST_ARCH),amd64)
+PDEBUILD_PLATFORM ?= x86_64
+endif
+ifeq ($(DEB_HOST_ARCH),powerpc)
+PDEBUILD_PLATFORM ?= ppc
+endif
+ifeq ($(DEB_HOST_ARCH),s390)
+PDEBUILD_PLATFORM ?= s390
+endif
+
+
+# Protocol for the cvs repository of the releng package
+PDEBUILD_BUILDERPROTOCOL ?= pserver
+
+# Username for the cvs repository of the releng package
+PDEBUILD_BUILDERUSER ?= anonymous
+
+# Host of the cvs repository of the releng package
+PDEBUILD_BUILDERHOST ?= dev.eclipse.org
+
+# Repository path for the cvs repository of the releng package
+PDEBUILD_BUILDERREP ?= /cvsroot/tools
+
+# CVS root for the cvs repository of the releng package
+PDEBUILD_BUILDERROOT ?= 
:$(PDEBUILD_BUILDERPROTOCOL):$(PDEBUILD_BUILDERUSER)@$(PDEBUILD_BUILDERHOST

r2046 - in trunk/eclipse-emf/debian: . patches

2006-04-17 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-04-17 12:19:00 + (Mon, 17 Apr 2006)
New Revision: 2046

Added:
   trunk/eclipse-emf/debian/eclipse-emf-releng.patch
   trunk/eclipse-emf/debian/eclipse-pdebuild.mk
   trunk/eclipse-emf/debian/patches/01-eclipse-emf-bootclasspath.patch
   trunk/eclipse-emf/debian/patches/02-eclipse-emf-copyplatformdocs.patch
   trunk/eclipse-emf/debian/patches/03-eclipse-emf-buildemf.patch
Removed:
   trunk/eclipse-emf/debian/patches/eclipse-emf-bootclasspath.patch
   trunk/eclipse-emf/debian/patches/eclipse-emf-buildemf.patch
   trunk/eclipse-emf/debian/patches/eclipse-emf-copyplatformdocs.patch
   trunk/eclipse-emf/debian/patches/eclipse-emf-releng.patch
Modified:
   trunk/eclipse-emf/debian/control
   trunk/eclipse-emf/debian/rules
Log:
Using a modified cdbs script from the eclipse-pdebuild project.


Modified: trunk/eclipse-emf/debian/control
===
--- trunk/eclipse-emf/debian/control2006-04-03 20:41:53 UTC (rev 2045)
+++ trunk/eclipse-emf/debian/control2006-04-17 12:19:00 UTC (rev 2046)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Stephan Michels [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.2), eclipse (= 3.1.1-5)
+Build-Depends: debhelper ( 4.2), eclipse (= 3.1.1-5), cdbs
 Build-Conflicts: eclipse-emf
 Standards-Version: 3.6.2
 

Added: trunk/eclipse-emf/debian/eclipse-emf-releng.patch
===
--- trunk/eclipse-emf/debian/eclipse-emf-releng.patch   2006-04-03 20:41:53 UTC 
(rev 2045)
+++ trunk/eclipse-emf/debian/eclipse-emf-releng.patch   2006-04-17 12:19:00 UTC 
(rev 2046)
@@ -0,0 +1,32 @@
+Index: sdk/customTargets.xml
+===
+RCS file: /cvsroot/tools/org.eclipse.emf.releng.build/sdk/customTargets.xml,v
+retrieving revision 1.24
+diff -u -r1.24 customTargets.xml
+--- sdk/customTargets.xml  10 Jun 2005 18:12:52 -  1.24
 sdk/customTargets.xml  17 Dec 2005 01:22:10 -
+@@ -49,6 +49,8 @@
+ 
+ !--tag the map files project--
+ antcall target=tagMapFiles /
++
++replace file=${buildDirectory}/maps/org.eclipse.emf/emf.map 
token=:ext:marcelop value=:pserver:anonymous/
+   /target
+ 
+   target name=tagMapFiles if=tagMaps
+@@ -168,7 +170,6 @@
+   /target
+ 
+   target name=getBaseInit
+-taskdef name=stripVersions 
classname=org.eclipse.releng.VersionNumberStripper /
+ property file=${buildDirectory}/maps/org.eclipse.emf/build.cfg /
+   /target
+ 
+@@ -188,6 +189,7 @@
+ antcall target=eclipseFileUnZip /
+ antcall target=eclipseFileUnTarGz /
+ 
++taskdef name=stripVersions 
classname=org.eclipse.releng.VersionNumberStripper /
+ stripVersions directory=${buildDirectory}/plugins /
+ 
+ !-- Extract doc.zip so we can create links in the java doc --

Added: trunk/eclipse-emf/debian/eclipse-pdebuild.mk
===
--- trunk/eclipse-emf/debian/eclipse-pdebuild.mk2006-04-03 20:41:53 UTC 
(rev 2045)
+++ trunk/eclipse-emf/debian/eclipse-pdebuild.mk2006-04-17 12:19:00 UTC 
(rev 2046)
@@ -0,0 +1,312 @@
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2005 Ivan Dubrov [EMAIL PROTECTED]
+# Description: Builds and cleans packages which use an Eclipse PDE Build
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307 USA.
+#
+# The file is modified by Stephan Michels[EMAIL PROTECTED]
+
+
+ifndef _cdbs_bootstrap
+_cdbs_scripts_path ?= /usr/lib/cdbs
+_cdbs_rules_path ?= /usr/share/cdbs/1/rules
+_cdbs_class_path ?= /usr/share/cdbs/1/class
+endif
+
+ifndef _cdbs_class_eclipse_pde
+_cdbs_class_eclipse_pde := 1
+
+include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
+include $(_cdbs_rules_path)/debhelper.mk$(_cdbs_makefile_suffix)
+
+# Version of the upstream package
+DEB_UPSTREAM_VERSION=$(shell echo $(DEB_NOEPOCH_VERSION) | grep -o '^[^\-]*')
+
+
+# The home directory of the Java Runtime Environment (JRE) or Java Development
+# Kit (JDK). You can either directly set JAVA_HOME in debian/rules or set
+# JAVA_HOME_DIRS to multiple possible home directories. The first existing
+# directory from this list is used for JAVA_HOME. You can also override
+# JAVACMD

Bug#362500: eclipse uninstallable for amd64

2006-04-14 Thread Stephan Michels
2006/4/13, Joel Rosenberg [EMAIL PROTECTED]:
 eclipse version 3.1.1-8 is uninstallable on my amd64 box due to the mixed
 upgrade to 3.1.2-1 in the repository.

You are right. I didn't noticed it before.It affects me too, because I
use a powerpc, which also not available.

@Michael: Do you know what goes wrong?

Stephan Michels


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#358594: eclipse binary, desktop/menu things should be in eclipse-platform

2006-04-14 Thread Stephan Michels
2006/3/23, Matthias Klose [EMAIL PROTECTED]:
 Package: eclipse
 Version: 3.1.2

 Forwarded from https://launchpad.net/distros/ubuntu/+source/eclipse/+bug/35871

 I have just installed eclipse-platform-gcj on dapper and I have no
 /usr/bin/eclipse script anywhere on my system. It appears this is
 supposed to be in the eclipse-platform-common package but it's not.

 Even though it shouldn't be required, I tried installing the full
 eclipse package and sure enough /usr/bin/eclipse was hiding
 there. This is not a viable solution, however, as the eclipse package
 additionally requires me to install:

 ant-optional, eclipse-jdt, eclipse-jdt-common, eclipse-pde,
 eclipse-pde-common, eclipse-source, junit

 None of which I want to install. It seems that the core
 eclipse-platform files like /usr/bin/eclipse should either be moved
 back to eclipse-platform-common or the SDK files (and required
 dependencies) should be moved back into the eclipse-sdk package as it
 used to be.

The eclipse executeable should be in the eclipse package.
eclipse-platform-gcj is not a stand-alone package
Through the installation of the eclipse package you ensure that you
have everything installed.

If you don't install all eclipse packages, then you will have missing
dependencies in eclipse if you don't install for example the pde
plugins. Eclipse won't work correctly without patching the features.
And even if
it works with patching of the features, I don't think it's a good idea,
because other plugins can depend on the core plugins and then they
will missing some plugins.

@Michael: I really think its a better idea to a have one package, The
current situation caused to much troubles. What do you think?

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#356028: eclipse-ecj is version 3.1.0, not 3.1.2

2006-04-14 Thread Stephan Michels
2006/3/9, Matthias Klose [EMAIL PROTECTED]:
 if ecj-java works, ecj-java -help still says it's version 3.1.0, not
 3.1.2

Hmm, doesn't happen to me:
$ ecj-java -help | grep 3.1
  testing /usr/lib/j2sdk1.4-ibm...Eclipse Java Compiler v_585_R31x,
3.1.2 release, Copyright IBM Corp 2000, 2006. All rights reserved.
$ ecj-java -v
  testing /usr/lib/j2sdk1.4-ibm...Eclipse Java Compiler v_585_R31x,
3.1.2 release, Copyright IBM Corp 2000, 2006. All rights reserved.
$ ecj -v
Eclipse Java Compiler v_585_R31x, 3.1.2 release, Copyright IBM Corp
2000, 2006. All rights reserved.

Does it still occur?

Thank you, Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#361696: libswt3.1-gtk-jni: Coarse dependencies

2006-04-14 Thread Stephan Michels
2006/4/9, Shaun Jackman [EMAIL PROTECTED]:
 Please put the Gnome and Mozilla shared libraries into their own
 binary packages to reduce the coarseness of libswt3.1-gtk-jni's
 dependencies.

If I put the jni libraries into separate packages, then I have to
separate the swt java lib too. This is much work and I don't see any
benefit I would gain. Moreover swt wasn't design my the eclipse team
to be apportionable.

Do you see any reason why we should do it?

Thank you, Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#352184: eclipse: cannot build from source with firefox support

2006-04-14 Thread Stephan Michels
2006/2/10, Michael Koch [EMAIL PROTECTED]:
 The support for firefox-dev is for Ubuntu. It doenst exist on Debian.
 That is intentional.

 We removed the Dependencies on firefox becuase it just doesnt work. We
 are still investigating this. The only thing that works currently is the
 mozilla-browser. firefox misses some symbol in its libraries. When this
 solved we will readd the other browsers.

I think we should switch to xulrunner. Using firefox for the browser bindings
wasn't very successful and I don't want to install the mozilla browser
only because of the browser bindings.

Hopefully I can try it later with xulrunner.

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#361692: libswt3.1-gtk-jni: Conflicts with libswt-gnome-gtk-3.1-jni

2006-04-14 Thread Stephan Michels
2006/4/9, Shaun Jackman [EMAIL PROTECTED]:
 Unpacking libswt3.1-gtk-jni (from .../libswt3.1-gtk-jni_3.1.2-1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/libswt3.1-gtk-jni_3.1.2-1_i386.deb (--unpack):
   trying to overwrite `/usr/lib/jni/libswt-gnome-gtk-3139.so', which
 is also in package libswt-gnome-gtk-3.1-jni

To have the same swt lib into two different packages was not our intention.
It would be good to have one swt lib in the archive, then such things
won't occur.
Is it possible to merge your swt package with our swt package?
Can we resolve the current situation somehow?

Thank you, Stephan Michels..


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#356027: eclipse-ecj installation error

2006-04-14 Thread Stephan Michels
2006/3/9, Matthias Klose [EMAIL PROTECTED]:
 $ ecj-java -help
 cat: /etc/eclipse/java_home: No such file or directory
 Could not find a suitable JVM.

 maybe missing dependencies? It's not sure, that /etc/eclipse/java_home
 exists.

Yes, seems so. java_home is installed by the eclipse package, but
eclipse-ecj does only depend on
eclipse-jdt-eclipse-platform-eclipse-rcp

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#359945: /usr/bin/eclipse: source is not a POSIX shell command

2006-04-14 Thread Stephan Michels
2006/3/29, Michal Politowski [EMAIL PROTECTED]:
 /usr/bin/eclipse is a /bin/sh script but it uses the source command, which
 is not specified by POSIX, to read ~/.eclipse/eclipserc.

Hmm, so, what sould we use instead of source?

Maybe we can use . ~/.eclipse/eclipserc instead ...

Stephan Michels



Bug#362500: eclipse uninstallable for amd64

2006-04-14 Thread Stephan Michels
2006/4/13, Joel Rosenberg [EMAIL PROTECTED]:
 eclipse version 3.1.1-8 is uninstallable on my amd64 box due to the mixed
 upgrade to 3.1.2-1 in the repository.

You are right. I didn't noticed it before.It affects me too, because I
use a powerpc, which also not available.

@Michael: Do you know what goes wrong?

Stephan Michels



Bug#357301: eclipse randomly crashes, usually at startup

2006-04-14 Thread Stephan Michels
2006/3/16, César Enrique García Dabó [EMAIL PROTECTED]:
  I am trying to use eclipse in my testing/unstable system.
  Each time I start eclipse with j2se it crashes randomly. Sometimes it doesn`t
  go beyond the splashscreen, other times it crashes just after the framework
  has been showed, and other times (not often) it crashes when trying to open
  a project or a menu option. I append the error report file created by
  java. Also a window is showed with the command line options,
  I reproduced it below.
  The java version used is:
 Java VM: Java HotSpot(TM) Client VM (Blackdown-1.4.2-03 mixed mode)

The stack trace seems to end at
org.eclipse.jface.bindings.keys.formatting.AbstractKeyFormatter.format(Lorg/eclipse/jface/bindings/keys/KeyStroke;)Ljava/lang/String;+57
, which doesn't execute any native code. So I can exclude any problem
which may occur with the SWT libs.

I would assume that it is an error of your vm. As we do not support
closed source software, you have to contact someone else.

  I have tried with sable-vm, but it randomly get hang, without response.
  I have also tried with kaffe, but it runs tremondously slowly and finally
  it also crashes (I found no log file).

I don't know much sablevm and it is known that kaffe is very slow. And
a new package for kaffe 1.1.7 is not available ATM.

I have good experiences with gcj and cacao, which you should try.

As I don't see any bugs I can solve, I will close this report.

Stephan Michels.



Bug#355104: Me Too!

2006-04-14 Thread Stephan Michels
2006/3/17, Benjamin Eastep [EMAIL PROTECTED]:
 I am also experiencing this bug (on one of my two machines), however purging
  reinstalling the eclipse packages did not solve the problem for me.

 Eclipse packages are all 3.1.2-1


Can you please open a separate report for your problem if it still
exists as you seems to have a different problem.
And please run eclipse with -clean -consolelog -debug to get more information.

I will close this report, because the original author has resolved his problem.

Thank you, Stephan Michels.



Bug#358594: eclipse binary, desktop/menu things should be in eclipse-platform

2006-04-14 Thread Stephan Michels
2006/3/23, Matthias Klose [EMAIL PROTECTED]:
 Package: eclipse
 Version: 3.1.2

 Forwarded from https://launchpad.net/distros/ubuntu/+source/eclipse/+bug/35871

 I have just installed eclipse-platform-gcj on dapper and I have no
 /usr/bin/eclipse script anywhere on my system. It appears this is
 supposed to be in the eclipse-platform-common package but it's not.

 Even though it shouldn't be required, I tried installing the full
 eclipse package and sure enough /usr/bin/eclipse was hiding
 there. This is not a viable solution, however, as the eclipse package
 additionally requires me to install:

 ant-optional, eclipse-jdt, eclipse-jdt-common, eclipse-pde,
 eclipse-pde-common, eclipse-source, junit

 None of which I want to install. It seems that the core
 eclipse-platform files like /usr/bin/eclipse should either be moved
 back to eclipse-platform-common or the SDK files (and required
 dependencies) should be moved back into the eclipse-sdk package as it
 used to be.

The eclipse executeable should be in the eclipse package.
eclipse-platform-gcj is not a stand-alone package
Through the installation of the eclipse package you ensure that you
have everything installed.

If you don't install all eclipse packages, then you will have missing
dependencies in eclipse if you don't install for example the pde
plugins. Eclipse won't work correctly without patching the features.
And even if
it works with patching of the features, I don't think it's a good idea,
because other plugins can depend on the core plugins and then they
will missing some plugins.

@Michael: I really think its a better idea to a have one package, The
current situation caused to much troubles. What do you think?

Stephan Michels.



Bug#356028: eclipse-ecj is version 3.1.0, not 3.1.2

2006-04-14 Thread Stephan Michels
2006/3/9, Matthias Klose [EMAIL PROTECTED]:
 if ecj-java works, ecj-java -help still says it's version 3.1.0, not
 3.1.2

Hmm, doesn't happen to me:
$ ecj-java -help | grep 3.1
  testing /usr/lib/j2sdk1.4-ibm...Eclipse Java Compiler v_585_R31x,
3.1.2 release, Copyright IBM Corp 2000, 2006. All rights reserved.
$ ecj-java -v
  testing /usr/lib/j2sdk1.4-ibm...Eclipse Java Compiler v_585_R31x,
3.1.2 release, Copyright IBM Corp 2000, 2006. All rights reserved.
$ ecj -v
Eclipse Java Compiler v_585_R31x, 3.1.2 release, Copyright IBM Corp
2000, 2006. All rights reserved.

Does it still occur?

Thank you, Stephan Michels.



Bug#361696: libswt3.1-gtk-jni: Coarse dependencies

2006-04-14 Thread Stephan Michels
2006/4/9, Shaun Jackman [EMAIL PROTECTED]:
 Please put the Gnome and Mozilla shared libraries into their own
 binary packages to reduce the coarseness of libswt3.1-gtk-jni's
 dependencies.

If I put the jni libraries into separate packages, then I have to
separate the swt java lib too. This is much work and I don't see any
benefit I would gain. Moreover swt wasn't design my the eclipse team
to be apportionable.

Do you see any reason why we should do it?

Thank you, Stephan Michels.



Bug#352184: eclipse: cannot build from source with firefox support

2006-04-14 Thread Stephan Michels
2006/2/10, Michael Koch [EMAIL PROTECTED]:
 The support for firefox-dev is for Ubuntu. It doenst exist on Debian.
 That is intentional.

 We removed the Dependencies on firefox becuase it just doesnt work. We
 are still investigating this. The only thing that works currently is the
 mozilla-browser. firefox misses some symbol in its libraries. When this
 solved we will readd the other browsers.

I think we should switch to xulrunner. Using firefox for the browser bindings
wasn't very successful and I don't want to install the mozilla browser
only because of the browser bindings.

Hopefully I can try it later with xulrunner.

Stephan Michels.



Bug#361692: libswt3.1-gtk-jni: Conflicts with libswt-gnome-gtk-3.1-jni

2006-04-14 Thread Stephan Michels
2006/4/9, Shaun Jackman [EMAIL PROTECTED]:
 Unpacking libswt3.1-gtk-jni (from .../libswt3.1-gtk-jni_3.1.2-1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/libswt3.1-gtk-jni_3.1.2-1_i386.deb (--unpack):
   trying to overwrite `/usr/lib/jni/libswt-gnome-gtk-3139.so', which
 is also in package libswt-gnome-gtk-3.1-jni

To have the same swt lib into two different packages was not our intention.
It would be good to have one swt lib in the archive, then such things
won't occur.
Is it possible to merge your swt package with our swt package?
Can we resolve the current situation somehow?

Thank you, Stephan Michels..



Bug#356027: eclipse-ecj installation error

2006-04-14 Thread Stephan Michels
2006/3/9, Matthias Klose [EMAIL PROTECTED]:
 $ ecj-java -help
 cat: /etc/eclipse/java_home: No such file or directory
 Could not find a suitable JVM.

 maybe missing dependencies? It's not sure, that /etc/eclipse/java_home
 exists.

Yes, seems so. java_home is installed by the eclipse package, but
eclipse-ecj does only depend on
eclipse-jdt-eclipse-platform-eclipse-rcp

Stephan Michels.



Bug#359945: /usr/bin/eclipse: source is not a POSIX shell command

2006-04-14 Thread Stephan Michels
2006/3/29, Michal Politowski [EMAIL PROTECTED]:
 /usr/bin/eclipse is a /bin/sh script but it uses the source command, which
 is not specified by POSIX, to read ~/.eclipse/eclipserc.

Hmm, so, what sould we use instead of source?

Maybe we can use . ~/.eclipse/eclipserc instead ...

Stephan Michels



Bug#362500: eclipse uninstallable for amd64

2006-04-14 Thread Stephan Michels
2006/4/13, Joel Rosenberg [EMAIL PROTECTED]:
 eclipse version 3.1.1-8 is uninstallable on my amd64 box due to the mixed
 upgrade to 3.1.2-1 in the repository.

You are right. I didn't noticed it before.It affects me too, because I
use a powerpc, which also not available.

@Michael: Do you know what goes wrong?

Stephan Michels



Bug#357301: eclipse randomly crashes, usually at startup

2006-04-14 Thread Stephan Michels
2006/3/16, César Enrique García Dabó [EMAIL PROTECTED]:
  I am trying to use eclipse in my testing/unstable system.
  Each time I start eclipse with j2se it crashes randomly. Sometimes it doesn`t
  go beyond the splashscreen, other times it crashes just after the framework
  has been showed, and other times (not often) it crashes when trying to open
  a project or a menu option. I append the error report file created by
  java. Also a window is showed with the command line options,
  I reproduced it below.
  The java version used is:
 Java VM: Java HotSpot(TM) Client VM (Blackdown-1.4.2-03 mixed mode)

The stack trace seems to end at
org.eclipse.jface.bindings.keys.formatting.AbstractKeyFormatter.format(Lorg/eclipse/jface/bindings/keys/KeyStroke;)Ljava/lang/String;+57
, which doesn't execute any native code. So I can exclude any problem
which may occur with the SWT libs.

I would assume that it is an error of your vm. As we do not support
closed source software, you have to contact someone else.

  I have tried with sable-vm, but it randomly get hang, without response.
  I have also tried with kaffe, but it runs tremondously slowly and finally
  it also crashes (I found no log file).

I don't know much sablevm and it is known that kaffe is very slow. And
a new package for kaffe 1.1.7 is not available ATM.

I have good experiences with gcj and cacao, which you should try.

As I don't see any bugs I can solve, I will close this report.

Stephan Michels.



Bug#355104: Me Too!

2006-04-14 Thread Stephan Michels
2006/3/17, Benjamin Eastep [EMAIL PROTECTED]:
 I am also experiencing this bug (on one of my two machines), however purging
  reinstalling the eclipse packages did not solve the problem for me.

 Eclipse packages are all 3.1.2-1


Can you please open a separate report for your problem if it still
exists as you seems to have a different problem.
And please run eclipse with -clean -consolelog -debug to get more information.

I will close this report, because the original author has resolved his problem.

Thank you, Stephan Michels.



Bug#361692: libswt3.1-gtk-jni: Conflicts with libswt-gnome-gtk-3.1-jni

2006-04-14 Thread Stephan Michels
2006/4/9, Shaun Jackman [EMAIL PROTECTED]:
 Unpacking libswt3.1-gtk-jni (from .../libswt3.1-gtk-jni_3.1.2-1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/libswt3.1-gtk-jni_3.1.2-1_i386.deb (--unpack):
   trying to overwrite `/usr/lib/jni/libswt-gnome-gtk-3139.so', which
 is also in package libswt-gnome-gtk-3.1-jni

To have the same swt lib into two different packages was not our intention.
It would be good to have one swt lib in the archive, then such things
won't occur.
Is it possible to merge your swt package with our swt package?
Can we resolve the current situation somehow?

Thank you, Stephan Michels..



Bug#356027: eclipse-ecj installation error

2006-04-14 Thread Stephan Michels
2006/3/9, Matthias Klose [EMAIL PROTECTED]:
 $ ecj-java -help
 cat: /etc/eclipse/java_home: No such file or directory
 Could not find a suitable JVM.

 maybe missing dependencies? It's not sure, that /etc/eclipse/java_home
 exists.

Yes, seems so. java_home is installed by the eclipse package, but
eclipse-ecj does only depend on
eclipse-jdt-eclipse-platform-eclipse-rcp

Stephan Michels.



Re: VNC/XDMCP in network:/// ?

2006-04-07 Thread Stephan Michels
 On Wed, Apr 05, 2006 at 06:33:46PM +0200, J SC wrote:
  I recommend you Avahi discovery applet (service discovery applet)
  http://avahi.org/wiki/AdministrativeAvahiApplication#AvahiDiscoveryApplet

I know it, but it is not the same from the user perspective. AFAIK, it
was only developed to test Avahi.

  To start a remote session don't seems like a task for nautilus.

2006/4/5, Sriram Ramkrishna [EMAIL PROTECTED]:
 I agree.  I'm fairly sure that Alex will reject this.  In fact,
 there was something similar in the past regarding avahi.

 The problem is that we need to find some other way to show services
 that aren't disk/file related.  Essentially, people want nautilus
 to be a presentation manager (eg how it presents data to the user)
 to borrow an OS/2 term. (at least I think it was OS/2 that called it that)

From user perspective, it is natural to search in the network folder
to get a connection to other computers, even if it is more
service-orientated as file-based.

And I thought that especially in the Unix world exist the paradigm
that everything is a file. My idea was that these services can be
represented as a special file in the network folder with an own
mime-type like application/x-vnc . And the programs tsclient or
gnome-rdp are registered for this mime-type.

That would be more Zen ;-) It can't be more simple than open the
network folder and click on the computer XY to open a vnc session.

 But we don't have that.  Ideas?  We should probably start a thread
 somewhere to deal with this.  I don't think nautilus-list is the
 best place for it.

Hmm, maybe.
--
nautilus-list mailing list
nautilus-list@gnome.org
http://mail.gnome.org/mailman/listinfo/nautilus-list


Re: nautilus improvements

2006-03-31 Thread Stephan Michels
   Archives are archives precisely so that they aren't in the way of normal
   operations and thus what is in them should NOT be found except when you
   _specifically_ demand it. Many people get that wrong and use archives
   just to save space when they should *use a decent filesystem that does
   that automatically instead*.
 
  I meant on demand. That's why I wrote checkbox.

 well, given one opens those archives once every full moon or less, I'd
 put it into the category too seldomly used, use extra app - and
 indeed, it is one.
 Now, file-roller could be made to look and be useable exactly like
 nautilus, if that's what's bothering you...

Sad to hear. I thought to treat archives like regular folders was one
of the best
suggestions. I use midnight commander a lot and love this feature.

I don't understand this argument here. The situation is the same as
with a ftp-client, why would one integrate a ftp client(similar to) 
into nautilus if you can handle it in a external program like for
example gftp. Because it makes the whole interface simpler. You don't
have to learn two programs.

The same situation with a cd burning program. I love the integration
of the cd burning abilities of nautilus. I can imaging a similar
behaviour for archives, like an entry in the context menu of a
file/dir to create a new archive of it, similar to burn this iso
image.

Please don't drop this idea.

Stephan Michels.
--
nautilus-list mailing list
nautilus-list@gnome.org
http://mail.gnome.org/mailman/listinfo/nautilus-list


Re: eclipse-nls-sdk update

2006-03-23 Thread Stephan Michels
On 3/23/06, Hideki Yamane [EMAIL PROTECTED] wrote:
 Hi debian-java list,

  In Debian unstable, eclipse-nls-sdk pacakge is too old and useless now.
  I've posted it to BTS #340823 and make packages and announced to Japanese
 Debian community about my packages. Some of them uses my packages and they
 say it works well.

There are already packages for the NLS of the recent Eclipse version
in pkg-java, but we havn't found time to review and upload it. At
least I didn't find a sponsor yet.

The last stand was that I cut the NLS into pieces like the Eclipse
package in platform,jdt,pde etc. But I think that it results into too
much packages and one eclipse-i18n package should be enough.

Michael Koch told me that he has objections against a package containing all
languages and he prefer a package for each language. But again I think
it results into too much packages.

Stephan Michels.



Bug#356497: libswt3.1-gtk-java: depends on mozilla-browser on i386

2006-03-12 Thread Stephan Michels
On 3/12/06, J. Woch [EMAIL PROTECTED] wrote:
 (only) for i386 platforms, the package still depends on mozilla-browser. this
 should be replaced to something generic.

Like what for example? xulrunner is not in a useable stage yet. And
firefox is a pile of crap.



Bug#330238: RFP: xom -- tree-based API for processing XML with Java

2006-02-18 Thread Stephan Michels
Hi,

I almost finshed a package for XOM, which I need for the package of CDK.
At the moment I must wait until Wolfgang Baer upload a new version of
libjaxen-java.


Stephan Michels.



Bug#330238: RFP: xom -- tree-based API for processing XML with Java

2006-02-18 Thread Stephan Michels
Hi,

I almost finshed a package for XOM, which I need for the package of CDK.
At the moment I must wait until Wolfgang Baer upload a new version of
libjaxen-java.


Stephan Michels.



r1924 - trunk/cdk/debian

2006-02-18 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-02-18 14:13:00 + (Sat, 18 Feb 2006)
New Revision: 1924

Modified:
   trunk/cdk/debian/cdk.manpages
Log:
cdk.manpages: Fix paths


Modified: trunk/cdk/debian/cdk.manpages
===
--- trunk/cdk/debian/cdk.manpages   2006-02-18 11:34:36 UTC (rev 1923)
+++ trunk/cdk/debian/cdk.manpages   2006-02-18 14:13:00 UTC (rev 1924)
@@ -1,10 +1,10 @@
-cdk-man/cdk-dbadmin.1
-cdk-man/cdk-download.1
-cdk-man/cdk-fileconvert.1
-cdk-man/cdk-fingerprinter.1
-cdk-man/cdk-guessformat.1
-cdk-man/cdk-iupacname.1
-cdk-man/cdk-substructure.1
-cdk-man/cdk-test.1
-cdk-man/cdk-validate.1
-cdk-man/cdk-view.1
+debian/cdk-manpages/cdk-dbadmin.1
+debian/cdk-manpages/cdk-download.1
+debian/cdk-manpages/cdk-fileconvert.1
+debian/cdk-manpages/cdk-fingerprinter.1
+debian/cdk-manpages/cdk-guessformat.1
+debian/cdk-manpages/cdk-iupacname.1
+debian/cdk-manpages/cdk-substructure.1
+debian/cdk-manpages/cdk-test.1
+debian/cdk-manpages/cdk-validate.1
+debian/cdk-manpages/cdk-view.1


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


r1926 - trunk/cdk/debian

2006-02-18 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-02-18 17:26:00 + (Sat, 18 Feb 2006)
New Revision: 1926

Modified:
   trunk/cdk/debian/rules
Log:
Update cdk modules.


Modified: trunk/cdk/debian/rules
===
--- trunk/cdk/debian/rules  2006-02-18 17:21:37 UTC (rev 1925)
+++ trunk/cdk/debian/rules  2006-02-18 17:26:00 UTC (rev 1926)
@@ -38,12 +38,12 @@
extra \
interfaces \
io \
-   io-jmol \
libio-cml \
pdb-cml \
pdb \
qsar-cml \
qsar \
+   qsar-pdb \
render \
standard \
swing 


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


r1927 - trunk/xom/debian

2006-02-18 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-02-18 17:50:11 + (Sat, 18 Feb 2006)
New Revision: 1927

Modified:
   trunk/xom/debian/rules
Log:
Lower Xss to 3Mb, but must be higher than 2Mb.


Modified: trunk/xom/debian/rules
===
--- trunk/xom/debian/rules  2006-02-18 17:26:00 UTC (rev 1926)
+++ trunk/xom/debian/rules  2006-02-18 17:50:11 UTC (rev 1927)
@@ -14,7 +14,7 @@
 #ANT_ARGS := -verbose
 
 ANT_ARGS := -Dbuild.sysclasspath=only
-ANT_OPTS := -Xss4m
+ANT_OPTS := -Xss3m
 
 LIBRARY_PACKAGE  := xom
 API_VERSION  := 1.1


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


Bug#352184: eclipse: cannot build from source with firefox support

2006-02-10 Thread Stephan Michels
On 2/10/06, Bastian Kleineidam [EMAIL PROTECTED] wrote:
 the latest upload required me to install mozilla-browser, so I tried
 to build eclipse with firefox support. This adds a firefox-dev
 build dependency, which does not exist. So it is impossible to build
 eclipse with firefox support on Debian.
 Please enable the build with firefox on Debian, or even better,
 support both packages - firefox and mozilla - like the last version.

We don't like Firefox anymore, and we won't support it any longer because of
his bugs.

Hmm, just kidding.

We run into many difficulties with Firefox (1.4.99), and we trying to
fix these first.

If you try to build the package by your own, then change the variable
in rules to
with_browser := firefox



Bug#352178: eclipse: Error reading configuration

2006-02-10 Thread Stephan Michels
On 2/10/06, Mateusz Kaduk [EMAIL PROTECTED] wrote:
 When I start eclipse I get exception about configuration file

 An error has occurred. See the log file
 /usr/share/eclipse/configuration/1139562299034.log.

 If chmod o+w /usr/share/eclipse/configuration then
 it creates dirs in /usr/share/eclipse/configuration and start.

I changed the order of some lines and make a diff between your log output
and mine:
@@ -5,15 +5,15 @@
 -jar /usr/share/eclipse/startup.jar
 -os linux
 -ws gtk
--arch ppc
+-arch x86
 -launcher /usr/lib/eclipse/eclipse
 -name Eclipse
 -showsplash 600
--exitdata a00019
+-exitdata 300015
 -install /usr/share/eclipse
 -debug
 -consolelog
--vm /usr/lib/jvm/java-gcj/bin/java
+-vm /usr/lib/j2sdk1.5-sun/bin/java
 -vmargs
 -Djava.library.path=/usr/lib/jni
 -Dgnu.gcj.precompiled.db.path=/var/lib/gcj-4.0/classmap.db
@@ -25,10 +25,6 @@
 Configuration file:
 file:/usr/share/eclipse/configuration/config.ini loaded
 Configuration location:
-file:/home/stephan/.eclipse/org.eclipse.platform_3.1.2/configuration/
-Configuration file:
-
file:/home/stephan/.eclipse/org.eclipse.platform_3.1.2/configuration/config.ini
not found or not read
-Shared configuration location:
 file:/usr/share/eclipse/configuration/
 Framework located:
 file:/usr/share/eclipse/plugins/org.eclipse.osgi_3.1.2.jar
@@ -40,4 +36,4 @@
/usr/lib/eclipse/eclipse-nameEclipse-showsplash600/usr/share/eclipse/plugins/org.eclipse.platform_3.1.2/splash.bmp
 Debug options:
-file:/home/stephan/.options not found
+file:/home/mateusz/.options not found

It seems that eclipse doesn't use
.eclipse/org.eclipse.platform_3.1.2/configuration/ as your
configuration
directory. With your exception in the log I think it can't create a
temporary lock file in
.eclipse/org.eclipse.platform_3.1.2/configuration/org.eclipse.osgi/.manager:
.tmpys9gk6.instance for example.

Can you try to create this file to see if you have some weird problems with your
file system.

Stephan Michels.



Accepted cacao 0.94-2 (source i386)

2006-02-07 Thread Stephan Michels
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  1 Feb 2006 23:43:13 +0100
Source: cacao
Binary: cacao
Architecture: source i386
Version: 0.94-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Stephan Michels [EMAIL PROTECTED]
Description: 
 cacao  - Java virtual machine
Closes: 350729
Changes: 
 cacao (0.94-2) unstable; urgency=low
 .
   * debian/patches/01cacao-fpu-prec.patch: Add patch to fix incorrect
 results of computations in extended precision on x86.
 Closes: #350729
   * debian/rules: Using the CDBS scripts.
Files: 
 3b5ee63ca7d804b538287d8544e48325 804 interpreters optional cacao_0.94-2.dsc
 ea3863e83d6983f4cba68ecf598681f0 11185 interpreters optional 
cacao_0.94-2.diff.gz
 b59acae8dd5e0c9a49757ac3d304b018 515840 interpreters optional 
cacao_0.94-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFD6Km5WSOgCCdjSDsRAp5+AJ93VXbD3kHUcVFU+16PJmIoZmDiPQCeJoWr
AwhSKbejbPe7s5WK94BuTBQ=
=2qDG
-END PGP SIGNATURE-


Accepted:
cacao_0.94-2.diff.gz
  to pool/main/c/cacao/cacao_0.94-2.diff.gz
cacao_0.94-2.dsc
  to pool/main/c/cacao/cacao_0.94-2.dsc
cacao_0.94-2_i386.deb
  to pool/main/c/cacao/cacao_0.94-2_i386.deb


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



r1867 - trunk/eclipse/debian

2006-02-07 Thread Stephan Michels
Author: tashiro-guest
Date: 2006-02-07 17:40:59 + (Tue, 07 Feb 2006)
New Revision: 1867

Modified:
   trunk/eclipse/debian/eclipse-platform-common.install
Log:
Install only /usr/share/eclipse/configuration/config.ini


Modified: trunk/eclipse/debian/eclipse-platform-common.install
===
--- trunk/eclipse/debian/eclipse-platform-common.install2006-02-07 
16:16:04 UTC (rev 1866)
+++ trunk/eclipse/debian/eclipse-platform-common.install2006-02-07 
17:40:59 UTC (rev 1867)
@@ -2,7 +2,7 @@
 debian/tmp/usr/share/eclipse/.eclipseproduct
 debian/tmp/usr/share/eclipse/links
 debian/tmp/usr/share/eclipse/eclipse.ini
-debian/tmp/usr/share/eclipse/configuration
+debian/tmp/usr/share/eclipse/configuration/config.ini
 
 debian/tmp/usr/share/eclipse/features/org.eclipse.platform_*
 


___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


Bug#351518: NPE occurs if I try the Jmol applet

2006-02-05 Thread Stephan Michels
Package: gcjwebplugin
Version: 0.3.2-1

I got following exception if I try the jmol applet for example from
http://jmol.sourceforge.net/demo/dots/ :

java.lang.StringIndexOutOfBoundsException: String index out of range: 0
   at java.lang.String.charAt(int) (/usr/lib/libgcj.so.6.0.0)
   at java.lang.ClassLoader.loadClass(java.lang.String, boolean)
(/usr/lib/libgcj.so.6.0.0)
   at java.lang.ClassLoader.loadClass(java.lang.String)
(/usr/lib/libgcj.so.6.0.0)
   at gnu.gcjwebplugin.AppletViewer.createApplet(gnu.gcjwebplugin.AppletTag)
(Unknown Source)
   at gnu.gcjwebplugin.PluginAppletWindow.setHandle(long) (Unknown Source)
   at gnu.gcjwebplugin.PluginAppletViewer.start(java.io.InputStream,
java.io.OutputStream) (Unknown Source)
   at gnu.gcjwebplugin.AppletViewer.main(java.lang.String[]) (Unknown Source)
   at gnu.java.lang.MainThread.call_main() (/usr/lib/libgcj.so.6.0.0)
   at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)

Maybe ClassLoader.loadClass() is called with  and should throw a
ClassNotFoundException instead. I packaged a little testcase, which
can download from:
http://vern.chem.tu-berlin.de/~stephan/software/jmol-test.tar.gz

Stephan Michels



Bug#350729: cacao: Incorrect result due to computations in extended precision on x86 (regression)

2006-02-01 Thread Stephan Michels
On 1/31/06, Vincent Lefevre [EMAIL PROTECTED] wrote:
 According to the Java specifications, computations must correspond
 to the IEEE-754 double precision, and the result is incorrect.

 Package cacao 0.93-4 did not have this problem:

 z = 9.007199254740994E15
 d = 0.0

Thank you for finding this bug.
I got a patch from Christian Thalinger and the problem should be
fixed in the next upload.

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#350729: cacao: Incorrect result due to computations in extended precision on x86 (regression)

2006-02-01 Thread Stephan Michels
On 1/31/06, Vincent Lefevre [EMAIL PROTECTED] wrote:
 According to the Java specifications, computations must correspond
 to the IEEE-754 double precision, and the result is incorrect.

 Package cacao 0.93-4 did not have this problem:

 z = 9.007199254740994E15
 d = 0.0

Thank you for finding this bug.
I got a patch from Christian Thalinger and the problem should be
fixed in the next upload.

Stephan Michels.



Re: Can I use the apps running free Java???

2006-01-26 Thread Stephan Michels
On 1/26/06, Joost Kraaijeveld [EMAIL PROTECTED] wrote:
 Hi,

 Is it possible to run the following combination of applications on a
 Debian AMD64 Etch installation, using nothing but free software (I know
 it can using Sun's SDK, because that is what I am running now):

 - Java 1.5

We are planning to package classpath-generics. With Cacao or jamvm you are able
to run most of the Java 1.5 stuff.

 - Swing client

Not know the status of swing.

 - JBoss 4.03SP1 or higher

Don't know, will be difficult. Jonas, for example, seems to be able to
run on a a free
java stack.

 - Eclipse 3.1.1 or higher

That shouldn't be a problem.



Re: Trying to build jonas deb package

2006-01-23 Thread Stephan Michels
On 1/23/06, प्रवीण् ए (Praveen A) [EMAIL PROTECTED] wrote:
 2006/1/23, प्रवीण् ए (Praveen A) [EMAIL PROTECTED]:
 
  So now building jonathan-rmi from
 http://vern.chem.tu-berlin.de/~stephan/software/upload/
 
 And it requires libjacorb-java to build.

 Stephen (tashiro) has the packages but has not uploaded it yet.
 Status: Waiting fro libjacorb-java pckcage from tashiro

I uploaded also the jacorb package to the same address, but without
warranty. Both packages are in a really early stage.
I focus myself currently on the packages for axis etc, which I
need for eclipse-wst too.

Stephan Michels.


Re: Trying to build jonas deb package

2006-01-20 Thread Stephan Michels
 2006/1/20, प्रवीण् ए (Praveen A) [EMAIL PROTECTED]:
  jonas_compile:
  [javac] Compiling 1196 source files to
 /home/pravi/jonas/classes/common
  [javac] --
  [javac] 1. ERROR in
 /home/pravi/jonas/src/org/objectweb/jonas_lib/naming/JacORBPRODelegate.java
  [javac]  (at line 46)
  [javac] public class JacORBPRODelegate extends
 org.objectweb.carol.rmi.multi.JacORBPRODelegat
  [javac] e {
  [javac]
 ^^^
  [javac] The type
 javax.rmi.CORBA.PortableRemoteObjectDelegate cannot be
 resolved. It is indirectly referenced from required .class files
  [javac] --
  [javac] 1 problem (1 error)


AFAIK, the corba classes are missing in gcj 4.0.x . You can use the classes from
JacORB like RedHat it does. Or you use a VM, which uses a newer version
of classpath (=0.19) like jamvm or cacao.

For Kaffe I'm not sure, maybe..

Stephan Michels.


Re: Trying to build jonas deb package

2006-01-20 Thread Stephan Michels
On 1/20/06, प्रवीण् ए (Praveen A) [EMAIL PROTECTED] wrote:
 Hi,

   I' m trying to figure out how to build jonas for debian. I am a newbie to
 debian packaging. If anyone alse is working on the same thing it would great
 to work together.

True. I spend some time to elaborate how difficult it is to package Jonas.
I tried to package wsdl4j, uddi4j and axis so far, which seems to be a
dependency
if I look at the RedHat packages. I have also JacORB and Jonathan-rmi
as package.
But AFAICS jonathan-rmi and JacORB aren't really necessary, because we
have a working RMI and CORBA impl. in classpath(=0.19) (more or
less...)

BTW, I didn't found the sources of the RedHat packages.

If you're interested then maybe you can join [EMAIL PROTECTED] .
It's easier to communicate... at least for me.

Stephan Michels.


IBM Public License

2006-01-18 Thread Stephan Michels
Hi,
I'm new to the whole debian packaging movement. So, please excuse me if I ask
a question, which is already answered.

I want to package UDDI4J ( http://uddi4j.sourceforge.net/ ), which runs
under the IBM Public License Version 1.0 (
http://www-128.ibm.com/developerworks/library/os-ipl.html ).

Can I get troubles if I package this software for Debian? Is this
license approved?


Thank you,
Stephan Michels.



Bug#347749: eclipse-platform-common: allow documented -vmargs for /usr/bin/eclipse

2006-01-12 Thread Stephan Michels
On 1/12/06, Bastian Kleineidam [EMAIL PROTECTED] wrote:
 the current /usr/bin/eclipse script does not allow the -vmargs option.
 The patch scans for -vmargs and appends the custom options for the native
 eclipse binary.
 This way, I can run eclipse -vmargs -Xmx512 for example.

Thank you for the patch, should be fix in 3.1.1-9.
I fixed also -install, maybe it can be useful in some situations.

Stephan Michels.


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#347749: eclipse-platform-common: allow documented -vmargs for /usr/bin/eclipse

2006-01-12 Thread Stephan Michels
On 1/12/06, Bastian Kleineidam [EMAIL PROTECTED] wrote:
 the current /usr/bin/eclipse script does not allow the -vmargs option.
 The patch scans for -vmargs and appends the custom options for the native
 eclipse binary.
 This way, I can run eclipse -vmargs -Xmx512 for example.

Thank you for the patch, should be fix in 3.1.1-9.
I fixed also -install, maybe it can be useful in some situations.

Stephan Michels.



Bug#345756: eclipse-platform-common: The included patch fixes the problem (at least for me)

2006-01-05 Thread Stephan Michels
On 1/5/06, Yaacov Akiba Slama [EMAIL PROTECTED] wrote:
 +OFS=$IFS
 +IFS=:

What's the function fo OFS and IFS ?


Anyway thank you for the patch,
Sephan Michels



Bug#345677: eclipse: Eclipse doesn't start

2006-01-05 Thread Stephan Michels
On 1/3/06, Vedran Furač [EMAIL PROTECTED] wrote:
 Arrgh, you can close this bug. The main reason I got these errors is
 existence of redundant libswt-gtk-3.1-java package in the archive and
 azureus depending on it. You should fix this ASAP.

libswt-gtk-3.1-java is a separate package and has nothing to do with the
Eclipse package. You shouldn't get problems if you install this package.
Are you sure that Eclipse doesn't start if you install libswt-gtk-3.1-java?

 Also, I think that eclipse-source package isn't essential for eclipse.

The org.eclipse.sdk feature depend on the source features and plugins.
If we make this package optional, then we get complains from the framework.

Stephan Michels.


Bug#345677: eclipse: Eclipse doesn't start

2006-01-05 Thread Stephan Michels
On 1/3/06, Vedran Furač [EMAIL PROTECTED] wrote:
 Arrgh, you can close this bug. The main reason I got these errors is
 existence of redundant libswt-gtk-3.1-java package in the archive and
 azureus depending on it. You should fix this ASAP.

libswt-gtk-3.1-java is a separate package and has nothing to do with the
Eclipse package. You shouldn't get problems if you install this package.
Are you sure that Eclipse doesn't start if you install libswt-gtk-3.1-java?

 Also, I think that eclipse-source package isn't essential for eclipse.

The org.eclipse.sdk feature depend on the source features and plugins.
If we make this package optional, then we get complains from the framework.

Stephan Michels.


CVS cacao/debian

2006-01-04 Thread Stephan Michels
Update of /cvsroot/pkg-java/cacao/debian
In directory haydn:/tmp/cvs-serv2758

Modified Files:
changelog control 
Log Message:
* debian/control: Fixed typo. Closes: #345974


--- /cvsroot/pkg-java/cacao/debian/changelog2006/01/03 06:52:19 1.5
+++ /cvsroot/pkg-java/cacao/debian/changelog2006/01/04 16:25:55 1.6
@@ -1,3 +1,9 @@
+cacao (0.93-5) unstable; urgency=low
+
+  * debian/control: Fixed typo. Closes: #345974
+
+ -- Stephan Michels [EMAIL PROTECTED]  Wed,  4 Jan 2006 17:24:54 +0100
+
 cacao (0.93-4) unstable; urgency=low
 
   * Added jikes, zip and zlib1g-dev to build-Depends.
--- /cvsroot/pkg-java/cacao/debian/control  2006/01/03 06:52:19 1.4
+++ /cvsroot/pkg-java/cacao/debian/control  2006/01/04 16:25:55 1.5
@@ -11,7 +11,7 @@
 Depends: classpath (= 0.19), classpath-common (= 0.19), ${shlibs:Depends}
 Description: Java virtual machine
  CACAO is a free virtual machine for running Java programs
- programs.  It has a state-of-the-art optimizing JIT compiler, with 
+ It has a state-of-the-art optimizing JIT compiler, with 
  performance competitive with that of the Sun HotSpot product JVM.  
  .
  Note that CACAO is not officially certified as Java.   (Nor is any

___
pkg-java-commits mailing list
pkg-java-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits


Accepted eclipse 3.1.1-7 (source i386 all)

2006-01-02 Thread Stephan Michels
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 23 Dec 2005 12:24:07 +0100
Source: eclipse
Binary: eclipse-rcp-common eclipse-jdt-common eclipse-platform-gcj 
eclipse-source libswt3.1-gtk-jni libswt3.1-gtk-java eclipse-efj eclipse-pde-gcj 
eclipse-ecj-gcj eclipse-jdt eclipse-ecj eclipse-platform eclipse-sdk 
eclipse-jdt-gcj eclipse eclipse-pde eclipse-pde-common eclipse-rcp-gcj 
eclipse-rcp eclipse-platform-common
Architecture: source i386 all
Version: 3.1.1-7
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Stephan Michels [EMAIL PROTECTED]
Description: 
 eclipse- Extensible Tool Platform and Java IDE
 eclipse-ecj - Eclipse Java compiler and Ant plug-in
 eclipse-ecj-gcj - Native version of the Eclipse Java compiler
 eclipse-efj - Eclipse Java code formatter
 eclipse-jdt - Java Development Tools plug-ins for Eclipse
 eclipse-jdt-common - Java Development Tools plug-ins for Eclipse (common files)
 eclipse-jdt-gcj - Java Development Tools plug-ins for Eclipse (GCJ version)
 eclipse-pde - Plug-in Development Environment to develop Eclipse plug-ins
 eclipse-pde-common - Plug-in Development Environment to develop Eclipse 
plug-ins (comm
 eclipse-pde-gcj - Plug-in Development Environment to develop Eclipse plug-ins 
(GCJ 
 eclipse-platform - Eclipse platform without plug-ins to develop any language
 eclipse-platform-common - Eclipse platform without plug-ins to develop any 
language (common
 eclipse-platform-gcj - Eclipse platform without plug-ins to develop any 
language (GCJ ve
 eclipse-rcp - Eclipse rich client platform
 eclipse-rcp-common - Eclipse rich client platform (common files)
 eclipse-rcp-gcj - Eclipse rich client platform (GCJ version)
 eclipse-sdk - Extensible Tool Platform and Java IDE
 eclipse-source - Eclipse source code plug-ins
 libswt3.1-gtk-java - Fast and rich GUI toolkit for Java, gtk2 version
 libswt3.1-gtk-jni - Platform dependent files for libswt3.1-gtk-java
Closes: 341854 342255 342305 342338 342505 342579 342695 343089 343114 343315
Changes: 
 eclipse (3.1.1-7) unstable; urgency=low
 .
   [ Stephan Michels ]
   * debian/copyright: Updated license to EPL 1.0. Closes: #342695
   * debian/eclipse-rcp.prerm: Fix the deletion of the eclipse
 directories in /usr/local/lib, so that it doesn't fail if they are not
 empty. Closes: #342338, #342305
   * debian/extra/eclipse.1: Updated and added missing commandline
 options. Closes: #343315
   * debian/patches/eclipse-public-applypatch.dpatch: Add patch to make some
 of the API of the compare plugin public, which is needed for the bugzilla
 plugin (https://bugs.eclipse.org/bugs/show_bug.cgi?id=98707)
   * debian/rules,debian/eclipse-ecj.manpages,debian/eclipse-ecj-gcj.manpages,
 debian/extra/ecj.1,debian/extra/ecj-java.1,debian/extra/ecj-gcj.1:
 Make an own copy for ecj-gcj with a special comment about gcj and
 use *.manpages instead of a copy within the rules.
   * debian/control, debian/rules: Added dependency to classpath-doc and enabled
 eclipse-link-classpathdoc.dpatch to prevent that javadoc is fetching
 javadoc informations from java.sun.com during the build time.
 .
   [ Michael Koch ]
   * debian/extra/eclipse.1: Fixed typo.
   * debian/extra/eclipse.sh: Added property for faster startup with GCJ 4.0:
 -Dgnu.gcj.runtime.VMClassLoader.library_control=never.
   * debian/extra/eclipse.sh: Use /bin/sh to as shell. Fixed to be POSIX-
 compliant. Closes: #342255
   * debian/rules: Generalized architecture support where debian arch name
 is the same as the eclipse arch name. Closes: #342579
   * debian/control.in: libswt3.1-gtk-java: Alternatively Depends on firefox
 (= 1.4.99). Closes: 342505
   * debian/control.in: eclipse-pde-common: Don't depend on eclipse-pde.
 Closes: #341854
   * debian/control.in: eclipse-platform-common: Don't depend on
 eclise-platform-common.
   * debian/eclipse-platform-common.install, 
debian/eclipse-platform-common.menu,
 debian/rules, debian/extra/eclipse32.xpm: Implemented menu entry for X11
 desktops the Debian way. Closes: #343114
   * debian/extra/eclipse.sh: Implemented setting of MOZILLA_FIVE_HOME for
 Firefox 1.5 correctly.
   * debian/control.in: Build-Depends on gjdoc (= 0.7.7). Closes: #343089
   * debian/rules: Moved natively compiled jars to /usr/lib/gcj-4.0 and
 reworked it to support updates to newer GCJ versions more easily.
Files: 
 410db2675a959b98c7e417463457ce16 1511 devel optional eclipse_3.1.1-7.dsc
 f60e7c08b315bfea73e90631249a1fe2 112240 devel optional eclipse_3.1.1-7.diff.gz
 a3eb05c70e1873a56be01a0a82624276 4685582 devel optional 
eclipse-rcp-common_3.1.1-7_all.deb
 df3e5fa791261775bca68aecd564c88a 36115282 devel optional 
eclipse-platform-common_3.1.1-7_all.deb
 320d3d900a61cf8bb7739d6a06697645 22231942 devel optional 
eclipse-jdt-common_3.1.1-7_all.deb
 97adca177af220c7782c2bc7428e635d 5719696 devel

Accepted eclipse-cdt 3.0.1-1 (source i386)

2005-12-30 Thread Stephan Michels
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 21 Dec 2005 16:58:32 +0100
Source: eclipse-cdt
Binary: eclipse-cdt
Architecture: source i386
Version: 3.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Stephan Michels [EMAIL PROTECTED]
Description: 
 eclipse-cdt - C/C++ Development Tools for Eclipse
Closes: 195236 284911
Changes: 
 eclipse-cdt (3.0.1-1) unstable; urgency=low
 .
   [ Michael Koch ]
   * Initial Version (Closes: #195236, #284911).
 .
   [ Stephan Michels ]
   * debian/control: Changed the dependency from eclipse-sdk to eclipse.
 Updated the description.
   * debian/rules: Use variable for the name of the releng plugin.
   * debian/rules: Use -DskipFetch=true instead of -DdontFetchAnything=true.
   * debian/rules: Define property config in rules instead of using
 patches to change the properties files.
   * debian/copyright: Updated copyright from CPL to EPL
   * debian/rules: Add patch for disable the logging to a file
 for the javadoc generation.
Files: 
 14175b763f1e7428436752c0ea5010b6 718 devel optional eclipse-cdt_3.0.1-1.dsc
 72e5c148283a3f1cf45d69f748fd3739 9180990 devel optional 
eclipse-cdt_3.0.1.orig.tar.gz
 1ea887b3e9281c331f21e77da103bfc2 237586 devel optional 
eclipse-cdt_3.0.1-1.diff.gz
 a821a93f50059426411581344d1d13a6 19035342 devel optional 
eclipse-cdt_3.0.1-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDqpSwWSOgCCdjSDsRAoXBAJ9/y/5pT8M01ZvnD6SHLtY9diUcOgCgiZuI
MBNQS1oE+3u7VfkJagNWqhg=
=8Jay
-END PGP SIGNATURE-


Accepted:
eclipse-cdt_3.0.1-1.diff.gz
  to pool/main/e/eclipse-cdt/eclipse-cdt_3.0.1-1.diff.gz
eclipse-cdt_3.0.1-1.dsc
  to pool/main/e/eclipse-cdt/eclipse-cdt_3.0.1-1.dsc
eclipse-cdt_3.0.1-1_i386.deb
  to pool/main/e/eclipse-cdt/eclipse-cdt_3.0.1-1_i386.deb
eclipse-cdt_3.0.1.orig.tar.gz
  to pool/main/e/eclipse-cdt/eclipse-cdt_3.0.1.orig.tar.gz


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



Re: Eclipse - integrated help is not available

2005-12-24 Thread Stephan Michels
On 12/24/05, Michel D'HOOGE [EMAIL PROTECTED] wrote:
 Merry Christmas to everybody

  I have installed mostly all the eclipse packages from the ubuntu repository
 (version 3.1.1-1ubuntu3) but I don't have access to the (should be)
 integrated help files.

The Breezy repository didn't include Tomcat 5, because it was too late.
So the we had to disable the help system for the Eclipse packages in Breezy.

Merry Christmas, Stephan Michels.



  1   2   3   4   5   6   7   >