gtksourceview-2 has xorg-server and shared-mime-info as inputs rather than native-inputs (they are just required for tests)

  • Done
  • quality assurance status badge
Details
2 participants
  • Danny Milosavljevic
  • 宋文武
Owner
unassigned
Submitted by
Danny Milosavljevic
Severity
normal

Debbugs page

Danny Milosavljevic wrote 8 years ago
(address . bug-guix@gnu.org)
20170125232049.0c8aca99@scratchpost.org
(define-public gtksourceview-2
(package
(name "gtksourceview")
(version "2.10.5") ; This is the last version which builds against gtk+2
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
(version-major+minor version) "/"
name "-" version ".tar.bz2"))
(sha256
(base32
"07hrabhpl6n8ajz10s0d960jdwndxs87szxyn428mpxi8cvpg1f5"))))
(build-system gnu-build-system)
(inputs
`(("gtk" ,gtk+-2)
;; These two are needed only to allow the tests to run successfully.
("xorg-server" ,xorg-server) ; <====================== ?!
("shared-mime-info" ,shared-mime-info))) ; <====================== ?!
(native-inputs
`(("intltool" ,intltool)
("glib" ,glib "bin") ; for glib-genmarshal, etc.
("pkg-config" ,pkg-config)))

Why?

Also, gtksourceview (without -2) doesn't. Weird...
宋文武 wrote 8 years ago
(name . Danny Milosavljevic)(address . dannym@scratchpost.org)(address . 25537-done@debbugs.gnu.org)
87inozn9ct.fsf@member.fsf.org
Danny Milosavljevic <dannym@scratchpost.org> writes:

Toggle quote (27 lines)
> (define-public gtksourceview-2
> (package
> (name "gtksourceview")
> (version "2.10.5") ; This is the last version which builds against gtk+2
> (source (origin
> (method url-fetch)
> (uri (string-append "mirror://gnome/sources/" name "/"
> (version-major+minor version) "/"
> name "-" version ".tar.bz2"))
> (sha256
> (base32
> "07hrabhpl6n8ajz10s0d960jdwndxs87szxyn428mpxi8cvpg1f5"))))
> (build-system gnu-build-system)
> (inputs
> `(("gtk" ,gtk+-2)
> ;; These two are needed only to allow the tests to run successfully.
> ("xorg-server" ,xorg-server) ; <====================== ?!
> ("shared-mime-info" ,shared-mime-info))) ; <====================== ?!
> (native-inputs
> `(("intltool" ,intltool)
> ("glib" ,glib "bin") ; for glib-genmarshal, etc.
> ("pkg-config" ,pkg-config)))
>
> Why?
>
> Also, gtksourceview (without -2) doesn't. Weird...

Well i guess it's just being unnoticed, fixed in commit bd05ea41b.

Thank you!
Closed
?
Your comment

This issue is archived.

To comment on this conversation send an email to 25537@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 25537
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch
You may also tag this issue. See list of standard tags. For example, to set the confirmed and easy tags
mumi command -t +confirmed -t +easy
Or, remove the moreinfo tag and set the help tag
mumi command -t -moreinfo -t +help