unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Raghav Gururajan <rg@raghavgururajan.name>
To: 46075@debbugs.gnu.org
Subject: [bug#46075] [liferea]: Update +
Date: Sun, 24 Jan 2021 11:23:33 -0500	[thread overview]
Message-ID: <303e0998-cdc5-8363-9004-43dc0e31a1dc@raghavgururajan.name> (raw)

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



[-- Attachment #2: 0003-gnu-liferea-Update-to-1.13.5.patch --]
[-- Type: text/x-patch, Size: 1225 bytes --]

From 738325e29ba202f91e9d7db34001ff4f2a6d06a6 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Sun, 24 Jan 2021 11:20:03 -0500
Subject: [PATCH 3/3] gnu: liferea: Update to 1.13.5.

* gnu/packages/syndication.scm (liferea) [version]: Modify.
[source]<origin>[sha256]: Modify.
---
 gnu/packages/syndication.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 5a5006e349..a84c7b3864 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -184,7 +184,7 @@ file system, and many more features.")
 (define-public liferea
   (package
     (name "liferea")
-    (version "1.13.4")
+    (version "1.13.5")
     (source
      (origin
        (method git-fetch)
@@ -193,7 +193,7 @@ file system, and many more features.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1g9463bvswsm899j6dfhslcg6np70m5wq143mjicr24zy8d17bm7"))))
+        (base32 "0yz5k4shdw12pwyvyhwx0vicjickv2ljfhryhc9s886swiq8ssrs"))))
     (build-system glib-or-gtk-build-system)
     (arguments
      `(#:configure-flags
-- 
2.30.0


[-- Attachment #3: 0002-gnu-liferea-Disable-static-libraries.patch --]
[-- Type: text/x-patch, Size: 1061 bytes --]

From 423ff5fe605e3ab5bd7743a5d515bfd79bc4f6f6 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Sun, 24 Jan 2021 11:16:39 -0500
Subject: [PATCH 2/3] gnu: liferea: Disable static libraries.

* gnu/packages/syndication.scm (liferea) [arguments]<#:configure-flags>
[--disable-static]: New flag.
---
 gnu/packages/syndication.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 4a5c042309..5a5006e349 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -196,7 +196,10 @@ file system, and many more features.")
         (base32 "1g9463bvswsm899j6dfhslcg6np70m5wq143mjicr24zy8d17bm7"))))
     (build-system glib-or-gtk-build-system)
     (arguments
-     `(#:phases
+     `(#:configure-flags
+       (list
+        "--disable-static")
+       #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'prepare-build-environment
            (lambda* (#:key inputs #:allow-other-keys)
-- 
2.30.0


[-- Attachment #4: 0001-gnu-liferea-Add-missing-inputs.patch --]
[-- Type: text/x-patch, Size: 1703 bytes --]

From a3a86c6d7ecfae79731efd0188ab41ad873e432e Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <rg@raghavgururajan.name>
Date: Sun, 24 Jan 2021 11:11:11 -0500
Subject: [PATCH 1/3] gnu: liferea: Add missing inputs.

These new inputs are referenced by the package but was missing in
the package definition. Some of these inputs might have been used
by the package indirectly via propagation from other inputs.

* gnu/packages/syndication.scm (liferea) [inputs]: Add glib, libsoup,
pango and sqlite.
---
 gnu/packages/syndication.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 54fa221fa6..4a5c042309 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -222,7 +222,8 @@ file system, and many more features.")
        ("pkg-config" ,pkg-config)
        ("which" ,which)))
     (inputs
-     `(("glib-networking" ,glib-networking)
+     `(("glib" ,glib)
+       ("glib-networking" ,glib-networking)
        ("gnome-keyring" ,gnome-keyring)
        ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
        ("gstreamer" ,gstreamer)
@@ -230,11 +231,14 @@ file system, and many more features.")
        ("libnotify" ,libnotify)
        ("libpeas" ,libpeas)
        ("libsecret" ,libsecret)
+       ("libsoup" ,libsoup)
        ("libxml2" ,libxml2)
        ("libxslt" ,libxslt)
+       ("pango" ,pango)
        ("python" ,python)
        ("python-pycairo" ,python-pycairo)
        ("python-pygobject" ,python-pygobject)
+       ("sqlite" ,sqlite)
        ("webkitgtk" ,webkitgtk)))
     (home-page "https://lzone.de/liferea/")
     (synopsis "News reader for GTK/GNOME")
-- 
2.30.0


             reply	other threads:[~2021-01-24 16:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-24 16:23 Raghav Gururajan [this message]
2021-01-28 10:37 ` [bug#46075] [liferea]: Update + Efraim Flashner
2021-01-28 20:33   ` Raghav Gururajan
2021-01-31 11:38     ` Efraim Flashner
2021-01-31 20:19       ` Raghav Gururajan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=303e0998-cdc5-8363-9004-43dc0e31a1dc@raghavgururajan.name \
    --to=rg@raghavgururajan.name \
    --cc=46075@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).