Re: Handling update-alternatives

2016-08-05 Thread Steve Langasek
On Fri, Aug 05, 2016 at 09:33:42AM +, Evan Dandrea wrote: > On Fri, 5 Aug 2016 at 10:21 Dan Watkins > wrote: > > My first thought was to add an `awk` part, which would allow you to > > specify the way in which you wanted awk to be provided (i.e. "this > > Ubuntu package", "build from this sou

Re: ntopng strict snap published

2016-08-05 Thread Blake Rouse
Already have pull request into the project. https://github.com/ntop/ntopng/pull/676 ntopng is a reserved name in the snappy store, so I don't know the process of getting an account that can have access to that name. Allowing them to publish under the correct name. On Fri, Aug 5, 2016 at 1:55 AM,

Re: Getting QT apps running.

2016-08-05 Thread Dietmar Winkler
Hi, so I finally spend some time again on this. Since I could not get the menus to work under standard Ubuntu Unity 16.04 I thought maybe it's not the snap but something that does not agree within the desktop manager. So I simply installed ubuntu-mate-desktop and logged into standard mate. Then

Re: Handling update-alternatives

2016-08-05 Thread Didier Roche
Le 05/08/2016 à 12:25, Dan Watkins a écrit : > On 05/08/16 11:00, John Lenton wrote: >> On 5 August 2016 at 10:20, Dan Watkins wrote: >>> Something I'm snapping tries to run `awk`, which isn't included in the >>> ubuntu-core snap >> awk *is* in the ubuntu-core snap. What's happening is bug #158001

Re: Handling update-alternatives

2016-08-05 Thread John Lenton
On 5 August 2016 at 11:25, Dan Watkins wrote: > > The snapped program calls /usr/bin/awk at runtime, so I'd presumably > need mawk to be installed in the host at runtime as well? core has mawk, but not gawk. snaps run with the host's /etc/alternatives but core's /usr. -- Snapcraft mailing list

Re: Handling update-alternatives

2016-08-05 Thread Dan Watkins
On 05/08/16 11:00, John Lenton wrote: > On 5 August 2016 at 10:20, Dan Watkins wrote: >> Something I'm snapping tries to run `awk`, which isn't included in the >> ubuntu-core snap > > awk *is* in the ubuntu-core snap. What's happening is bug #1580018: > you've used update-alternatives on the host

Re: Handling update-alternatives

2016-08-05 Thread John Lenton
On 5 August 2016 at 10:20, Dan Watkins wrote: > Something I'm snapping tries to run `awk`, which isn't included in the > ubuntu-core snap awk *is* in the ubuntu-core snap. What's happening is bug #1580018: you've used update-alternatives on the host to switch to an awk that is different to the on

Re: Handling update-alternatives

2016-08-05 Thread Evan Dandrea
On Fri, 5 Aug 2016 at 10:21 Dan Watkins wrote: > My first thought was to add an `awk` part, which would allow you to > specify the way in which you wanted awk to be provided (i.e. "this > Ubuntu package", "build from this source") and ensure that awk would end > up in the PATH of other things in

Handling update-alternatives

2016-08-05 Thread Dan Watkins
Hello all, Something I'm snapping tries to run `awk`, which isn't included in the ubuntu-core snap. As such, I added gawk to stage-packages for my part: parts: thing: ... stage-packages: - gawk Unfortunately, it didn't occur to me that awk is actually provided by updat