bug#23055: wget within guix fails to resolve FQDNs when used as an input (native or otherwise)

2016-03-19 Thread Dennis Mungai
Hello David, Thanks for the clarification. Seems Arrayfire will need several modify-phases statements to clean up the current build system and in addition, port Boost.Compute to GNU Guix as an input. Will do, and provide feedback on the same. Thanks and regards, Dennis Mungai. On 18 March 201

bug#23055: wget within guix fails to resolve FQDNs when used as an input (native or otherwise)

2016-03-19 Thread Dennis Mungai
Update: All worked out. I was able to port over the dependencies to guix and fed them as inputs to the package in question. All builds as expected. Thanks and regards, Dennis Mungai. On 18 March 2016 at 21:23, Dennis Mungai wrote: > Hello David, > > Thanks for the clarification. > > Seems Ar

bug#20145: (guix build download) leaks file descriptor on TLS connections

2016-03-19 Thread Ludovic Courtès
l...@gnu.org (Ludovic Courtès) skribis: > When opening an HTTPS connection, the file descriptor beneath the port > returned by ‘tls-wrap’ is leaked. > > This is not a problem in most cases (downloads) because the process is > left as soon as the download is over. > > This is more problematic for ‘

bug#22666: gnome-shell enters suspend loop after waking up from suspend

2016-03-19 Thread Ludovic Courtès
Fixed by Andy in commit fa4b8badf0e0566b44f7afb57003bb426bc2d5ea as explained at . Ludo’.

bug#23030: Guix commands broken

2016-03-19 Thread Andreas Enge
Things work for me now, thanks for the help! However, I am still seeing this with latest git: substitute: updating list of substitutes from 'https://hydra.gnu.org'... 100.0% Should this not be https://mirror.hydra.gnu.org? Andreas

bug#23030: Guix commands broken

2016-03-19 Thread Ludovic Courtès
Leo Famulari skribis: > This looks like the same error as in , which > I am also getting when I try to fetch substitutes over https. Indeed. Commit df061d079b50111280aa7209b3b3c4cf21fde218 changes the default substitute URLs to https. For this to work, you need to ma

bug#23062: "guix package -i" sometimes can't use what "guix import pypi" generated

2016-03-19 Thread Danny Milosavljevic
I tried to create a package for uwsgi (in git guix) by $ guix import pypi uwsgi ...From https://pypi.python.org/packages/source/u/uWSGI/uwsgi-2.0.12.tar.gz... ... (package (name "python-uwsgi") (version "2.0.12") (source (origin (method url-fetch) (uri (pypi-uri "uWSGI" vers

bug#23064: herd has incomplete status reporting, not so helpful

2016-03-19 Thread Danny Milosavljevic
So there was a postgresql update where the data format was incompatible. That happens regularily and is ... acceptable, I guess (even more acceptable in guix because I can easily switch back to the old release). However, in order to find that out, I had to: $ psql ... something about a socket n

bug#23064: herd has incomplete status reporting, not so helpful

2016-03-19 Thread Danny Milosavljevic
> Aha! It says so right there in the standard output (or error?). Where did > that message go in the shepherd case? It's on standard error. The exit code is 1.

bug#23055: wget within guix fails to resolve FQDNs when used as an input (native or otherwise)

2016-03-19 Thread Thompson, David
On Fri, Mar 18, 2016 at 2:04 PM, Dennis Mungai wrote: > As you can see in the first part, fetching BoostCompute fails because the > specified MD5 hash fails, and as a result, the build system falls back to > fetching the same with wget (see second snippet). > > The second part fails because wget

bug#23066: "guix package -i transmission" doesn't install transmission-gtk into profile

2016-03-19 Thread Danny Milosavljevic
However, it installs share/applications/transmission-gtk.desktop into the profile, containing Exec=transmission-gtk %U i.e. it won't find it. transmission-cli works. I checked gnu/packages/bittorrent.scm , it seems to do some weird special-case for the gui (it puts the gui into a "gui" output

bug#23030: Guix commands broken

2016-03-19 Thread Leo Famulari
On Wed, Mar 16, 2016 at 04:46:11PM +0100, Andreas Enge wrote: > Hello, > > sorry for the vague title; it looks as if one of the recent commits broke the > daemon for me. > > $ ./pre-inst-env guix build font-forge --no-substitutes > substitute: Backtrace: > substitute: In ice-9/boot-9.scm: > subst

bug#21843: Generated grub.cfg does not support encrypted roots

2016-03-19 Thread Andreas Enge
On Wed, Mar 16, 2016 at 09:40:00PM +0100, Andreas Enge wrote: > I just read a bit of the cryptsetup manual; we do not need to do the > resolution, in the above example we would have the line >cryptomount -u cb67fc72-0d54-4c88-9d4b-b225f30b0f44 > (as discussed previously; it works at least witho

bug#23064: herd has incomplete status reporting, not so helpful

2016-03-19 Thread Ludovic Courtès
Danny Milosavljevic skribis: > $ sudo herd status postgres > Status of postgres: > It is started. > Running value is 18438. > It is enabled. > Provides (postgres). > Requires (user-processes loopback). > Conflicts with (). > Will be respawned. > > So it claimed that everything was j

bug#21843: Generated grub.cfg does not support encrypted roots

2016-03-19 Thread Andreas Enge
On Thu, Mar 10, 2016 at 10:17:46AM +0100, Ludovic Courtès wrote: > Furthermore, to allow users to specify a LUKS UUID as the ‘source’ of > their ‘mapped-device’ form, as in: >(mapped-device > (source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44")) ;LUKS UUID > (target "root") > (t

bug#23064: herd has incomplete status reporting, not so helpful

2016-03-19 Thread Danny Milosavljevic
> Sounds like postgresql died and shepherd did not notice? Or maybe it > keeps trying to respawn it? What did /var/log/shepherd.log say? 2016-03-19 10:34:48 Service postgres has been started. 2016-03-19 10:34:49 Respawning postgres. 2016-03-19 10:34:49 Service postgres has been started. 2016-03-

bug#23055: wget within guix fails to resolve FQDNs when used as an input (native or otherwise)

2016-03-19 Thread Dennis Mungai
Hello there, I'm porting Arrayfire to GNU Guix, see https://github.com/Brainiarc7/guix-bioinformatics/blob/master/gn/packages/arrayfire.scm One of the inputs declared is wget, needed as a fall-back when fetching BoostCompute should the Cmake checksums fail. See the build log below: -- Boost ver

bug#23062: "guix package -i" sometimes can't use what "guix import pypi" generated

2016-03-19 Thread Ludovic Courtès
Fixed in 522773b70024272555aab0448fae8606add4c582. Thanks, Ludo'.

bug#23048: epiphany browser missing icons

2016-03-19 Thread rain1
Hello If you install the epiphany browser without adwaita-icon-theme it will be missing user interface icons. So I think that the epiphany package should include adwaita-icon-theme as an input. Thanks!

bug#23030: Guix commands broken

2016-03-19 Thread Andreas Enge
Hello, sorry for the vague title; it looks as if one of the recent commits broke the daemon for me. $ ./pre-inst-env guix build font-forge --no-substitutes substitute: Backtrace: substitute: In ice-9/boot-9.scm: substitute: 63: 19 [call-with-prompt prompt0 ...] substitute: In ice-9/eval.scm: su

bug#23056: Guix 0.9.0 Build Failure

2016-03-19 Thread Ludovic Courtès
Michael Downey skribis: > I am submitting a bug report for a repeated and reproducible (at least on my > machine) build failure for guix-0.9.71e2065 on x86_64. The failure occurs > when test/store.scm fails during the tests. [...] > removing stale temporary roots file > `/tmp/nix-build-guix

bug#22985: using gnune-gtk with ratpoison (gnunet-fs in -gtk nonfunctional) -> needs participation and input

2016-03-19 Thread Nils Gillmann
Experienced same behavior when I added gnome to my profile and launched it today, steps to replicate: gnunet-arm -s & gnunet-gtk expected error: (gnunet-fs-gtk:32585): GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed in terminal, and gnunet-fs tab is black. -