Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Sievers, Jan
looks similar to

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

I've seen the same problem with tycho builds against Luna RC4 repo (OTDT 
version of org.eclipse.jdt.core bundle being selected by the p2 resolver 
instead of the original one)

workaround for tycho builds is to filter out the OTDT bundle version from the 
target platform
https://wiki.eclipse.org/index.php?title=Tycho/Target_Platform#Filtering
(or use .target file with perfect version matches)

My impression is it's up to p2 resolver implementation details which solution 
is chosen, so depending on the overall bundles being resolved, either the 
solution using OTDT or original may be chosen.

Regards,
Jan





From: cross-project-issues-dev-boun...@eclipse.org 
[mailto:cross-project-issues-dev-boun...@eclipse.org] On Behalf Of Paul Webster
Sent: Mittwoch, 25. Juni 2014 01:44
To: Cross project issues
Subject: Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams 
gets selected due to higher version

On Tue, Jun 24, 2014 at 6:09 PM, Thomas Hallgren 
tho...@tada.semailto:tho...@tada.se wrote:
I just encountered a build failure when using the platform repository in 
conjunction with the luna staging one. The failure was caused by p2 preferring 
the objectteams patch for org.eclipse.jdt.core in favor of the original. Seems 
the patch has a higher version (3.10.0.v_OTDT_r230_201406101339) than the one 
found in the platform repo (3.9.2.v20140114-1555).

I don't know what's causing it, but the staging repo doesn't have that version 
of jdt.core:
pwebster@build:/home/data/httpd/download.eclipse.org/releases/staginghttp://download.eclipse.org/releases/staging
 ls plugins/org.eclipse.jdt.core_*
plugins/org.eclipse.jdt.core_3.10.0.v20140604-1726.jar
plugins/org.eclipse.jdt.core_3.10.0.v_OTDT_r230_201406101339.jar

None of the eclipse/updates/4.4* repos have 3.9.2 (which is Kepler SR2 I guess) 
 either.
PW
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Stephan Herrmann

On 06/25/2014 12:09 AM, Thomas Hallgren wrote:

I just encountered a build failure when using the platform repository in 
conjunction with the luna staging one. The failure was
caused by p2 preferring the objectteams patch for org.eclipse.jdt.core in favor 
of the original. Seems the patch has a higher
version (3.10.0.v_OTDT_r230_201406101339) than the one found in the platform 
repo (3.9.2.v20140114-1555). I don't recall having seen
this problem before so something must be different. Anyone have a clue as to 
what might be causing this?


One thing, exactly, has changed in Object Teams in this regard:
I followed Pascal's advice for avoiding unintended updates from
the original to the OTDT variant.

On 06/25/2014 09:13 AM, Sievers, Jan wrote:
 looks similar to

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

That's the exact reference to our best effort to improve this.

I double checked and from all I can see the meta data looks
exactly as advised:
- the OTDT variant of org.eclipse.jdt.core has a non-greedy
  dependency on our patch feature (since Juno)
  - cannot be installed without explicitly selecting that
 patch feature.
- the patch feature is marked as a patch for the *bundle*
  org.eclipse.jdt.core, not for the jdt feature (new in Luna).
  - patch feature is not regarded as an update of the
 jdt feature.

Can you share a setup for reproduction?
The reference to 3.9.2... looks fishy, indeed.

regards,
Stephan

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Thomas Hallgren

On 2014-06-25 12:57, Stephan Herrmann wrote:


Can you share a setup for reproduction?
The reference to 3.9.2... looks fishy, indeed.

The reference to 3.9.2 was introduced when I tried to fix the problem and appointed the wrong platform site. My error. 
Please disregard that. The real problem occurs when I'm using releases/staging (i.e. RC4) from my Buckminster build. I'm 
currently circumventing it by redirecting all requests for org.eclipse.jdt.* directly to the 4.4milestones platform 
repository.


- thomas

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Thomas Hallgren

My guess is that the reason it gets selected by p2 is that the version

 3.10.0.v_OTDT_r230_201406101339

is lexically greater than

 3.10.0.v20140604-1726

since '_' (0x5f) is greater than '2' (0x32)

- thomas


On 2014-06-25 12:57, Stephan Herrmann wrote:

On 06/25/2014 12:09 AM, Thomas Hallgren wrote:
I just encountered a build failure when using the platform repository in conjunction with the luna staging one. The 
failure was
caused by p2 preferring the objectteams patch for org.eclipse.jdt.core in favor of the original. Seems the patch has 
a higher
version (3.10.0.v_OTDT_r230_201406101339) than the one found in the platform repo (3.9.2.v20140114-1555). I don't 
recall having seen

this problem before so something must be different. Anyone have a clue as to 
what might be causing this?


One thing, exactly, has changed in Object Teams in this regard:
I followed Pascal's advice for avoiding unintended updates from
the original to the OTDT variant.

On 06/25/2014 09:13 AM, Sievers, Jan wrote:
 looks similar to

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

That's the exact reference to our best effort to improve this.

I double checked and from all I can see the meta data looks
exactly as advised:
- the OTDT variant of org.eclipse.jdt.core has a non-greedy
  dependency on our patch feature (since Juno)
  - cannot be installed without explicitly selecting that
 patch feature.
- the patch feature is marked as a patch for the *bundle*
  org.eclipse.jdt.core, not for the jdt feature (new in Luna).
  - patch feature is not regarded as an update of the
 jdt feature.

Can you share a setup for reproduction?
The reference to 3.9.2... looks fishy, indeed.

regards,
Stephan

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Thomas Hallgren
Correction. Should say selected by Buckminster, not selected by p2 since this isn't a build-time best-effort 
resolution and not a full p2 resolution. I guess the same can be said about the Tycho resolution.


- thomas

On 2014-06-25 14:17, Thomas Hallgren wrote:

My guess is that the reason it gets selected by p2 is that the version

 3.10.0.v_OTDT_r230_201406101339

is lexically greater than

 3.10.0.v20140604-1726

since '_' (0x5f) is greater than '2' (0x32)

- thomas


On 2014-06-25 12:57, Stephan Herrmann wrote:

On 06/25/2014 12:09 AM, Thomas Hallgren wrote:
I just encountered a build failure when using the platform repository in conjunction with the luna staging one. The 
failure was
caused by p2 preferring the objectteams patch for org.eclipse.jdt.core in favor of the original. Seems the patch has 
a higher
version (3.10.0.v_OTDT_r230_201406101339) than the one found in the platform repo (3.9.2.v20140114-1555). I don't 
recall having seen

this problem before so something must be different. Anyone have a clue as to 
what might be causing this?


One thing, exactly, has changed in Object Teams in this regard:
I followed Pascal's advice for avoiding unintended updates from
the original to the OTDT variant.

On 06/25/2014 09:13 AM, Sievers, Jan wrote:
 looks similar to

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

That's the exact reference to our best effort to improve this.

I double checked and from all I can see the meta data looks
exactly as advised:
- the OTDT variant of org.eclipse.jdt.core has a non-greedy
  dependency on our patch feature (since Juno)
  - cannot be installed without explicitly selecting that
 patch feature.
- the patch feature is marked as a patch for the *bundle*
  org.eclipse.jdt.core, not for the jdt feature (new in Luna).
  - patch feature is not regarded as an update of the
 jdt feature.

Can you share a setup for reproduction?
The reference to 3.9.2... looks fishy, indeed.

regards,
Stephan

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] org.eclipse.jdt.core from objectteams gets selected due to higher version

2014-06-25 Thread Stephan Herrmann

On 06/25/2014 02:17 PM, Thomas Hallgren wrote:

My guess is that the reason it gets selected by p2 is that the version

  3.10.0.v_OTDT_r230_201406101339

is lexically greater than

  3.10.0.v20140604-1726

since '_' (0x5f) is greater than '2' (0x32)


This is intended and required to make the patch feature work.
Please note that this has not changed since Juno.

Is your build including the feature 
org.eclipse.objectteams.otdt.core.patch.feature.group?
If that's not explicitly included and the OTDT variant is still selected,
then someone is preferring a solution with unmet dependencies over another
solution that is good indeed. Could be a bug in p2. I don't know.

