Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-13 | systemd-250.3-4.parabola1: rebuild | Omar Vega Ramos | |
2022-02-09 | updpkg: libre/parabolaiso 61-1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-02-09 | linux-libre-firmware: split whence, add new conflicts | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-02-08 | [archlinux32-keyring]: rebuild v20220131-1.1 | bill-auger | |
2022-02-08 | [archlinux32-keyring]: upgrade to v20220131 | bill-auger | |
2022-02-02 | Update libre/parabola-keyring | Parabola automatic package builder | |
2022-02-02 | Update libre/parabola-keyring | Parabola automatic package builder | |
2022-02-02 | Update libre/parabola-keyring | Parabola automatic package builder | |
2022-01-28 | [iceweasel]: tweak for i686 | bill-auger | |
2022-01-27 | [pacman]: add 'pacman-keyring' init script for openrc (WIP, unused) | bill-auger | |
2022-01-27 | libre/iceweasel: upstream changes for 96.0.1 | grizzlyuser | |
2022-01-25 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-24 | [base]: minimize diff with arch | bill-auger | |
2022-01-24 | [epiphany]: upgrade to v41.3 | bill-auger | |
2022-01-24 | [bibletime]: upgrade to v3.0.2 | bill-auger | |
2022-01-24 | systemd-250.3-1.parabola1: updating version | Omar Vega Ramos | |
2022-01-23 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-23 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-23 | reset to 648d7822b | bill-auger | |
revert several WIP commits, published accidentally | |||
2022-01-23 | [cups-filters]: wip - rebuild against latest poppler | bill-auger | |
2022-01-23 | [cutter]: wip - tweak for i686 | bill-auger | |
2022-01-23 | [base]: add icu-compat | bill-auger | |
2022-01-23 | wip systemd | bill-auger | |
2022-01-23 | [okular]: wip upgrade to v21.08.1 | bill-auger | |
2022-01-23 | [icecat]: upgrade to v91.4.0 | bill-auger | |
2022-01-23 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-23 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-23 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-19 | libre/ogre: updated to 13.2.4 | Andreas Grapentin | |
2022-01-18 | libre/tp_smapi-lts: rebuilt | Andreas Grapentin | |
2022-01-18 | libre/tp_smapi: rebuilt | Andreas Grapentin | |
2022-01-18 | libre/bbswitch: rebuilt | Andreas Grapentin | |
2022-01-18 | libre/libretools: updated to 20220118 | Andreas Grapentin | |
2022-01-18 | libre/acpi_call-lts: rebuilt | Andreas Grapentin | |
2022-01-18 | libre/acpi_call: rebuilt | Andreas Grapentin | |
2022-01-18 | libre/acpi_call-dkms: rebuilt | Andreas Grapentin | |
2022-01-17 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-17 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-16 | [qutebrowser]: upgrade to v2.4.0 | bill-auger | |
2022-01-14 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-14 | [texlive-bin]: upgrade to v2021.59745 | bill-auger | |
2022-01-12 | updpkg: libre/linux-libre-pck 5.15.13.pck1-1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-01-12 | systemd-250.2-2.parabola1: updating version | Omar Vega Ramos | |
2022-01-10 | updpkg: libre/linux-libre-hardened 5.15.12.hardened1-1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-01-10 | updpkg: libre/linux-libre-pae 5.15.12-1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-01-08 | systemd-250.1-1.parabola1: updating version | Omar Vega Ramos | |
2022-01-06 | pacman: hardcode the architecture in pacman.conf to avoid breaking systems | Denis 'GNUtoo' Carikli | |
Without that fix, when creating a chroot with the following commands on Parabola x86_64, the resulting chroot is 64bit: # mkdir rootfs # pacstrap -C /usr/share/pacman/defaults/pacman.conf.i686 ./rootfs/ # file rootfs/usr/bin/pacman rootfs/usr/bin/pacman: ELF 64-bit LSB pie executable, x86-64, [...] In addition, if we run Parabola i686 on an x86_64 computer with linux-libre-64, and that we try to install packages (after pacman -Sy), some packages will refuse to be installed because they have dependencies on 64bit libraries packages while we have 32bit ones instead: # pacman -S e2fsprogs resolving dependencies... looking for conflicting packages... error: failed to prepare transaction (could not satisfy dependencies) :: installing e2fsprogs (1.46.5-1) breaks dependency 'libss.so=2-32' required by krb5 :: installing e2fsprogs (1.46.5-1) breaks dependency 'libcom_err.so=2-32' required by krb5 but packages without such dependencies (like xterm or coreutils) can be installed without warnings and we end up with non-working packages: # pacman -S xterm [the installation proceeds] # file /usr/bin/xterm /usr/bin/xterm: ELF 64-bit LSB pie executable, x86-64, [...] # xterm bash: /usr/bin/xterm: No such file or directory So it's a good idea to hardcode the architecture by default. The Arch Linux 32 installer uses auto to auto-detect the CPU currently in use to select matching repositories. But in Parabola, for x86 32bit we only have one i686 repository and no pentium4 or i586. In addition, all the Parabola installers don't depend on auto (the multi architecture installer has two complete Parabola systems, one for i686 and one for x86_64, so it doesn't need auto). Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | |||
2022-01-05 | Update libre/your-freedom | Parabola automatic package builder | |
2022-01-05 | updpkg: libre/nextcloud-client 2:3.4.1-1.parabola1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> | |||
2022-01-05 | updpkg: libre/linux-libre-lts 5.10.89-1 | David P | |
Signed-off-by: David P <megver83@parabola.nu> |