Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add missing dependency for cinnamon-settings.
@ 2020-05-30 20:59 AlbertoGP
  2020-05-31 11:59 ` [PR PATCH] [Updated] cinnamon: add missing dependency needed by cinnamon-settings AlbertoGP
  2020-05-31 12:06 ` [PR PATCH] [Merged]: " Hoshpak
  0 siblings, 2 replies; 3+ messages in thread
From: AlbertoGP @ 2020-05-30 20:59 UTC (permalink / raw)
  To: ml

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

There is a new pull request by AlbertoGP against master on the void-packages repository

https://github.com/AlbertoGP/void-packages master
https://github.com/void-linux/void-packages/pull/22449

Add missing dependency for cinnamon-settings.
The `distro` Python module is imported from here:
```python
/usr/share/cinnamon/cinnamon-settings/modules/cs_info.py
10:import distro
107:        s = '%s (%s)' % (' '.join(distro.linux_distribution()), arch)
```
It was working before, maybe older versions did not use this module.
I built the package with `./xbps-src -j16 pkg cinnamon`,  installed it over the standard one with `xbps-install --repository=hostdir/binpkgs cinnamon`, and now it works again.

A patch file from https://github.com/void-linux/void-packages/pull/22449.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-22449.patch --]
[-- Type: text/x-diff, Size: 1302 bytes --]

From 17a3d12dfb9d53c155735d8925eadbab261ee7e8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alberto=20Gonz=C3=A1lez=20Palomo?= <bugs@sentido-labs.com>
Date: Sat, 30 May 2020 22:57:44 +0200
Subject: [PATCH] Add missing dependency for cinnamon-settings.

---
 srcpkgs/cinnamon/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cinnamon/template b/srcpkgs/cinnamon/template
index 66a33d653d9..eb77dfd3e68 100644
--- a/srcpkgs/cinnamon/template
+++ b/srcpkgs/cinnamon/template
@@ -1,7 +1,7 @@
 # Template file for 'cinnamon'
 pkgname=cinnamon
 version=4.6.1
-revision=1
+revision=2
 build_helper=gir
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile
@@ -20,7 +20,7 @@ depends="accountsservice libcaribou cinnamon-settings-daemon>=${version%.*}
  gnome-themes-standard gnome-themes-standard-metacity gnome-backgrounds
  network-manager-applet polkit-gnome upower>=0.99.7 libkeybinder3 python3-dbus
  python3-gobject python3-pam python3-pexpect python3-Pillow python3-inotify
- python3-tinycss python3-pytz libtimezonemap"
+ python3-tinycss python3-pytz python3-distro libtimezonemap"
 short_desc="GNOME3 fork of Linux Mint with GNOME2 aspect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"

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

* Re: [PR PATCH] [Updated] cinnamon: add missing dependency needed by cinnamon-settings.
  2020-05-30 20:59 [PR PATCH] Add missing dependency for cinnamon-settings AlbertoGP
@ 2020-05-31 11:59 ` AlbertoGP
  2020-05-31 12:06 ` [PR PATCH] [Merged]: " Hoshpak
  1 sibling, 0 replies; 3+ messages in thread
From: AlbertoGP @ 2020-05-31 11:59 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by AlbertoGP against master on the void-packages repository

https://github.com/AlbertoGP/void-packages master
https://github.com/void-linux/void-packages/pull/22449

cinnamon: add missing dependency needed by cinnamon-settings.


A patch file from https://github.com/void-linux/void-packages/pull/22449.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-22449.patch --]
[-- Type: text/x-diff, Size: 1312 bytes --]

From 095b6f4224d4ecc458976d1c47d3241fabcdb991 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alberto=20Gonz=C3=A1lez=20Palomo?= <bugs@sentido-labs.com>
Date: Sat, 30 May 2020 22:57:44 +0200
Subject: [PATCH] cinnamon: add missing dependency for cinnamon-settings.

---
 srcpkgs/cinnamon/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cinnamon/template b/srcpkgs/cinnamon/template
index 66a33d653d9..eb77dfd3e68 100644
--- a/srcpkgs/cinnamon/template
+++ b/srcpkgs/cinnamon/template
@@ -1,7 +1,7 @@
 # Template file for 'cinnamon'
 pkgname=cinnamon
 version=4.6.1
-revision=1
+revision=2
 build_helper=gir
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile
@@ -20,7 +20,7 @@ depends="accountsservice libcaribou cinnamon-settings-daemon>=${version%.*}
  gnome-themes-standard gnome-themes-standard-metacity gnome-backgrounds
  network-manager-applet polkit-gnome upower>=0.99.7 libkeybinder3 python3-dbus
  python3-gobject python3-pam python3-pexpect python3-Pillow python3-inotify
- python3-tinycss python3-pytz libtimezonemap"
+ python3-tinycss python3-pytz python3-distro libtimezonemap"
 short_desc="GNOME3 fork of Linux Mint with GNOME2 aspect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"

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

* Re: [PR PATCH] [Merged]: cinnamon: add missing dependency needed by cinnamon-settings.
  2020-05-30 20:59 [PR PATCH] Add missing dependency for cinnamon-settings AlbertoGP
  2020-05-31 11:59 ` [PR PATCH] [Updated] cinnamon: add missing dependency needed by cinnamon-settings AlbertoGP
@ 2020-05-31 12:06 ` Hoshpak
  1 sibling, 0 replies; 3+ messages in thread
From: Hoshpak @ 2020-05-31 12:06 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

cinnamon: add missing dependency needed by cinnamon-settings.
https://github.com/void-linux/void-packages/pull/22449

Description:


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

end of thread, other threads:[~2020-05-31 12:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-30 20:59 [PR PATCH] Add missing dependency for cinnamon-settings AlbertoGP
2020-05-31 11:59 ` [PR PATCH] [Updated] cinnamon: add missing dependency needed by cinnamon-settings AlbertoGP
2020-05-31 12:06 ` [PR PATCH] [Merged]: " Hoshpak

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 NNTP newsgroup(s).