[Nix-commits] [NixOS/nixpkgs] e53b3e: pypeg2: disable tests on py3k

2016-09-13 Thread exi
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e53b3ea8591567171f10d69560e58962722fd9cd
  
https://github.com/NixOS/nixpkgs/commit/e53b3ea8591567171f10d69560e58962722fd9cd
  Author: Domen Kožar <do...@dev.si>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pypeg2: disable tests on py3k

(cherry picked from commit 2adbd13f9561edf7771fc8687b9299a817ee71b6)
Signed-off-by: Domen Kožar <do...@dev.si>


  Commit: 6ff44c571bb3c9bc810afcb7d7f9ea72c713e37d
  
https://github.com/NixOS/nixpkgs/commit/6ff44c571bb3c9bc810afcb7d7f9ea72c713e37d
  Author: Reno Reckling <e...@wthack.de>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
M nixos/tests/mumble.nix

  Log Message:
  ---
  mumble: fix failing vm tests

modify tests to not fail if the event handlers are
registered too slowly or if the wrong window is in focus

(cherry picked from commit e087b0d12f97604ee1fdd09ef3d78b772c12468e)
Signed-off-by: Domen Kožar <do...@dev.si>


  Commit: 18ba3297f04af05b340f467209d83aa34cd43f98
  
https://github.com/NixOS/nixpkgs/commit/18ba3297f04af05b340f467209d83aa34cd43f98
  Author: exi <e...@wthack.de>
  Date:   2016-09-13 (Tue, 13 Sep 2016)

  Changed paths:
M pkgs/applications/office/kmymoney/default.nix
A pkgs/applications/office/kmymoney/seqaccessmgrtest.patch

  Log Message:
  ---
  Fix kmymoney test build failure on 32bit

(cherry picked from commit f4618e14b956055da3df400fa9d302c5ea64a7f8)
Signed-off-by: Domen Kožar <do...@dev.si>


Compare: https://github.com/NixOS/nixpkgs/compare/deb59785b080...18ba3297f04a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Going through hell with systemd timers

2016-01-28 Thread exi
Hi Erik,

does duplicity use an ssh connection? Does it depend on your ssh
passphrase to be present? Do you use a ssh agent?

"BackendException" from the traceback looks more like a connection issue
than a nix issue.
Which user is running the timer command?
Could you post your timer config?

Regards,

exi

On 28.01.2016 09:07, 4levels wrote:
> Hi Nix-Devs,
>
> yesterday I came to a point of really wanting to break something out
> of sheer frustration over failing systemd timer calls.
>
> I've setup a duplicity backup script over s3 that works flawlessly
> when invoked from terminal, but fails misrably when being called from
> a timer.
>
> I've tried everything I know, including but not limited to adding my
> full user $PATH to the script, adding all possible related packages to
> the path directive, .. nothing seems to work.
>
> The duplicity error is very vague (BackendException) and when adding
> maximum verbosity to the duplicity call ( -v9 ) I do get some error
> which seems to be related to a very old duplicity bug.  Since
> duplicity uses python (the version I could trace seems to be 2.7) with
> python-boto for the s3 backend - the issue seems to be related to
> this, but I can't figure out what could be the reason since all
> required packages are installed and operational from the commandline.
>
> Has anyone experience with running python-based code in systemd timer
> calls (without being bitten)?
>
> On top of that, Github went down for a couple of hours last night and
> to make things even worse, NixOps cannot finish a deploy on any of the
> 5 machines I'm managing with it anymore, with a vague error message:
>
> v-ams02...> updating GRUB 2 menu...
> v-ams02...> Died at
> /nix/var/nix/profiles/system/bin/switch-to-configuration line 264.
> v-ams02...> error: unable to activate new configuration
>
> Kind regards.
>
> Erik 
>
> Duplicity error with maximum verbosity:
> Backend error detail: Traceback (most recent call last):
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/bin/.duplicity-wrapped",
> line 1519, in 
> with_tempdir(main)
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/bin/.duplicity-wrapped",
> line 1513, in with_tempdir
> fn()
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/bin/.duplicity-wrapped",
> line 1354, in main
> action = commandline.ProcessCommandLine(sys.argv[1:])
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/commandline.py",
> line 1070, in ProcessCommandLine
> backup, local_pathname = set_backend(args[0], args[1])
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/commandline.py",
> line 961, in set_backend
> globals.backend = backend.get_backend(bend)
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/backend.py",
> line 223, in get_backend
> obj = get_backend_object(url_string)
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/backend.py",
> line 209, in get_backend_object
> return factory(pu)
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/backends/_boto_single.py",
> line 161, in __init__
> self.resetConnection()
>   File
> "/nix/store/ap2bv0p5m8napigg7f6yciap4nm61ap8-duplicity-0.7.02/lib/python2.7/site-packages/duplicity/backends/_boto_single.py",
> line 187, in resetConnection
> raise BackendException(err.message)
>
>
>
> !DSPAM:56a9cc5f200881139745903!
>
>
>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>
>
> !DSPAM:56a9cc5f200881139745903!
>
>


___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev