unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38906] gnu: Add gnome-user-share.
@ 2020-01-03 21:08 Raghav Gururajan
  2020-01-07 23:34 ` Julien Lepiller
  0 siblings, 1 reply; 7+ messages in thread
From: Raghav Gururajan @ 2020-01-03 21:08 UTC (permalink / raw)
  To: 38906


[-- Attachment #1.1: Type: text/plain, Size: 89 bytes --]

Hello Guix!

Please find the attached patch to add gnome-user-share.

Regards,
RG.

[-- Attachment #1.2: gnome-user-share.patch --]
[-- Type: text/x-patch, Size: 1971 bytes --]

From 5075ed38d0024eb8aedb1e6a69ac69b85e0b6bba Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Fri, 3 Jan 2020 16:05:06 -0500
Subject: [PATCH] gnu: Add gnome-user-share.

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 54e643a7ab..b1eda248ff 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -246,6 +246,37 @@ Desktop.  It is designed to be as simple as possible and has some unique
 features to enable users to create their discs easily and quickly.")
     (license license:gpl2+)))
 
+(define-public gnome-user-share
+  (package
+   (name "gnome-user-share")
+   (version "3.33.1")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/" name "/"
+                                (version-major+minor version) "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "0lf790pyamdyj7180ils8vizjl8brxcg7jsm1iavfp9ay4wa8mz7"))))
+   (build-system meson-build-system)
+   (native-inputs
+    `(("gettext" ,gettext-minimal)
+      ("glib:bin" ,glib "bin")
+      ("gtk+:bin" ,gtk+ "bin")
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("gnome-bluetooth" ,gnome-bluetooth)
+      ("libcanberra" ,libcanberra)
+      ("libnotify" ,libnotify)
+      ("nautilus" ,nautilus)
+      ("yelp-tools" ,yelp-tools)))
+   (synopsis "File sharing for GNOME desktop")
+   (description "GNOME User Share is a small package that binds together
+various free software projects to bring easy to use user-level file
+sharing to the masses.")
+   (home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
+   (license license:gpl2)))
+
 (define-public gnome-initial-setup
   (package
    (name "gnome-initial-setup")
-- 
2.24.1


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#38906] gnu: Add gnome-user-share.
  2020-01-03 21:08 [bug#38906] gnu: Add gnome-user-share Raghav Gururajan
@ 2020-01-07 23:34 ` Julien Lepiller
  2020-01-09 16:21   ` [bug#38906] gnu: Add gnome-user-share. (v2) Raghav Gururajan
  0 siblings, 1 reply; 7+ messages in thread
From: Julien Lepiller @ 2020-01-07 23:34 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 38906

Le Fri, 03 Jan 2020 16:08:02 -0500,
Raghav Gururajan <raghavgururajan@disroot.org> a écrit :

> Hello Guix!
> 
> Please find the attached patch to add gnome-user-share.
> 
> Regards,
> RG.

Thanks for the patch!

Again, I don't really get what nautilus and gtk+ or yelp-tools are
doing for the build. Are they used in the build? Aren't they runtime
dependencies? Does the package work as expected? The description
doesn't really make it clear: does this package provide a library or
an executable? I think you can skip "free software" in the description,
we wouldn't bind together non free software anyway :)

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

* [bug#38906] gnu: Add gnome-user-share. (v2)
  2020-01-07 23:34 ` Julien Lepiller
@ 2020-01-09 16:21   ` Raghav Gururajan
  2020-01-12 21:51     ` Danny Milosavljevic
  2020-01-12 21:58     ` Raghav Gururajan
  0 siblings, 2 replies; 7+ messages in thread
From: Raghav Gururajan @ 2020-01-09 16:21 UTC (permalink / raw)
  To: Julien Lepiller; +Cc: 38906


[-- Attachment #1.1: Type: text/plain, Size: 759 bytes --]

Hello Julien!

> Again, I don't really get what nautilus and gtk+ or yelp-tools are
> doing for the build. Are they used in the build? Aren't they runtime
> dependencies? Does the package work as expected?

I revised the patch with comments. They are needed for nautilus
extension.

> The description
> doesn't really make it clear: does this package provide a library or
> an executable? I think you can skip "free software" in the
> description,
> we wouldn't bind together non free software anyway :)

I will revising all gnome packages one-by-one soon. I am planning to do
the clean-up at that time. So I am willing to leave things as it is for
now. :-)

Please find the revised patch (v2) attached with this email.

Regards,
RG.


[-- Attachment #1.2: gnome-user-share.patch --]
[-- Type: text/x-patch, Size: 2324 bytes --]

From 3266b34db3b2fdc8d4c50f6585253130f5cead87 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Thu, 9 Jan 2020 11:13:33 -0500
Subject: [PATCH] gnu: Add gnome-user-share.

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e71cc2fee2..2496cb8767 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -246,6 +246,47 @@ Desktop.  It is designed to be as simple as possible and has some unique
 features to enable users to create their discs easily and quickly.")
     (license license:gpl2+)))
 
+(define-public gnome-user-share
+  (package
+   (name "gnome-user-share")
+   (version "3.33.1")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/" name "/"
+                                (version-major+minor version) "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "0lf790pyamdyj7180ils8vizjl8brxcg7jsm1iavfp9ay4wa8mz7"))))
+   (build-system meson-build-system)
+   (arguments
+    `(#:glib-or-gtk? #t
+      #:configure-flags
+       `("-Dsystemd=false"
+         "-Dsystemduserunitdir=no"
+         ;; Enable nautilus extension for file sharing.
+         "-Dnautilus_extension=true")))
+   (native-inputs
+    `(("gettext" ,gettext-minimal)
+      ("glib:bin" ,glib "bin")
+      ("gtk+:bin" ,gtk+ "bin")
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("glib" ,glib)
+      ("gnome-bluetooth" ,gnome-bluetooth)
+      ("gobject-introspection" ,gobject-introspection)
+      ("gtk+" ,gtk+)
+      ("libcanberra" ,libcanberra)
+      ("libnotify" ,libnotify)
+      ("nautilus" ,nautilus)      ; For nautilus extension.
+      ("yelp-tools" ,yelp-tools)))
+   (synopsis "File sharing for GNOME desktop")
+   (description "GNOME User Share is a small package that binds together
+various free software projects to bring easy to use user-level file
+sharing to the masses.")
+   (home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
+   (license license:gpl2)))
+
 (define-public gnome-menus
   (package
     (name "gnome-menus")
-- 
2.24.1


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#38906] gnu: Add gnome-user-share. (v2)
  2020-01-09 16:21   ` [bug#38906] gnu: Add gnome-user-share. (v2) Raghav Gururajan
@ 2020-01-12 21:51     ` Danny Milosavljevic
  2020-01-12 21:58     ` Raghav Gururajan
  1 sibling, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2020-01-12 21:51 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: Julien Lepiller, 38906

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

>+         "-Dsystemduserunitdir=no"

That creates a directory "/no" and puts the systemd unit in there.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#38906] gnu: Add gnome-user-share. (v2)
  2020-01-09 16:21   ` [bug#38906] gnu: Add gnome-user-share. (v2) Raghav Gururajan
  2020-01-12 21:51     ` Danny Milosavljevic
@ 2020-01-12 21:58     ` Raghav Gururajan
  2020-01-12 22:10       ` bug#38906: " Danny Milosavljevic
  2020-01-12 22:13       ` [bug#38906] " Raghav Gururajan
  1 sibling, 2 replies; 7+ messages in thread
From: Raghav Gururajan @ 2020-01-12 21:58 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: Julien Lepiller, 38906

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

Hello Danny!

>> + "-Dsystemduserunitdir=no"
> 
> That creates a directory "/no" and puts the systemd unit in there.

OOPS! Please find the revised patch attached.

Thank you!

Regards,
RG.

[-- Attachment #2: gnome-user-share.patch --]
[-- Type: application/octet-stream, Size: 2277 bytes --]

From d2d5fb2b0b1d2fc3e2051b24daa80eb721f94f53 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Sun, 12 Jan 2020 16:56:35 -0500
Subject: [PATCH] gnu: Add gnome-user-share.

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4fad0b1700..9f0942a543 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -246,6 +246,46 @@ Desktop.  It is designed to be as simple as possible and has some unique
 features to enable users to create their discs easily and quickly.")
     (license license:gpl2+)))
 
+(define-public gnome-user-share
+  (package
+   (name "gnome-user-share")
+   (version "3.33.1")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/" name "/"
+                                (version-major+minor version) "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "0lf790pyamdyj7180ils8vizjl8brxcg7jsm1iavfp9ay4wa8mz7"))))
+   (build-system meson-build-system)
+   (arguments
+    `(#:glib-or-gtk? #t
+      #:configure-flags
+       `("-Dsystemd=false"
+         ;; Enable nautilus extension for file sharing.
+         "-Dnautilus_extension=true")))
+   (native-inputs
+    `(("gettext" ,gettext-minimal)
+      ("glib:bin" ,glib "bin")
+      ("gtk+:bin" ,gtk+ "bin")
+      ("pkg-config" ,pkg-config)))
+   (inputs
+    `(("glib" ,glib)
+      ("gnome-bluetooth" ,gnome-bluetooth)
+      ("gobject-introspection" ,gobject-introspection)
+      ("gtk+" ,gtk+)
+      ("libcanberra" ,libcanberra)
+      ("libnotify" ,libnotify)
+      ("nautilus" ,nautilus)      ; For nautilus extension.
+      ("yelp-tools" ,yelp-tools)))
+   (synopsis "File sharing for GNOME desktop")
+   (description "GNOME User Share is a small package that binds together
+various free software projects to bring easy to use user-level file
+sharing to the masses.")
+   (home-page "https://gitlab.gnome.org/GNOME/gnome-user-share")
+   (license license:gpl2)))
+
 (define-public libnma
   (package
    (name "libnma")
-- 
2.24.1


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

* bug#38906: gnu: Add gnome-user-share. (v2)
  2020-01-12 21:58     ` Raghav Gururajan
@ 2020-01-12 22:10       ` Danny Milosavljevic
  2020-01-12 22:13       ` [bug#38906] " Raghav Gururajan
  1 sibling, 0 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2020-01-12 22:10 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: Julien Lepiller, 38906-done

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

Pushed to guix master as commit b5f013929a776b6ae0611a1eeb19aa158412c65f
after moving gobject-introspection and yelp-tools to native-inputs.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#38906] gnu: Add gnome-user-share. (v2)
  2020-01-12 21:58     ` Raghav Gururajan
  2020-01-12 22:10       ` bug#38906: " Danny Milosavljevic
@ 2020-01-12 22:13       ` Raghav Gururajan
  1 sibling, 0 replies; 7+ messages in thread
From: Raghav Gururajan @ 2020-01-12 22:13 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: Julien Lepiller, 38906-done

Hello Danny!

> Pushed to guix master as commit b5f013929a776b6ae0611a1eeb19aa158412c65f
> after moving gobject-introspection and yelp-tools to native-inputs.

Thanks so much!

Regards,
RG.

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

end of thread, other threads:[~2020-01-12 22:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-03 21:08 [bug#38906] gnu: Add gnome-user-share Raghav Gururajan
2020-01-07 23:34 ` Julien Lepiller
2020-01-09 16:21   ` [bug#38906] gnu: Add gnome-user-share. (v2) Raghav Gururajan
2020-01-12 21:51     ` Danny Milosavljevic
2020-01-12 21:58     ` Raghav Gururajan
2020-01-12 22:10       ` bug#38906: " Danny Milosavljevic
2020-01-12 22:13       ` [bug#38906] " Raghav Gururajan

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