unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: glade New variable
@ 2014-02-05 20:27 John Darrington
  2014-02-06 18:03 ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: John Darrington @ 2014-02-05 20:27 UTC (permalink / raw)
  To: guix-devel; +Cc: John Darrington

* gnu/packages/gnome.scm (glade): New variable.
---
 gnu/packages/gnome.scm |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index cadea72..35417ea 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -530,3 +530,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
     (description
      "ekiga is a gobject-based plugins engine, and is targetted at giving nthe API")
     (license lgpl2.0+)))
+
+
+
+(define-public glade3
+  (package
+    (name "glade")
+    (version "3.8.4")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnome/sources/" name "/"
+                          (substring version 0 (string-rindex version #\.)) "/"
+                          name "3-" version ".tar.xz"))
+              (sha256
+               (base32 "021xgq2l18w3rvwms9aq2idm0fk66vwb4f777gs0qh3ap5shgbn7"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+-2)
+       ("libxml2" ,libxml2)))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("python" ,python)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://glade.gnome.org")
+    (synopsis "GTK+ RAD tool")
+    (description "Glade is a RAD tool to enable quick & easy development of
+user interfaces for the GTK+ toolkit and the GNOME desktop environment.") 
+    (license lgpl2.0+)))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: glade New variable
  2014-02-05 20:27 [PATCH] gnu: glade New variable John Darrington
@ 2014-02-06 18:03 ` Ludovic Courtès
  2014-02-06 18:58   ` John Darrington
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2014-02-06 18:03 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel

John Darrington <jmd@gnu.org> skribis:

> * gnu/packages/gnome.scm (glade): New variable.

Applied, thanks!

> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -530,3 +530,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
>      (description
>       "ekiga is a gobject-based plugins engine, and is targetted at giving nthe API")
>      (license lgpl2.0+)))

The patch didn’t apply because of the above (great initiative! ;-)), so
I manually applied it.

> +    (synopsis "GTK+ RAD tool")
> +    (description "Glade is a RAD tool to enable quick & easy development of
> +user interfaces for the GTK+ toolkit and the GNOME desktop environment.") 

I expanded “RAD” here.

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: glade New variable
  2014-02-06 18:03 ` Ludovic Courtès
@ 2014-02-06 18:58   ` John Darrington
  2014-02-07 11:02     ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: John Darrington @ 2014-02-06 18:58 UTC (permalink / raw)
  To: Ludovic Court??s; +Cc: guix-devel, John Darrington

[-- Attachment #1: Type: text/plain, Size: 748 bytes --]

On Thu, Feb 06, 2014 at 07:03:13PM +0100, Ludovic Court??s wrote:
     
     > --- a/gnu/packages/gnome.scm
     > +++ b/gnu/packages/gnome.scm
     > @@ -530,3 +530,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
     >      (description
     >       "ekiga is a gobject-based plugins engine, and is targetted at giving nthe API")
     >      (license lgpl2.0+)))
     
     The patch didn???t apply because of the above (great initiative! ;-)), so
     I manually applied it.
     

Sorry. I should keep the experimental stuff separate.
     

-- 
PGP Public key ID: 1024D/2DE827B3 
fingerprint = 8797 A26D 0854 2EAB 0285  A290 8A67 719C 2DE8 27B3
See http://sks-keyservers.net or any PGP keyserver for public key.


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: glade New variable
  2014-02-06 18:58   ` John Darrington
@ 2014-02-07 11:02     ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2014-02-07 11:02 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel, John Darrington

John Darrington <john@darrington.wattle.id.au> skribis:

> On Thu, Feb 06, 2014 at 07:03:13PM +0100, Ludovic Court??s wrote:
>      
>      > --- a/gnu/packages/gnome.scm
>      > +++ b/gnu/packages/gnome.scm
>      > @@ -530,3 +530,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
>      >      (description
>      >       "ekiga is a gobject-based plugins engine, and is targetted at giving nthe API")
>      >      (license lgpl2.0+)))
>      
>      The patch didn???t apply because of the above (great initiative! ;-)), so
>      I manually applied it.
>      
>
> Sorry. I should keep the experimental stuff separate.

I use Magit, and the nice thing is that it allows you to select which
hunks you want to be part of your commit (see <http://magit.github.io/>.)

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] gnu: glade New variable
@ 2014-02-08 18:21 John Darrington
  2014-02-08 23:05 ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: John Darrington @ 2014-02-08 18:21 UTC (permalink / raw)
  To: guix-devel; +Cc: John Darrington

* gnu/packages/gnome.scm (glade): New variable.
---
 gnu/packages/gnome.scm |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5d17b01..ce1e355 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -523,3 +523,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
 enable quick & easy development of user interfaces for the GTK+ toolkit and
 the GNOME desktop environment.")
     (license lgpl2.0+)))
+
+
+
+(define-public glade3
+  (package
+    (name "glade")
+    (version "3.8.4")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnome/sources/" name "/"
+                          (substring version 0 (string-rindex version #\.)) "/"
+                          name "3-" version ".tar.xz"))
+              (sha256
+               (base32 "021xgq2l18w3rvwms9aq2idm0fk66vwb4f777gs0qh3ap5shgbn7"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+-2)
+       ("libxml2" ,libxml2)))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("python" ,python)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://glade.gnome.org")
+    (synopsis "GTK+ RAD tool")
+    (description "Glade is a RAD tool to enable quick & easy development of
+user interfaces for the GTK+ toolkit and the GNOME desktop environment.") 
+    (license lgpl2.0+)))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] gnu: glade New variable
  2014-02-08 18:21 John Darrington
@ 2014-02-08 23:05 ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2014-02-08 23:05 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel

John Darrington <jmd@gnu.org> skribis:

> * gnu/packages/gnome.scm (glade): New variable.

Unless I’m missing something, it’s already committed (commit
3600420e3e4bfc105e3d01474688ab10a7eb37a6).  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-08 23:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-05 20:27 [PATCH] gnu: glade New variable John Darrington
2014-02-06 18:03 ` Ludovic Courtès
2014-02-06 18:58   ` John Darrington
2014-02-07 11:02     ` Ludovic Courtès
  -- strict thread matches above, loose matches on Subject: below --
2014-02-08 18:21 John Darrington
2014-02-08 23:05 ` Ludovic Courtès

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).