nckx pushed a commit to branch master in repository guix. commit cb4baa4da6a36729b1495fa4241d8a64a95f6a56 Author: Tobias Geerinckx-Rice <m...@tobias.gr> Date: Mon Aug 20 13:36:04 2018 +0200
gnu: gimp: Report bugs to Guix. Upstream prints this when running ./configure. Take the hint. NOTE: if you plan on packaging GIMP for distribution, it is recommended to override the bug report URL with option: --with-bug-report-url=https://example.com/ so that you can filter packaging bugs from core bugs before reporting upstream. * gnu/packages/gimp.scm (gimp)[arguments]: Customise bug report URI. --- gnu/packages/gimp.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index 9b02327..df8f242 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -130,9 +130,12 @@ buffers.") (outputs '("out" "doc")) ; 9 MiB of gtk-doc HTML (arguments - '(#:configure-flags (list (string-append "--with-html-dir=" - (assoc-ref %outputs "doc") - "/share/gtk-doc/html")) + '(#:configure-flags + (list (string-append "--with-html-dir=" + (assoc-ref %outputs "doc") + "/share/gtk-doc/html") + ;; ./configure requests not to annoy upstream with packaging bugs. + "--with-bug-report-url=https://bugs.gnu.org/guix") #:phases (modify-phases %standard-phases (add-after 'install 'install-sitecustomize.py