~ruther/guix-local

7048d79d — Vivien Kraus 2 years ago
gnu: appstream-glib: Update style.

* gnu/packages/glib.scm (appstream-glib) [propagated-inputs]: Drop labels.
[inputs, native-inputs]: Drop labels.  Sort alphabetically.
[arguments]: Convert to list of G-Expressions.
[#:phases]<patch-tests>: Remove trailing #t.
[description]: Break long line.

Change-Id: I504df11ec6fc5b9d9fe70e4e32e7910f93eeb81e
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
5aac9ebe — Vivien Kraus 2 years ago
gnu: appstream-glib: Update to 0.8.2.

* gnu/packages/glib.scm (appstream-glib): Update to 0.8.2.
[inputs]: Replace libsoup with curl.

Change-Id: Icea8c8330351127d0cc85e74716ebd3c3c4a88fa
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
07495d93 — Vivien Kraus 2 years ago
gnu: template-glib: Update style.

* gnu/packages/glib.scm (template-glib) [arguments]: Convert to list of G-Expressions.
[inputs]: Drop labels.
[native-inputs]: Drop labels.

Change-Id: Ie9bc77f9cba1f8248af0c81bb2667c035e596d47
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
52294240 — Vivien Kraus 2 years ago
gnu: template-glib: Update to 3.36.1.

* gnu/packages/glib.scm (template-glib): Update to 3.36.1.
[#:configure-flags]: Update variable name.

Change-Id: I90761ccfe4f4200060b7cbf05de7be9fc91fa850
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
0ea85e85 — Vivien Kraus 2 years ago
gnu: xdg-dbus-proxy: Update to 0.1.5.

* gnu/packages/glib.scm (xdg-dbus-proxy): Update to 0.1.5.

Change-Id: I6d50590dba59a0f177b73bf055a2b9c21ceadd25
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
1b58b5f7 — Bruno Victal 2 years ago
gnu: shared-mime-info: Update to 2.3.

* gnu/packages/freedesktop.scm (shared-mime-info): Update to 2.3.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
d34e4676 — Bruno Victal 2 years ago
gnu: xdgmime: Update to 0.0-2.1792967.

* gnu/packages/freedesktop.scm (xdgmime): Update to 0.0-2.1792967.

Change-Id: I5d65544ad01526157dbe553d98dc78db037546c8
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2677bf98 — Liliana Marie Prikler 2 years ago
gnu: webkitgtk-with-libsoup2: Use propagated inputs from GTK3.

This fixes an error in commits ee748c1df093dd63da982e2f3cd0e11c6633d3d6 and
9bac1cad271de4f4436755c296577c4e185d564c, the latter of which was missing a
hunk to address the failing build of the former.
See <https://bugs.gnu.org/66480#47> for the full patch.

* gnu/packages/webkit.scm (webkitgtk-with-libsoup2)[propagated-inputs]: Use
package-propagated-inputs from webkitgtk-for-gtk3 rather than webkitgtk.

Co-authored-by: Vivien Kraus <vivien@planete-kraus.eu>
Change-Id: I3f2bfb127da4021d3b557d15cfdae6d6f54e7935
e38d6a9c — Liliana Marie Prikler 2 years ago
Merge branch 'master' into gnome-team

Change-Id: Ib6f55bebef2fb235fa59fd5442102a3e0ace3191
cbd20d62 — Maxim Cournoyer 2 years ago
doc: Document Cuirass build notifications.

* doc/contributing.texi (Tracking Bugs and Changes)
<Cuirass Build Notifications>: New subsection.

Change-Id: Icead24ec18cd4511ee6217aae3c1d11ec552a9c7
Reviewed-by: Mathieu Othacehe <othacehe@gnu.org>
b6619c5d — Clément Lassieur 2 years ago
build: Fix it.

* Makefile.am (.git/config): Add missing "\".

Change-Id: I0d1435ef33d9e6f2246631fa0eb8cbb617ea8fb5
9210ca9b — Efraim Flashner 2 years ago
gnu: at-spi2-core: Skip tests on powerpc-linux.

* gnu/packages/gtk.scm (at-spi2-core)[arguments]: When building for
powerpc-linux skip the custom 'check phase.

Change-Id: I8c609c1cb6eb8b03746e294f7b8e3d0792c43443
dae956e7 — Sören Tempel 2 years ago
syscalls: Consistently use existing linux? definition.

Instead of duplicating this existing logic across the source file. This
will make it easier to add additional linux targets (e.g. linux-musl) in
the future.

* guix/build/syscalls.scm (readdir*, write-socket-address!)
(read-socket-address): Use linux? constant.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I833c1d1630dcb8319584de1ea918cb22696f0058
54e67882 — Sören Tempel 2 years ago
syscalls: Add support for musl libc.

This commit allows using Guix on a foreign distro which uses musl libc,
for example, Alpine Linux. Usage of musl libc is detected via a new
musl-libc? variable using the Guile %host-type.

Using the new musl-libc? variable, we can now implement musl-specific
quirks. The two compatibility problems I encountered in this regard are
that musl dose not export a readdir64 and statfs64 symbol. On musl,
these two functions are implemented as CPP macros that expand to
readdir/statfs. To workaround that, a case-distinction was added.

The existing linux? variable has been modified to return true if the
%host-system contains "linux-" in order to ensure it is true for both
linux-gnu as well as linux-musl host systems.

The patch has been tested on Alpine Linux and is already used for the
downstream Guix package shipped in Alpine Linux's package repository.

* guix/build/syscalls.scm (musl-libc?): New variable.
(linux?): Truth value on any linux system.
(statfs, readdir-procedure): Support musl libc.

Signed-off-by: Sören Tempel <soeren@soeren-tempel.net>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: Icc4101a062381240f977f4550344bde696513c52
48c1a74b — Ludovic Courtès 2 years ago
build-system/dub: Remove dependency on (guix build syscalls).

The (guix build syscalls) module was unused.

* guix/build-system/dub.scm (%dub-build-system-modules): Remove (guix
build syscalls).
4b5e31dc — Ludovic Courtès 2 years ago
build-system/android-ndk: Remove dependency on (guix build syscalls).

The (guix build syscalls) module was unused.

* guix/build-system/android-ndk.scm (%android-ndk-build-system-modules):
Remove (guix build syscalls).
542c906f — Ludovic Courtès 2 years ago
build-system/ant: Remove dependency on (guix build syscalls).

The module has been unused since
a6343af22161b21ddbc4143a2b6a60d1ee860eb0.

* guix/build-system/ant.scm (%ant-build-system-modules): Remove (guix
build syscalls).
b4d6a431 — Ludovic Courtès 2 years ago
gnu: public-inbox: Remove dependency on (guix build syscalls).

* gnu/packages/mail.scm (public-inbox)[arguments]: Remove #:imported-modules.
Remove (guix build syscalls) from #:modules.  Rewrite ‘check’ phase to
reap processes from the build process.
[native-inputs]: Remove TINI.
8e3d710f — Ludovic Courtès 2 years ago
gnu: polkit: Remove dependency on (guix build syscalls).

Having a dependency on (guix build syscalls) this deep in the stack
would make it much harder to change syscalls.scm.

* gnu/packages/polkit.scm (polkit)[arguments]: Remove #:imported-modules.
Remove (guix build syscalls) from #:modules.
Rewrite ‘check’ phase to reap processes from the build process.
[native-inputs]: Remove TINI.
4eda8924 — Ludovic Courtès 2 years ago
gnu: python-dbusmock: Use ‘search-input-file’.

* gnu/packages/python-xyz.scm (python-dbusmock)[arguments]: In
‘patch-paths’ phase, use ‘search-input-file’ instead of ‘assoc-ref’.
Next