regards,
Stephan




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Congratulations! Luna repository is available!

2014-06-25 Thread David M Williams
Markus and I have flipped on the Luna repository so the final release 
bits are now visible and available to the world. 
The EPP packages will be visible soon, if not already. 

Feel free to make your own sites visible, and make your own project 
announcements. 

(My own little sanity test seemed quite fast, I assume due to repositories 
being well mirrored and due to a well tuned infrastructure, thank Denis 
and team!) 

And thanks to all you projects teams for your cooperation and 
participation in this ninth annual Simultaneous Release. Well done!


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] Congratulations! Luna repository is available!

2014-06-25 Thread Ian Bull
I just talked to Markus K (who is still in 'release stress mode'). Markus
and Webmaster are updating the pages as I write this.


On Wed, Jun 25, 2014 at 6:13 AM, Jacques Bouthillier 
jacques.bouthill...@ericsson.com wrote:

  I Just look at eclipse.org to download LUNA, but still show Kepler.

  Jacques



 *From:* cross-project-issues-dev-boun...@eclipse.org [mailto:
 cross-project-issues-dev-boun...@eclipse.org] *On Behalf Of *David M
 Williams
 *Sent:* June-25-14 8:55 AM
 *To:* cross-project-issues-dev@eclipse.org
 *Subject:* [cross-project-issues-dev] Congratulations! Luna repository is
 available!



 Markus and I have flipped on the Luna repository so the final release
 bits are now visible and available to the world.
 The EPP packages will be visible soon, if not already.

 Feel free to make your own sites visible, and make your own project
 announcements.

 (My own little sanity test seemed quite fast, I assume due to repositories
 being well mirrored and due to a well tuned infrastructure, thank Denis and
 team!)

 And thanks to all you projects teams for your cooperation and
 participation in this ninth annual Simultaneous Release. Well done!


 ___
 cross-project-issues-dev mailing list
 cross-project-issues-dev@eclipse.org
 https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




-- 
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
http://eclipsesource.com | http://twitter.com/eclipsesource
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] Congratulations! Luna repository is available!

2014-06-25 Thread Denis Roy
We've updated the home page as well as the download pages. Please feel 
free to make announcements for your individual project releases.


I am still bummed that we were 17 minutes late  :-(

Denis


On 06/25/2014 09:16 AM, Ian Bull wrote:
I just talked to Markus K (who is still in 'release stress mode'). 
Markus and Webmaster are updating the pages as I write this.



On Wed, Jun 25, 2014 at 6:13 AM, Jacques Bouthillier 
jacques.bouthill...@ericsson.com 
mailto:jacques.bouthill...@ericsson.com wrote:


I Just look at eclipse.org http://eclipse.org to download LUNA,
but still show Kepler.

Jacques

*From:*cross-project-issues-dev-boun...@eclipse.org
mailto:cross-project-issues-dev-boun...@eclipse.org
[mailto:cross-project-issues-dev-boun...@eclipse.org
mailto:cross-project-issues-dev-boun...@eclipse.org] *On Behalf
Of *David M Williams
*Sent:* June-25-14 8:55 AM
*To:* cross-project-issues-dev@eclipse.org
mailto:cross-project-issues-dev@eclipse.org
*Subject:* [cross-project-issues-dev] Congratulations! Luna
repository is available!

Markus and I have flipped on the Luna repository so the final
release bits are now visible and available to the world.
The EPP packages will be visible soon, if not already.

Feel free to make your own sites visible, and make your own
project announcements.

(My own little sanity test seemed quite fast, I assume due to
repositories being well mirrored and due to a well tuned
infrastructure, thank Denis and team!)

And thanks to all you projects teams for your cooperation and
participation in this ninth annual Simultaneous Release. Well done!


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
mailto:cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




--
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
http://eclipsesource.com | http://twitter.com/eclipsesource


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Denis Roy

I think I've seen a bug about that.  You are not the only one.

Denis



On 06/25/2014 09:28 AM, Henrik wrote:

Hi webmasters,

I've just downloaded the automotive package (great job for again 
releasing in time!).


Then I'm presented with a page [1] with title Thank you for 
downloading Eclipse where it should be possible to subscribe to the 
newsletter. But it says my email address isn't well formed?!

Are others seeing this as well?

-Henrik

[1] 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Marc Khouzam
Also, the download counters don't seem to be working.  They keep showing zeros.

Thanks

From: cross-project-issues-dev-boun...@eclipse.org 
[mailto:cross-project-issues-dev-boun...@eclipse.org] On Behalf Of Henrik
Sent: Wednesday, June 25, 2014 9:28 AM
To: Cross project issues
Subject: [cross-project-issues-dev] newsletter subscription on download 
confirmation page doesn't work

Hi webmasters,

I've just downloaded the automotive package (great job for again releasing in 
time!).

Then I'm presented with a page [1] with title Thank you for downloading 
Eclipse where it should be possible to subscribe to the newsletter. But it 
says my email address isn't well formed?!
Are others seeing this as well?

-Henrik

[1] 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Denis Roy

I believe those get updated every 15 minutes.

Denis

On 06/25/2014 09:32 AM, Marc Khouzam wrote:


Also, the download counters don't seem to be working.  They keep 
showing zeros.


Thanks

*From:*cross-project-issues-dev-boun...@eclipse.org 
[mailto:cross-project-issues-dev-boun...@eclipse.org] *On Behalf Of 
*Henrik

*Sent:* Wednesday, June 25, 2014 9:28 AM
*To:* Cross project issues
*Subject:* [cross-project-issues-dev] newsletter subscription on 
download confirmation page doesn't work


Hi webmasters,

I've just downloaded the automotive package (great job for again 
releasing in time!).


Then I'm presented with a page [1] with title Thank you for 
downloading Eclipse where it should be possible to subscribe to the 
newsletter. But it says my email address isn't well formed?!

Are others seeing this as well?

-Henrik

[1] 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Sopot Çela
I see 654 downloads for Standard 4.4 already.

Sopot


On Wed, Jun 25, 2014 at 3:40 PM, Denis Roy denis@eclipse.org wrote:

  I believe those get updated every 15 minutes.

 Denis


 On 06/25/2014 09:32 AM, Marc Khouzam wrote:

  Also, the download counters don’t seem to be working.  They keep showing
 zeros.



 Thanks



 *From:* cross-project-issues-dev-boun...@eclipse.org [
 mailto:cross-project-issues-dev-boun...@eclipse.org
 cross-project-issues-dev-boun...@eclipse.org] *On Behalf Of *Henrik
 *Sent:* Wednesday, June 25, 2014 9:28 AM
 *To:* Cross project issues
 *Subject:* [cross-project-issues-dev] newsletter subscription on download
 confirmation page doesn't work



 Hi webmasters,

 I've just downloaded the automotive package (great job for again releasing
 in time!).

 Then I'm presented with a page [1] with title Thank you for downloading
 Eclipse where it should be possible to subscribe to the newsletter. But it
 says my email address isn't well formed?!
 Are others seeing this as well?

 -Henrik

 [1]
 http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580


 ___
 cross-project-issues-dev mailing 
 listcross-project-issues-dev@eclipse.orghttps://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev



 ___
 cross-project-issues-dev mailing list
 cross-project-issues-dev@eclipse.org
 https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Marc Khouzam
Yep, they’ve updated for me too.
With those zeros, I can say that I was the first one to download Luna ☺

From: cross-project-issues-dev-boun...@eclipse.org 
[mailto:cross-project-issues-dev-boun...@eclipse.org] On Behalf Of Sopot Çela
Sent: Wednesday, June 25, 2014 9:44 AM
To: Cross project issues
Subject: Re: [cross-project-issues-dev] newsletter subscription on download 
confirmation page doesn't work

I see 654 downloads for Standard 4.4 already.
Sopot

On Wed, Jun 25, 2014 at 3:40 PM, Denis Roy 
denis@eclipse.orgmailto:denis@eclipse.org wrote:
I believe those get updated every 15 minutes.

Denis

On 06/25/2014 09:32 AM, Marc Khouzam wrote:
Also, the download counters don’t seem to be working.  They keep showing zeros.

Thanks

From: 
cross-project-issues-dev-boun...@eclipse.orgmailto:cross-project-issues-dev-boun...@eclipse.org
 [mailto:cross-project-issues-dev-boun...@eclipse.org] On Behalf Of Henrik
Sent: Wednesday, June 25, 2014 9:28 AM
To: Cross project issues
Subject: [cross-project-issues-dev] newsletter subscription on download 
confirmation page doesn't work

Hi webmasters,

I've just downloaded the automotive package (great job for again releasing in 
time!).

Then I'm presented with a page [1] with title Thank you for downloading 
Eclipse where it should be possible to subscribe to the newsletter. But it 
says my email address isn't well formed?!
Are others seeing this as well?

-Henrik

[1] 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580


___

cross-project-issues-dev mailing list

cross-project-issues-dev@eclipse.orgmailto:cross-project-issues-dev@eclipse.org

https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.orgmailto:cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] newsletter subscription on download confirmation page doesn't work

2014-06-25 Thread Thanh Ha

Looks like Chris just fixed this. The bug was 437801 [1].

Regards,


Thanh

[1] https://bugs.eclipse.org/bugs/show_bug.cgi?id=437801


On 25/06/14 09:31 AM, Denis Roy wrote:

I think I've seen a bug about that.  You are not the only one.

Denis



On 06/25/2014 09:28 AM, Henrik wrote:

Hi webmasters,

I've just downloaded the automotive package (great job for again 
releasing in time!).


Then I'm presented with a page [1] with title Thank you for 
downloading Eclipse where it should be possible to subscribe to the 
newsletter. But it says my email address isn't well formed?!

Are others seeing this as well?

-Henrik

[1] 
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/R/eclipse-automotive-luna-R-incubation-win32.zipmirror_id=580




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Marketplace Client bug in Luna

2014-06-25 Thread Carsten Reckord
Everybody,

Congratulations to everyone involved for another very smooth release. But
it's release day, so there has to be some kind of hickup, right? Well, happy
to oblige... :(

I'd like to notify you about a bug in the shipped MPC release for Luna:

Due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=437844, the Market and
Category select boxes have no effect in the released version (beyond logging
an exception in the error log). The bug is fixed, but was found too late to
make it into the release unfortunately (and was obviously not a stop-ship
kind of issue).

The fix is available on the MPC update site[1] and announced on the MPC
website[2].


[1] http://download.eclipse.org/mpc/luna
[2] http://www.eclipse.org/mpc
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Kepler home page now points to Luna

2014-06-25 Thread Bob Brodt
Hi all,

I've noticed that the download link on the Kepler home page [1] still points to 
https://www.eclipse.org/downloads/ which now has the Luna stuff on it.

[1] https://www.eclipse.org/kepler/


Robert (Bob) Brodt
Senior Software Engineer
JBoss by Red Hat

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] Kepler home page now points to Luna

2014-06-25 Thread Ian Bull
That menu item (downloads) always points to the the general downloads area,
which always has the latest release. If you look at the Helios release, it
does this too [1].

[1] https://www.eclipse.org/helios/

Here is a link to all the old downloads [2]. I guess you could raise a bug
to change this, but for the 'average' person who stumbles upon an Eclipse
release, we may want to point them to the latest stuff, but I'm sure we
could debate that. :-)

[2] https://wiki.eclipse.org/Older_Versions_Of_Eclipse

Cheers,
Ian


On Wed, Jun 25, 2014 at 8:38 AM, Bob Brodt bbr...@redhat.com wrote:

 Hi all,

 I've noticed that the download link on the Kepler home page [1] still
 points to https://www.eclipse.org/downloads/ which now has the Luna stuff
 on it.

 [1] https://www.eclipse.org/kepler/

 
 Robert (Bob) Brodt
 Senior Software Engineer
 JBoss by Red Hat

 ___
 cross-project-issues-dev mailing list
 cross-project-issues-dev@eclipse.org
 https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




-- 
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
http://eclipsesource.com | http://twitter.com/eclipsesource
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Disk usage report for Hudson/Build

2014-06-25 Thread genie
Compiled 2014-06-25T12:07

 build.eclipse.org 
- Usage exceeding 1GB for: Hudson master jobs and workspace (2014-06-25T10:00)
  32.9G ep44N-unit-lin64
   4.0G papyrus-trunk-nightly-tests
   2.9G gef4-master
   2.7G emf-emfclient-integration
   2.3G papyrus-trunk-nightly
   2.1G osee-dev
   2.1G emf-cdo-integration
   1.9G emf-emfclient-maintenance
   1.9G emffacet-nightly
   1.6G emf-cdo-maintenance
   1.6G emft-featuremodel-editor-xtext
   1.4G amp-integration
   1.4G emf-emfclient-test
   1.4G koneki-ldt-maintenance
   1.4G webtools-vjet-juno
   1.2G tycho-gmp.gmf.tooling
   1.2G buckminster-voicetools-targetplatform
   1.1G nattable-snapshot
   1.1G buckminster-egf-luna
   1.1G buckminster-egf-helios
   1.1G emf-core-head
   1.1G emf-emfstore-fuzzytests-explorer
   1.1G buckminster-egf-juno
   1.1G mylyn-release
- Usage exceeding 1GB for: /shared (1000G capacity) (2014-06-25T10:00)
 238.1G technology
 124.3G jobs
 102.0G hipp
  74.0G eclipse
  66.7G rt
  30.0G webtools
  23.1G SLES
  11.3G tools
  10.6G common
   9.3G simrel
   6.7G cbi-ng
   5.3G modeling
   2.8G orbit
   1.6G mylyn
   1.4G soa
   1.3G cbi
- Usage exceeding 1GB for: /shared/modeling
   3.1G build
- Usage exceeding 1GB for: /shared/tools
   4.6G tm
   2.6G objectteams
   1.4G mtj
   1.1G aspectj
   1.1G windowbuilder
- Usage exceeding 1GB for: /shared/technology
 203.2G epp
  15.2G babel
   9.4G sapphire
   4.8G stem
   2.4G cosmos
   1.3G actf
 END: build.eclipse.org 


 hudson-slave1.eclipse.org 
/dev/xvda1158G   81G   78G  51% /
- Usage exceeding 1GB for: Hudson workspace on hudson-slave1 (50G capacity) 
(2014-06-24T21:00)
   9.4G mihini-nightly
   7.0G tycho-mat-nightly
   3.1G koneki-ldt
   2.6G koneki-ldt-maintenance
   1.9G cdt-nightly
   1.8G mylyn-integration
   1.6G cdt-maint
   1.5G cdt-legacy
   1.3G papyrus-trunk-extra-nightly
   1.2G Xtext-nightly-Maintenance
   1.2G gef-master
   1.2G papyrus-0.10-maintenance-nightly-tests
   1.1G mylyn-integration-standalone
   1.0G cdt-nightly-3.8
 END: hudson-slave1.eclipse.org 


 hudson-slave2.eclipse.org 
- Usage exceeding 1GB for: 
 END: hudson-slave2.eclipse.org 


 hudson-slave3.eclipse.org 
/dev/xvda1 55G   31G   25G  56% /
- Usage exceeding 1GB for: Hudson workspace on hudson-slave3 (50G capacity) 
(2014-06-24T18:00)
 END: hudson-slave3.eclipse.org 

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] Kepler home page now points to Luna

2014-06-25 Thread Henrik Rentz-Reichert
while the /menu item /could (and probably should) point to the latest downloads 
I would say the /specific download link /(the item
with the tetrahedron in the Kepler book) should definitely point to the Kepler 
download area

-Henrik

