-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
gitAndTools.git-remote-hg: 0.2 -> 1.0.0 #59332
Conversation
Should probably be also backported to 19.03. |
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
Outdated
Show resolved
Hide resolved
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
Show resolved
Hide resolved
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above minor comments.
This appears to be a python application https://github.com/mnauw/git-remote-hg/blob/master/setup.py.
So we should be using buildPythonApplication
and fetching with fetchPypi
.
https://pypi.org/project/git-remote-hg/
You should also document the upstream source changes in the commit msg.
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec { | |||
|
|||
postInstall = '' | |||
wrapProgram $out/bin/git-remote-hg \ | |||
--prefix PYTHONPATH : "$(echo ${mercurial}/lib/python*/site-packages):$(echo ${mercurial.python}/lib/python*/site-packages)${stdenv.lib.concatMapStrings (x: ":$(echo ${x}/lib/python*/site-packages)") mercurial.pythonPackages or []}" | |||
--set PYTHONPATH "$(echo ${mercurial}/lib/python*/site-packages):$(echo ${mercurial.python}/lib/python*/site-packages)${stdenv.lib.concatMapStrings (x: ":$(echo ${x}/lib/python*/site-packages)") mercurial.pythonPackages or []}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
buildPython*
should be able to wrap this when you put the runtime deps in propagatedBuildInputs
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem is, setup.py
is currently broken, because it tries to fetch the version from a git tag and fails. We can patch it though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
buildPython* should be able to wrap this when you put the runtime deps in propagatedBuildInputs.
This package depends on mercurial
, which is built with buildPythonApplication
. Will it still work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem is,
setup.py
is currently broken, because it tries to fetch the version from a git tag and fails. We can patch it though.
Yeah they're many packages that take a much better approach that they could have used as an example. Patching and submitting it upstream would be preferred.
But if it's too much of a hassle, you can use format = "other";
and just use the Makefile
as normally.
https://nixos.org/nixpkgs/manual/#python 9.14.2.2.1.1. buildPythonPackage parameters
This package depends on mercurial, which is built with buildPythonApplication. Will it still work?
Think so.
Wow, thanks for such a thorough review. :) |
c15bc7c
to
ab9a0f2
Compare
…b2 -> 1.0.0 Changed the upstream repo to https://github.com/mnauw/git-remote-hg: - looks the most alive at the moment, the last commit is from March 2019; - https://pypi.org/project/git-remote-hg/ points to this repo as well; - Debian uses it too: https://salsa.debian.org/debian/git-remote-hg/blob/e769897119850979d590b758791b7d7b36db3c41/setup.py#L45
ab9a0f2
to
df38831
Compare
Refectored to use |
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
Show resolved
Hide resolved
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
Outdated
Show resolved
Hide resolved
asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt libxml2 | ||
]; | ||
nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt libxml2 ]; | ||
propagatedBuildInputs = [ mercurial ]; | ||
|
||
doCheck = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has tests https://github.com/mnauw/git-remote-hg/blob/master/Makefile#L10
Maybe try to enable them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the tests are going to be problematic. They mostly pass but one or two of them fail. What's worse, the failures are different with different versions of Git and Mercurial. I'll have to look into it.
df38831
to
73f3767
Compare
|
||
doCheck = false; | ||
|
||
installFlags = "HOME=\${out} install-doc"; | ||
patches = [ | ||
./patches/./no-dynamic-git-version.patch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
./patches/./no-dynamic-git-version.patch | |
./patches/no-dynamic-git-version.patch |
Use buildPythonApplication, organize build inputs.
73f3767
to
b353f4d
Compare
Already done in #57730. |
Motivation for this change
git-remote-hg-0.2 is broken with recent versions of Mercurial:
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)