Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] Package glibc-locales gets only installed on "-musl" systems
@ 2022-08-05 12:42 dataCobra
  2022-08-05 12:50 ` paper42
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 12:42 UTC (permalink / raw)
  To: ml

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

New issue by dataCobra on void-packages repository

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

Description:
### Is this a new report?

Yes

### System Info

Void 5.18.14_1 x86_64 GenuineIntel uptodate FF

### Package(s) Affected

base-minimal-0.3_1, base-system-0.114_1

### Does a report exist for this bug with the project's home (upstream) and/or another distro?

_No response_

### Expected behaviour

The package glibc-locales is also necessary for glibc-systems and should therefore be installed.

### Actual behaviour

The package glibc-locales is only installed for musl-systems.

### Steps to reproduce

Freshinstall of Void with base packages in glibc environment.

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

* Re: Package glibc-locales gets only installed on "-musl" systems
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
@ 2022-08-05 12:50 ` paper42
  2022-08-05 13:07 ` dataCobra
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: paper42 @ 2022-08-05 12:50 UTC (permalink / raw)
  To: ml

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

New comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206413551

Comment:
glibc-locales is only available in glibc repositories, so it can not be installed on musl systems. On glibc systems it's a dependency of base-system, base-voidstrap and base-minimal, so it will be installed there.

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

* Re: Package glibc-locales gets only installed on "-musl" systems
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
  2022-08-05 12:50 ` paper42
@ 2022-08-05 13:07 ` dataCobra
  2022-08-05 13:08 ` dataCobra
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:07 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206440423

Comment:
Hey @paper42,

I see that my bugreport is a bit misleading now after I realized that I read the case statement
wrong...

The bugreport is still active because glibc-locales didn't get installed on two freshinstalls I
did yesterday and today. With usage of the official documentation (Installation via chroot).

Here's my documentation about what I've done before I checked for glibc-locales:
The `#` are only  german comments for my purposes.

```
* # Erstellung der LVs und Einrichtung der Dateisysteme
  # Verschluesselung des VG mit den LVs
  mkfs.vfat -F32 /dev/sda1
  mkfs.ext4 -L boot /dev/sda2
  cryptsetup luksFormat /dev/sda3
  cryptsetup luksOpen /dev/sda3 crypto
  pvcreate /dev/mapper/crypto
  vgcreate vgVoid /dev/mapper/crypto
  lvcreate -n root -L 16G vgVoid
  lvcreate -n swap -L 8G vgVoid
  lvcreate -n var -L 12G vgVoid
  lvcreate -n home -L 42G vgVoid
  mkfs.ext4 -L root /dev/vgVoid/root
  mkfs.ext4 -L var /dev/vgVoid/var
  mkfs.ext4 -L home /dev/vgVoid/home
  mkswap -L swap /dev/vgVoid/swap
* # Anlegen der Umgebung
  mkdir -v /mnt/root
  mount -v /dev/vgVoid/root /mnt/root
  mkdir -v /mnt/root/var
  mount -v /dev/vgVoid/var /mnt/root/var
  mkdir -v /mnt/root/home
  mount -v /dev/vgVoid/home /mnt/root/home
  mkdir -v /mnt/root/boot
  mount -v /dev/sda2 /mnt/root/boot
  mkdir -v /mnt/root/boot/efi
  mount -v /dev/sda1 /mnt/root/boot/efi
  swapon /dev/vgVoid/swap
* # Installation von VoidLinux
  REPO=https://repo-fi.voidlinux.org/current
  ARCH=x86_64
  mkdir -p /mnt/root/var/db/xbps/keys
  cp /var/db/xbps/keys/* /mnt/root/var/db/xbps/keys/
* XBPS_ARCH=$ARCH xbps-install -S -r /mnt/root -R "$REPO" base-minimal
```

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

* Re: Package glibc-locales gets only installed on "-musl" systems
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
  2022-08-05 12:50 ` paper42
  2022-08-05 13:07 ` dataCobra
@ 2022-08-05 13:08 ` dataCobra
  2022-08-05 13:09 ` dataCobra
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:08 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206440423

Comment:
Hey @paper42,

I see that my bugreport is a bit misleading, sorry for that. I read the case statement wrong.

The bugreport is still active because glibc-locales didn't get installed on two freshinstalls I
did yesterday and today. With usage of the official documentation (Installation via chroot).

Here's my documentation about what I've done before I checked for glibc-locales:
The `#` are only  german comments for my purposes.

```
* # Erstellung der LVs und Einrichtung der Dateisysteme
  # Verschluesselung des VG mit den LVs
  mkfs.vfat -F32 /dev/sda1
  mkfs.ext4 -L boot /dev/sda2
  cryptsetup luksFormat /dev/sda3
  cryptsetup luksOpen /dev/sda3 crypto
  pvcreate /dev/mapper/crypto
  vgcreate vgVoid /dev/mapper/crypto
  lvcreate -n root -L 16G vgVoid
  lvcreate -n swap -L 8G vgVoid
  lvcreate -n var -L 12G vgVoid
  lvcreate -n home -L 42G vgVoid
  mkfs.ext4 -L root /dev/vgVoid/root
  mkfs.ext4 -L var /dev/vgVoid/var
  mkfs.ext4 -L home /dev/vgVoid/home
  mkswap -L swap /dev/vgVoid/swap
* # Anlegen der Umgebung
  mkdir -v /mnt/root
  mount -v /dev/vgVoid/root /mnt/root
  mkdir -v /mnt/root/var
  mount -v /dev/vgVoid/var /mnt/root/var
  mkdir -v /mnt/root/home
  mount -v /dev/vgVoid/home /mnt/root/home
  mkdir -v /mnt/root/boot
  mount -v /dev/sda2 /mnt/root/boot
  mkdir -v /mnt/root/boot/efi
  mount -v /dev/sda1 /mnt/root/boot/efi
  swapon /dev/vgVoid/swap
* # Installation von VoidLinux
  REPO=https://repo-fi.voidlinux.org/current
  ARCH=x86_64
  mkdir -p /mnt/root/var/db/xbps/keys
  cp /var/db/xbps/keys/* /mnt/root/var/db/xbps/keys/
* XBPS_ARCH=$ARCH xbps-install -S -r /mnt/root -R "$REPO" base-minimal
```

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

* Re: Package glibc-locales gets only installed on "-musl" systems
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (2 preceding siblings ...)
  2022-08-05 13:08 ` dataCobra
@ 2022-08-05 13:09 ` dataCobra
  2022-08-05 13:18 ` glibc-locales isn't installed with base-* packages paper42
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:09 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206442458

Comment:
I've tested both base-minimal and base-system.

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

* Re: glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (3 preceding siblings ...)
  2022-08-05 13:09 ` dataCobra
@ 2022-08-05 13:18 ` paper42
  2022-08-05 13:25 ` dataCobra
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: paper42 @ 2022-08-05 13:18 UTC (permalink / raw)
  To: ml

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

New comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206450665

Comment:
I don't think that's possible, `xbps-query -x base-minimal/system` shows glibc-locales, does it also show it for you? How are you checking if glibc-locales are installed?

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

* Re: glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (4 preceding siblings ...)
  2022-08-05 13:18 ` glibc-locales isn't installed with base-* packages paper42
@ 2022-08-05 13:25 ` dataCobra
  2022-08-05 13:32 ` dataCobra
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:25 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206457521

Comment:


---
> I don't think that's possible, `xbps-query -x base-minimal/system` shows glibc-locales, does it also show it for you? How are you checking if glibc-locales are installed?

I've looked for `/etc/default/libc-locales` to uncomment my locales but it wasn't there.

So I've checked with `xbps-query -l` and it didn't show up there.
I installed the package manual.

The problem occurred on both, a physical and a virtual machine.

When I do check with your command `glibc-locales>=0` does show up indeed.



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

* Re: glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (5 preceding siblings ...)
  2022-08-05 13:25 ` dataCobra
@ 2022-08-05 13:32 ` dataCobra
  2022-08-05 13:32 ` dataCobra
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:32 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206457521

Comment:

---
> I don't think that's possible, `xbps-query -x base-minimal/system` shows glibc-locales, does it also show it for you? How are you checking if glibc-locales are installed?

I've looked for `/etc/default/libc-locales` to uncomment my locales but it wasn't there.

So I've checked with `xbps-query -l` and it didn't show up there.
I had to install the package manually

The problem occurred on both, a physical and a virtual machine.

When I do check with your command `glibc-locales>=0` does show up indeed.



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

* Re: glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (6 preceding siblings ...)
  2022-08-05 13:32 ` dataCobra
@ 2022-08-05 13:32 ` dataCobra
  2022-08-06 10:07 ` [ISSUE] [CLOSED] " dataCobra
  2022-08-06 10:07 ` dataCobra
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-05 13:32 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1206457521

Comment:
---
> I don't think that's possible, `xbps-query -x base-minimal/system` shows glibc-locales, does it also show it for you? How are you checking if glibc-locales are installed?

I've looked for `/etc/default/libc-locales` to uncomment my locales but it wasn't there.

So I've checked with `xbps-query -l` and it didn't show up there.
I had to install the package manually.

The problem occurred on both, a physical and a virtual machine.

When I do check with your command `glibc-locales>=0` does show up indeed.



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

* Re: [ISSUE] [CLOSED] glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (7 preceding siblings ...)
  2022-08-05 13:32 ` dataCobra
@ 2022-08-06 10:07 ` dataCobra
  2022-08-06 10:07 ` dataCobra
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-06 10:07 UTC (permalink / raw)
  To: ml

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

Closed issue by dataCobra on void-packages repository

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

Description:
### Is this a new report?

Yes

### System Info

Void 5.18.14_1 x86_64 GenuineIntel uptodate FF

### Package(s) Affected

base-minimal-0.3_1, base-system-0.114_1

### Does a report exist for this bug with the project's home (upstream) and/or another distro?

_No response_

### Expected behaviour

The package glibc-locales is also necessary for glibc-systems and should therefore be installed.

### Actual behaviour

The package glibc-locales is only installed for musl-systems.

### Steps to reproduce

Freshinstall of Void with base packages in glibc environment.

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

* Re: glibc-locales isn't installed with base-* packages
  2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
                   ` (8 preceding siblings ...)
  2022-08-06 10:07 ` [ISSUE] [CLOSED] " dataCobra
@ 2022-08-06 10:07 ` dataCobra
  9 siblings, 0 replies; 11+ messages in thread
From: dataCobra @ 2022-08-06 10:07 UTC (permalink / raw)
  To: ml

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

New comment by dataCobra on void-packages repository

https://github.com/void-linux/void-packages/issues/38482#issuecomment-1207187509

Comment:
Hey @paper42,

After I tried a new fresh install glibc-locales is indeed a dependencie thats going to be
installed. I've no idea what I do wrong on the first two machines.

I'll close this issue for now and comeback if I encounter the problem again.

Sorry for the noise and thanks for the fast replies.

Regards,
Ben

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

end of thread, other threads:[~2022-08-06 10:07 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-05 12:42 [ISSUE] Package glibc-locales gets only installed on "-musl" systems dataCobra
2022-08-05 12:50 ` paper42
2022-08-05 13:07 ` dataCobra
2022-08-05 13:08 ` dataCobra
2022-08-05 13:09 ` dataCobra
2022-08-05 13:18 ` glibc-locales isn't installed with base-* packages paper42
2022-08-05 13:25 ` dataCobra
2022-08-05 13:32 ` dataCobra
2022-08-05 13:32 ` dataCobra
2022-08-06 10:07 ` [ISSUE] [CLOSED] " dataCobra
2022-08-06 10:07 ` dataCobra

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