Am 25.06.2014 17:48, schrieb Ian Bull:
 That menu item (downloads) always points to the the general downloads area, 
 which always has the latest release. If you look at
 the Helios release, it does this too [1].

 [1] https://www.eclipse.org/helios/

 Here is a link to all the old downloads [2]. I guess you could raise a bug to 
 change this, but for the 'average' person who
 stumbles upon an Eclipse release, we may want to point them to the latest 
 stuff, but I'm sure we could debate that. :-)

 [2] https://wiki.eclipse.org/Older_Versions_Of_Eclipse

 Cheers,
 Ian


 On Wed, Jun 25, 2014 at 8:38 AM, Bob Brodt bbr...@redhat.com 
 mailto:bbr...@redhat.com wrote:

 Hi all,

 I've noticed that the download link on the Kepler home page [1] still 
 points to https://www.eclipse.org/downloads/ which now
 has the Luna stuff on it.

 [1] https://www.eclipse.org/kepler/

 
 Robert (Bob) Brodt
 Senior Software Engineer
 JBoss by Red Hat

 ___
 cross-project-issues-dev mailing list
 cross-project-issues-dev@eclipse.org 
 mailto:cross-project-issues-dev@eclipse.org
 https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev




 -- 
 R. Ian Bull | EclipseSource Victoria | +1 250 477 7484
 http://eclipsesource.com | http://twitter.com/eclipsesource


 ___
 cross-project-issues-dev mailing list
 cross-project-issues-dev@eclipse.org
 https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Download checksums are missing for EGit 3.4.1

2014-06-25 Thread Konstantin Komissarchik
We are trying to use EGit 3.4.1 in our build to produce a Luna distro, but
the download server is failing to return the checksum. This url:

 

https://www.eclipse.org/downloads/sums.php?file=/egit/updates/org.eclipse.eg
it.repository-3.4.1.201406201815-r.zip
https://www.eclipse.org/downloads/sums.php?file=/egit/updates/org.eclipse.e
git.repository-3.4.1.201406201815-r.ziptype=sha512 type=sha512

 

Is currently returning this response:

 

  org.eclipse.egit.repository-3.4.1.201406201815-r.zip
 

This is blocking us. Could one of the webmasters take a look? Let me know if
I need to open a bug.

 

Thanks,

 

- Konstantin

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] Eclipse download pages seem to be missing from Google search

2014-06-25 Thread Konstantin Komissarchik
I noticed this morning that the download pages for many projects seem to be
missing from Google search. Does that ring a bell for anyone? As recent as
RC4, you could search for egit downloads or mylyn downloads and get the
download page in first few results. Now it works for a few projects (like
WTP), but not for most.

 

Could this be somehow due to the new theme?

 

Thanks,

 

- Konstantin

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


[cross-project-issues-dev] External Buckminster update site restored

2014-06-25 Thread Thomas Hallgren
The Buckminster update site that contains headless non EPL'ed additions (subversion clients and emma code coverage) is 
now fully operational again and can be accessed using the following URL's:


http://download.cloudsmith.com/buckminster/external-4.4 (Luna)
http://download.cloudsmith.com/buckminster/external-4.3 (Kepler)
http://download.cloudsmith.com/buckminster/external-4.2 (Juno)

Regards,
Thomas Hallgren

___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Re: [cross-project-issues-dev] Congratulations! Luna repository is available!

2014-06-25 Thread Mike Milinkovich
Congratulations everyone!   Mike Milinkovich mike.milinkov...@eclipse.org+1.613.220.3223 (mobile) From: David M WilliamsSent: Wednesday, June 25, 2014 2:56 PMTo: cross-project-issues-dev@eclipse.orgReply To: Cross project issuesSubject: [cross-project-issues-dev] Congratulations! Luna repository is	available!Markus and I have "flipped on"
the Luna repository so the final release bits are now visible and available
to the world. 
The EPP packages will be visible soon,
if not already. 

Feel free to make your own sites visible,
and make your own project announcements. 

(My own little sanity test seemed quite
fast, I assume due to repositories being well mirrored and due to a well
tuned infrastructure, thank Denis and team!) 

And thanks to all you projects teams
for your cooperation and participation in this ninth annual Simultaneous
Release. Well done!


___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev
___
cross-project-issues-dev mailing list
cross-project-issues-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev