You are not logged in.

#1 2014-08-18 15:33:46

VladimirVilimaitis
Member
Registered: 2014-04-13
Posts: 26

If installed through AUR, Firefox Aurora fails to update.

Good morning.
So, as you could have guessed from the title, Firefox Aurora, and, likely, other Firefox versions as well, are unable to to updated via in-build Firefox updater if they were installed through Arch User Repository, being stuck on "Connecting to the update server", as depicted below:
http://i.imgur.com/7HbtUYi.png
Tool that was used to install the package is yaourt, no PKGBUILD or firefox.conf modifications were made.




-- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --

Last edited by VladimirVilimaitis (2014-08-18 15:36:12)

Offline

#2 2014-08-18 17:24:57

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: If installed through AUR, Firefox Aurora fails to update.

Can the versions from the official repository update themselves?

Offline

#3 2014-08-18 17:52:58

nomorewindows
Member
Registered: 2010-04-03
Posts: 3,542

Re: If installed through AUR, Firefox Aurora fails to update.

Aurora is in one of the unofficial repos.


I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.

Offline

#4 2014-08-18 19:22:54

VladimirVilimaitis
Member
Registered: 2014-04-13
Posts: 26

Re: If installed through AUR, Firefox Aurora fails to update.

I feel rather silly, the version I have installed comes from local repository, not AUR.
Furthermore, for some reason, now PacmanXG that Firefox version is indeed 33.0a2. How can this be true, though, if the installer obviously haven't updated anything, and pacman -Syu did not output Firefox as an updated package? Now I am more curious as to why the issue was caused initially, since it is no longer present.

Offline

#5 2014-08-18 19:31:29

nomorewindows
Member
Registered: 2010-04-03
Posts: 3,542

Re: If installed through AUR, Firefox Aurora fails to update.

Firefox is currently at 31.0-1 and Aurora is at 33.0a2.  What local repository are you using?


I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.

Offline

#6 2014-08-18 20:02:25

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: If installed through AUR, Firefox Aurora fails to update.

Check pacman's log to see when these packages when last updated.

Offline

#7 2014-08-18 21:07:14

VladimirVilimaitis
Member
Registered: 2014-04-13
Posts: 26

Re: If installed through AUR, Firefox Aurora fails to update.

karol wrote:

Check pacman's log to see when these packages when last updated.

[2014-08-18 02:57] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-linux/PKGDEST.2r4/firefox-aurora-33.0a2.20140817004001-1-i686.pkg.tar.xz'
[2014-08-18 02:57] [PACMAN] installed firefox-aurora (33.0a2.20140817004001-1)

Weird, so the version I have installed initially was, in fact, 33.0a2.
Why the hell then I was offered to perform an update which would not update my system, then? Anyone had similar issues? Is it a bug which should be reported to Firefox team?

Last edited by VladimirVilimaitis (2014-08-18 21:10:41)

Offline

#8 2014-08-18 21:47:36

VladimirVilimaitis
Member
Registered: 2014-04-13
Posts: 26

Re: If installed through AUR, Firefox Aurora fails to update.

And apparently I am still getting them, what the hell:


-- Stop posting oversized screenshots.

-- Read the link I edited into your first post. I'm not your mother; make some sort of effort so that I don't have to keep following you around cleaning up after you.

Last edited by jasonwryan (2014-08-18 22:03:56)

Offline

#9 2014-08-18 21:56:06

nomorewindows
Member
Registered: 2010-04-03
Posts: 3,542

Re: If installed through AUR, Firefox Aurora fails to update.

VladimirVilimaitis wrote:
karol wrote:

Check pacman's log to see when these packages when last updated.

[2014-08-18 02:57] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-linux/PKGDEST.2r4/firefox-aurora-33.0a2.20140817004001-1-i686.pkg.tar.xz'
[2014-08-18 02:57] [PACMAN] installed firefox-aurora (33.0a2.20140817004001-1)

Weird, so the version I have installed initially was, in fact, 33.0a2.
Why the hell then I was offered to perform an update which would not update my system, then? Anyone had similar issues? Is it a bug which should be reported to Firefox team?

You used AUR by using yaourt.


I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.

Offline

#10 2014-08-18 22:03:13

Gusar
Member
Registered: 2009-08-25
Posts: 3,607

Re: If installed through AUR, Firefox Aurora fails to update.

The internal updater is for the case where you manually download a build from mozilla.org and unpack it into your home dir. The other option is a distro-provided build that's installed system-wide and updated via the package manager (such a build will have the internal updater disabled at compile-time).

What you did, have the package manger download a mozilla.org build and install it system-wide, gives you conflicting update mechanisms. What the PKGBUILDs in AUR should do is disable the internal updater by creating a ${pkgdir}/opt/firefox/browser/defaults/preferences/archlinux.js that contains

pref("app.update.auto", false);
pref("app.update.enabled", false);

Offline

#11 2014-08-18 22:11:36

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: If installed through AUR, Firefox Aurora fails to update.

Maybe it wants to install today's build? I don't know how aurora updates work. If the internal update is still broken for you, update it with pacman.
heftig provides nightly builds in his unofficial repository.

Offline

#12 2014-08-19 19:34:19

VladimirVilimaitis
Member
Registered: 2014-04-13
Posts: 26

Re: If installed through AUR, Firefox Aurora fails to update.

Gusar wrote:

The internal updater is for the case where you manually download a build from mozilla.org and unpack it into your home dir. The other option is a distro-provided build that's installed system-wide and updated via the package manager (such a build will have the internal updater disabled at compile-time).

What you did, have the package manger download a mozilla.org build and install it system-wide, gives you conflicting update mechanisms. What the PKGBUILDs in AUR should do is disable the internal updater by creating a ${pkgdir}/opt/firefox/browser/defaults/preferences/archlinux.js that contains

pref("app.update.auto", false);
pref("app.update.enabled", false);

Thanks, done it.
This ends the thread, I assume.
I think that it would be wonderful if package maintainers on AUR implemented this so no other user would have similar errors, but I am not explicitly concerned about it.

Offline

Board footer

Powered by FluxBB