Age | Commit message (Expand) | Author |
2022-06-26 | gnu: python-setuptools-scm: Move to (gnu packages python-build)....* gnu/packages/python-xyz.scm (python-setuptools-scm): Move from here...
* gnu/packages/python-build.scm (python-setuptools-scm): ... to here.
| Maxim Cournoyer |
2022-06-19 | gnu: exim: Remove input labels....* gnu/packages/mail.scm (exim)[inputs]:
Remove input labels.
| Tobias Geerinckx-Rice |
2022-06-19 | gnu: exim: Use G-expressions....* gnu/packages/mail.scm (exim)[arguments]:
Rewrite as G-expressions. Make some surface tweaks to reduce
excessive indentation in places, but again the output is unchanged.
| Tobias Geerinckx-Rice |
2022-06-19 | gnu: exim: Don't address build inputs by their labels....The package's output remains identical.
* gnu/packages/mail.scm (exim)[arguments]: Use SEARCH-INPUT-FILE or
PATCH-SHEBANG in place of ASSOC-REF for all inputs.
| Tobias Geerinckx-Rice |
2022-06-19 | gnu: exim: Hide bogus CVE lint warning....* gnu/packages/mail.scm (exim)[properties]: Add lint-hidden-cve entry
for CVE-2020-28017.
| Tobias Geerinckx-Rice |
2022-06-19 | gnu: exim: Update to 4.96....* gnu/packages/mail.scm (exim): Update to 4.96.
[native-inputs]: Replace pcre:bin with pcre2.
| Tobias Geerinckx-Rice |
2022-06-12 | gnu: fdm: Edit description....* gnu/packages/mail.scm (fdm)[synopsis]: Use @acronym{}.
[description]: Expand based on the README.
| Tobias Geerinckx-Rice |
2022-06-12 | gnu: fdm: Update to 2.1....* gnu/packages/mail.scm (fdm): Update to 2.1.
| Tobias Geerinckx-Rice |
2022-06-17 | gnu: public-inbox: Fixes to allow the testsuite to run...This patch makes the public-inbox testsuite pass. Some tests are skipped,
so the test coverage could likely be increased with more massaging.
Perhaps the most significant change is using tini to run the testsuite so
that the testsuite's sub-processes are reaped. The ‘check’ phase is based on
the one from the mutter package. Thanks to Maxim Cournoyer for pointing out
this solution.
* gnu/packages/patches/public-inbox-fix-spawn-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add new patch.
* gnu/packages/mail.scm (public-inbox)[source]: Add new patch.
[arguments]<#:tests?>: Remove argument.
<#:imported-modules>: Add argument.
<#:modules>: Likewise.
<#:phases>{qualify-paths}: Substitute path for ‘/bin/cp’.
{pre-check}: Don't skip httpd-unix.t test. Remove unnecessary path
substitutions for “env” and “/bin/sh”.
{check}: Replace with custom version that launches the tests under tini.
[native-inputs]: Add tini.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Thiago Jung Bauermann |
2022-06-16 | gnu: getmail6: Update to 6.18.9....* gnu/packages/mail.scm (getmail6): Update to 6.18.9.
[description]: Fix typo.
| Guillaume Le Vaillant |
2022-06-12 | gnu: dovecot: Update to 2.3.19.1....* gnu/packages/mail.scm (dovecot): Update to 2.3.19.1.
| Tobias Geerinckx-Rice |
2022-06-05 | gnu: claws-mail: Update to 4.1.0....* gnu/packages/mail.scm (claws-mail): Update to 4.1.0.
| Tobias Geerinckx-Rice |
2022-06-05 | gnu: alpine: Update to 2.26....* gnu/packages/mail.scm (alpine): Update to 2.26.
[source]: Remove patch.
* gnu/packages/patches/alpine-fix-privacy-policy-crash.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
| Tobias Geerinckx-Rice |
2022-06-05 | gnu: python-notmuch: Remove trailing #t from phase....* gnu/packages/mail.scm (python-notmuch):
[arguments]: Don't explicitly return #t from phase.
| Tobias Geerinckx-Rice |
2022-06-05 | gnu: notmuch: Update to 0.36....* gnu/packages/mail.scm (notmuch): Update to 0.36.
| Tobias Geerinckx-Rice |
2022-06-06 | gnu: mu: Update to 1.6.11....* gnu/packages/mail.scm (mu): Update to 1.6.11.
| Leo Famulari |
2022-06-06 | gnu: Mutt: Update to 2.2.6....* gnu/packages/mail.scm (mutt): Update to 2.2.6.
| Leo Famulari |
2022-06-05 | gnu: sendmail: Remove timestamps....* gnu/packages/mail.scm (sendmail)[arguments]: Add 'remove-build-timestamps
phase.
| Vagrant Cascadian |
2022-06-05 | gnu: mumi: Update to 0.0.1-8.9b28ec7....* gnu/packages/mail.scm (mumi): Update to 0.0.1-8.9b28ec7.
| Ricardo Wurmus |
2022-06-01 | gnu: public-inbox: Update to 1.8.0....Some fixes are needed in both the testsuite and the package itself before
tests can pass so disable them for now.
Also, the lei command needs curl to work, so add it to the PATH in
‘wrap-program’.
* gnu/packages/mail.scm (public-inbox)[version]: Change to 1.8.0.
[source]: Update hash.
[arguments]<#:tests?>: Set to #f.
[arguments]<#:phases>{wrap-programs}: Add curl to PATH.
[inputs]: Add curl and perl-socket-msghdr.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Thiago Jung Bauermann |
2022-06-01 | gnu: public-inbox: Some packaging fixes...The file ‘script/public-inbox-compact’ doesn't call ‘xapian-compact’ directly
anymore, so the substitution in the ‘qualify-paths’ phase doesn't do anything.
Now there's a reference to ‘xapian-compact’ in ‘lib/PublicInbox/Xapcmd.pm’,
so substitute the path there.
And move xapian from native-inputs to inputs and use its input path in the
substitution, since ‘xapian-compact’ is called during normal execution of
public-inbox.
Also add ‘bash-minimal’ to the package's inputs, since it uses ‘wrap-program’.
Finally, take the opportunity to change build phases to not return #t
unconditionally, since that isn't necessary anymore.
* gnu/packages/mail.scm (public-inbox)[arguments]<#:phases>: Don't return #t
from each phase.
{qualify-paths}: Substitute ‘xapian-compact’ path in the correct file. Use
‘search-input-file’ rather than ‘which’ to find it.
[native-inputs]: Move ‘xapian’ from here ...
[inputs]: ... to here. Add ‘bash-minimal’.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Thiago Jung Bauermann |