* [PATCH] gnu: libcanberra: Add input gtk+-2.
@ 2016-02-04 16:04 Fabian Harfert
2016-02-04 16:08 ` Fabian Harfert
0 siblings, 1 reply; 12+ messages in thread
From: Fabian Harfert @ 2016-02-04 16:04 UTC (permalink / raw)
To: guix-devel
* gnu/packages/libcanberra.scm (libcanberra): Add input gtk+-2.
---
gnu/packages/libcanberra.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/libcanberra.scm b/gnu/packages/libcanberra.scm
index 3769e3f..4110e88 100644
--- a/gnu/packages/libcanberra.scm
+++ b/gnu/packages/libcanberra.scm
@@ -67,6 +67,7 @@
(inputs
`(("alsa-lib" ,alsa-lib)
("gstreamer" ,gstreamer)
+ ("gtk+" ,gtk+-2)
("gtk+" ,gtk+)
("libltdl" ,libltdl)
("libvorbis" ,libvorbis)
--
2.7.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: libcanberra: Add input gtk+-2.
2016-02-04 16:04 [PATCH] gnu: libcanberra: Add input gtk+-2 Fabian Harfert
@ 2016-02-04 16:08 ` Fabian Harfert
2016-02-06 5:05 ` 宋文武
0 siblings, 1 reply; 12+ messages in thread
From: Fabian Harfert @ 2016-02-04 16:08 UTC (permalink / raw)
To: guix-devel
On Thu, 4 Feb 2016 17:04:42 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/libcanberra.scm (libcanberra): Add input gtk+-2.
> ---
> gnu/packages/libcanberra.scm | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/gnu/packages/libcanberra.scm
> b/gnu/packages/libcanberra.scm index 3769e3f..4110e88 100644
> --- a/gnu/packages/libcanberra.scm
> +++ b/gnu/packages/libcanberra.scm
> @@ -67,6 +67,7 @@
> (inputs
> `(("alsa-lib" ,alsa-lib)
> ("gstreamer" ,gstreamer)
> + ("gtk+" ,gtk+-2)
> ("gtk+" ,gtk+)
> ("libltdl" ,libltdl)
> ("libvorbis" ,libvorbis)
This is because some packages I'm working on need libcanberra with
gtk+-2.0 support.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: libcanberra: Add input gtk+-2.
2016-02-04 16:08 ` Fabian Harfert
@ 2016-02-06 5:05 ` 宋文武
2016-02-06 18:48 ` [PATCH] gnu: Add libcanberra-gtk2 Fabian Harfert
0 siblings, 1 reply; 12+ messages in thread
From: 宋文武 @ 2016-02-06 5:05 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
Fabian Harfert <fhmgufs@web.de> writes:
> On Thu, 4 Feb 2016 17:04:42 +0100
> Fabian Harfert <fhmgufs@web.de> wrote:
>
>> * gnu/packages/libcanberra.scm (libcanberra): Add input gtk+-2.
>> ---
>> gnu/packages/libcanberra.scm | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/gnu/packages/libcanberra.scm
>> b/gnu/packages/libcanberra.scm index 3769e3f..4110e88 100644
>> --- a/gnu/packages/libcanberra.scm
>> +++ b/gnu/packages/libcanberra.scm
>> @@ -67,6 +67,7 @@
>> (inputs
>> `(("alsa-lib" ,alsa-lib)
>> ("gstreamer" ,gstreamer)
>> + ("gtk+" ,gtk+-2)
>> ("gtk+" ,gtk+)
>> ("libltdl" ,libltdl)
>> ("libvorbis" ,libvorbis)
This will add gtk+-2 to the closure of every gtk+-3 application,
How about add a new libcanberra/gtk+-2 package?
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] gnu: Add libcanberra-gtk2.
2016-02-06 5:05 ` 宋文武
@ 2016-02-06 18:48 ` Fabian Harfert
2016-02-06 19:56 ` Efraim Flashner
0 siblings, 1 reply; 12+ messages in thread
From: Fabian Harfert @ 2016-02-06 18:48 UTC (permalink / raw)
To: guix-devel
* gnu/packages/libcanberra.scm (libcanberra/gtk+-2): New variable.
---
gnu/packages/libcanberra.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/libcanberra.scm b/gnu/packages/libcanberra.scm
index 3769e3f..2cd75ce 100644
--- a/gnu/packages/libcanberra.scm
+++ b/gnu/packages/libcanberra.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -96,6 +97,19 @@ GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer,
null) and is designed to be portable.")
(license lgpl2.1+)))
+(define-public libcanberra/gtk+-2
+ (package (inherit libcanberra)
+ (name "libcanberra-gtk2")
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("gstreamer" ,gstreamer)
+ ("gtk+" ,gtk+-2)
+ ("libltdl" ,libltdl)
+ ("libvorbis" ,libvorbis)
+ ("pulseaudio" ,pulseaudio)
+ ("udev" ,eudev)
+ ("sound-theme-freedesktop" ,sound-theme-freedesktop)))))
+
(define-public sound-theme-freedesktop
(package
(name "sound-theme-freedesktop")
--
2.7.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: Add libcanberra-gtk2.
2016-02-06 18:48 ` [PATCH] gnu: Add libcanberra-gtk2 Fabian Harfert
@ 2016-02-06 19:56 ` Efraim Flashner
2016-02-07 11:13 ` Andreas Enge
2016-02-07 20:15 ` Ludovic Courtès
0 siblings, 2 replies; 12+ messages in thread
From: Efraim Flashner @ 2016-02-06 19:56 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1865 bytes --]
On Sat, 6 Feb 2016 19:48:44 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/libcanberra.scm (libcanberra/gtk+-2): New variable.
> ---
> gnu/packages/libcanberra.scm | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/gnu/packages/libcanberra.scm b/gnu/packages/libcanberra.scm
> index 3769e3f..2cd75ce 100644
> --- a/gnu/packages/libcanberra.scm
> +++ b/gnu/packages/libcanberra.scm
> @@ -1,6 +1,7 @@
> ;;; GNU Guix --- Functional package management for GNU
> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
> ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
> +;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -96,6 +97,19 @@ GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer,
> null) and is designed to be portable.")
> (license lgpl2.1+)))
>
> +(define-public libcanberra/gtk+-2
> + (package (inherit libcanberra)
> + (name "libcanberra-gtk2")
> + (inputs
> + `(("alsa-lib" ,alsa-lib)
> + ("gstreamer" ,gstreamer)
> + ("gtk+" ,gtk+-2)
> + ("libltdl" ,libltdl)
> + ("libvorbis" ,libvorbis)
> + ("pulseaudio" ,pulseaudio)
> + ("udev" ,eudev)
> + ("sound-theme-freedesktop" ,sound-theme-freedesktop)))))
> +
> (define-public sound-theme-freedesktop
> (package
> (name "sound-theme-freedesktop")
gtk is the only different input between the two variants, how about just
removing gtk from the list of inherited inputs and adding in gtk+-2? grepping
for "package-inputs" should have some examples.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: Add libcanberra-gtk2.
2016-02-06 19:56 ` Efraim Flashner
@ 2016-02-07 11:13 ` Andreas Enge
2016-02-07 13:41 ` Fabian Harfert
2016-02-07 20:15 ` Ludovic Courtès
1 sibling, 1 reply; 12+ messages in thread
From: Andreas Enge @ 2016-02-07 11:13 UTC (permalink / raw)
To: Efraim Flashner; +Cc: guix-devel
On Sat, Feb 06, 2016 at 09:56:57PM +0200, Efraim Flashner wrote:
> gtk is the only different input between the two variants, how about just
> removing gtk from the list of inherited inputs and adding in gtk+-2? grepping
> for "package-inputs" should have some examples.
For instance qt:
(inputs `(,@(alist-delete "harfbuzz"
(alist-delete "libjpeg" (package-inputs qt)))
("libjepg" ,libjpeg-8)
("libsm" ,libsm)))
Andreas
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] gnu: Add libcanberra-gtk2.
2016-02-07 11:13 ` Andreas Enge
@ 2016-02-07 13:41 ` Fabian Harfert
2016-02-07 14:03 ` Andreas Enge
0 siblings, 1 reply; 12+ messages in thread
From: Fabian Harfert @ 2016-02-07 13:41 UTC (permalink / raw)
To: guix-devel
* gnu/packages/libcanberra.scm (libcanberra/gtk+-2): New variable.
---
gnu/packages/libcanberra.scm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gnu/packages/libcanberra.scm b/gnu/packages/libcanberra.scm
index 3769e3f..50c0f80 100644
--- a/gnu/packages/libcanberra.scm
+++ b/gnu/packages/libcanberra.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -24,6 +25,7 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build utils)
#:use-module (gnu packages autotools)
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk)
@@ -96,6 +98,12 @@ GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer,
null) and is designed to be portable.")
(license lgpl2.1+)))
+(define-public libcanberra/gtk+-2
+ (package (inherit libcanberra)
+ (name "libcanberra-gtk2")
+ (inputs `(,@(alist-delete "gtk+" (package-inputs libcanberra))
+ ("gtk+" ,gtk+-2)))))
+
(define-public sound-theme-freedesktop
(package
(name "sound-theme-freedesktop")
--
2.7.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: Add libcanberra-gtk2.
2016-02-07 13:41 ` Fabian Harfert
@ 2016-02-07 14:03 ` Andreas Enge
2016-02-07 14:25 ` Efraim Flashner
0 siblings, 1 reply; 12+ messages in thread
From: Andreas Enge @ 2016-02-07 14:03 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
Hello,
this looks good to me. However, the package now cannot be installed together
with the "normal" libcanberra package, as both contain
lib/libcanberra.so.0.2.5. I suppose that is okay?
Would you mind sending a patch formatted with "git format-patch", after
committing to a local branch with the usual commit message? Then your
authorship will be preserved to posterity; otherwise I would look like
the author when I push.
And I suppose there will be more patches from you, so it is probably
worth the effort to get used to this workflow!
Thanks,
Andreas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: Add libcanberra-gtk2.
2016-02-07 14:03 ` Andreas Enge
@ 2016-02-07 14:25 ` Efraim Flashner
2016-02-07 15:51 ` Andreas Enge
0 siblings, 1 reply; 12+ messages in thread
From: Efraim Flashner @ 2016-02-07 14:25 UTC (permalink / raw)
To: Andreas Enge; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1153 bytes --]
On Sun, 7 Feb 2016 15:03:39 +0100
Andreas Enge <andreas@enge.fr> wrote:
> Hello,
>
> this looks good to me. However, the package now cannot be installed together
> with the "normal" libcanberra package, as both contain
> lib/libcanberra.so.0.2.5. I suppose that is okay?
I assume this package wouldn't normally actually be installed in a user's
profile, but I haven't worked much with gtk.
> Would you mind sending a patch formatted with "git format-patch", after
> committing to a local branch with the usual commit message? Then your
> authorship will be preserved to posterity; otherwise I would look like
> the author when I push.
If you go to save the entire email it can be applied as a patch, otherwise it
fails, like I learned last week.
> And I suppose there will be more patches from you, so it is probably
> worth the effort to get used to this workflow!
>
> Thanks,
>
> Andreas
>
-Efraim
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] gnu: Add libcanberra-gtk2.
2016-02-06 19:56 ` Efraim Flashner
2016-02-07 11:13 ` Andreas Enge
@ 2016-02-07 20:15 ` Ludovic Courtès
2016-02-07 20:16 ` Andreas Enge
1 sibling, 1 reply; 12+ messages in thread
From: Ludovic Courtès @ 2016-02-07 20:15 UTC (permalink / raw)
To: Efraim Flashner; +Cc: guix-devel
Efraim Flashner <efraim@flashner.co.il> skribis:
> On Sat, 6 Feb 2016 19:48:44 +0100
> Fabian Harfert <fhmgufs@web.de> wrote:
>
>> * gnu/packages/libcanberra.scm (libcanberra/gtk+-2): New variable.
[...]
>> +(define-public libcanberra/gtk+-2
>> + (package (inherit libcanberra)
>> + (name "libcanberra-gtk2")
>> + (inputs
>> + `(("alsa-lib" ,alsa-lib)
>> + ("gstreamer" ,gstreamer)
>> + ("gtk+" ,gtk+-2)
>> + ("libltdl" ,libltdl)
>> + ("libvorbis" ,libvorbis)
>> + ("pulseaudio" ,pulseaudio)
>> + ("udev" ,eudev)
>> + ("sound-theme-freedesktop" ,sound-theme-freedesktop)))))
>> +
>> (define-public sound-theme-freedesktop
>> (package
>> (name "sound-theme-freedesktop")
>
> gtk is the only different input between the two variants, how about just
> removing gtk from the list of inherited inputs and adding in gtk+-2?
Agreed. Fabian: could you send an updated patch? If you prefer one of
us could adjust your patch to do that.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2016-02-07 20:16 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-04 16:04 [PATCH] gnu: libcanberra: Add input gtk+-2 Fabian Harfert
2016-02-04 16:08 ` Fabian Harfert
2016-02-06 5:05 ` 宋文武
2016-02-06 18:48 ` [PATCH] gnu: Add libcanberra-gtk2 Fabian Harfert
2016-02-06 19:56 ` Efraim Flashner
2016-02-07 11:13 ` Andreas Enge
2016-02-07 13:41 ` Fabian Harfert
2016-02-07 14:03 ` Andreas Enge
2016-02-07 14:25 ` Efraim Flashner
2016-02-07 15:51 ` Andreas Enge
2016-02-07 20:15 ` Ludovic Courtès
2016-02-07 20:16 ` Andreas Enge
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).