Age | Commit message (Expand) | Author |
2020-10-23 | doc: Fix typo in HACKING....* HACKING (Contributing): s/informations/information/.
| Maxim Cournoyer |
2020-01-09 | doc: Move "Commit Access" section from 'HACKING' to the manual....* HACKING (Commit Access): Remove.
(Contributing): Update URL of the manual.
* doc/contributing.texi (Commit Access): New section.
(Submitting Patches): Add cross reference.
| Ludovic Courtès |
2020-01-09 | doc: Add "Tracking Bugs and Patches" section....* doc/contributing.texi (Tracking Bugs and Patches): New section.
(Submitting Patches): Refer to it.
* doc/guix.texi: Update copyright line.
* HACKING (Using emacs-debbugs): Remove.
| Ludovic Courtès |
2019-07-13 | doc: Update keyserver URL....* HACKING (Commit Access): Change keyserver URL to 'keys.openpgp.org'.
| Leo Famulari |
hain
with a call to the 'make-avr-toolchain' procedure.
Series-changes: 2
- Use mlambda for procedures
- Fix ((make-avr-toolchain)) typo
Maxim Cournoyer |
2023-09-17 | gnu: Remove extraneous imports....Found by running 'guild compile -W3 gnu/packages/$module.scm', using guild
from the upcoming Guile.
* gnu/packages/admin.scm: Remove extraneous imports.
* gnu/packages/avr.scm: Likewise.
* gnu/packages/base.scm: Likewise.
* gnu/packages/bootloaders.scm: Likewise.
* gnu/packages/firmware.scm: Likewise.
* gnu/packages/linphone.scm: Likewise.
* gnu/packages/telephony.scm: Likewise.
* gnu/packages/cran.scm: Likewise.
* gnu/packages/kde.scm: Likewise.
* gnu/packages/libcanberra.scm: Likewise.
* gnu/packages/libreoffice.scm: Likewise.
* gnu/packages/mes.scm: Likewise.
* gnu/packages/mingw.scm: Likewise.
* gnu/packages/serialization.scm: Likewise.
* gnu/packages/sync.scm: Likewise.
* gnu/packages/syncthing.scm: Likewise.
* gnu/packages/terminals.scm: Likewise.
* gnu/packages/version-control.scm: Likewise.
* gnu/packages/video.scm: Likewise.
* gnu/packages/wm.scm: Likewise.
* gnu/packages/emulators.scm: Likewise.
Reviewed-by: Ludovic Courtès <ludo@gnu.org>
| Maxim Cournoyer |
2023-09-03 | gnu: avr-gcc: Avoid referencing gcc from the top level....Fixes <https://issues.guix.gnu.org/65716>.
* gnu/packages/avr.scm (avr-gcc): Do not explicitly refer to 'gcc'. The
default value of the argument uses the identifier-syntax trick to delay
evaluation of gcc.
| Maxim Cournoyer |
2023-04-06 | gnu: avr-gcc: Use G-expression....This is necessary because the GCC package uses G-expressions, so any
inheriting package that modifies build phases must also use them.
* gnu/packages/avr.scm (avr-gcc)[arguments]: Replace quasiquoting with
G-expression; remove trailing #T from build phases.
| Ricardo Wurmus |