[Bug 740815]

2011-12-29 Thread Randall Leeds
Sorry to revive an old thread, but I wanted to voice my thoughts for
posterity. Right now the embedder's story is something like:

1) Look for js-config. If found, use it to find the sdkdir, then do feature 
detection to figure out what JSAPI version it is.
2) Otherwise, look for libmozjs185
3) ... or for libmozjs
4) ... or for libjs

I'm glad to see that the mozilla-central repository has not taken the
versioning used here into the library name upstream. I encourage
everyone involved in releases not to worry about getting the JS language
version involved in the library naming at all. It may often be of much
less importance to an embedder whether the language changed slightly as
whether the embedding ABI changed, so please stick to ABI compatibility
when deciding version numbering for the library and keep one library
name. I suspect backward-incompatible language changes are less frequent
than ABI changes and much of the JS world is used to feature-testing for
language compatibility anyway due to the variety of language versions
and features supported by browsers. Furthermore, embedders who _do_ care
about the language version can look at the define in jsversion.h.
Changing library names just complicates things needlessly.

Thanks for all your hard work.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/740815/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-12-29 Thread Dmandelin
(In reply to Randall Leeds from comment #49)
 Sorry to revive an old thread, but I wanted to voice my thoughts for
 posterity. 

Thanks for the input. I don't think we're planning changing much right
now, but at some point I think we'll want to do a new source release and
it will be good to keep this in mind. I think the point about version
numbering going with ABI rather than language features makes sense.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/740815/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-07-19 Thread Ionut Biru
i'm sorry for posting this issue in here but i don't know where to do
it.

mongodb needs utf8 support in js and i had to add
-DJS_C_STRINGS_ARE_UTF8 to CXXFLAGS. Can you enable this default or add
an option in configure, like --enable-utf8 in the next release?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/740815/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-07-19 Thread Pbiggar
Ionut, you can get this added to SpiderMonkey for the next release by
filing a bug for it in the Core/Javascript component (that same
component as this). If you have a patch, mark it for review by setting
r? to 'pbig...@mozilla.com' and I can review it for you.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/740815/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-07-19 Thread Wes Garland
Ionut, -DJS_C_STRINGS_ARE_UTF8 is not the best way to access that
feature, it is deprecated (but still functional) after JS 1.7.0.

Instead please invoke JS_SetCStringsAreUTF8() before your first call to
JS_InitRuntime().

https://developer.mozilla.org/en/JS_CStringsAreUTF8

Wes

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/740815/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-20 Thread Colin Watson
cjwatson pitti: you demoted xulrunner-2.0 yesterday morning, but 
http://people.canonical.com/~ubuntu-archive/component-mismatches.txt is showing 
it as a promotion candidate due to a build-dependency from packagekit
chrisccoulson cjwatson, it's an alternative build-depend
chrisccoulson (ie, firefox-dev | xulrunner-dev)
chrisccoulson oh, actually, it is xulrunner-dev | firefox-dev
cjwatson chrisccoulson: hmm, germinate wouldn't normally pick it up in that 
case, and yet it is ...
cjwatson chrisccoulson: OK.  Can we flip that?
cjwatson or is that ordering appropriate?
chrisccoulson cjwatson, it's like that to keep the packaging in sync with 
debian, i think
chrisccoulson the debian build uses xulrunner-dev
cjwatson it's possible that we could fix it up with an explicit seed
cjwatson if you'd rather keep it that way, I can experiment ...
chrisccoulson cjwatson, i don't mind really. comments 43 - 46 in bug 740815 
explain the current implementation though

I'm investigating a seed workaround.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-20 Thread Colin Watson
I've tried, and I don't think I can fix this in a seed.  Either we have
to ignore the noise from component-mismatches until such time as
xulrunner-dev is removed entirely (which is error-prone), or we need to
flip round the build-depends ordering as an Ubuntu-specific patch to
packagekit.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-20 Thread Björn Michaelsen
FWIW, libreoffice and libreoffice-l10n also have xulrunner-dev |
firefox-dev. I wonder why they do not show up in the component-
mismatches.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package libreoffice-l10n - 1:3.3.2-1ubuntu3

---
libreoffice-l10n (1:3.3.2-1ubuntu3) natty; urgency=low

  * merged all changes from ubuntu-natty-3.3.1 up to 3.3.2-1ubuntu3

libreoffice (1:3.3.2-1ubuntu3) natty; urgency=low

  * make build dep on xulrunner-dev alternatively depend on firefox-dep (LP: 
#740815)
  * cherry-pick from debian:
 - enable is (icelandic) l10n (LP: #751746)
  * add unity quicklist support (LP: #720716)
  * workaround for unity icon issue (LP: #732412)
  * regenerated control file and refresh patch queue
 -- Bjoern Michaelsen bjoern.michael...@canonical.com   Mon, 18 Apr 2011 
11:55:37 +0200

** Changed in: libreoffice-l10n (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-19 Thread Martin Pitt
I reapplied the icedtea-web fix this morning, Bjoern uploaded libo-l10n,
so we should be all set now.  I demoted xulrunner-2.0 to universe.

** Changed in: xulrunner-2.0 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-18 Thread Launchpad Bug Tracker
This bug was fixed in the package libreoffice - 1:3.3.2-1ubuntu3

---
libreoffice (1:3.3.2-1ubuntu3) natty; urgency=low

  * make build dep on xulrunner-dev alternatively depend on firefox-dep (LP: 
#740815)
  * cherry-pick from debian:
 - enable is (icelandic) l10n (LP: #751746)
  * add unity quicklist support (LP: #720716)
  * workaround for unity icon issue (LP: #732412)
  * regenerated control file and refresh patch queue
 -- Bjoern Michaelsen bjoern.michael...@canonical.com   Fri, 15 Apr 2011 
10:01:19 +0200

** Changed in: libreoffice (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-desktop/gnome-python-extras/ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/gnome-python-extras

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-12 Thread Martin Pitt
The only gluezilla reverse dependency is a recommends from libmono-
webbrowser0.5-cil, which will be dropped to a suggests.

I demoted gluezilla.

** Changed in: gluezilla (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-12 Thread Martin Pitt
Now that gluezilla is in universe, I demoted xulrunner-1.9.2 as the last
remaining rdepends.

** Changed in: xulrunner-1.9.2 (Ubuntu)
   Status: In Progress = Fix Released

** Changed in: libreoffice (Ubuntu)
Milestone: None = ubuntu-11.04

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-12 Thread Launchpad Bug Tracker
This bug was fixed in the package mono - 2.6.7-5ubuntu3

---
mono (2.6.7-5ubuntu3) natty; urgency=low

  * Drop gluezilla Recommends to Suggests for libmono-webbrowser0.5-cil.
xulrunner, and hence gluezilla, is dropping out of main for Natty.
(LP: #740815)
 -- Christopher James Halse Rogers r...@ubuntu.com   Tue, 12 Apr 2011 
11:23:54 +1000

** Changed in: mono (Ubuntu)
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/mono

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-11 Thread Ionut Biru
yes. that works fine

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-11 Thread Wes Garland
Thanks - I'll be sure to roll that into the next release.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-10 Thread Ionut Biru
@Wesley the symlinks are created in the wrong way.

lrwxrwxrwx root/root 0 2011-04-09 10:55 usr/lib/libmozjs185.so.1.0 - 
/build/pkg//usr/lib/libmozjs185.so.1.0.0
lrwxrwxrwx root/root 0 2011-04-09 10:55 usr/lib/libmozjs185.so - 
/build/pkg//usr/lib/libmozjs185.so.1.0
-rwxr-xr-x root/root   5694336 2011-04-09 10:55 usr/lib/libmozjs185-1.0.a
-rwxr-xr-x root/root   342 2011-04-09 10:55 usr/lib/libmozjs185.so.1.0.0


this happens mostly for those who wants to package it and DESTDIR is used and 
the resulted package doesn't have that target.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-10 Thread Wes Garland
Ionut;

I think you did
# ./configure --prefix=/build/pkg/usr/
# make  make install

and then wanted to move/copy the links that were made, but they were
absolute rather than relative links, so this did not work?

If I understand correctly, I can fix this in the next release, or
perhaps a point release.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-10 Thread Ionut Biru
Wesley:

i did ./configure --prefix=/usr  make  make DESTDIR=/build/pkg
install

in Makefile.in you have on line:

891 ln -s $(SHLIB_EXACT_VER) $(SHLIB_ABI_VER)
892 ln -s $(SHLIB_ABI_VER) $(SHLIB_ANY_VER)


where:

870 # Generic Unix / Linux
871 SHLIB_ANY_VER   := $(DESTDIR)$(libdir)/$(SHARED_LIBRARY)
872 SHLIB_ABI_VER   := 
$(DESTDIR)$(libdir)/$(SHARED_LIBRARY).$(SRCREL_ABI_VERSION)
873 SHLIB_EXACT_VER := $(DESTDIR)$(libdir)/$(SHARED_LIBRARY).$(SRCREL_VERSION)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-10 Thread Wes Garland
Interesting, that is not a configuration I've tested but I will add it
to my (very short) list for the next release.

In the meantime, I think you can change 891 and 892 of Makefile.in like
this to achieve the desired outcome:

891 ln -s $(notdir $(SHLIB_EXACT_VER)) $(SHLIB_ABI_VER)
892 ln -s $(notdir $(SHLIB_ABI_VER)) $(SHLIB_ANY_VER)

This would give relative links instead of absolute links, which is the
correct behaviour, right?

Wes

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-08 Thread Martin Pitt
Just discussed on IRC, we'll drop the webbrowser package from mono for
now, and will reintroduce it once the webkit port is ready.

** Changed in: mono (Ubuntu)
 Assignee: (unassigned) = Chris Halse Rogers (raof)

** Changed in: mono (Ubuntu)
   Importance: Undecided = High

** Changed in: mono (Ubuntu)
   Status: Confirmed = In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-08 Thread Björn Michaelsen
Fix for libreoffice and libreoffice-l10n commited as:

 http://git.debian.org/?p=pkg-
openoffice/libreoffice.git;a=commit;h=fa30810e24fa95e212a643a4722a5aec6b040335

** Changed in: libreoffice (Ubuntu)
   Status: Confirmed = Fix Committed

** Changed in: libreoffice (Ubuntu)
 Assignee: (unassigned) = Björn Michaelsen (bjoern-michaelsen)

** Changed in: libreoffice-l10n (Ubuntu)
   Status: Confirmed = Fix Committed

** Changed in: libreoffice-l10n (Ubuntu)
 Assignee: (unassigned) = Björn Michaelsen (bjoern-michaelsen)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-05 Thread Martin Pitt
** Changed in: libreoffice-l10n (Ubuntu)
   Status: New = Confirmed

** Changed in: libreoffice (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Launchpad Bug Tracker
This bug was fixed in the package packagekit - 0.6.11-2ubuntu3

---
packagekit (0.6.11-2ubuntu3) natty; urgency=low

  * Build-depend on xulrunner-dev or firefox-dev, which makes it
possible to compile PK without xulrunner as the
latter should go away. (LP: #740815)
 -- Matthias Klumpp matth...@nlinux.org   Thu, 24 Mar 2011 14:47:04 +0100

** Changed in: packagekit (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/packagekit

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-04 Thread Landry-openbsd
Interested in this aswell for OpenBSD, i was planning to do an update to
our old spidermonkey 1.7.0 port from firefox 4 source tarball until i
saw that bug report.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-04 Thread Wes Garland
We officially published last night --

http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz
https://developer.mozilla.org/En/SpiderMonkey/1.8.5

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-04-04 Thread Shaver
(In reply to comment #23)
 Normal practice is to only ship generated files in the foo.tar.gz, not in
 revision control.  In the same way that firefox-4.0.source.tar.bz2 includes
 configure, but mozilla-central doesn't.

We used to have it in the tree when we were in CVS, and it's only the
more complex merge mechanics of hg that made us turn it off.  We'd like
to have it back, because it obviates the need to have autoconf-2.13
installed for the vast majority of developers.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Bug Watch Updater
** Changed in: firefox
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Chris Coulson
** Changed in: icedtea-web (Ubuntu)
 Assignee: (unassigned) = Chris Coulson (chrisccoulson)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Launchpad Bug Tracker
This bug was fixed in the package icedtea-web - 1.1~20110320-0ubuntu2

---
icedtea-web (1.1~20110320-0ubuntu2) natty; urgency=low

  * Switch build-depends to firefox-dev for natty. xulrunner is
being demoted from main  (LP: #740815)
- update debian/rules
- update debian/control
 -- Chris Coulson chris.coul...@canonical.com   Mon, 04 Apr 2011 11:07:15 
+0100

** Changed in: icedtea-web (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-04-04 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/icedtea-web

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-31 Thread Colin Walters
GJS changes to support this release: 
https://bugzilla.gnome.org/show_bug.cgi?id=646369

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-31 Thread Bug Watch Updater
** Bug watch added: GNOME Bug Tracker #646369
   https://bugzilla.gnome.org/show_bug.cgi?id=646369

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Colin Walters
Hi Wes, thanks a ton for your work here!

* You seem to have configure checked in to the hg repo, since it's
generated it shouldn't be (and it's not in mozilla-central)

Actually I'm getting a build error on RHEL6 I need to debug before I do
further checking.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Wes Garland
Colin -- I checked in configure in purpose - it's part of the source
tarball (which is what that repo tracks).  The idea is to eliminate
autoconf-2.13 as a dependency for projects embedding SpiderMonkey and
building from (or incorporating) the source tarball.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Colin Walters
A couple more things:

* The js-config script will conflict.  Not quite sure what to do with it; most 
distros ship pkg-config, which is really better in all conceivable ways. 
* Speaking of pkg-config, this does *not* ship a .pc file (it lives in 
mozilla-central/xulrunner/installer).  Would you take a patch to add one, say 
spidermonkey-185.pc?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Pbiggar
(In reply to comment #21)
  Would you take a patch to add one, say
 spidermonkey-185.pc?

Can you add this to the tracemonkey repo too?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Colin Walters
(In reply to comment #20)
 Colin -- I checked in configure in purpose - it's part of the source tarball
 (which is what that repo tracks).  The idea is to eliminate autoconf-2.13 as a
 dependency for projects embedding SpiderMonkey and building from (or
 incorporating) the source tarball.

Normal practice is to only ship generated files in the foo.tar.gz, not
in revision control.  In the same way that firefox-4.0.source.tar.bz2
includes configure, but mozilla-central doesn't.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Chris Coulson
I've actually packaged this in Ubuntu now, but I hit a couple of
unexpected issues:

1) js-config --libs doesn't return the right linker flags (-lmozjs)

2) Even though it builds an ABI versioned so, the soname of the
resulting ELF binary is still unversioned (ie, libmozjs185.so rather
than libmozjs185.so.1.0). This would mean we couldn't support multiple
ABI's, which would make it difficult to do an ABI transition in the
future.

I have patches for both of these problems, although the patch for 2) is
a bit hacky.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Chris Coulson
Created attachment 521592
Fix js-config --libs

This makes js-config --libs return the right linker flags

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Chris Coulson
Created attachment 521593
Fix SONAME

This ensures that the resulting binary has the right soname
(libmozjs185.so.1.0). tbh, I couldn't figure out a better way of doing
this, so I'm not sure if anyone else has any better ideas

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Mh+mozilla
If you're doing official releases, you also want to address bug 554088
at some point.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Mh+mozilla
(In reply to comment #26)
 Created attachment 521593 [details]
 Fix SONAME
 
 This ensures that the resulting binary has the right soname
 (libmozjs185.so.1.0). tbh, I couldn't figure out a better way of doing this, 
 so
 I'm not sure if anyone else has any better ideas

Why does it need to be libmozjs185.so.something instead of
libmozjs.so.something?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Wes Garland
Chris -- argh, thanks for catching the js-config bug.  I'll be cutting a
new release to address that specific issue RSN.

Thanks also for your SONAME patch: that's something I don't have a lot
of experience with.

Mike -- I named the library libmozjs185.so rather than libmozjs.so
specifically because it doesn't work as a drop-in for any previously-
released libmozjs.so (not even close -- see the release notes).

Versioning the spidermonkey library based on the JavaScript version it
implements (1.8.5) doesn't make much sense to me; I prefer to think of
this as version 1.0.0 of the library which implements JavaScript 1.8.5.
Trying to connect solib versioning with language versioning has, at
least in the past, been completely and utterly futile.

Thanks for pointing out the header bug, BTW. I agree that it should be
fixed, and in fact tried to fix it in the past.  Maybe now that I know
my way around better I can try again.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Pbiggar
(Apologies if this is bikeshedding or a repeat of previous discussion)

(In reply to comment #29)
 Mike -- I named the library libmozjs185.so rather than libmozjs.so 
 specifically
 because it doesn't work as a drop-in for any previously-released libmozjs.so
 (not even close -- see the release notes).

Since we're deliberately changing the name, maybe libspidermonkey is a
better name? I agree that putting 185 in the name isn't good. When we
change to 1.9.0, would we have to change the SO name? That can't be
right.


 Versioning the spidermonkey library based on the JavaScript version it
 implements (1.8.5) doesn't make much sense to me; I prefer to think of this as
 version 1.0.0 of the library which implements JavaScript 1.8.5.  Trying to
 connect solib versioning with language versioning has, at least in the past,
 been completely and utterly futile.

I believe that the 1.8.5 numbering scheme is a pretty bad one, and is
only there because of history. Perhaps we should change it; maybe to the
Firefox version number or the Gecko one.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Colin Walters
Created attachment 521641
add pkg-config file

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Colin Walters
(In reply to comment #30)

 Since we're deliberately changing the name, maybe libspidermonkey is a better
 name? I agree that putting 185 in the name isn't good. When we change to 
 1.9.0,
 would we have to change the SO name? That can't be right.

I don't think it matters a lot, honestly.  I really would rather we
ship.  libspidermonkey does make more sense to me though if someone
cares to rework the tree though, so we're *very* clearly distinguished
from --enable-shared-js from mozilla-central.

 I believe that the 1.8.5 numbering scheme is a pretty bad one, and is only
 there because of history. Perhaps we should change it; maybe to the Firefox
 version number or the Gecko one.

So combining, you're proposing libspidermonkey-4.so ?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Ash-mozilla
(In reply to comment #31)
 Created attachment 521641 [details]
 add pkg-config file

We probably don't care, but you can make the pkg-config file
relative/relocatable by using the ${pcfiledir} expansion: see
https://github.com/Flusspferd/flusspferd/blob/master/libflusspferd/flusspferd.pc.in
(@ REL_PC_PATH_TO_ROOT@ is replaced in this case by CMake to be
something like '/../..' or similar)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Ash-mozilla
 
  I believe that the 1.8.5 numbering scheme is a pretty bad one, and is only
  there because of history. Perhaps we should change it; maybe to the Firefox
  version number or the Gecko one.
 
 So combining, you're proposing libspidermonkey-4.so ?

As someone else mentioned, there is also the version numbers from the
moz central tree - for instance FF4 was 2.0:
http://hg.mozilla.org/releases/mozilla-2.0/tags

But i would also rather we ship with what we have now than get bogged
down in deciding something else if there isn't a clear consensus.

Personally the 'JS version' has always seemed fairly arbitrary, and also
I don't imagine there will change very fast - so using FF or moz
versions would be far superior.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815]

2011-03-27 Thread Jorendorff
 (In reply to comment #30)
 (Apologies if this is bikeshedding or a repeat of previous discussion)

(Well-aimed kick to the shins)

I don't think anything has changed since comment 5. See the last three
paragraphs there.

 Since we're deliberately changing the name, maybe libspidermonkey is a better
 name? I agree that putting 185 in the name isn't good. When we change to 
 1.9.0,
 would we have to change the SO name? That can't be right.

It isn't ideal, but it reflects reality. I would be thrilled to ship a
SM with no stupid version number in its name. We should totally do that,
as soon as have a sane upgrade story. First things first.

Fixing SM versioning was a non-goal for this release. Help us get it
right in the next one.

(In reply to comment #32)
 I don't think it matters a lot, honestly.  I really would rather we ship. 

This, with a bullet.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/tuxguitar

** Branch linked: lp:ubuntu/azureus

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/mozjs

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Launchpad Bug Tracker
This bug was fixed in the package couchdb - 1.0.1-0ubuntu14

---
couchdb (1.0.1-0ubuntu14) natty; urgency=low

  * Build against a proper libmozjs \o/
- FFe LP: #740815
  * Note, we rename a couple of existing patches so that they apply in the
right order and the names make sense
- rename mozjs2.0.patch = moz0001-spidermonkey1.8.5.patch
- rename mozjs2.0_autotools.patch =
   moz0003-spidermonkey1.8.5_autotools.patch
  * Drop unneeded patch which added LD_LIBRARY_PATH kludge
- remove debian/patches/mozjs1.9_ldlibpath.patch
  * Add support to build system for configuring mozjs with js-config
- add debian/patches/moz0002-libmozjs.patch
  * Update build-depends/depends/build config (we no longer need the --with-js
build flags)
- update debian/rules
- update debian/control
  * Refresh debian/patches/moz0003-spidermonkey1.8.5_autotools.patch
 -- Chris Coulson chris.coul...@canonical.com   Thu, 24 Mar 2011 01:02:03 
+

** Changed in: couchdb (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Matthias Klumpp
** Patch added: Patch against PackageKit package
   
https://bugs.launchpad.net/ubuntu/+source/xulrunner-2.0/+bug/740815/+attachment/1936588/+files/packagekit_0.6.11-2ubuntu2.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Martin Pitt
Thanks Matthias! Taking for sponsoring.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Martin Pitt
Matthias,

unfortunately this doesn't work:

dh_install --list-missing
cp: Aufruf von stat für 
„debian/tmp/usr/lib/mozilla/plugins/packagekit-plugin.so“ nicht möglich: Datei 
oder Verzeichnis nicht gefunden
dh_install: cp -a debian/tmp/usr/lib/mozilla/plugins/packagekit-plugin.so 
debian/browser-plugin-packagekit//usr/lib/mozilla/plugins/ returned exit code 1

configure is looking for mozilla-plugin.pc, but firefox-dev ships
firefox-plugin.pc, so it would need to be patched for this.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/iriverter

** Branch linked: lp:ubuntu/couchdb

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Chris Coulson
I've just pushed
http://bazaar.launchpad.net/~mozillateam/firefox/firefox-4.0.head/revision/822
, which means that firefox-dev will provide a mozilla-plugin pkgconfig
file now (but I'm not sure I should upload this until after beta now).

In any case, the only open items are browser plugins, which is a pretty
good situation to be in. We could easily clear those remaining ones the
day after beta release (and with the firefox change, it should just mean
adding firefox-dev to the build-deps)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Martin Pitt
Thanks Chris, this would also help to make the mozvoikko changes a lot
easier. So keeping Matthias' patch in the pipe until the new firefox
lands.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Matthias Klumpp
@Martin Pitt: Thanks! I could change this dependency upstream... I'll take a 
look how this is handled in Iceweasel and Firefox on other distributions and 
then maybe change it, if the name is the same everywhere. (But I don't really 
think this will be the case...)
I accidentally build PK in my Debian chroot, so I haven't seen the failure 
there

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Matthias Klumpp
Okay, the mozilla-plugin file is necessary, cause it's named differently
everywhere. Chris' changes will solve this without much noise :-)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Martin Pitt
One remaining rdep for 1.9.2:

-- natty/main amd64 deps on xulrunner-1.9.2:
libgluezilla

-- natty/main amd64 deps on libgluezilla:
libmono-webbrowser0.5-cil

-- natty/main amd64 deps on libmono-webbrowser0.5-cil:
libmono-cil-dev
libmono-winforms2.0-cil


** Also affects: gluezilla (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gluezilla (Ubuntu)
   Status: New = Confirmed

** Changed in: xulrunner-1.9.2 (Ubuntu)
   Status: Fix Committed = In Progress

** Also affects: mono (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Martin Pitt
As we can't really do something about gluezilla itself, I add a mono
task. There is reportedly some work going on to implement the WebBrowser
widget with webkit-sharp, but it's not ready yet.

If we would disable xulrunner in mono, we would not have any regression
in the Ubuntu archive (as libmono-webbrowser0.5-cil does not have any
real reverse dependencies), but this would break running window CIL
applications which use the web browser widget.

** Changed in: mono (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-24 Thread Matthias Klumpp
** Changed in: packagekit (Ubuntu)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Launchpad Bug Tracker
This bug was fixed in the package swt-gtk - 3.6.2-0ubuntu1

---
swt-gtk (3.6.2-0ubuntu1) natty; urgency=low

  * New upstream release v3.6.2 (LP: #740815)
- mass rename 3.5 = 3.6
  * Refresh patches:
- update debian/patches/64/arch64.diff
- update debian/patches/common/01-make_linux.patch
- remove debian/patches/common/02-bp-accessible-object.diff (fixed
  upstream)
  * Disable xulrunner support and enable webkit
- update debian/control
- update debian/Makefile
- update debian/rules
- add debian/patches/common/03-force_webkit.patch
  * Add patch to fix webkit linkage
- add debian/patches/common/02-webkit_linkage.patch
  * Ensure that dpkg-shlibdeps can find libgcj_bc.so.1
- update debian/rules
  * Fix a missing include for the webkit JNI
- add debian/patches/common/04-fix-webkit-includes.patch
 -- Chris Coulson chris.coul...@canonical.com   Wed, 23 Mar 2011 10:58:39 
+

** Changed in: swt-gtk (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Chris Coulson
There's nothing keeping xulrunner-1.9.2 in main now

** Changed in: xulrunner-1.9.2 (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: gwt (Ubuntu)
   Status: New = Fix Released

** Changed in: gwt (Ubuntu)
 Assignee: (unassigned) = Chris Coulson (chrisccoulson)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/swt-gtk

** Branch linked: lp:ubuntu/gwt

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Martin Pitt
g-p-e demoted to universe.

** Changed in: gnome-python-extras (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Launchpad Bug Tracker
This bug was fixed in the package gtk-vnc - 0.4.3-0ubuntu3

---
gtk-vnc (0.4.3-0ubuntu3) natty; urgency=low

  * Actually update to 0.4.3, the previous version forgot --merge-upstream and
thus the debian diff reverted all upstream changes.
  * debian/control: Build against firefox-dev instead of xulrunner-dev, as the
latter should go away. (LP: #740815)
 -- Martin Pitt martin.p...@ubuntu.com   Wed, 23 Mar 2011 23:44:11 +0100

** Changed in: gtk-vnc (Ubuntu)
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Martin Pitt
Taking mozvoikko

** Changed in: mozvoikko (Ubuntu)
   Status: Confirmed = In Progress

** Changed in: mozvoikko (Ubuntu)
 Assignee: (unassigned) = Martin Pitt (pitti)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Launchpad Bug Tracker
This bug was fixed in the package mozvoikko -
1.9.0~svn20101114r3591-0ubuntu3

---
mozvoikko (1.9.0~svn20101114r3591-0ubuntu3) natty; urgency=low

  * debian/control: Drop hopelessly outdated Vcs-Bzr, using
lp:ubuntu/mozvoikko now.
  * debian/control: Move from xulrunner-dev to firefox-dev, as the former will
go away. (LP: #740815)
  * debian/rules: Update path to firefox SDK, using pkg-config.
  * fix_sdk_build.patch: Update path to xpidl.
  * port_to_xulrunner-192.patch: Use firefox-plugin pkg-config, not libxul.
  * port_to_xulrunner-192.patch: Add -fshort-char to fix the error: size of
array ‘arg’ is negative error. libxul's pkg-config did that for us in the
past. Also define the linked libraries manually, as firefox-plugin.pc does
not currently give that to us.
 -- Martin Pitt martin.p...@ubuntu.com   Thu, 24 Mar 2011 01:08:25 +0100

** Branch linked: lp:ubuntu/mozvoikko

** Changed in: mozvoikko (Ubuntu)
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 740815] Re: [FFe] Updates to enable us to drop xulrunner from main

2011-03-23 Thread Chris Coulson
couchdb + libmozjs is in my PPA now

** Changed in: couchdb (Ubuntu)
   Status: In Progress = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to gwt in Ubuntu.
https://bugs.launchpad.net/bugs/740815

Title:
  [FFe] Updates to enable us to drop xulrunner from main

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs