unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41369] [PATCH] gnu: homebank: update to 5.4.2
@ 2020-05-17 20:55 Vinicius Monego
  2020-05-17 21:26 ` Danny Milosavljevic
  0 siblings, 1 reply; 7+ messages in thread
From: Vinicius Monego @ 2020-05-17 20:55 UTC (permalink / raw)
  To: 41369


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




[-- Attachment #1.2: Type: text/html, Size: 53 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-homebank-update-to-5.4.2.patch --]
[-- Type: text/x-patch, Size: 1887 bytes --]

From 33c4baaaf4a4e25e22311a641edb396551e54566 Mon Sep 17 00:00:00 2001
From: Vinicius Monego <monego@posteo.net>
Date: Sun, 17 May 2020 17:30:23 -0300
Subject: [PATCH] gnu: homebank: update to 5.4.2

---
 gnu/packages/finance.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 201ff3d1bd..b5f5899508 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2020 Tom Zander <tomz@freedommail.ch>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -170,23 +171,22 @@ line client and a client based on Qt.")
 (define-public homebank
   (package
     (name "homebank")
-    (version "5.2.8")
+    (version "5.4.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://homebank.free.fr/public/homebank-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y"))))
+                "0bkjvd819kw9cwmr3macggbg8yil3yc8v2za8pjrl6g746s89kn6"))))
     (build-system glib-or-gtk-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("intltool" ,intltool)))
     (inputs
      `(("gtk+" ,gtk+)
+       ("libofx" ,libofx)
        ("libsoup" ,libsoup)))
-    (arguments
-     `(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet
     (home-page "http://homebank.free.fr/")
     (synopsis "Graphical personal accounting application")
     (description "HomeBank allows you to manage your personal accounts at
-- 
2.20.1


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

* [bug#41369] [PATCH] gnu: homebank: update to 5.4.2
  2020-05-17 20:55 [bug#41369] [PATCH] gnu: homebank: update to 5.4.2 Vinicius Monego
@ 2020-05-17 21:26 ` Danny Milosavljevic
  2020-05-17 22:13   ` Vinicius Monego
  2020-05-31 16:03   ` [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency Vinicius Monego
  0 siblings, 2 replies; 7+ messages in thread
From: Danny Milosavljevic @ 2020-05-17 21:26 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 41369

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

Hello,

thanks for the patch!

Please, if possible, put the updating and the adding of libofx in extra commits.
If both have to be done at the same time it's OK as-is.

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

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

* [bug#41369] [PATCH] gnu: homebank: update to 5.4.2
  2020-05-17 21:26 ` Danny Milosavljevic
@ 2020-05-17 22:13   ` Vinicius Monego
  2020-06-03 15:51     ` bug#41369: " Ludovic Courtès
  2020-05-31 16:03   ` [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency Vinicius Monego
  1 sibling, 1 reply; 7+ messages in thread
From: Vinicius Monego @ 2020-05-17 22:13 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 41369


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

Hello,

ok, they're in separate patches now.

Em dom, 17 de mai de 2020 às 23:26, Danny Milosavljevic 
<dannym@scratchpost.org> escreveu:
> Hello,
> 
> thanks for the patch!
> 
> Please, if possible, put the updating and the adding of libofx in 
> extra commits.
> If both have to be done at the same time it's OK as-is.


[-- Attachment #1.2: Type: text/html, Size: 531 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2.1: 0002-gnu-homebank-link-against-libofx.patch --]
[-- Type: text/x-patch, Size: 955 bytes --]

From 0dbc82f3232c149a65af97bb48700e916bfc5d9b Mon Sep 17 00:00:00 2001
From: Vinicius Monego <monego@posteo.net>
Date: Sun, 17 May 2020 18:53:17 -0300
Subject: [PATCH] gnu: homebank: link against libofx

---
 gnu/packages/finance.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index ad3c0e7225..73e7586144 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -185,9 +185,8 @@ line client and a client based on Qt.")
        ("intltool" ,intltool)))
     (inputs
      `(("gtk+" ,gtk+)
+       ("libofx" ,libofx)
        ("libsoup" ,libsoup)))
-    (arguments
-     `(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet
     (home-page "http://homebank.free.fr/")
     (synopsis "Graphical personal accounting application")
     (description "HomeBank allows you to manage your personal accounts at
-- 
2.20.1


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2.2: 0001-gnu-homebank-update-to-5.4.2.patch --]
[-- Type: text/x-patch, Size: 1472 bytes --]

From f6cc8f154b26e4062d5ad6532a911d9a5b3a8826 Mon Sep 17 00:00:00 2001
From: Vinicius Monego <monego@posteo.net>
Date: Sun, 17 May 2020 18:48:38 -0300
Subject: [PATCH] gnu: homebank: update to 5.4.2

---
 gnu/packages/finance.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 201ff3d1bd..ad3c0e7225 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2020 Tom Zander <tomz@freedommail.ch>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -170,14 +171,14 @@ line client and a client based on Qt.")
 (define-public homebank
   (package
     (name "homebank")
-    (version "5.2.8")
+    (version "5.4.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://homebank.free.fr/public/homebank-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y"))))
+                "0bkjvd819kw9cwmr3macggbg8yil3yc8v2za8pjrl6g746s89kn6"))))
     (build-system glib-or-gtk-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.20.1


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

* [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency.
  2020-05-17 21:26 ` Danny Milosavljevic
  2020-05-17 22:13   ` Vinicius Monego
@ 2020-05-31 16:03   ` Vinicius Monego
  2020-05-31 16:03     ` [bug#41630] [PATCH v3 2/2] gnu: homebank: Update to 5.4.2 Vinicius Monego
  2020-05-31 21:26     ` bug#41629: [PATCH v3 1/2] gnu: homebank: Add libofx dependency Nicolas Goaziou
  1 sibling, 2 replies; 7+ messages in thread
From: Vinicius Monego @ 2020-05-31 16:03 UTC (permalink / raw)
  To: 41629; +Cc: Vinicius Monego

* gnu/packages/finance.scm (homebank)[inputs]: Add libofx.
---
Resending with send-email and proper commit messages.

 gnu/packages/finance.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index f182057bb4..8fbc1a1ee4 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2020 Tom Zander <tomz@freedommail.ch>
 ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -186,9 +187,8 @@ line client and a client based on Qt.")
        ("intltool" ,intltool)))
     (inputs
      `(("gtk+" ,gtk+)
+       ("libofx" ,libofx)
        ("libsoup" ,libsoup)))
-    (arguments
-     `(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet
     (home-page "http://homebank.free.fr/")
     (synopsis "Graphical personal accounting application")
     (description "HomeBank allows you to manage your personal accounts at
-- 
2.20.1





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

* [bug#41630] [PATCH v3 2/2] gnu: homebank: Update to 5.4.2.
  2020-05-31 16:03   ` [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency Vinicius Monego
@ 2020-05-31 16:03     ` Vinicius Monego
  2020-05-31 21:26     ` bug#41629: [PATCH v3 1/2] gnu: homebank: Add libofx dependency Nicolas Goaziou
  1 sibling, 0 replies; 7+ messages in thread
From: Vinicius Monego @ 2020-05-31 16:03 UTC (permalink / raw)
  To: 41630; +Cc: Vinicius Monego

* gnu/packages/finance.scm (homebank): Update to 5.4.2.
---
 gnu/packages/finance.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 8fbc1a1ee4..0d82ec94be 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -173,14 +173,14 @@ line client and a client based on Qt.")
 (define-public homebank
   (package
     (name "homebank")
-    (version "5.2.8")
+    (version "5.4.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://homebank.free.fr/public/homebank-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y"))))
+                "0bkjvd819kw9cwmr3macggbg8yil3yc8v2za8pjrl6g746s89kn6"))))
     (build-system glib-or-gtk-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.20.1





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

* bug#41629: [PATCH v3 1/2] gnu: homebank: Add libofx dependency.
  2020-05-31 16:03   ` [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency Vinicius Monego
  2020-05-31 16:03     ` [bug#41630] [PATCH v3 2/2] gnu: homebank: Update to 5.4.2 Vinicius Monego
@ 2020-05-31 21:26     ` Nicolas Goaziou
  1 sibling, 0 replies; 7+ messages in thread
From: Nicolas Goaziou @ 2020-05-31 21:26 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 41629-done

Hello,

Vinicius Monego <monego@posteo.net> writes:

> * gnu/packages/finance.scm (homebank)[inputs]: Add libofx.

I applied both patches. Thank you.

Regards,

-- 
Nicolas Goaziou




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

* bug#41369: [PATCH] gnu: homebank: update to 5.4.2
  2020-05-17 22:13   ` Vinicius Monego
@ 2020-06-03 15:51     ` Ludovic Courtès
  0 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2020-06-03 15:51 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 41369-done, Danny Milosavljevic, Nicolas Goaziou

Hi,

Vinicius Monego <monego@posteo.net> skribis:

> ok, they're in separate patches now.

These patches were pushed a while back, closing!

Ludo’.

commit 115a1ed2b84006a409811605ba818ce599082401
Author: Vinicius Monego <monego@posteo.net>
Date:   Sun May 31 13:03:24 2020 -0300

    gnu: homebank: Update to 5.4.2.
    
    * gnu/packages/finance.scm (homebank): Update to 5.4.2.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>

commit c7210b9613372dffa7b1926832b1ec1ff97d4bbf
Author: Vinicius Monego <monego@posteo.net>
Date:   Sun May 31 13:03:23 2020 -0300

    gnu: homebank: Add libofx dependency.
    
    * gnu/packages/finance.scm (homebank)[inputs]: Add libofx.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>




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

end of thread, other threads:[~2020-06-03 15:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-17 20:55 [bug#41369] [PATCH] gnu: homebank: update to 5.4.2 Vinicius Monego
2020-05-17 21:26 ` Danny Milosavljevic
2020-05-17 22:13   ` Vinicius Monego
2020-06-03 15:51     ` bug#41369: " Ludovic Courtès
2020-05-31 16:03   ` [bug#41629] [PATCH v3 1/2] gnu: homebank: Add libofx dependency Vinicius Monego
2020-05-31 16:03     ` [bug#41630] [PATCH v3 2/2] gnu: homebank: Update to 5.4.2 Vinicius Monego
2020-05-31 21:26     ` bug#41629: [PATCH v3 1/2] gnu: homebank: Add libofx dependency Nicolas Goaziou

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