[PATCH 0/2] Add manifests for gnome-team

  • Open
  • quality assurance status badge
Details
One participant
  • Liliana Marie Prikler
Owner
unassigned
Submitted by
Liliana Marie Prikler
Severity
normal

Debbugs page

L
L
Liliana Marie Prikler wrote 6 days ago
(address . guix-patches@gnu.org)
cover.1736063078.git.liliana.prikler@gmail.com
Hi Guix,

this series adds some high-level manifests for gnome-team. As with the
manifests for other teams, this should make it easier to determine which
packages are within team scope. I am not yet considering GNOME Circle
or similar efforts, though we should probably do so eventually.

Cheers

Liliana Marie Prikler (2):
teams: gnome: Add gnome-manifest.
teams: gnome: Add gnome-extension-manifest.

etc/teams/gnome/gnome-extension-manifest.scm | 31 ++++++++++++++++++++
etc/teams/gnome/gnome-manifest.scm | 26 ++++++++++++++++
2 files changed, 57 insertions(+)
create mode 100644 etc/teams/gnome/gnome-extension-manifest.scm
create mode 100644 etc/teams/gnome/gnome-manifest.scm


base-commit: 321edcf0744a8895690579e8a5b09b66c75d102c
--
2.47.1
L
L
Liliana Marie Prikler wrote 6 days ago
[PATCH 1/2] teams: gnome: Add gnome-manifest.
(address . 75375@debbugs.gnu.org)
45effb283a826898ec73e1e3cf8be6ce5418e0e2.1736063078.git.liliana.prikler@gmail.com
* etc/teams/gnome/gnome-manifest.scm: New file.
---
etc/teams/gnome/gnome-manifest.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 etc/teams/gnome/gnome-manifest.scm

Toggle diff (34 lines)
diff --git a/etc/teams/gnome/gnome-manifest.scm b/etc/teams/gnome/gnome-manifest.scm
new file mode 100644
index 0000000000..a597120e64
--- /dev/null
+++ b/etc/teams/gnome/gnome-manifest.scm
@@ -0,0 +1,26 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(use-modules (guix packages)
+ (guix profiles)
+ (gnu packages gnome))
+
+(packages->manifest (list gnome-meta-core-services
+ gnome-meta-core-shell
+ gnome-meta-core-utilities
+ gnome-essential-extras))
--
2.47.1
L
L
Liliana Marie Prikler wrote 6 days ago
[PATCH 2/2] teams: gnome: Add gnome-extension-manifest.
(address . 75375@debbugs.gnu.org)
81bbe41ea267028d84ba3b3c4bf42dfa7f04ffb2.1736063078.git.liliana.prikler@gmail.com
* etc/teams/gnome/gnome-extension-manifest.scm: New file.
---
etc/teams/gnome/gnome-extension-manifest.scm | 31 ++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 etc/teams/gnome/gnome-extension-manifest.scm

Toggle diff (39 lines)
diff --git a/etc/teams/gnome/gnome-extension-manifest.scm b/etc/teams/gnome/gnome-extension-manifest.scm
new file mode 100644
index 0000000000..25adc74304
--- /dev/null
+++ b/etc/teams/gnome/gnome-extension-manifest.scm
@@ -0,0 +1,31 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(use-modules (guix packages)
+ (guix profiles)
+ (gnu packages))
+
+(manifest
+ (map package->manifest-entry
+ (fold-packages
+ (lambda (package extensions)
+ (if (string-prefix? "gnome-shell-extension"
+ (package-name package))
+ (cons package extensions)
+ extensions))
+ (list))))
--
2.47.1
L
L
Liliana Marie Prikler wrote 6 days ago
[PATCH v1 1/2] teams: gnome: Add gnome-manifest.
(address . 75375@debbugs.gnu.org)
5bec8dd3e8bdfb4ad6c4add17e9180a99f08d70d.1736065487.git.liliana.prikler@gmail.com
* etc/teams/gnome/gnome-manifest.scm: New file.
---
This variant makes it so that the manifest can be used with
`guix refresh'.

etc/teams/gnome/gnome-manifest.scm | 37 ++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100644 etc/teams/gnome/gnome-manifest.scm

Toggle diff (47 lines)
diff --git a/etc/teams/gnome/gnome-manifest.scm b/etc/teams/gnome/gnome-manifest.scm
new file mode 100644
index 0000000000..643a32c9b4
--- /dev/null
+++ b/etc/teams/gnome/gnome-manifest.scm
@@ -0,0 +1,37 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(use-modules (guix packages)
+ (guix profiles)
+ (gnu packages gnome)
+ (ice-9 match)
+ (srfi srfi-1))
+
+(define (propagated-inputs package)
+ (map
+ (match-lambda
+ ((_ (? package? pkg)) pkg)
+ ((_ (? package? pkg) output) (list pkg output)))
+ (package-propagated-inputs package)))
+
+(packages->manifest
+ (append-map propagated-inputs
+ (list gnome-meta-core-services
+ gnome-meta-core-shell
+ gnome-meta-core-utilities
+ gnome-essential-extras)))

base-commit: 321edcf0744a8895690579e8a5b09b66c75d102c
--
2.47.1
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 75375@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 75375
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch