Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] xbps-src binary-bootstrap fails
@ 2020-01-13  5:01 voidlinux-github
  2020-01-13 18:01 ` voidlinux-github
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-13  5:01 UTC (permalink / raw)
  To: ml

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

New issue by ruegerjr on void-packages repository

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

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:  
Void 5.4.10_2 x86_64 AuthenticAMD
* package:  
xbps-0.57.1_8  (xbps-src ->glic-locales, ca-certificates)
### Expected behavior
xbps-src binary-bootstrap should complete without error
### Actual behavior
For the last 2 weeks or more, with newly git-cloned void-packages, I find that ./xbps-src binary-bootstrap fails with errors in the INSTALL scripts for glibc-locales and ca-certificates as follows:

    ERROR: glibc-locales: [configure] INSTALL script failed to execute the post ACTION: No such file or directory

    Failed to reconfigure `glibc-locales': No such file or directory

    ca-certificates: configuring ...

    ERROR: ca-certificates: [configure] INSTALL script failed to execute the post ACTION: No such file or directory

    Failed to reconfigure `ca-certificates': No such file or directory

It seems the missing file may be a useable /tmp directory.  I have created a temporary work-around by creating a void-packages/masterdir/tmp directory:

```
cd void-packages
./xbps-src zap
mkdir masterdir/tmp
./xbps-src binary-bootstrap
```
This succeeds as expected.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
@ 2020-01-13 18:01 ` voidlinux-github
  2020-01-13 20:01 ` voidlinux-github
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-13 18:01 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-573791463

Comment:
Works for me, any more details?

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
  2020-01-13 18:01 ` voidlinux-github
@ 2020-01-13 20:01 ` voidlinux-github
  2020-01-24 13:00 ` voidlinux-github
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-13 20:01 UTC (permalink / raw)
  To: ml

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

New comment by ruegerjr on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-573844194

Comment:
At the moment I have limited time to devote to this, and do not yet know if there are new expectations for a "tmp" directory in the scripts, or whether the tmp directory was previously created somehow in void-packages, and this no longer occurs. 

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
  2020-01-13 18:01 ` voidlinux-github
  2020-01-13 20:01 ` voidlinux-github
@ 2020-01-24 13:00 ` voidlinux-github
  2020-01-24 16:58 ` voidlinux-github
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 13:00 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578120649

Comment:
please try
```
mkdir -p gh18282-host gh18282-master
./xbps-src  -H gh18282-host -m gh18282-master binary-bootstrap
```
Works here here.

Maybe you corrupted your masterdir? Did you work from current (back when, you opened this issue) master?

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (2 preceding siblings ...)
  2020-01-24 13:00 ` voidlinux-github
@ 2020-01-24 16:58 ` voidlinux-github
  2020-01-24 17:05 ` voidlinux-github
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 16:58 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578213577

Comment:
I just realized I failed to list this with my errors, which is what prompted the work-around:
> => xbps-src: removing autodeps, please wait...
> mktemp: failed to create file via template '/tmp/tmp.XXXXXXXXXX': No such file or directory

Error still occurs after trying your suggested steps above. Initial error occurred on pristine new install. Occurs on my older Void partition as well, but did not occur before sometime near the end of 2019.  I reproduced again today on new install:
```
xbps-install -Su
xbps-install  xtools
cd /usr/local/builds
git clone https://github.com/void-linux/void-packages 
cd void-packages
./xbps-src binary-bootstrap
```
Error Occurs.
```
./xbps-src zap
./xbps-src binary-bootstrap
```
Error Occurs.
```
cd ..
rm -R void-packages
git clone https://github.com/void-linux/void-packages 
cd void-packages
./xbps-src binary-bootstrap
```
Error Occurs.
```
mkdir -p gh18282-host gh18282-master
./xbps-src  -H gh18282-host -m gh18282-master binary-bootstrap
```
Error Occurs.  I am very curious why you do not experience it.  I know I am not quite the only one.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (3 preceding siblings ...)
  2020-01-24 16:58 ` voidlinux-github
@ 2020-01-24 17:05 ` voidlinux-github
  2020-01-24 17:08 ` voidlinux-github
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 17:05 UTC (permalink / raw)
  To: ml

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

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578216399

Comment:
Really? 

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (4 preceding siblings ...)
  2020-01-24 17:05 ` voidlinux-github
@ 2020-01-24 17:08 ` voidlinux-github
  2020-01-24 17:11 ` voidlinux-github
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 17:08 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578217268

Comment:
Yes. See comments above.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (5 preceding siblings ...)
  2020-01-24 17:08 ` voidlinux-github
@ 2020-01-24 17:11 ` voidlinux-github
  2020-01-24 17:11 ` voidlinux-github
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 17:11 UTC (permalink / raw)
  To: ml

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

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578218518

Comment:
Try `/bin/bash -x xbps-src binary-bootstrap`

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (6 preceding siblings ...)
  2020-01-24 17:11 ` voidlinux-github
@ 2020-01-24 17:11 ` voidlinux-github
  2020-01-24 20:10 ` voidlinux-github
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 17:11 UTC (permalink / raw)
  To: ml

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

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578218733

Comment:
Need full debug

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (7 preceding siblings ...)
  2020-01-24 17:11 ` voidlinux-github
@ 2020-01-24 20:10 ` voidlinux-github
  2020-01-24 20:12 ` voidlinux-github
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 20:10 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578282816

Comment:
`/bin/bash -x xbps-src binary-bootstrap`  causes readlink to resolve incorrectly.
`/bin/bash -x ./xbps-src binary-bootstrap` output is here:

[https://pastebin.com/kJ0aVDEZ](url)

I don't know where **mktemp** is called, neither **glibc-locales** or **ca-certificates** INSTALL scripts use it explicitly, but assume it must be called from within the chroot, since it expects /tmp to exist, and can not find it.  mktemp works fine for me outside of chroot.
xbps-src "zaps" and "cleans" the "masterdir/tmp" directory, but never creates it.  For some reason, I need to create it now, and this resolves all errors..



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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (8 preceding siblings ...)
  2020-01-24 20:10 ` voidlinux-github
@ 2020-01-24 20:12 ` voidlinux-github
  2020-01-24 20:12 ` voidlinux-github
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 20:12 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578282816

Comment:
`/bin/bash -x xbps-src binary-bootstrap`  causes readlink to resolve incorrectly.
`/bin/bash -x ./xbps-src binary-bootstrap` output is here:

[https://pastebin.com/kJ0aVDEZ]

I don't know where **mktemp** is called, neither **glibc-locales** or **ca-certificates** INSTALL scripts use it explicitly, but assume it must be called from within the chroot, since it expects /tmp to exist, and can not find it.  mktemp works fine for me outside of chroot.
xbps-src "zaps" and "cleans" the "masterdir/tmp" directory, but never creates it.  For some reason, I need to create it now, and this resolves all errors..



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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (9 preceding siblings ...)
  2020-01-24 20:12 ` voidlinux-github
@ 2020-01-24 20:12 ` voidlinux-github
  2020-01-26  0:13 ` voidlinux-github
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-24 20:12 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578282816

Comment:
`/bin/bash -x xbps-src binary-bootstrap`  causes readlink to resolve incorrectly.
`/bin/bash -x ./xbps-src binary-bootstrap` output is here:

https://pastebin.com/kJ0aVDEZ

I don't know where **mktemp** is called, neither **glibc-locales** or **ca-certificates** INSTALL scripts use it explicitly, but assume it must be called from within the chroot, since it expects /tmp to exist, and can not find it.  mktemp works fine for me outside of chroot.
xbps-src "zaps" and "cleans" the "masterdir/tmp" directory, but never creates it.  For some reason, I need to create it now, and this resolves all errors..



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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (10 preceding siblings ...)
  2020-01-24 20:12 ` voidlinux-github
@ 2020-01-26  0:13 ` voidlinux-github
  2020-01-26  2:05 ` voidlinux-github
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26  0:13 UTC (permalink / raw)
  To: ml

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

New comment by dezifit on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578455903

Comment:
I noticed that binary-bootstrap fails with this error if it is invoked from uid 0.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (11 preceding siblings ...)
  2020-01-26  0:13 ` voidlinux-github
@ 2020-01-26  2:05 ` voidlinux-github
  2020-01-26  2:12 ` voidlinux-github
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26  2:05 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578461755

Comment:
Thank you.  I confirm that the error only occurs when run as uid 0.  This is still true even if I (unwisely) test a change of all permissions in ..void-packages to 777.  In the past this did not occur, and I have run xbps-src as root mostly because of the convenience of automatically building some packages from within a custom Void install script.  

Likely explanations that come to my mind should not have been solved by the creation of a masterdir/tmp directory as is the case, so more insights are welcome.  I accept the will of the maintainers if the decision is to just not allow running xbps-src as root. 

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (12 preceding siblings ...)
  2020-01-26  2:05 ` voidlinux-github
@ 2020-01-26  2:12 ` voidlinux-github
  2020-01-26 13:29 ` voidlinux-github
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26  2:12 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578461755

Comment:
Thank you.  I confirm that the error only occurs when run as uid 0.  This is still true even if I (unwisely) test a change of all permissions in ..void-packages to 777.  In the past this did not occur, and I have run xbps-src as root mostly because of the convenience of automatically building some packages from within a custom Void install script.  

Likely explanations that come to my mind should not have been solved by the creation of a masterdir/tmp directory, as is the case, so more insights are welcome.  I accept the will of the maintainers if the decision is to just not allow running xbps-src as root. 

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (13 preceding siblings ...)
  2020-01-26  2:12 ` voidlinux-github
@ 2020-01-26 13:29 ` voidlinux-github
  2020-01-26 13:38 ` voidlinux-github
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26 13:29 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578502013

Comment:
running it as root is not recommended, not sure if that's a documented restriction though.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (14 preceding siblings ...)
  2020-01-26 13:29 ` voidlinux-github
@ 2020-01-26 13:38 ` voidlinux-github
  2020-01-26 19:35 ` voidlinux-github
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26 13:38 UTC (permalink / raw)
  To: ml

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

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578502766

Comment:
Seriously if you are using it as root, there's a serous issue (pebkac) 

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (15 preceding siblings ...)
  2020-01-26 13:38 ` voidlinux-github
@ 2020-01-26 19:35 ` voidlinux-github
  2020-02-17  4:45 ` [ISSUE] [CLOSED] " xtraeme
  2020-02-17  4:45 ` xtraeme
  18 siblings, 0 replies; 20+ messages in thread
From: voidlinux-github @ 2020-01-26 19:35 UTC (permalink / raw)
  To: ml

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

New comment by furryfixer on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-578535035

Comment:
I accept the criticism. Although running as root is never recommended if avoidable, it has been tempting, and successful until recently, for me to use xbps-src within a larger Install script which MUST run with elevated privileges.  This is of course easily changed.  The current documentation for xbps-src has a mild statement that running it as root is not required. I had known this, but we should be aware that most "xbps-" commands require elevated privileges in common usage, so this could be a trap for the unwary.  

So the maintainers have at least three basic options, if not more.

- (1) Ignore errors that only occur running as root, and place a stronger admonition/warning in the documentation.
- (2) Repair the xbps-src binary-bootstrap process to work for root.  For now, this might be as simple as creating a "tmp" subdirectory.

- (3) Modifying xbps-src to prevent running as uid 0.

I think one of these should happen, but not up to me. Depending on your decision, you may close this when you feel appropriate.

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

* Re: xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (17 preceding siblings ...)
  2020-02-17  4:45 ` [ISSUE] [CLOSED] " xtraeme
@ 2020-02-17  4:45 ` xtraeme
  18 siblings, 0 replies; 20+ messages in thread
From: xtraeme @ 2020-02-17  4:45 UTC (permalink / raw)
  To: ml

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

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/issues/18282#issuecomment-586815130

Comment:
xbps-src does not allow running as root.

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

* Re: [ISSUE] [CLOSED] xbps-src binary-bootstrap fails
  2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
                   ` (16 preceding siblings ...)
  2020-01-26 19:35 ` voidlinux-github
@ 2020-02-17  4:45 ` xtraeme
  2020-02-17  4:45 ` xtraeme
  18 siblings, 0 replies; 20+ messages in thread
From: xtraeme @ 2020-02-17  4:45 UTC (permalink / raw)
  To: ml

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

Closed issue by furryfixer on void-packages repository

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

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:  
Void 5.4.10_2 x86_64 AuthenticAMD
* package:  
xbps-0.57.1_8  (xbps-src ->glic-locales, ca-certificates)
### Expected behavior
xbps-src binary-bootstrap should complete without error
### Actual behavior
For the last 2 weeks or more, with newly git-cloned void-packages, I find that ./xbps-src binary-bootstrap fails with errors in the INSTALL scripts for glibc-locales and ca-certificates as follows:

    ERROR: glibc-locales: [configure] INSTALL script failed to execute the post ACTION: No such file or directory

    Failed to reconfigure `glibc-locales': No such file or directory

    ca-certificates: configuring ...

    ERROR: ca-certificates: [configure] INSTALL script failed to execute the post ACTION: No such file or directory

    Failed to reconfigure `ca-certificates': No such file or directory

It seems the missing file may be a useable /tmp directory.  I have created a temporary work-around by creating a void-packages/masterdir/tmp directory:

```
cd void-packages
./xbps-src zap
mkdir masterdir/tmp
./xbps-src binary-bootstrap
```
This succeeds as expected.

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

end of thread, other threads:[~2020-02-17  4:45 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13  5:01 [ISSUE] xbps-src binary-bootstrap fails voidlinux-github
2020-01-13 18:01 ` voidlinux-github
2020-01-13 20:01 ` voidlinux-github
2020-01-24 13:00 ` voidlinux-github
2020-01-24 16:58 ` voidlinux-github
2020-01-24 17:05 ` voidlinux-github
2020-01-24 17:08 ` voidlinux-github
2020-01-24 17:11 ` voidlinux-github
2020-01-24 17:11 ` voidlinux-github
2020-01-24 20:10 ` voidlinux-github
2020-01-24 20:12 ` voidlinux-github
2020-01-24 20:12 ` voidlinux-github
2020-01-26  0:13 ` voidlinux-github
2020-01-26  2:05 ` voidlinux-github
2020-01-26  2:12 ` voidlinux-github
2020-01-26 13:29 ` voidlinux-github
2020-01-26 13:38 ` voidlinux-github
2020-01-26 19:35 ` voidlinux-github
2020-02-17  4:45 ` [ISSUE] [CLOSED] " xtraeme
2020-02-17  4:45 ` xtraeme

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