Skip to content

Commit

Permalink
Merge pull request #60293 from dtzWill/update/accountsservice-0.6.55
Browse files Browse the repository at this point in the history
accountsservice: 0.6.54 -> 0.6.55
  • Loading branch information
dtzWill committed Apr 28, 2019
2 parents a8ab026 + 7a499cc commit afebfec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/accountsservice/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
name = "accountsservice-${version}";
version = "0.6.54";
version = "0.6.55";

src = fetchurl {
url = "https://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
sha256 = "1b115n0a4yfa06kgxc69qfc1rc0w4frgs3id3029czkrhhn0ds96";
sha256 = "16wwd633jak9ajyr1f1h047rmd09fhf3kzjz6g5xjsz0lwcj8azz";
};

nativeBuildInputs = [ pkgconfig makeWrapper meson ninja python3 ];
Expand Down
12 changes: 6 additions & 6 deletions pkgs/development/libraries/accountsservice/no-create-dirs.patch
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
diff --git a/meson_post_install.py b/meson_post_install.py
index ba95055..17f7926 100644
index 5cc2dc4..dd27ad5 100644
--- a/meson_post_install.py
+++ b/meson_post_install.py
@@ -9,8 +9,8 @@ localstatedir = os.path.normpath(destdir + os.sep + sys.argv[1])
# FIXME: meson will not track the creation of these directories
# https://github.com/mesonbuild/meson/blob/master/mesonbuild/scripts/uninstall.py#L39
dst_dirs = [
- os.path.join(localstatedir, 'lib', 'AccountsService', 'icons'),
- os.path.join(localstatedir, 'lib', 'AccountsService', 'users'),
+ #os.path.join(localstatedir, 'lib', 'AccountsService', 'icons'),
+ #os.path.join(localstatedir, 'lib', 'AccountsService', 'users'),
- (os.path.join(localstatedir, 'lib', 'AccountsService', 'icons'), 0o775),
- (os.path.join(localstatedir, 'lib', 'AccountsService', 'users'), 0o700),
+# (os.path.join(localstatedir, 'lib', 'AccountsService', 'icons'), 0o775),
+# (os.path.join(localstatedir, 'lib', 'AccountsService', 'users'), 0o700),
]

for dst_dir in dst_dirs:
for (dst_dir, dst_dir_mode) in dst_dirs:

0 comments on commit afebfec

Please sign in to comment.