summaryrefslogtreecommitdiff
path: root/libre
AgeCommit message (Collapse)Author
2021-09-03systemd-249.4-1.parabola1: updating versionOmar Vega Ramos
2021-08-25systemd-249.3-1.parabola1: updating versionOmar Vega Ramos
2021-08-25updpkg: libre/parabolaiso 58-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-22abiword-3.0.5-1.parabola1: updating versionOmar Vega Ramos
2021-08-14parabolaiso: set PREFIXDavid P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-11linux-libre-lts: do not buid docs in armv7hDavid P
otherwise the build fails Signed-off-by: David P <megver83@parabola.nu>
2021-08-11updpkg: libre/linux-libre-pae 5.13.9-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-11updpkg: libre/linux-libre-hardened 5.12.19.hardened1-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-09updpkg: libre/linux-libre-pck 5.13.9.pck1-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-06updpkg: libre/linux-libre 5.13.8-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-03[pacman-mirrorlist]: updatebill-auger
2021-08-03[pacman-mirrorlist]: restore pkgver()bill-auger
2021-08-02mkinitcpio-parabolaiso: conflict and replace mkinitcpio-archisoDavid P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-02addpkg: libre/mkinitcpio-parabolaiso 58-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-08-02updpkg: libre/parabolaiso 57-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-07-31systemd-249.2-1.parabola1: updating versionOmar Vega Ramos
2021-07-29[iceweasel]: set about:addons link to parabolabill-auger
2021-07-29[qutebrowser]: upgrade to v2.3.0bill-auger
2021-07-29[minitube]: upgrade to v3.9bill-auger
2021-07-28[texlive-bin]: rebuild against latest popplerbill-auger
2021-07-28[cups-filters]: rebuild against latest popplerbill-auger
2021-07-24[ruby2.7]: add packagebill-auger
2021-07-23[libksysguard]: upgrade to v5.22.3bill-auger
2021-07-23Upgraded libksysguard from 5.19.0 to 5.22.0Iván Ávalos
2021-07-23Update libre/parabola-keyringParabola automatic package builder
2021-07-19Update libre/parabola-keyringParabola automatic package builder
2021-07-19[parabola-hackers]: wip - patch broken golang buildbill-auger
2021-07-19[parabola-hackers]: allow specifying keyserver via command linebill-auger
2021-07-19[parabola-keyring]: specify keyserverbill-auger
2021-07-19[purple-matrix]: wipbill-auger
2021-07-19[purple-matrix]: wipbill-auger
2021-07-19wip iceweaselbill-auger
2021-07-19[iceweasel]: tweak for i686bill-auger
2021-07-19[icecat]: wip - tweak for i686bill-auger
2021-07-19Update libre/parabola-keyringParabola automatic package builder
2021-07-16[kdevelop]: rebuild against latest clangbill-auger
2021-07-16[kio]: upgrade to v5.84.0 (i686 v5.83.0)bill-auger
2021-07-16[retroarch]: wip upgrade to v1.9.6bill-auger
2021-07-16Update RetroArch to 1.9.4Nikita Epifanov
2021-07-15clamav-0.103.3-1.parabola1: updating versionOmar Vega Ramos
2021-07-14libre/iceweasel: upstream update to 90.0grizzlyuser
2021-07-13[netsurf]: upgrade to v3.10bill-auger
2021-07-13[cups-filters]: upgrade to v1.28.9bill-auger
2021-07-13[texlive-bin]: rebuild against latest popplerbill-auger
2021-07-13updpkg: libre/parabolaiso 56.1-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-07-13systemd-249-3.parabola1: updating versionOmar Vega Ramos
2021-07-06updpkg: libre/parabolaiso 56-1David P
Signed-off-by: David P <megver83@parabola.nu>
2021-07-06libre: uboot4extlinux-sunxi: fix missing python-setuptoolsDenis 'GNUtoo' Carikli
When building uboot4extlinux-sunxi with libremakepkg we have the following error: | BINMAN all | Traceback (most recent call last): | File "/build/uboot4extlinux-sunxi/src/u-boot-2021.07/./tools/binman/binman", line 39, in <module> | from binman import control | File "/build/uboot4extlinux-sunxi/src/u-boot-2021.07/tools/binman/../binman/control.py", line 11, in <module> | import pkg_resources | ModuleNotFoundError: No module named 'pkg_resources' | make: *** [Makefile:1084: all] Error 1 | ==> ERROR: A failure occurred in build(). In u-boot 2021.07 in tools/binman/control.py, line 11 we have: import pkg_resources To find the package having pkg_resources we can use python to find the files implementing it: $ python Python 3.9.5 (default, May 27 2021, 07:33:37) [GCC 11.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import pkg_resources >>> help(pkg_resources) At the end of the help we see the following: FILE /usr/lib/python3.9/site-packages/pkg_resources/__init__.py And we can finally use pacman to find the package having that file: $ pacman -Q -o /usr/lib/python3.9/site-packages/pkg_resources/__init__.py /usr/lib/python3.9/site-packages/pkg_resources/__init__.py is owned by python-setuptools 1:52.0.0-1.0 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2021-07-06libre: uboot4extlinux-sunxi: workaround linter issues on ppc64leDenis 'GNUtoo' Carikli
When running parabola-repolint[1] for ppc64le, there is the following error or warning: unhandled SRCINFO key: "makedepends_ppc64le" (makedepends_ppc64le = arm-none-eabi-gcc) As ppc64le is still experimental, we can safely remove it from the supported architectures in this PKGBUILD to avoid creating too much noise for the people working on the ppc64le port of Parabola. This is a real concern as oaken-source, who run this parabola-repolint had that issue and discussed with me about it on the #parabola IRC channel on liberachat. [1]https://git.parabola.nu/~oaken-source/parabola-repolint.git/ Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2021-07-06libre: uboot4extlinux-sunxi: fix pkgdesc for the C.H.I.PDenis 'GNUtoo' Carikli
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>