Re: [equinox-dev] [vote] graduating the new jar processor bundle

2007-09-10 Thread Andrew Niefer
+1 As for doing it now, is there any benefit to waiting? There is some amount of work that will depend on this change. Both update.core and pde.build will need to be updated after this change. As well, the p2.jarprocessor is considered HEAD for bug fixes (there is at least

[equinox-dev]Launcher projects tagged for 6pm build

2007-10-31 Thread Andrew Niefer
The map file has been updated for the following Bug changes: + Bug 199020. [launcher] Can't start the AWT while using new eclipse native launcher in 3.3 (NEW) The following projects have changed: org.eclipse.equinox.launcher.carbon.macosx

Re: [equinox-dev] Could not find main-class org.eclipse.core.launcher.WebStartMain. class

2007-11-28 Thread Andrew Niefer
In 3.3 the Webstart main class is org.eclipse.equinox.launcher.WebStartMain. We left a stub org.eclipse.core.launcher.Main, but it looks like we forgot to put a stub for the old WebStartMain. I expect you simply need to change application-desc

RE: [equinox-dev] Could not find main-class org.eclipse.core.laun cher.WebStartMain

2007-11-29 Thread Andrew Niefer
] On Behalf Of Andrew Niefer Sent: Wednesday, November 28, 2007 5:40 PM To: Equinox development mailing list Subject: Re: [equinox-dev] Could not find main-class org.eclipse.core.launcher.WebStartMain. class In 3.3 the Webstart main class is org.eclipse.equinox.launcher.WebStartMain. We left

Re: [equinox-dev] [prov] Download manager support for pack200

2008-01-25 Thread Andrew Niefer
an isolated class loader that is not connected to the boot class loader? Tom Andrew Niefer ---01/25/2008 09:57:39 AM---As Pascal mentioned, when we first started experimenting with Pack200 we had memory problems. It seemed that Pack200's interna From: Andrew Niefer [EMAIL PROTECTED] To: Equinox

Re: [equinox-dev] [prov] Download manager support for pack200

2008-01-25 Thread Andrew Niefer
As Pascal mentioned, when we first started experimenting with Pack200 we had memory problems. It seemed that Pack200's internal data was static and not cleared between each jar that was packed. So once we had packed a reasonable number of jars we started running out of memory. It could be

Re: [equinox-dev] [launcher] Showsplash

2008-02-06 Thread Andrew Niefer
James, The native code that is showing the early splash screen does not have support to change the bitmap that is being shown. This means that you need to wait until swt is available before it can be refreshed. With SWT I believe changing the image is just setting the BackgroundImage on the

Re: [equinox-dev] [launcher] Showsplash

2008-02-07 Thread Andrew Niefer
, because this tool can run in command line mode. Just another thought. Jeff McAffer wrote: alternatively is it possible to have the installer configure the launcher with the right splash? of course that assumes that the NL is fixed from install time. Just a thought Jeff Andrew Niefer wrote

Re: [equinox-dev] [prov] I20080207-0010 metadata not usable

2008-02-07 Thread Andrew Niefer
The problem here comes down to the feature versions not incrementing when one of their contained plug-ins increases it version. The root cause of this is the generated feature version suffixes which are supposed to account for the changes in the nested plugins. These suffixes were turning out

Re: [equinox-dev] Committer vote for Andrew Niefer has been approved by the PMC

2008-02-29 Thread Andrew Niefer
equinox-dev@eclipse.org To equinox-dev@eclipse.org cc Subject [equinox-dev] Committer vote for Andrew Niefer has been approved by the PMC eclipse.equinox.eclipse.equinox.p2 Committers, This automatically generated message marks the PMC's approval of the vote for Andrew Niefer's full Committer

Re: [equinox-dev] pack200 M5 question

2008-04-04 Thread Andrew Niefer
Janet, Changing startup.jar to org.eclipse.equinox.launcher should work, note that you need to make sure you reference the actual jar in your install which will have a version number on it. Eg: java -jar /eclipse/plugins/org.eclipse.equinox.launcher_1.0.100.v20080303.jar -application

Re: [equinox-dev] How to use p2.generator in PDE build

2008-05-20 Thread Andrew Niefer
Torkild, In addition to any manual calls you may want to make to the p2.generator, there is some integration with PDE.Build. Unfortunately there is not yet any documentation here. If the org.eclipse.equinox.p2.metadata.generator bundle is present in the builder at script generation time, then

Re: [equinox-dev] Need help building a product with p2

2008-05-30 Thread Andrew Niefer
Warren, 1) This is what I notice when I tried running your director command on a product I exported: - the -metadataRepository and -artifactRepository values need to be URLs: use file:C:\testproduct\repository - I found I needed to specify -installIU to get anything out. In this case the IU

Re: [equinox-dev] pack200 - are packed features supported?

2008-06-04 Thread Andrew Niefer
Janet, From a brief look at the code, it appears that the old update (org.eclipse.update.core) only runs unpack on plugin jars and not on feature jars. It shouldn't even look for .pack.gz files for the features, if you are failing does that mean your update site only contains pack.gz files

RE: [equinox-dev] RE: Need help building a product with p2

2008-06-06 Thread Andrew Niefer
:\testproduct2\repository is what PDE generated for the product. Thanks, Warren Date: Fri, 30 May 2008 16:20:35 -0400 From: Andrew Niefer [EMAIL PROTECTED] Subject: Re: [equinox-dev] Need help building a product with p2 To: Equinox development mailing list equinox-dev@eclipse.org

Re: [equinox-dev] Installer and agent data location

2008-06-11 Thread Andrew Niefer
Note that there are command line options to the director for both the p2 data area and whether or not to install features. See the help: Platform Plug-in Developer Guide - Programmer's Guide -? Packaging and delivering Eclipse based products - Provisioning platform (p2) - Installing software

Re: [equinox-dev] is there an option (per jar ) that can be used to skip normalize

2008-10-06 Thread Andrew Niefer
There is no option to skip just the -repack normalization and not the packing. The only way to do this is to just not run the -repack in the first place, which I guess means separating that one jar from the rest when processing. Is there a particular reason why you would want to skip this

Re: [equinox-dev] normalized jar

2008-10-07 Thread Andrew Niefer
The contents of the jar should be bit-wise the same, so the only difference between pre post pack (for a previously conditioned jar), if any, would be in the format of the jar itself. Differences could be, for example, in size crc information for a given zip entry appearing before or after

Re: [equinox-dev] normalized jar

2008-10-07 Thread Andrew Niefer
Dmitrovich WPLC Expeditor Software Development [EMAIL PROTECTED] 512-838-4912 T/L:678-4912 FAX:512-838-3703 11501 Burnet Road, Austin TX 78758 (Internal ZIP: 9372) Andrew Niefer ---10/07/2008 04:24:57 PM---The contents of the jar should be bit-wise the same, so the only difference between pre

Re: [equinox-dev] normalized jar

2008-10-10 Thread Andrew Niefer
, Austin TX 78758 (Internal ZIP: 9372) Andrew Niefer ---10/07/2008 05:38:19 PM---Which version of the jarprocessor are you using? Andrew Niefer [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 10/07/2008 05:37 PM Please respond to Equinox development mailing list equinox-dev@eclipse.org

Re: [equinox-dev] Integrating plugin bundles in normal Java

2009-01-09 Thread Andrew Niefer
That main method will end up calling System.exit unless you define a system property osgi.noShutdown. You should instead call org.eclipse.equinox.launcher.Main#run(String[]). (ie new Main().run(args) ). -Andrew Tom Hsu tom@oracle.com Sent by: equinox-dev-boun...@eclipse.org

Re: [equinox-dev] Equinox Lauchers for S390

2009-01-14 Thread Andrew Niefer
I don't recall ever receiving any S390 binaries. We made the changes to create the fragment and modify the build, but I don't believe the results were ever contributed back. You could ask on the bug, perhaps releng has more details. -Andrew O'Flynn, Dennis dennis.ofl...@compuware.com

Re: [equinox-dev] Showsplash vs SplashPath

2009-02-02 Thread Andrew Niefer
There are 3 ways to specify the splash screen: -showsplash, osgi.splashLocation and osgi.splashPath. Order of precendence is as follows: 1) -showsplash this is interpreted by the native launcher, it displays the native early splash screen before starting the vm. This requires a bitmap

Re: [equinox-dev] Re: 3.5M6 missing eclipse directory

2009-03-20 Thread Andrew Niefer
You can see an example of using the equinox zip in a build here: dev.eclipse.org:/cvsroot/eclipse/pde-build-home/examples/org.eclipse.pde.build.examples.rcp.cloud.releng It downloads the equinox repo, and puts it in base/zippedRepos, the build.properties specifies:

