* [bug#38745] GNOME @ 2019-12-25 23:23 Raghav Gururajan 2019-12-26 6:32 ` Efraim Flashner 0 siblings, 1 reply; 5+ messages in thread From: Raghav Gururajan @ 2019-12-25 23:23 UTC (permalink / raw) To: 38745 [-- Attachment #1.1: Type: text/plain, Size: 170 bytes --] Hello Guix! Please find the attached patch, for gnome meta-package, revised according to https://calc.disroot.org/2nu6mpf88ynq.html. Thank you! Regards, RG. [-- Attachment #1.2: gnome.patch --] [-- Type: text/x-patch, Size: 5122 bytes --] From 404f6448e14a7a1aee206c8eb3cd9d1b3ff4520b Mon Sep 17 00:00:00 2001 From: Raghav Gururajan <raghavgururajan@disroot.org> Date: Wed, 25 Dec 2019 18:02:13 -0500 Subject: [PATCH] gnu: Revise gnome. * gnu/packages/gnome.scm (gnome). Revision. --- gnu/packages/gnome.scm | 93 +++++++++++++++++++++--------------------- 1 file changed, 47 insertions(+), 46 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 36da447bf7..2ed98842af 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7189,52 +7189,53 @@ associations for GNOME.") (build-system trivial-build-system) (arguments '(#:builder (begin (mkdir %output) #t))) (propagated-inputs - ;; TODO: Add more packages according to: - ;; <https://packages.debian.org/jessie/gnome-core>. - `(("adwaita-icon-theme" ,adwaita-icon-theme) - ("baobab" ,baobab) - ("font-cantarell" ,font-cantarell) - ("font-dejavu" ,font-dejavu) - ("at-spi2-core" ,at-spi2-core) - ("dbus" ,dbus) - ("dconf" ,dconf) - ("desktop-file-utils" ,desktop-file-utils) - ("eog" ,eog) - ("epiphany" ,epiphany) - ("evince" ,evince) - ("file-roller" ,file-roller) - ("gedit" ,gedit) - ("glib-networking" ,glib-networking) - ("gnome-backgrounds" ,gnome-backgrounds) - ("gnome-bluetooth" ,gnome-bluetooth) - ("gnome-calculator" ,gnome-calculator) - ("gnome-contacts" ,gnome-contacts) - ("gnome-control-center" ,gnome-control-center) - ("gnome-disk-utility" ,gnome-disk-utility) - ("gnome-default-applications" ,gnome-default-applications) - ("gnome-keyring" ,gnome-keyring) - ("gnome-online-accounts" ,gnome-online-accounts) - ("gnome-screenshot" ,gnome-screenshot) - ("gnome-session" ,gnome-session) - ("gnome-settings-daemon" ,gnome-settings-daemon) - ("gnome-shell" ,gnome-shell) - ("gnome-system-monitor" ,gnome-system-monitor) - ("gnome-terminal" ,gnome-terminal) - ("gnome-themes-standard" ,gnome-themes-standard) - ("gst-plugins-base" ,gst-plugins-base) - ("gst-plugins-good" ,gst-plugins-good) - ("gucharmap" ,gucharmap) - ("gvfs" ,gvfs) - ("hicolor-icon-theme" ,hicolor-icon-theme) - ("nautilus" ,nautilus) - ("pinentry-gnome3" ,pinentry-gnome3) - ("pulseaudio" ,pulseaudio) - ("shared-mime-info" ,shared-mime-info) - ("system-config-printer" ,system-config-printer) - ("totem" ,totem) - ("xdg-user-dirs" ,xdg-user-dirs) - ("yelp" ,yelp) - ("zenity" ,zenity))) + ;; TODO: Add/remove packages or revise list according to: + ;; <https://calc.disroot.org/2nu6mpf88ynq.html>. + ;; GNOME-Core-OS-Services + `(("accountsservice" ,accountsservice) + ("network-manager" ,network-manager) + ("packagekit" ,packagekit) + ("upower" ,upower)) + ;; GNOME-Core-Shell + `(("adwaita-icon-theme" ,adwaita-icon-theme) + ("gdm" ,gdm) + ("glib-networking" ,glib-networking) + ("gnome-backgrounds" ,gnome-backgrounds) + ("gnome-bluetooth" ,gnome-bluetooth) + ("gnome-control-center" ,gnome-control-center) + ("gnome-desktop" ,gnome-desktop) + ("gnome-keyring" ,gnome-keyring) + ("gnome-session" ,gnome-session) + ("gnome-settings-daemon" ,gnome-settings-daemon) + ("gnome-shell-extensions" ,gnome-shell-extensions) + ("gnome-shell" ,gnome-shell) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gvfs" ,gvfs) + ("mutter" ,mutter) + ("orca" ,orca)) + ;; GNOME-Core-Utilities + `(("baobab" ,baobab) + ("cheese" ,cheese) + ("eog" ,eog) + ("epiphany" ,epiphany) + ("envice" ,envice) + ("file-roller" ,file-roller) + ("gedit" ,gedit) + ("gnome-calculator" ,gnome-calculator) + ("gnome-calendar" ,gnome-calendar) + ("gnome-characters" ,gnome-characters) + ("gnome-clocks" ,gnome-clocks) + ("gnome-contacts" ,gnome-contacts) + ("gnome-disk-utility" ,gnome-disk-utility) + ("gnome-font-viewer" ,gnome-font-viewer) + ("gnome-maps" ,gnome-maps) + ("gnome-screenshot" ,gnome-screenshot) + ("gnome-system-monitor" ,gnome-system-monitor) + ("gnome-terminal" ,gnome-terminal) + ("nautilus" ,nautilus) + ("simple-scan" ,simple-scan) + ("totem" ,totem) + ("yelp" ,yelp))) (synopsis "The GNU desktop environment") (home-page "https://www.gnome.org/") (description -- 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] 5+ messages in thread
* [bug#38745] GNOME 2019-12-25 23:23 [bug#38745] GNOME Raghav Gururajan @ 2019-12-26 6:32 ` Efraim Flashner 2019-12-26 14:59 ` [bug#38745] GNOME V2 Raghav Gururajan 0 siblings, 1 reply; 5+ messages in thread From: Efraim Flashner @ 2019-12-26 6:32 UTC (permalink / raw) To: Raghav Gururajan; +Cc: 38745 [-- Attachment #1: Type: text/plain, Size: 6085 bytes --] On Wed, Dec 25, 2019 at 06:23:40PM -0500, Raghav Gururajan wrote: > Hello Guix! > > Please find the attached patch, for gnome meta-package, revised > according to https://calc.disroot.org/2nu6mpf88ynq.html. > > Thank you! > > Regards, > RG. Can you split this into two patches? One that adds/removes packages and a second that changes the indentation and ordering? Thanks. > From 404f6448e14a7a1aee206c8eb3cd9d1b3ff4520b Mon Sep 17 00:00:00 2001 > From: Raghav Gururajan <raghavgururajan@disroot.org> > Date: Wed, 25 Dec 2019 18:02:13 -0500 > Subject: [PATCH] gnu: Revise gnome. > > * gnu/packages/gnome.scm (gnome). Revision. > --- > gnu/packages/gnome.scm | 93 +++++++++++++++++++++--------------------- > 1 file changed, 47 insertions(+), 46 deletions(-) > > diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm > index 36da447bf7..2ed98842af 100644 > --- a/gnu/packages/gnome.scm > +++ b/gnu/packages/gnome.scm > @@ -7189,52 +7189,53 @@ associations for GNOME.") > (build-system trivial-build-system) > (arguments '(#:builder (begin (mkdir %output) #t))) > (propagated-inputs > - ;; TODO: Add more packages according to: > - ;; <https://packages.debian.org/jessie/gnome-core>. > - `(("adwaita-icon-theme" ,adwaita-icon-theme) > - ("baobab" ,baobab) > - ("font-cantarell" ,font-cantarell) > - ("font-dejavu" ,font-dejavu) > - ("at-spi2-core" ,at-spi2-core) > - ("dbus" ,dbus) > - ("dconf" ,dconf) > - ("desktop-file-utils" ,desktop-file-utils) > - ("eog" ,eog) > - ("epiphany" ,epiphany) > - ("evince" ,evince) > - ("file-roller" ,file-roller) > - ("gedit" ,gedit) > - ("glib-networking" ,glib-networking) > - ("gnome-backgrounds" ,gnome-backgrounds) > - ("gnome-bluetooth" ,gnome-bluetooth) > - ("gnome-calculator" ,gnome-calculator) > - ("gnome-contacts" ,gnome-contacts) > - ("gnome-control-center" ,gnome-control-center) > - ("gnome-disk-utility" ,gnome-disk-utility) > - ("gnome-default-applications" ,gnome-default-applications) > - ("gnome-keyring" ,gnome-keyring) > - ("gnome-online-accounts" ,gnome-online-accounts) > - ("gnome-screenshot" ,gnome-screenshot) > - ("gnome-session" ,gnome-session) > - ("gnome-settings-daemon" ,gnome-settings-daemon) > - ("gnome-shell" ,gnome-shell) > - ("gnome-system-monitor" ,gnome-system-monitor) > - ("gnome-terminal" ,gnome-terminal) > - ("gnome-themes-standard" ,gnome-themes-standard) > - ("gst-plugins-base" ,gst-plugins-base) > - ("gst-plugins-good" ,gst-plugins-good) > - ("gucharmap" ,gucharmap) > - ("gvfs" ,gvfs) > - ("hicolor-icon-theme" ,hicolor-icon-theme) > - ("nautilus" ,nautilus) > - ("pinentry-gnome3" ,pinentry-gnome3) > - ("pulseaudio" ,pulseaudio) > - ("shared-mime-info" ,shared-mime-info) > - ("system-config-printer" ,system-config-printer) > - ("totem" ,totem) > - ("xdg-user-dirs" ,xdg-user-dirs) > - ("yelp" ,yelp) > - ("zenity" ,zenity))) > + ;; TODO: Add/remove packages or revise list according to: > + ;; <https://calc.disroot.org/2nu6mpf88ynq.html>. > + ;; GNOME-Core-OS-Services > + `(("accountsservice" ,accountsservice) > + ("network-manager" ,network-manager) > + ("packagekit" ,packagekit) > + ("upower" ,upower)) > + ;; GNOME-Core-Shell > + `(("adwaita-icon-theme" ,adwaita-icon-theme) > + ("gdm" ,gdm) > + ("glib-networking" ,glib-networking) > + ("gnome-backgrounds" ,gnome-backgrounds) > + ("gnome-bluetooth" ,gnome-bluetooth) > + ("gnome-control-center" ,gnome-control-center) > + ("gnome-desktop" ,gnome-desktop) > + ("gnome-keyring" ,gnome-keyring) > + ("gnome-session" ,gnome-session) > + ("gnome-settings-daemon" ,gnome-settings-daemon) > + ("gnome-shell-extensions" ,gnome-shell-extensions) > + ("gnome-shell" ,gnome-shell) > + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) > + ("gvfs" ,gvfs) > + ("mutter" ,mutter) > + ("orca" ,orca)) > + ;; GNOME-Core-Utilities > + `(("baobab" ,baobab) > + ("cheese" ,cheese) > + ("eog" ,eog) > + ("epiphany" ,epiphany) > + ("envice" ,envice) > + ("file-roller" ,file-roller) > + ("gedit" ,gedit) > + ("gnome-calculator" ,gnome-calculator) > + ("gnome-calendar" ,gnome-calendar) > + ("gnome-characters" ,gnome-characters) > + ("gnome-clocks" ,gnome-clocks) > + ("gnome-contacts" ,gnome-contacts) > + ("gnome-disk-utility" ,gnome-disk-utility) > + ("gnome-font-viewer" ,gnome-font-viewer) > + ("gnome-maps" ,gnome-maps) > + ("gnome-screenshot" ,gnome-screenshot) > + ("gnome-system-monitor" ,gnome-system-monitor) > + ("gnome-terminal" ,gnome-terminal) > + ("nautilus" ,nautilus) > + ("simple-scan" ,simple-scan) > + ("totem" ,totem) > + ("yelp" ,yelp))) > (synopsis "The GNU desktop environment") > (home-page "https://www.gnome.org/") > (description > -- > 2.24.1 > -- 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: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#38745] GNOME V2 2019-12-26 6:32 ` Efraim Flashner @ 2019-12-26 14:59 ` Raghav Gururajan 2019-12-26 16:23 ` [bug#38745] GNOME V3 Raghav Gururajan 0 siblings, 1 reply; 5+ messages in thread From: Raghav Gururajan @ 2019-12-26 14:59 UTC (permalink / raw) To: Efraim Flashner; +Cc: 38745 [-- Attachment #1.1: Type: text/plain, Size: 92 bytes --] Hello Efraim! Please find the modified patch attached with this email. Regards, RG. [-- Attachment #1.2: gnome.patch --] [-- Type: text/x-patch, Size: 4428 bytes --] From 6b5ff9998ee6b60e359c91a9e1067c48df843e37 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan <raghavgururajan@disroot.org> Date: Thu, 26 Dec 2019 09:53:22 -0500 Subject: [PATCH] gnu: Revise gnome. * gnu/packages/gnome.scm (gnome). Revision. Revision made according to https://calc.disroot.org/2nu6mpf88ynq.html --- gnu/packages/gnome.scm | 44 ++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 36da447bf7..9f657d6de2 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7189,52 +7189,50 @@ associations for GNOME.") (build-system trivial-build-system) (arguments '(#:builder (begin (mkdir %output) #t))) (propagated-inputs - ;; TODO: Add more packages according to: - ;; <https://packages.debian.org/jessie/gnome-core>. - `(("adwaita-icon-theme" ,adwaita-icon-theme) + ;; TODO: Revise packages according to: + ;; <https://calc.disroot.org/2nu6mpf88ynq.html>. + `(("accountsservice" ,accountsservice) + ("adwaita-icon-theme" ,adwaita-icon-theme) ("baobab" ,baobab) - ("font-cantarell" ,font-cantarell) - ("font-dejavu" ,font-dejavu) - ("at-spi2-core" ,at-spi2-core) - ("dbus" ,dbus) - ("dconf" ,dconf) - ("desktop-file-utils" ,desktop-file-utils) + ("cheese" ,cheese) ("eog" ,eog) ("epiphany" ,epiphany) ("evince" ,evince) ("file-roller" ,file-roller) + ("gdm" ,gdm ("gedit" ,gedit) ("glib-networking" ,glib-networking) ("gnome-backgrounds" ,gnome-backgrounds) ("gnome-bluetooth" ,gnome-bluetooth) ("gnome-calculator" ,gnome-calculator) + ("gnome-calendar" ,gnome-calendar) + ("gnome-characters" ,gnome-characters) + ("gnome-clocks" ,gnome-clocks) ("gnome-contacts" ,gnome-contacts) ("gnome-control-center" ,gnome-control-center) + ("gnome-desktop" ,gnome-desktop) ("gnome-disk-utility" ,gnome-disk-utility) - ("gnome-default-applications" ,gnome-default-applications) + ("gnome-font-viewer" ,gnome-font-viewer) ("gnome-keyring" ,gnome-keyring) - ("gnome-online-accounts" ,gnome-online-accounts) + ("gnome-maps" ,gnome-maps) ("gnome-screenshot" ,gnome-screenshot) ("gnome-session" ,gnome-session) ("gnome-settings-daemon" ,gnome-settings-daemon) ("gnome-shell" ,gnome-shell) + ("gnome-shell-extensions" ,gnome-shell-extensions) ("gnome-system-monitor" ,gnome-system-monitor) ("gnome-terminal" ,gnome-terminal) - ("gnome-themes-standard" ,gnome-themes-standard) - ("gst-plugins-base" ,gst-plugins-base) - ("gst-plugins-good" ,gst-plugins-good) - ("gucharmap" ,gucharmap) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) ("gvfs" ,gvfs) - ("hicolor-icon-theme" ,hicolor-icon-theme) + ("mutter" ,mutter) ("nautilus" ,nautilus) - ("pinentry-gnome3" ,pinentry-gnome3) - ("pulseaudio" ,pulseaudio) - ("shared-mime-info" ,shared-mime-info) - ("system-config-printer" ,system-config-printer) + ("network-manager" ,network-manager) + ("orca" ,orca) + ("packagekit" ,packagekit) + ("simple-scan" ,simple-scan) ("totem" ,totem) - ("xdg-user-dirs" ,xdg-user-dirs) - ("yelp" ,yelp) - ("zenity" ,zenity))) + ("upower" ,upower) + ("yelp" ,yelp))) (synopsis "The GNU desktop environment") (home-page "https://www.gnome.org/") (description -- 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] 5+ messages in thread
* [bug#38745] GNOME V3 2019-12-26 14:59 ` [bug#38745] GNOME V2 Raghav Gururajan @ 2019-12-26 16:23 ` Raghav Gururajan 2019-12-29 10:02 ` bug#38745: " Efraim Flashner 0 siblings, 1 reply; 5+ messages in thread From: Raghav Gururajan @ 2019-12-26 16:23 UTC (permalink / raw) To: Efraim Flashner; +Cc: 38745 [-- Attachment #1.1: Type: text/plain, Size: 147 bytes --] Hello Efraim! Sorry I forgot to attach one of the two split patches. Please find the split patches attached with this email. Regards, RG. [-- Attachment #1.2: gnome-part-1.patch --] [-- Type: text/x-patch, Size: 4428 bytes --] From 6b5ff9998ee6b60e359c91a9e1067c48df843e37 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan <raghavgururajan@disroot.org> Date: Thu, 26 Dec 2019 09:53:22 -0500 Subject: [PATCH] gnu: Revise gnome. * gnu/packages/gnome.scm (gnome). Revision. Revision made according to https://calc.disroot.org/2nu6mpf88ynq.html --- gnu/packages/gnome.scm | 44 ++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 36da447bf7..9f657d6de2 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7189,52 +7189,50 @@ associations for GNOME.") (build-system trivial-build-system) (arguments '(#:builder (begin (mkdir %output) #t))) (propagated-inputs - ;; TODO: Add more packages according to: - ;; <https://packages.debian.org/jessie/gnome-core>. - `(("adwaita-icon-theme" ,adwaita-icon-theme) + ;; TODO: Revise packages according to: + ;; <https://calc.disroot.org/2nu6mpf88ynq.html>. + `(("accountsservice" ,accountsservice) + ("adwaita-icon-theme" ,adwaita-icon-theme) ("baobab" ,baobab) - ("font-cantarell" ,font-cantarell) - ("font-dejavu" ,font-dejavu) - ("at-spi2-core" ,at-spi2-core) - ("dbus" ,dbus) - ("dconf" ,dconf) - ("desktop-file-utils" ,desktop-file-utils) + ("cheese" ,cheese) ("eog" ,eog) ("epiphany" ,epiphany) ("evince" ,evince) ("file-roller" ,file-roller) + ("gdm" ,gdm ("gedit" ,gedit) ("glib-networking" ,glib-networking) ("gnome-backgrounds" ,gnome-backgrounds) ("gnome-bluetooth" ,gnome-bluetooth) ("gnome-calculator" ,gnome-calculator) + ("gnome-calendar" ,gnome-calendar) + ("gnome-characters" ,gnome-characters) + ("gnome-clocks" ,gnome-clocks) ("gnome-contacts" ,gnome-contacts) ("gnome-control-center" ,gnome-control-center) + ("gnome-desktop" ,gnome-desktop) ("gnome-disk-utility" ,gnome-disk-utility) - ("gnome-default-applications" ,gnome-default-applications) + ("gnome-font-viewer" ,gnome-font-viewer) ("gnome-keyring" ,gnome-keyring) - ("gnome-online-accounts" ,gnome-online-accounts) + ("gnome-maps" ,gnome-maps) ("gnome-screenshot" ,gnome-screenshot) ("gnome-session" ,gnome-session) ("gnome-settings-daemon" ,gnome-settings-daemon) ("gnome-shell" ,gnome-shell) + ("gnome-shell-extensions" ,gnome-shell-extensions) ("gnome-system-monitor" ,gnome-system-monitor) ("gnome-terminal" ,gnome-terminal) - ("gnome-themes-standard" ,gnome-themes-standard) - ("gst-plugins-base" ,gst-plugins-base) - ("gst-plugins-good" ,gst-plugins-good) - ("gucharmap" ,gucharmap) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) ("gvfs" ,gvfs) - ("hicolor-icon-theme" ,hicolor-icon-theme) + ("mutter" ,mutter) ("nautilus" ,nautilus) - ("pinentry-gnome3" ,pinentry-gnome3) - ("pulseaudio" ,pulseaudio) - ("shared-mime-info" ,shared-mime-info) - ("system-config-printer" ,system-config-printer) + ("network-manager" ,network-manager) + ("orca" ,orca) + ("packagekit" ,packagekit) + ("simple-scan" ,simple-scan) ("totem" ,totem) - ("xdg-user-dirs" ,xdg-user-dirs) - ("yelp" ,yelp) - ("zenity" ,zenity))) + ("upower" ,upower) + ("yelp" ,yelp))) (synopsis "The GNU desktop environment") (home-page "https://www.gnome.org/") (description -- 2.24.1 [-- Attachment #1.3: gnome-part-2.patch --] [-- Type: text/x-patch, Size: 4901 bytes --] From d4ceef288e3366d3e8f0662e4ec26b4da4e29be7 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan <raghavgururajan@disroot.org> Date: Thu, 26 Dec 2019 11:18:50 -0500 Subject: [PATCH] gnu: Revise gnome. * gnu/packages/gnome.scm (gnome). Revision. Revision done according to https://calc.disroot.org/2nu6mpf88ynq.html --- gnu/packages/gnome.scm | 87 ++++++++++++++++++++++-------------------- 1 file changed, 45 insertions(+), 42 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9f657d6de2..196950eb51 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7189,50 +7189,53 @@ associations for GNOME.") (build-system trivial-build-system) (arguments '(#:builder (begin (mkdir %output) #t))) (propagated-inputs - ;; TODO: Revise packages according to: + ;; TODO: Add or remove packages according to: ;; <https://calc.disroot.org/2nu6mpf88ynq.html>. - `(("accountsservice" ,accountsservice) - ("adwaita-icon-theme" ,adwaita-icon-theme) - ("baobab" ,baobab) - ("cheese" ,cheese) - ("eog" ,eog) - ("epiphany" ,epiphany) - ("evince" ,evince) - ("file-roller" ,file-roller) - ("gdm" ,gdm - ("gedit" ,gedit) - ("glib-networking" ,glib-networking) - ("gnome-backgrounds" ,gnome-backgrounds) - ("gnome-bluetooth" ,gnome-bluetooth) - ("gnome-calculator" ,gnome-calculator) - ("gnome-calendar" ,gnome-calendar) - ("gnome-characters" ,gnome-characters) - ("gnome-clocks" ,gnome-clocks) - ("gnome-contacts" ,gnome-contacts) - ("gnome-control-center" ,gnome-control-center) - ("gnome-desktop" ,gnome-desktop) - ("gnome-disk-utility" ,gnome-disk-utility) - ("gnome-font-viewer" ,gnome-font-viewer) - ("gnome-keyring" ,gnome-keyring) - ("gnome-maps" ,gnome-maps) - ("gnome-screenshot" ,gnome-screenshot) - ("gnome-session" ,gnome-session) - ("gnome-settings-daemon" ,gnome-settings-daemon) - ("gnome-shell" ,gnome-shell) - ("gnome-shell-extensions" ,gnome-shell-extensions) - ("gnome-system-monitor" ,gnome-system-monitor) - ("gnome-terminal" ,gnome-terminal) + ;; GNOME-Core-OS-Services + `(("accountsservice" ,accountsservice) + ("network-manager" ,network-manager) + ("packagekit" ,packagekit) + ("upower" ,upower)) + ;; GNOME-Core-Shell + `(("adwaita-icon-theme" ,adwaita-icon-theme) + ("gdm" ,gdm) + ("glib-networking" ,glib-networking) + ("gnome-backgrounds" ,gnome-backgrounds) + ("gnome-bluetooth" ,gnome-bluetooth) + ("gnome-control-center" ,gnome-control-center) + ("gnome-desktop" ,gnome-desktop) + ("gnome-keyring" ,gnome-keyring) + ("gnome-session" ,gnome-session) + ("gnome-settings-daemon" ,gnome-settings-daemon) + ("gnome-shell-extensions" ,gnome-shell-extensions) + ("gnome-shell" ,gnome-shell) ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) - ("gvfs" ,gvfs) - ("mutter" ,mutter) - ("nautilus" ,nautilus) - ("network-manager" ,network-manager) - ("orca" ,orca) - ("packagekit" ,packagekit) - ("simple-scan" ,simple-scan) - ("totem" ,totem) - ("upower" ,upower) - ("yelp" ,yelp))) + ("gvfs" ,gvfs) + ("mutter" ,mutter) + ("orca" ,orca)) + ;; GNOME-Core-Utilities + `(("baobab" ,baobab) + ("cheese" ,cheese) + ("eog" ,eog) + ("epiphany" ,epiphany) + ("envice" ,envice) + ("file-roller" ,file-roller) + ("gedit" ,gedit) + ("gnome-calculator" ,gnome-calculator) + ("gnome-calendar" ,gnome-calendar) + ("gnome-characters" ,gnome-characters) + ("gnome-clocks" ,gnome-clocks) + ("gnome-contacts" ,gnome-contacts) + ("gnome-disk-utility" ,gnome-disk-utility) + ("gnome-font-viewer" ,gnome-font-viewer) + ("gnome-maps" ,gnome-maps) + ("gnome-screenshot" ,gnome-screenshot) + ("gnome-system-monitor" ,gnome-system-monitor) + ("gnome-terminal" ,gnome-terminal) + ("nautilus" ,nautilus) + ("simple-scan" ,simple-scan) + ("totem" ,totem) + ("yelp" ,yelp))) (synopsis "The GNU desktop environment") (home-page "https://www.gnome.org/") (description -- 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] 5+ messages in thread
* bug#38745: GNOME V3 2019-12-26 16:23 ` [bug#38745] GNOME V3 Raghav Gururajan @ 2019-12-29 10:02 ` Efraim Flashner 0 siblings, 0 replies; 5+ messages in thread From: Efraim Flashner @ 2019-12-29 10:02 UTC (permalink / raw) To: Raghav Gururajan; +Cc: 38745-done [-- Attachment #1: Type: text/plain, Size: 357 bytes --] I changed the commit messages to fit our convention. I also fixed a typo s/envice/evince/g and added a module import on (gnu packages geo). -- 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: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-12-29 10:04 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-12-25 23:23 [bug#38745] GNOME Raghav Gururajan 2019-12-26 6:32 ` Efraim Flashner 2019-12-26 14:59 ` [bug#38745] GNOME V2 Raghav Gururajan 2019-12-26 16:23 ` [bug#38745] GNOME V3 Raghav Gururajan 2019-12-29 10:02 ` bug#38745: " Efraim Flashner
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.