Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dex: 0.7 -> 0.8.0 #45639

Merged
merged 1 commit into from Aug 26, 2018
Merged

dex: 0.7 -> 0.8.0 #45639

merged 1 commit into from Aug 26, 2018

Conversation

kyrias
Copy link
Contributor

@kyrias kyrias commented Aug 26, 2018

Motivation for this change

Upstream update

Things done
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)

@@ -1,18 +1,19 @@
{ stdenv, fetchFromGitHub, python3 }:
{ stdenv, fetchFromGitHub, python3, sphinx }:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need to add sphinx here, you can reference it as python3.pkgs.sphinx, so the argument python3 is enough.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I just copied it because I saw some other packages doing it that way, but fixed now.

};

propagatedBuildInputs = [ python3 ];
nativeBuildInputs = [ sphinx ];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

python3.pkgs.sphinx

@@ -2063,7 +2063,9 @@ with pkgs;
gtk = gtk3;
};

dex = callPackage ../tools/X11/dex { };
dex = callPackage ../tools/X11/dex {
sphinx = python3Packages.sphinx;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not necessary, see comments above.

Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
@xeji
Copy link
Contributor

xeji commented Aug 26, 2018

@GrahamcOfBorg build dex

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: dex

Partial log (click to expand)

post-installation fixup
moving /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0/man to /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0/share/man
shrinking RPATHs of ELF executables and libraries in /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0
gzipping man pages under /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0/share/man/
strip is /nix/store/h0lbngpv6ln56hjj59i6l77vxq25flbz-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0/bin
patching script interpreter paths in /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0
/nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0/bin/dex: interpreter directive changed from "/usr/bin/env python3" to "/nix/store/5674cf2n5yy83s5ksg7y3wk006byc7y3-python3-3.6.6/bin/python3"
checking for references to /build in /nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0...
/nix/store/qgfgcyabml89hzhq85xg1vr9fwizhfmj-dex-0.8.0

@GrahamcOfBorg
Copy link

No attempt on x86_64-darwin (full log)

The following builds were skipped because they don't evaluate on x86_64-darwin: dex

Partial log (click to expand)


a) For `nixos-rebuild` you can set
  { nixpkgs.config.allowUnsupportedSystem = true; }
in configuration.nix to override this.

b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowUnsupportedSystem = true; }
to ~/.config/nixpkgs/config.nix.


@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: dex

Partial log (click to expand)

post-installation fixup
moving /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0/man to /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0/share/man
shrinking RPATHs of ELF executables and libraries in /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0
gzipping man pages under /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0/share/man/
strip is /nix/store/y4ymnvgxygpq05h03kyzbj572zmh6zla-binutils-2.30/bin/strip
stripping (with command strip and flags -S) in /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0/bin
patching script interpreter paths in /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0
/nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0/bin/dex: interpreter directive changed from "/usr/bin/env python3" to "/nix/store/dpv31nky5xrvcc3lahrdpid9y0m7cijq-python3-3.6.6/bin/python3"
checking for references to /build in /nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0...
/nix/store/3jix4cz5kqdirhc67n5gjn9cfk4xhvls-dex-0.8.0

@xeji
Copy link
Contributor

xeji commented Aug 26, 2018

Thank you!

@xeji xeji merged commit 9e44b46 into NixOS:master Aug 26, 2018
@kyrias kyrias deleted the dex-0.8.0 branch August 27, 2018 05:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants