Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] common/shlibs: add missing pango lib
@ 2020-10-15 20:06 yefimtsev
  2020-10-15 20:19 ` q66
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: yefimtsev @ 2020-10-15 20:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/yefimtsev/void-packages master
https://github.com/void-linux/void-packages/pull/25640

common/shlibs: add missing pango lib
```libpangox-1.0.so.0``` was missing when I tried to build ```anydesk``` package.
Now it works without any problems.

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

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

From 087cae053af669730224370aaa0e192ab16aef71 Mon Sep 17 00:00:00 2001
From: Yaroslav Yefimtsev <yefimtsev.y@gmail.com>
Date: Thu, 15 Oct 2020 19:48:32 +0000
Subject: [PATCH] common/shlibs: add missing pango lib

libpangox-1.0.so.0 was missing when I tried to build anydesk package.
Now it works without any problems.
---
 common/shlibs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/shlibs b/common/shlibs
index e50e44f1246..f785cd2584d 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -92,6 +92,7 @@ libpangocairo-1.0.so.0 pango-1.24.0_1
 libpangoft2-1.0.so.0 pango-1.24.0_1
 libpangoxft-1.0.so.0 pango-xft-1.36.3_2
 libpango-1.0.so.0 pango-1.24.0_1
+libpangox-1.0.so.0 pango-1.24.0_1
 libcairo.so.2 cairo-1.8.6_1
 libcairo-gobject.so.2 cairo-1.8.6_1
 libcairo-script-interpreter.so.2 cairo-1.8.6_1

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

* Re: common/shlibs: add missing pango lib
  2020-10-15 20:06 [PR PATCH] common/shlibs: add missing pango lib yefimtsev
@ 2020-10-15 20:19 ` q66
  2020-10-15 20:19 ` [PR PATCH] [Closed]: " q66
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: q66 @ 2020-10-15 20:19 UTC (permalink / raw)
  To: ml

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

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/25640#issuecomment-709568471

Comment:
https://github.com/void-linux/void-packages/pull/25455

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

* Re: [PR PATCH] [Closed]: common/shlibs: add missing pango lib
  2020-10-15 20:06 [PR PATCH] common/shlibs: add missing pango lib yefimtsev
  2020-10-15 20:19 ` q66
@ 2020-10-15 20:19 ` q66
  2020-10-24 20:56 ` fosslinux
  2020-10-24 23:03 ` sgn
  3 siblings, 0 replies; 5+ messages in thread
From: q66 @ 2020-10-15 20:19 UTC (permalink / raw)
  To: ml

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

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

common/shlibs: add missing pango lib
https://github.com/void-linux/void-packages/pull/25640

Description:
```libpangox-1.0.so.0``` was missing when I tried to build ```anydesk``` package.
Now it works without any problems.

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

* Re: common/shlibs: add missing pango lib
  2020-10-15 20:06 [PR PATCH] common/shlibs: add missing pango lib yefimtsev
  2020-10-15 20:19 ` q66
  2020-10-15 20:19 ` [PR PATCH] [Closed]: " q66
@ 2020-10-24 20:56 ` fosslinux
  2020-10-24 23:03 ` sgn
  3 siblings, 0 replies; 5+ messages in thread
From: fosslinux @ 2020-10-24 20:56 UTC (permalink / raw)
  To: ml

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

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/25640#issuecomment-716054046

Comment:
https://github.com/NixOS/nixpkgs/blob/abcdffb6a272de657c3d1a423dda44f9037229b3/pkgs/applications/networking/remote/anydesk/default.nix#L70

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

* Re: common/shlibs: add missing pango lib
  2020-10-15 20:06 [PR PATCH] common/shlibs: add missing pango lib yefimtsev
                   ` (2 preceding siblings ...)
  2020-10-24 20:56 ` fosslinux
@ 2020-10-24 23:03 ` sgn
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2020-10-24 23:03 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/25640#issuecomment-716066409

Comment:
@fosslinux patched here https://github.com/void-linux/void-packages/commit/7ae600eb21 but with that patch, I see a double-free (on exit). Let's use NixOS patches.

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

end of thread, other threads:[~2020-10-24 23:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-15 20:06 [PR PATCH] common/shlibs: add missing pango lib yefimtsev
2020-10-15 20:19 ` q66
2020-10-15 20:19 ` [PR PATCH] [Closed]: " q66
2020-10-24 20:56 ` fosslinux
2020-10-24 23:03 ` sgn

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