unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: 宋文武 <iyzsong@gmail.com>
To: David Thompson <dthompson2@worcester.edu>, guix-devel@gnu.org
Subject: Re: [PATCH 1/2] gnu: Add vte.
Date: Mon, 15 Dec 2014 18:50:04 +0800	[thread overview]
Message-ID: <87bnn5mbkz.fsf@gmail.com> (raw)
In-Reply-To: <874msyfhob.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me>

David Thompson <dthompson2@worcester.edu> writes:

> 宋文武 <iyzsong@gmail.com> writes:
>
>> * gnu/packages/gnome.scm (vte, vte-0): New variables.
>> ---
>>  gnu/packages/gnome.scm | 57 +++++++++++++++++++++++++++++++++++++++++++++++++-
>>  1 file changed, 56 insertions(+), 1 deletion(-)
>>
>> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
>> index 5d84f4e..7087727 100644
>> --- a/gnu/packages/gnome.scm
>> +++ b/gnu/packages/gnome.scm
>> @@ -47,7 +47,8 @@
>>    #:use-module (gnu packages gl)
>>    #:use-module (gnu packages compression)
>>    #:use-module (gnu packages xorg)
>> -  #:use-module (gnu packages xdisorg))
>> +  #:use-module (gnu packages xdisorg)
>> +  #:use-module (gnu packages ncurses))
>>  
>>  (define-public brasero
>>    (package
>> @@ -1324,3 +1325,57 @@ language features to GNOME developers without imposing any additional runtime
>>  requirements and without using a different ABI compared to applications and
>>  libraries written in C.")
>>      (license license:lgpl2.1+)))
>> +
>> +(define-public vte
>> +  (package
>> +    (name "vte")
>> +    (version "0.38.2")
>> +    (source (origin
>> +              (method url-fetch)
>> +              (uri (string-append "mirror://gnome/sources/" name "/"
>> +                                  (version-major+minor version) "/"
>> +                                  name "-" version ".tar.xz"))
>> +              (sha256
>> +               (base32
>> +                "1rbxrigff9yszbgdw0gw4c2saz4d1hbbpz21phzxx14w49wvmnmj"))))
>> +    (build-system gnu-build-system)
>> +    (native-inputs
>> +     `(("pkg-config" ,pkg-config)
>> +       ("intltool" ,intltool)
>> +       ("vala" ,vala)
>> +       ("gobject-introspection" ,gobject-introspection)
>> +       ("glib" ,glib "bin") ; for glib-genmarshal, etc.
>> +       ("xmllint" ,libxml2)))
>> +    (propagated-inputs
>> +     `(("gtk+" ,gtk+))) ; required by libvte-2.91.pc
>> +    (home-page "http://www.gnome.org/")
>> +    (synopsis "Virtual Terminal Emulator")
>> +    (description
>> +     "VTE is a library (libvte) implementing a terminal emulator widget for
>> +GTK+, and a minimal sample application (vte) using that.  Vte is mainly used in
>> +gnome-terminal, but can also be used to embed a console/terminal in games,
>> +editors, IDEs, etc.")
>> +    (license license:lgpl2.1+)))
>> +
>> +;; stable version for gtk2, required by xfce4-terminal.
>> +(define-public vte-0
>
> Maybe call this one 'vte-gtk2'?  'vte-0' isn't very descriptive.
Basically, I intend to use the version of pc file,
for example, I have libwnck-1, which has libwnck-1.0.pc.

Yes, this does make sense, but 'vte-gtk2' is look like another package,
how about 'vte/gtk+-2'?
>
>> +  (package (inherit vte)
>> +    (name "vte")
>> +    (version "0.28.2")
>> +    (source (origin
>> +              (method url-fetch)
>> +              (uri (string-append "mirror://gnome/sources/" name "/"
>> +                                  (version-major+minor version) "/"
>> +                                  name "-" version ".tar.xz"))
>> +              (sha256
>> +               (base32
>> +                "1bmhahkf8wdsra9whd3k5l5z4rv7r58ksr8mshzajgq2ma0hpkw6"))))
>> +    (arguments
>> +     '(#:configure-flags '("--disable-python")))
>> +    (native-inputs
>> +     `(("pkg-config" ,pkg-config)
>> +       ("intltool" ,intltool)
>> +       ("glib" ,glib "bin")))   ; for glib-genmarshal, etc.
>> +    (propagated-inputs
>> +     `(("gtk+" ,gtk+-2)         ; required by libvte.pc
>> +       ("ncurses" ,ncurses))))) ; required by libvte.la
>> -- 
>> 2.1.2
>>
>>
>
> Looks good otherwise!
>
> -- 
> David Thompson
> Web Developer - Free Software Foundation - http://fsf.org
> GPG Key: 0FF1D807
> Support the FSF: https://fsf.org/donate

  reply	other threads:[~2014-12-15 10:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-14  5:34 [PATCH 1/2] gnu: Add vte 宋文武
2014-12-14  5:34 ` [PATCH 2/2] gnu: Add xfce4-terminal 宋文武
2014-12-14 14:08 ` [PATCH 1/2] gnu: Add vte David Thompson
2014-12-15 10:50   ` 宋文武 [this message]
2014-12-16  9:10     ` Mark H Weaver
2014-12-16 11:34       ` 宋文武
2014-12-16 16:25         ` Mark H Weaver

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87bnn5mbkz.fsf@gmail.com \
    --to=iyzsong@gmail.com \
    --cc=dthompson2@worcester.edu \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).