-
-
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
inkscape: add scour as optional dependency #49903
Conversation
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.
There is already a python2Env that can be extended. Also, does everyone want to have this optional dependency included?
@GrahamcOfBorg build python2.pkgs.scour |
Success on aarch64-linux (full log) Attempted: python2.pkgs.scour Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: python2.pkgs.scour Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: python2.pkgs.scour Partial log (click to expand)
|
No tests are found. Either the test runner cannot find tests and needs to be patched, or there simply are no tests in which case the tests need to be disabled. Do include a comment explaining why the tests are disabled. |
I already added scour to nixpkgs https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/graphics/scour/default.nix |
Thanks @worldofpeace. Now I could like to know, how does Inkscape use it. Do they import a Python scour module, or do they run the scour executable? |
Unfortunately I don't have the requisite knowledge of python to enable tests. I used the existing package https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/graphics/scour/default.nix as a template. |
This is a python 3 package. Don't we require python 2? |
|
b604c4b
to
eb04e99
Compare
Optional scour dependency now included in existing |
}: | ||
|
||
let | ||
python2Env = python2.withPackages(ps: with ps; [ numpy lxml ]); | ||
python2Env = python2.withPackages(ps: with ps; | ||
[ numpy lxml ] ++ stdenv.lib.optional scourSupport ps.scour); |
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.
I think this can be
stdenv.lib.optional scourSupport scour
because there's with ps;
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.
Yeah right you are. I'll test it before pushing
@@ -3,10 +3,12 @@ | |||
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper | |||
, gsl, python2, poppler, imagemagick, libwpg, librevenge | |||
, libvisio, libcdr, libexif, potrace, cmake, hicolor-icon-theme | |||
, scourSupport ? 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.
Does this really need to be false
?
It shouldn't affect the closure too much.
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.
I changed that to false
as @FRidh queried it in the initial PR. But I can change it back to true
.
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.
I haven't checked the closure size. How is Inkscape with optional dependencies? Are there a lot?
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.
Arch linux seems to have a list of 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.
@FRidh, @worldofpeace this is the closure of scour:
/nix/store/g2yk54hifqlsjiha3szr4q3ccmdzyrdv-glibc-2.27 25010568
/nix/store/pmvnf35kg6k2p0z91ac663akazlf7wz6-bzip2-1.0.6.0.1 25083424
/nix/store/1vb4m694aj9bdm7aq3911yjjb73gn4ii-attr-2.4.47 25090384
/nix/store/di0d17idlw6fxf3qwpfyxciw94ywi664-zlib-1.2.11 25135080
/nix/store/f6a7rladm0r8k62qvr4yb3gyj81cr9yp-acl-2.2.52 25190248
/nix/store/9l9mnc25y5rw4m6jfbgihv610si6gsiv-gdbm-1.18 25644808
/nix/store/r47p5pzx52m3n34vdgqpk5rvqgm0m24m-bash-4.4-p23 26186104
/nix/store/ck5ay23hsmlc67pg3m34kzd1k2hhvww0-sqlite-3.24.0 26294200
/nix/store/dzvbhkzfgwkq97ljkcvi4gs7vmflh6a0-coreutils-8.30 26877336
/nix/store/iirmif7qgp7pgbv80z5x1sj3hbay893d-ncurses-6.1 28370672
/nix/store/ra2kcrzvp2hmsvmq82kma077h19yx0hr-openssl-1.0.2p 28686952
/nix/store/nhfaids6kfq0x6xrff9bl5qkyg83vvmf-readline-6.3p08 28758392
/nix/store/3v5r7fkrbkw2qajadvjbf6p6qriz9p1i-gcc-7.3.0-lib 30635424
/nix/store/i209v6zy67lpyybx6kxkrlvz6crv8dkp-db-5.3.28 34871512
/nix/store/2brlr94ahy3a9mvcjy0qbqpv8zrb7b7s-python-2.7.15 94103328
/nix/store/cx4364dn6qx4xci990q1bk6i5z4880kw-python2.7-setuptools-40.2.0 95128600
/nix/store/281q69f2wkzi9bdwfs2rlalcyrhrd2yb-python2.7-six-1.11.0 95196656
/nix/store/8baq3rijziz6ws95jih09la954achxvl-python2.7-scour-0.37 95514616
@bennylb
Notice how these messages always use attribute names of the affected software. |
Note also that commit message and PR title are not the same :) |
@worldofpeace thanks for pointing that out. |
@FRidh thanks I'll fix that up too. |
eb04e99
to
d11a9b9
Compare
I've pushed fca9a06, always including |
Thanks again @FRidh. |
Motivation for this change
Inkscape has an option to export to an optimised svg. To do this it requires scour. This PR adds scour as an optional dependency.
Things done
Added:
pythonPackages.scour
python-packages.nix
scourSupport
option toinkscape/default.nix
argumentsmaintainers-list.nix
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)