Age | Commit message (Collapse) | Author |
|
This allows us to get compile-time warnings when using deprecated
packages, typically in calls to 'texlive-union' or similar.
* gnu/packages/tex.scm (define-deprecated-package): New macro.
(texlive-generic-unicode-data)
(texlive-generic-tex-ini-files)
(texlive-metafont-base)
(texlive-tex-fontinst-base)
(texlive-fonts-cm)
(texlive-fonts-cm-super)
(texlive-fonts-lm)
(texlive-fonts-knuth-lib)
(texlive-latex-mflogo)
(texlive-fonts-mflogo-font)
(texlive-fonts-amsfonts)
(texlive-latex-amsfonts)
(texlive-generic-hyph-utf8)
(texlive-generic-dehyph-exptl)
(texlive-generic-epsf)
(texlive-latex-xcolor)
(texlive-latex-hyperref)
(texlive-latex-oberdiek)
(texlive-latex-url)
(texlive-latex-fontspec)
(texlive-luatex-luaotfload)
(texlive-latex-amscls)
(texlive-latex-babel)
(texlive-latex-psnfss)
(texlive-latex-filemod)
(texlive-latex-pstool)
(texlive-latex-seminar)
(texlive-latex-doi)
(texlive-latex-etoolbox)
(texlive-fonts-adobe-times)
(texlive-fonts-adobe-palatino)
(texlive-fonts-adobe-zapfding)
(texlive-fonts-stmaryrd)
(texlive-fonts-txfonts)
(texlive-latex-lh)
(texlive-latex-wasysym)
(texlive-generic-pdftex)
(texlive-fonts-xypic)
(texlive-fonts-charter)
(texlive-latex-beamer)
(texlive-latex-pdfx)
(texlive-iftex)
(texlive-generic-ifxetex): Use it.
|
|
* gnu/packages/guile.scm (guile-1.8)[arguments]: Pass #:tests? #f.
|
|
Fixes <https://issues.guix.gnu.org/50427>.
* gnu/packages/guile.scm (guile-1.8)[arguments]: Pass "CFLAGS" to #:configure-flags.
|
|
All watchpoint tests except watch_002.phpt fail. There’s an upstream bug
report about this problem so in the meantime remove them since it doesn’t
impact actually running PHP programs.
* gnu/packages/php.scm (php)[arguments]<#:phases>{prepare-tests}: Remove
watchpoint tests on powerpc64le.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
Support for static NSS broke in glibc 2.33, meaning that 'getpw' &
co. would always fail. This patch backports the upstream fix to
reinstate it.
Reported by Marius Bakke.
* gnu/packages/patches/glibc-static-nss.patch: New file.
* gnu/packages/make-bootstrap.scm (glibc-for-bootstrap): Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
|
|
In packages that do not use python-build-system, PYTHONPATH is generally
not defined. Instead we can use GUIX_PYTHONPATH which should contain all
Python dependencies.
* gnu/packages/bioinformatics.scm (shorah)[arguments]: Replace
PYTHONPATH with GUIX_PYTHONPATH.
* gnu/packages/debug.scm (c-vise)[arguments]: Idem.
* gnu/packages/gnome.scm (drawing, apostrophe, ocrfeeder)[arguments]: Idem.
* gnu/packages/music.scm (a2jmidid)[arguments]: Idem.
* gnu/packages/syndication.scm (gfeeds)[arguments]: Idem.
* gnu/packages/xdisorg.scm (gammastep)[arguments]: Idem.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/logging.scm (glog): Update to 0.5.0.
[build-system]: Switch to 'cmake-build-system'.
[arguments]: Remove 'disable-signal-tests' phase.
|
|
* gnu/packages/textutils.scm (opencc)[arguments]: Create PYTHONPATH from
GUIX_PYTHONPATH as the former is not defined.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/cpp.scm (c++-gsl)[source]: Add a patch from Debian
to fix compilation of a test.
* gnu/packages/patches/c++-gsl-move-array-bounds-tests.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/networking.scm (libnice)[native-inputs]: Add graphviz
which is required to provide the dot program.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/android.scm (adb, android-ext4-utils)[arguments]: Use
'this-package-input' in gexps.
* gnu/packages/finance.scm (monero-gui)[arguments]: Idem.
* gnu/packages/lisp.scm (gcl)[arguments]: Idem.
|
|
* gnu/packages/geo.scm (opencpn)[arguments]: Pass '-fcommon' to CFLAGS.
|
|
* gnu/packages/patches/pipewire-0.2.7-fno-common.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/linux.scm (pipewire)[source]: Use it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/freedesktop.scm (libappindicator)[source]: Add snippet to
prevent declaring _PyGObject_API twice.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
Fix building libsrtp with GCC 10 by updating to 2.4.0.
* gnu/packages/telephony.scm (libsrtp): Update to 2.4.0.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
Update lablgtk to fix compilation with GCC 10.
* gnu/packages/ocaml.scm (lablgtk): Update to 2.18.11.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/python-xyz.scm (python-gast): Update to 0.5.2.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
Disable the thread local storage model in jemalloc 5 to prevent
shared libraries linked to libjemalloc from crashing on dlopen().
https://github.com/jemalloc/jemalloc/issues/937
This bug affects both Java JNI and python libraries which link to
jemalloc 5, such as RocksDB, which will crash the program when loaded.
* gnu/packages/jemalloc.scm (jemalloc)[arguments]: Add --disable-initial-exec-tls
configure flag.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
|
|
Fixes <https://issues.guix.gnu.org/49990>.
Previously, building 'ant-bootstrap' would fail in obscure ways.
* gnu/packages/patches/classpath-miscompilation.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/java.scm (classpath-bootstrap)[source]: Use it.
[arguments]: Remove 'remove-call-to-free' phase.
|
|
* gnu/packages/java.scm (ant-bootstrap)[arguments]: Move 'setenv' calls
to new 'define-java-environment-variables' phase.
|
|
* gnu/packages/java.scm (classpath-bootstrap)[arguments]: Use
'search-input-file'.
|
|
This change was suggested by Ludovic Courtès <ludo@gnu.org> to allow
users to replace the shadow input in the package.
* gnu/packages/display-manager.scm (sddm)[arguments]: In configure-flags
refer to the shadow package that is an input.
|
|
* gnu/packages/display-managers.scm (sddm)[arguments]: Use gexp for
configure-flags.
|
|
The packages argument accepts package names only, not paths. Replacing
the slash with a dot allows passing the sanity-check phase, because the
submodule will not be listed in top_level.txt any more.
* gnu/packages/python-web.scm (python-google-api-client) [#:phases]:
Add new phase 'fix-setup-py.
|
|
* gnu/packages/android.scm (android-f2fs-utils)[arguments]: Add
'set-compilation-flags' phase.
|
|
* gnu/packages/linux.scm (f2fs-tools-1.7)[arguments]: Pass '-fcommon' to
CFLAGS.
|
|
* gnu/packages/android.scm (android-ext4-utils)[arguments]: Use gexp for
'make-flags'. Update 'unpack-core' phase.
|
|
* gnu/packages/android.scm (adb)[arguments]: Use gexp for 'make-flags".
|
|
* gnu/packages/patches/evolution-printableoptions.patch: New file.
* gnu/packages/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gnome.scm (evolution)[source]: Use it.
|
|
* gnu/packages/pcre.scm (pcre2)[arguments]: On powerpc-linux don't
enable JIT.
|
|
* gnu/packages/patches/evolution-data-server-printableoptions.patch: New file.
* gnu/packages/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gnome.scm (evolution-data-server)[source]: Use it.
|
|
* gnu/packages/python-xyz.scm (python-bsddb3): Update to 6.2.9.
|
|
* gnu/packages/backup.scm (libchop)[arguments]: Adjust
'set-libtirpc-include-path to return a valid CPATH.
|
|
* gnu/packages/glib.scm (python-pygobject)[arguments]: Replace check
phase and extend the test timeout.
|
|
* gnu/packages/gnome.scm (network-manager)[inputs]: Add libselinux.
|
|
* gnu/packages/selinux.scm (libsepol)[arguments]: Add '-Wno-error' option to
CFLAGS.
|
|
* gnu/packages/radio.scm (dream)[arguments]: Fix the 'fix-paths' phase.
|
|
* gnu/packages/patches/python-chai-drop-python2.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/python-xyz.scm (python-chai)[source]: Use it.
|
|
Nothing depends on it.
* gnu/packages/python-xyz.scm (python2-chai): Remove variable.
|
|
* gnu/packages/geo.scm (qgis)[arguments]: Disable PyQgsAuthBasicMethod test.
|
|
* gnu/packages/python-xyz.scm (python-owslib)[arguments]: Disable
'sanity-check' phase until dependencies for tests are packaged.
|
|
* gnu/packages/qt.scm (qtwebkit)[arguments]: Replace the standard build phase
with a custom one that increases the maximum number of open file
descriptors.
|
|
* gnu/packages/patches/qtwebkit-fix-building-with-bison-3.7.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/qt.scm (qtwebkit)[source]: Use it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/patches/qtwebkit-fix-building-with-glib-2.68.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/qt.scm (qtwebkit)[source]: Use it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/patches/qtwebkit-fix-building-with-icu-68.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/qt.scm (qtwebkit)[source]: Use it
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/patches/qtwebkit-fix-building-with-python-3.9.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/qt.scm (qtwebkit)[source]: Use it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/databases.scm (postgresql-13): Update to 13.4.
|
|
* gnu/packages/radio.scm (gnuais)[arguments]: Pass '-fcommon' to CFLAGS.
|
|
* gnu/packages/cdrom.scm (cdrkit-libre)[source]: Add snippet to fix
building with gcc-10.
|
|
* gnu/packages/gnuzilla.scm (mozjs-60): Update to 60.2.3-4.
|