unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41162] [PATCH 0/2] [core-updates] Update atril.
@ 2020-05-09 21:09 Jonathan Brielmaier
  2020-05-09 21:11 ` [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries Jonathan Brielmaier
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 21:09 UTC (permalink / raw)
  To: 41162; +Cc: Jonathan Brielmaier

This patch series is for core-updates as a change to texlive-bin is required.
atril now uses the system libsynctex and not the bundled version anymore. So build
the shared libraries of texlive-bin.

I couldn't build the series as it would take to long on my laptop :(

Jonathan Brielmaier (2):
  gnu: texlive-bin: Build shared libraries.
  gnu: atril: Update to 1.24.0.

 gnu/packages/mate.scm | 5 +++--
 gnu/packages/tex.scm  | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

--
2.26.2





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

* [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries.
  2020-05-09 21:09 [bug#41162] [PATCH 0/2] [core-updates] Update atril Jonathan Brielmaier
@ 2020-05-09 21:11 ` Jonathan Brielmaier
  2020-05-09 21:11   ` [bug#41162] [PATCH 2/2] gnu: atril: Update to 1.24.0 Jonathan Brielmaier
  2020-12-08 20:29 ` [bug#41162] [PATCH 0/2] [core-updates] Update atril Christopher Baines
  2021-07-07 22:10 ` bug#41162: " Jonathan Brielmaier
  2 siblings, 1 reply; 7+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 21:11 UTC (permalink / raw)
  To: 41162; +Cc: Jonathan Brielmaier

* gnu/packages/tex.scm (texlive-bin)[arguments]: Enable shared libraries as it's required for atril >= 1.24.
---
 gnu/packages/tex.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 683f9d7283..b206f794f8 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -322,6 +322,7 @@ files from LOCATIONS with expected checksum HASH.  CODE is not currently in use.
       #:configure-flags
        '("--disable-static"
          "--disable-native-texlive-build"
+         "--enable-shared"
          "--with-system-cairo"
          "--with-system-freetype2"
          "--with-system-gd"
--
2.26.2





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

* [bug#41162] [PATCH 2/2] gnu: atril: Update to 1.24.0.
  2020-05-09 21:11 ` [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries Jonathan Brielmaier
@ 2020-05-09 21:11   ` Jonathan Brielmaier
  0 siblings, 0 replies; 7+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 21:11 UTC (permalink / raw)
  To: 41162; +Cc: Jonathan Brielmaier

* gnu/packages/mate.scm (atril): Update to 1.24.0.
[native-inputs]: Add texlive-bin for synctex.
---
 gnu/packages/mate.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index e89102c17a..c80313e205 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -716,7 +716,7 @@ infamous 'Wanda the Fish'.")
 (define-public atril
   (package
     (name "atril")
-    (version "1.22.0")
+    (version "1.24.0")
     (source
      (origin
        (method url-fetch)
@@ -724,7 +724,7 @@ infamous 'Wanda the Fish'.")
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-         "1xd49j4qwrlg2nh2zvspf91yk033dp8a58dy9azqg2yz4bcvywxb"))))
+         "0967gxw7h2qh2kpwl0jgv58hicz6aa92kr12mnykbpikad25s95y"))))
     (build-system glib-or-gtk-build-system)
     (arguments
      `(#:configure-flags (list (string-append "--with-openjpeg="
@@ -768,6 +768,7 @@ infamous 'Wanda the Fish'.")
        ("glib:bin" ,glib "bin")
        ("gobject-introspection" ,gobject-introspection)
        ("gtk-doc" ,gtk-doc)
+       ("texlive-bin" ,texlive-bin) ;synctex
        ("xmllint" ,libxml2)
        ("zlib" ,zlib)))
     (inputs
--
2.26.2





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

* [bug#41162] [PATCH 0/2] [core-updates] Update atril.
  2020-05-09 21:09 [bug#41162] [PATCH 0/2] [core-updates] Update atril Jonathan Brielmaier
  2020-05-09 21:11 ` [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries Jonathan Brielmaier
@ 2020-12-08 20:29 ` Christopher Baines
  2020-12-08 21:09   ` Jonathan Brielmaier
  2021-07-07 22:10 ` bug#41162: " Jonathan Brielmaier
  2 siblings, 1 reply; 7+ messages in thread
From: Christopher Baines @ 2020-12-08 20:29 UTC (permalink / raw)
  To: Jonathan Brielmaier; +Cc: 41162

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


Jonathan Brielmaier <jonathan.brielmaier@web.de> writes:

> This patch series is for core-updates as a change to texlive-bin is required.
> atril now uses the system libsynctex and not the bundled version anymore. So build
> the shared libraries of texlive-bin.
>
> I couldn't build the series as it would take to long on my laptop :(
>
> Jonathan Brielmaier (2):
>   gnu: texlive-bin: Build shared libraries.
>   gnu: atril: Update to 1.24.0.
>
>  gnu/packages/mate.scm | 5 +++--
>  gnu/packages/tex.scm  | 1 +
>  2 files changed, 4 insertions(+), 2 deletions(-)

This looks good to me!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

* [bug#41162] [PATCH 0/2] [core-updates] Update atril.
  2020-12-08 20:29 ` [bug#41162] [PATCH 0/2] [core-updates] Update atril Christopher Baines
@ 2020-12-08 21:09   ` Jonathan Brielmaier
  2020-12-08 21:28     ` Christopher Baines
  0 siblings, 1 reply; 7+ messages in thread
From: Jonathan Brielmaier @ 2020-12-08 21:09 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 41162

On 08.12.20 21:29, Christopher Baines wrote:
> This looks good to me!

So I can just push this now to core-updates now, I guess?




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

* [bug#41162] [PATCH 0/2] [core-updates] Update atril.
  2020-12-08 21:09   ` Jonathan Brielmaier
@ 2020-12-08 21:28     ` Christopher Baines
  0 siblings, 0 replies; 7+ messages in thread
From: Christopher Baines @ 2020-12-08 21:28 UTC (permalink / raw)
  To: Jonathan Brielmaier; +Cc: 41162

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


Jonathan Brielmaier <jonathan.brielmaier@web.de> writes:

> On 08.12.20 21:29, Christopher Baines wrote:
>> This looks good to me!
>
> So I can just push this now to core-updates now, I guess?

Yeah, go ahead, the branch isn't frozen yet as far as I know.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

* bug#41162: [PATCH 0/2] [core-updates] Update atril.
  2020-05-09 21:09 [bug#41162] [PATCH 0/2] [core-updates] Update atril Jonathan Brielmaier
  2020-05-09 21:11 ` [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries Jonathan Brielmaier
  2020-12-08 20:29 ` [bug#41162] [PATCH 0/2] [core-updates] Update atril Christopher Baines
@ 2021-07-07 22:10 ` Jonathan Brielmaier
  2 siblings, 0 replies; 7+ messages in thread
From: Jonathan Brielmaier @ 2021-07-07 22:10 UTC (permalink / raw)
  To: 41162-done

Pushed as 955e523bdc8ed4307103218a580b7ed9635f9c95 to core-updates in
December 2020. Closing.




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

end of thread, other threads:[~2021-07-07 22:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-09 21:09 [bug#41162] [PATCH 0/2] [core-updates] Update atril Jonathan Brielmaier
2020-05-09 21:11 ` [bug#41162] [PATCH 1/2] gnu: texlive-bin: Build shared libraries Jonathan Brielmaier
2020-05-09 21:11   ` [bug#41162] [PATCH 2/2] gnu: atril: Update to 1.24.0 Jonathan Brielmaier
2020-12-08 20:29 ` [bug#41162] [PATCH 0/2] [core-updates] Update atril Christopher Baines
2020-12-08 21:09   ` Jonathan Brielmaier
2020-12-08 21:28     ` Christopher Baines
2021-07-07 22:10 ` bug#41162: " Jonathan Brielmaier

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