Re: [equinox-dev] AutoStarting Bundles in a Feature Definition

2009-05-21 Thread Andrew Niefer
This is possible with something as shown below. This will result in a new requirement being added to the generated feature.group metadata for your feature. The requirement is on an IU named toolingorg.acme.bundle. This IU is a fragment (also commonly called CU for configuration unit), it's

Re: [equinox-dev] New time for equinox call

2009-07-21 Thread Andrew Niefer
equinox-dev-boun...@eclipse.org wrote on 07/21/2009 01:02:02 PM: The new selected time for the equinox call is Tuesday at 10:00 AM US/Central (EST). Sorry, is this 10 am central or 10 am eastern? -Andrew ___ equinox-dev mailing list

[equinox-dev] Equinox tagged for next Helios M4 build.

2009-12-08 Thread Andrew Niefer
The launchers have been updated for Helios M4 The map file has been updated for the following Bug changes: + Bug 282758. Add support for 64-bit Power architecture (ASSIGNED) The following projects have changed: org.eclipse.equinox.launcher.gtk.linux.ppc64 org.eclipse.equinox.executable From:

Re: [equinox-dev] Equinox nightly in testing framework

2009-12-16 Thread Andrew Niefer
When running under Eclipse with the org.eclipse.ant.core.antRunner application, there are two possibilities here. The first is to use p2. There is a p2 repository http://download.eclipse.org/eclipse/updates/3.6-N-builds; which contains the results of the nightly builds. You can get the osgi

Re: [equinox-dev] Updated for integration build

2010-03-22 Thread Andrew Niefer
I also tagged org.eclipse.equinox.gtk.solaris.x86 for + Bug 305916. [launcher] launcher crashes on Linux GTK when using --launcher.defaultAction (FIXED) It was not included in DJ's tag because that change wasn't releaed for solaris.x86 like it was for all the other platforms. From: DJ

Re: [equinox-dev] Generated configuration file overwrites specified properties

2010-03-23 Thread Andrew Niefer
How did you build this product? The metadata for the product generally specifies the settings for these properties. Here it looks like you are getting the settings that are specified by the org.eclipse.platform.ide product. Are you just taking the platform.ide and copying your stuff over top

Re: [equinox-dev] Generated configuration file overwrites specified properties

2010-03-24 Thread Andrew Niefer
, right? (FYI: the examples you are referring to, do not build anymore.) Thanks, Richard Andrew Niefer wrote: How did you build this product? The metadata for the product generally specifies the settings for these properties. Here it looks like you are getting the settings that are specified

Re: [equinox-dev] Generated configuration file overwrites specified properties

2010-03-25 Thread Andrew Niefer
BUILD FAILED C:\galileo-3.5.2\workspace\adt.builder\buildADT.xml:34: The following error occurred while executing this line: C:\galileo-3.5.2\workspace\adt.builder\buildADT.xml:19: Problem: failed to create task or type p2.publish.featuresAndBundles Cause: The name is undefined. Action:

Re: [equinox-dev] Equinox tagged for the next Helios SR1 build.

2010-07-15 Thread Andrew Niefer
I have branched org.eclipse.equinox.executable and org.eclipse.equinox.launcher. I have gone ahead and tagged the following for Helios SR1: The map file has been updated for the following Bug changes: + Bug 320005. [launcher] --launcher.XXMaxPermSize: isSunVM should return true for Oracle

[equinox-dev] Equinox tagged for next Helios SR1 build.

2010-08-10 Thread Andrew Niefer
The map file has been updated for the following Bug changes: + Bug 315746. --launcher.openFile on Solaris fails with error about unresolved symbol sem_open (FIXED) + Bug 315939. [launcher] Crash in formatVmCommandMsg (FIXED) + Bug 316975. [launcher] memory leak on failure to read launcher.ini file

[equinox-dev] Equinox contribution to the Helios Maintenance build.

2010-08-23 Thread Andrew Niefer
This is a compile of the launchers to pick up the 3.6.1 fixes on the s390 and s390x platforms: 315939 [launcher] Crash in formatVmCommandMsg 316975 [launcher] memory leak on failure to read launcher.ini file The map file has been updated for the following Bug changes: + Bug 322291. [launcher]

[equinox-dev] Equinox tagged for the next Helios Maintenance build

2010-10-19 Thread Andrew Niefer
The map file has been updated for the following Bug changes: + Bug 319123. [launcher] Application becomes unresponsive when code completion tooltip shows (NEW) The following projects have changed: org.eclipse.equinox.launcher.gtk.linux.ppc64 org.eclipse.equinox.launcher.gtk.linux.x86_64

Re: [equinox-dev] Equinox tagged for the next RC1 build

2011-05-05 Thread Andrew Niefer
The map file has been updated for the following Bug changes: + Bug 344270. Eclipse launcher can still set MOZILLA_FIVE_HOME to an invalid renderer (NEW) The following projects have changed: org.eclipse.equinox.executable org.eclipse.equinox.launcher.gtk.aix.ppc

[equinox-dev] Equinox intends to fix bug 347475 in 3.7 RC4

2011-05-27 Thread Andrew Niefer
Equinox intends to fix https://bugs.eclipse.org/bugs/show_bug.cgi?id=347475 for 3.7RC4 This is a problem in the launcher which prevents it from displaying graphics (ie, the splash screen) on aix.ppc64. -Andrew From: Markus Keller markus_kel...@ch.ibm.com To: platform-releng-...@eclipse.org

[equinox-dev] Eclipse and e4 4.M1 and 0.12M1 now available

2011-08-08 Thread Andrew Niefer
4.2M1 http://download.eclipse.org/e4/sdk/drops/S-4.2M1-201108051200/index.php p2 repo http://download.eclipse.org/eclipse/updates/4.2-I-builds 0.12M1 http://download.eclipse.org/e4/downloads/drops/S-0.12M1-201108051200/index.html p2 repo

Re: [equinox-dev] equinox git repo

2011-08-09 Thread Andrew Niefer
The repositories you want are git://git.eclipse.org/gitroot/equinox/rt.equinox.framework.git git://git.eclipse.org/gitroot/equinox/rt.equinox.bundles.git git://git.eclipse.org/gitroot/equinox/rt.equinox.p2.git git://git.eclipse.org/gitroot/equinox/rt.equinox.security.git

[equinox-dev] Tagging git using the e4 shell scripts

2011-08-12 Thread Andrew Niefer
Hello All, e4 releng has updated the shell scripts used to tag git and update map files for an IBuild. If you have not yet moved to git, or are not using these scripts, then you can ignore this message. I have updated the wiki page here: http://wiki.eclipse.org/E4/Git#Submitting_for_a_build

Re: [equinox-dev] Which C file for launcher on mac

2012-11-16 Thread Andrew Niefer
The files under library/carbon are used for cocoa, there are ifdefs separating the pieces that are different between carbon cocoa. The dll will contain eclipseCarbon.c and eclipseCarbonCommon.c. If you look near the top of the make_cocoa.mak file, you can see the full list of files for both

[equinox-dev] +1 for Oleg Besedin

2007-09-12 Thread portal on behalf of Andrew Niefer
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Committer vote for Bogdan Gheorghe has concluded successfully

2012-04-03 Thread portal on behalf of Andrew Niefer
and provisioning the account. Vote summary: 4/0/0 with 3 not voting ? Sonia Dimitrov +1 BJ Hargrave ? DJ Houghton ? Kim Moir +1 Andrew Niefer +1 Pascal Rapicault +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member

[equinox-dev] Committer vote for Silenio Quarti has concluded successfully

2012-04-03 Thread portal on behalf of Andrew Niefer
and provisioning the account. Vote summary: 4/0/0 with 3 not voting ? Sonia Dimitrov +1 BJ Hargrave ? DJ Houghton ? Kim Moir +1 Andrew Niefer +1 Pascal Rapicault +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member

[equinox-dev] Welcome Bogdan Gheorghe as a new rt.equinox.framework Committer

2012-04-05 Thread portal on behalf of Andrew Niefer
rt.equinox.framework Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Bogdan Gheorghe. Bogdan Gheorghe is a new full Committer on the rt.equinox.framework project. Welcome!

[equinox-dev] Welcome Silenio Quarti as a new rt.equinox.framework Committer

2012-04-05 Thread portal on behalf of Andrew Niefer
rt.equinox.framework Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Silenio Quarti. Silenio Quarti is a new full Committer on the rt.equinox.framework project. Welcome! ___