Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] anacron fails to start due to missing symbol
@ 2020-09-09 21:43 loreb
  2020-09-09 22:40 ` ericonr
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: loreb @ 2020-09-09 21:43 UTC (permalink / raw)
  To: ml

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

New issue by loreb on void-packages repository

https://github.com/void-linux/void-packages/issues/24792

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void5.8.7_1 x86_64-musl
* package:  
  cronie-1.5.5_3 with musl-obstack-1.2_1

### Expected behavior
anacron runs

### Actual behavior

> Error relocating anacron:  obstack_free: symbol not found

### Steps to reproduce the behavior
Update musl-obstack to latest version - https://github.com/void-linux/musl-obstack/commit/91923c732016e2d5021c3992eb1eca7779cf8922 "gets rid of" obstack_free;
If I'm reading the patch correctly obstack_free used to be a function and it's now a macro;
anacron is linked dynamically to the old version, so it tries to call a function that no longer exists.

It seems that upstream now includes obstack (https://github.com/cronie-crond/cronie/commit/fd934a8292805fa29a27c0d9c3ee79d1fc1ea9fc);
just recompiling the master branch from there worked and ran on my machine,
so I expect that simply recompiling should work,
and if not updating worked for me(tm).

Please let me know if there's any problem.


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

* Re: anacron fails to start due to missing symbol
  2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
@ 2020-09-09 22:40 ` ericonr
  2020-09-09 22:41 ` ericonr
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2020-09-09 22:40 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24792#issuecomment-689860197

Comment:
I can make a PR for this in a bit.

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

* Re: anacron fails to start due to missing symbol
  2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
  2020-09-09 22:40 ` ericonr
@ 2020-09-09 22:41 ` ericonr
  2020-09-11 16:23 ` ericonr
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2020-09-09 22:41 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24792#issuecomment-689860535

Comment:
Or... you could try to make a PR too :D 

What happens if you revbump the package?

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

* Re: anacron fails to start due to missing symbol
  2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
  2020-09-09 22:40 ` ericonr
  2020-09-09 22:41 ` ericonr
@ 2020-09-11 16:23 ` ericonr
  2020-09-11 16:23 ` ericonr
  2020-09-12  0:19 ` [ISSUE] [CLOSED] " the-maldridge
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2020-09-11 16:23 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24792#issuecomment-691191046

Comment:
@loreb if you could be so kind as to close this message c:

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

* Re: anacron fails to start due to missing symbol
  2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
                   ` (2 preceding siblings ...)
  2020-09-11 16:23 ` ericonr
@ 2020-09-11 16:23 ` ericonr
  2020-09-12  0:19 ` [ISSUE] [CLOSED] " the-maldridge
  4 siblings, 0 replies; 6+ messages in thread
From: ericonr @ 2020-09-11 16:23 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/24792#issuecomment-691191046

Comment:
@loreb if you could be so kind as to close this issue c:

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

* Re: [ISSUE] [CLOSED] anacron fails to start due to missing symbol
  2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
                   ` (3 preceding siblings ...)
  2020-09-11 16:23 ` ericonr
@ 2020-09-12  0:19 ` the-maldridge
  4 siblings, 0 replies; 6+ messages in thread
From: the-maldridge @ 2020-09-12  0:19 UTC (permalink / raw)
  To: ml

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

Closed issue by loreb on void-packages repository

https://github.com/void-linux/void-packages/issues/24792

Description:
<!-- Don't request update of package. We have a script for that. https://alpha.de.repo.voidlinux.org/void-updates/void-updates.txt . However, a quality pull request may help. -->
### System

* xuname:  
  Void5.8.7_1 x86_64-musl
* package:  
  cronie-1.5.5_3 with musl-obstack-1.2_1

### Expected behavior
anacron runs

### Actual behavior

> Error relocating anacron:  obstack_free: symbol not found

### Steps to reproduce the behavior
Update musl-obstack to latest version - https://github.com/void-linux/musl-obstack/commit/91923c732016e2d5021c3992eb1eca7779cf8922 "gets rid of" obstack_free;
If I'm reading the patch correctly obstack_free used to be a function and it's now a macro;
anacron is linked dynamically to the old version, so it tries to call a function that no longer exists.

It seems that upstream now includes obstack (https://github.com/cronie-crond/cronie/commit/fd934a8292805fa29a27c0d9c3ee79d1fc1ea9fc);
just recompiling the master branch from there worked and ran on my machine,
so I expect that simply recompiling should work,
and if not updating worked for me(tm).

Please let me know if there's any problem.


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

end of thread, other threads:[~2020-09-12  0:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-09 21:43 [ISSUE] anacron fails to start due to missing symbol loreb
2020-09-09 22:40 ` ericonr
2020-09-09 22:41 ` ericonr
2020-09-11 16:23 ` ericonr
2020-09-11 16:23 ` ericonr
2020-09-12  0:19 ` [ISSUE] [CLOSED] " the-maldridge

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