pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/aerc



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Mar  4 13:05:28 UTC 2024

Modified Files:
        pkgsrc/mail/aerc: Makefile PLIST distinfo go-modules.mk

Log Message:
mail/aerc: Update to 0.17.0

Improve HOMEPAGE and do some cleanups while here.

Prepared in wip by Kevin Bloom.

Added:
- New flagged criteria for :sort
- New :send-keys command to control embedded terminals
- Account aliases now support fnmatch-style wild cards
- New :suspend command bound to C-z by default
- Disable parent context bindings by declaring them empty
- Toggle folding with :fold -t
- mail-deleted hook that triggers when a message is removed/moved from a
  folder
- mail-added hook that triggers when a message is added to a folder
- Customize key to trigger completion with $complete in binds.conf
- Setting `complete-min-chars=manual` in aerc.conf now disables automatic
  completion, leaving only manually triggered completion
- .ThreadUnread is now available in templates
- Allow binding commands to Alt+<number> keys
- AERC_ACCOUNT and AERC_ADDRESS_BOOK_CMD are now defined in the editor's
  environment when composing a message
- Reply with a different account than the current one with `:reply -A
  <account>`
- New [ui].tab-title-viewer setting to configure the message viewer
  tab title
- The {{.Subject}} template is evaluated to the new option
  [ui].empty-subject if the subject is empty
- Change to a folder of another account with `:cf -a <account> <folder>`
- Patch management with :patch
- Add file path to messages using {{.Filename}}
- :menu command to invoke other ex-commands based on a shell command
  output
- CLI flags to override paths to config files.
- Automatically attach signing key with pgp-attach-key in accounts.conf
- Copy messages across accounts with `:cp -a <account> <folder>`
- Move messages across accounts with `:mv -a <account> <folder>`
- Support the "draft" flag
- Thread arrow prefixes are now fully configurable

Fixed:
- Selection of headers in composer after :compose -e followed by :edit -E.
- Don't lose child messages of non-queried parents in notmuch threads
- Notmuch folders defined by the query `*`

Changed:
- :open and :pipe commands are now executed with `sh -c`.
- Viewer tab title shows (no subject) if there is no subject
- Signature placement is now controlled via {{.Signature}}


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/mail/aerc/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/aerc/PLIST pkgsrc/mail/aerc/distinfo \
    pkgsrc/mail/aerc/go-modules.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/aerc/Makefile
diff -u pkgsrc/mail/aerc/Makefile:1.3 pkgsrc/mail/aerc/Makefile:1.4
--- pkgsrc/mail/aerc/Makefile:1.3       Wed Feb  7 14:50:51 2024
+++ pkgsrc/mail/aerc/Makefile   Mon Mar  4 13:05:28 2024
@@ -1,24 +1,21 @@
-# $NetBSD: Makefile,v 1.3 2024/02/07 14:50:51 bsiegert Exp $
+# $NetBSD: Makefile,v 1.4 2024/03/04 13:05:28 wiz Exp $
 
-DISTNAME=      0.16.0
+DISTNAME=      0.17.0
 PKGNAME=       aerc-${DISTNAME}
-PKGREVISION=   2
 CATEGORIES=    mail
 MASTER_SITES=  https://git.sr.ht/~rjarry/aerc/archive/
 DIST_SUBDIR=   aerc
 
-MAINTAINER=    kevin.bloom%posteo.net@localhost
-HOMEPAGE=      https://git.sr.ht/~rjarry/aerc/archive/
+MAINTAINER=    ktnb%posteo.net@localhost
+HOMEPAGE=      https://git.sr.ht/~rjarry/aerc/
 COMMENT=       Terminal email client written in Go
 LICENSE=       mit
 
-TOOL_DEPENDS+= go118>=1.18.0:../../lang/go118
 TOOL_DEPENDS+= scdoc-[0-9]*:../../textproc/scdoc
 
-WRKSRC=                ${WRKDIR}/aerc-0.16.0
+WRKSRC=                ${WRKDIR}/${PKGNAME_NOREV}
 
 USE_TOOLS+=    gmake
-#MAKE_FILE=    GNUmakefile
 USE_LANGUAGES= c
 
 INSTALL_MAKE_FLAGS+=   PREFIX=${PREFIX:Q}
@@ -28,14 +25,9 @@ RELRO_SUPPORTED=     no
 
 REPLACE_PYTHON+=       contrib/carddav-query
 REPLACE_PYTHON+=       filters/show-ics-details.py
-.include "../../lang/python/application.mk"
 
 GO_BUILD_PATTERN=      .
 
-#pre-build:
-#      cd ${WRKSRC} && ${PKGSRC_SETENV} ${MAKE_ENV}    \
-#          GOPATH=${WRKDIR}/.gopath ${GO} generate ./...
-
 do-build:
        cd ${WRKSRC} && ${PKGSRC_SETENV} ${MAKE_ENV}    \
            GOPATH=${WRKDIR}/.gopath ${GO} build -o aerc
@@ -45,5 +37,6 @@ do-install:
 
 .include "go-modules.mk"
 
+.include "../../lang/python/application.mk"
 .include "../../lang/go/go-module.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/mail/aerc/PLIST
diff -u pkgsrc/mail/aerc/PLIST:1.1 pkgsrc/mail/aerc/PLIST:1.2
--- pkgsrc/mail/aerc/PLIST:1.1  Fri Dec 29 20:58:15 2023
+++ pkgsrc/mail/aerc/PLIST      Mon Mar  4 13:05:28 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2023/12/29 20:58:15 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2024/03/04 13:05:28 wiz Exp $
 bin/aerc
 bin/carddav-query
 libexec/aerc/filters/calendar
@@ -21,6 +21,7 @@ man/man5/aerc-maildir.5
 man/man5/aerc-notmuch.5
 man/man5/aerc-sendmail.5
 man/man5/aerc-smtp.5
+man/man7/aerc-patch.7
 man/man7/aerc-stylesets.7
 man/man7/aerc-templates.7
 man/man7/aerc-tutorial.7
Index: pkgsrc/mail/aerc/distinfo
diff -u pkgsrc/mail/aerc/distinfo:1.1 pkgsrc/mail/aerc/distinfo:1.2
--- pkgsrc/mail/aerc/distinfo:1.1       Fri Dec 29 20:58:15 2023
+++ pkgsrc/mail/aerc/distinfo   Mon Mar  4 13:05:28 2024
@@ -1,26 +1,26 @@
-$NetBSD: distinfo,v 1.1 2023/12/29 20:58:15 wiz Exp $
+$NetBSD: distinfo,v 1.2 2024/03/04 13:05:28 wiz Exp $
 
-BLAKE2s (aerc/0.16.0.tar.gz) = 539121352a852bbde5181815dd85e9672ef3e6fefe50ebc2a3c9a571409a94d6
-SHA512 (aerc/0.16.0.tar.gz) = 8196424915f8f6dc80bad0f936e34b7f51298665af3579ae8c06699a4f1caf962258185a432909911920ec1eb089c9f178c9086c54c0e799a44e1e0dac907fd8
-Size (aerc/0.16.0.tar.gz) = 387833 bytes
+BLAKE2s (aerc/0.17.0.tar.gz) = cd912203ccf58eac5f71f4220557e2703ff11671a5c251a26e904b2476eff218
+SHA512 (aerc/0.17.0.tar.gz) = 6648123c37da36f932825e7caec268765bf285124a4473055b86ac48cfa937a250b03d2404764c2c93a978bb56dc9279550e5bf66aa0ff09f90525c5ead7c062
+Size (aerc/0.17.0.tar.gz) = 419228 bytes
+BLAKE2s (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.mod) = d84c08c70e997cd9810932b7444740fa833662228c75b3e46ddd7bdc4cf23210
+SHA512 (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.mod) = a590eb3ecf9ffe311a21fc7d73cf908d451957927bb8bb214b21ebeae4c8ebf9ac2e0b769b4db2e504737cfc4e3e0c7a448202e4915a7a18bf47f59dcc6285fd
+Size (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.mod) = 232 bytes
+BLAKE2s (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.zip) = cef62bffbc267730691d300581c549cb1a08923240286a2943acbf6beb8258aa
+SHA512 (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.zip) = 151ea31ea0f497b464f53a9b4d531dc2904aef1805c4541a0405289db0ffe1190802788da0f34fc95e79cc83980c2ed96f0db823f2490fe254f945b31f8fa6cb
+Size (aerc/git.sr.ht_~rjarry_go-opt_@v_v1.3.0.zip) = 19615 bytes
 BLAKE2s (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.mod) = a8818f3a333b0544da3f5e7c65153447b6c033cbd8c9c592ea4683c4fea5e129
 SHA512 (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.mod) = 99fe602c36a478fe1468576eda029fa8dfe6f93bb23fa7b3957038be6e474a755975a73bf34700149adbdad44baa394b3acf405dec3cd54ff08e1536360967e4
 Size (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.mod) = 450 bytes
 BLAKE2s (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.zip) = ef915a303c7c9b75b7faf9243f3fe41d0204ff54c24dc701fd1d2f78843f897a
 SHA512 (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.zip) = 62e898c6e224ba8c0499595fdd8ae9e99c2b796565e2462d5f1f7d7c0da89735d80f26783769328106b6eb46aa94dc01d49de48811a6ca74c764b23e4d097bb1
 Size (aerc/git.sr.ht_~rockorager_go-jmap_@v_v0.3.0.zip) = 105054 bytes
-BLAKE2s (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.mod) = 663c4a3a47bc982540e8b4ff4b04b6e97dc20932606fdce33585f712c70d0419
-SHA512 (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.mod) = fdd12151c13bfb4207ca60f31018eec32650db169074d705b7cedd26e723e18214a068ba637aacbbd6a35a23347ad720f80e2af02b874c6546098b28a9d32942
-Size (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.mod) = 386 bytes
-BLAKE2s (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.zip) = 24a08ed3d136844ee586402e5ae5832c08c46a0a14047e53cc5c7bf122d4ac97
-SHA512 (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.zip) = 6efaaf05b7493cc6b5875f780569871891b3dfc461db8faf1301ee4e0dd1985935929d5e6cc7302f445057ad7f89e7a01cf3987609e30109f0f0c2a6caa908c4
-Size (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.8.0.zip) = 134447 bytes
-BLAKE2s (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.mod) = 43ffacc63c1323131041ab2c1135010986433becbdf5ae197ff38576418fe8d5
-SHA512 (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.mod) = c521cf971e4d6882a73b0596d1ab31ad59292672b263a1554ce9e32a57e3c1ecafa8e758b8c9b4efef31a875b74e147cb84f59b0479de2d85184b8d9252a9fbd
-Size (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.mod) = 78 bytes
-BLAKE2s (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.zip) = dce9490e1e04f1c5223463fd4f5796a5cd26058e78f0a4df5f98f8b00f0631f3
-SHA512 (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.zip) = 6311d3242942b6039bb37b6ee66d0785e9b4aa69fa8ef9e57822df459ae7e59e6de17ccd404baa0a2e5e0e3bd642136d07a7dd7a13109459b063fa725a89367a
-Size (aerc/git.sr.ht_~sircmpwn_getopt_@v_v1.0.0.zip) = 14195 bytes
+BLAKE2s (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.mod) = 663c4a3a47bc982540e8b4ff4b04b6e97dc20932606fdce33585f712c70d0419
+SHA512 (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.mod) = fdd12151c13bfb4207ca60f31018eec32650db169074d705b7cedd26e723e18214a068ba637aacbbd6a35a23347ad720f80e2af02b874c6546098b28a9d32942
+Size (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.mod) = 386 bytes
+BLAKE2s (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.zip) = cb641df5ac8a505aeb68cfe01ed9f3005bdb9963ecf431aa240067efacdca595
+SHA512 (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.zip) = 8e6c4572c1b9b452bdc0a77867c2c02243dec45f2eb0ee46927438cef1bea4ae89a83c29c26be85e2bde4dd614a596fbd8ca3d113ae3d5cb1e79f06b6b495f25
+Size (aerc/git.sr.ht_~rockorager_tcell-term_@v_v0.10.0.zip) = 136735 bytes
 BLAKE2s (aerc/github.com__proton_mail_crypto_@v_v0.0.0-20200420072808-71bec3603bf3.mod) = c5cee038b5e431c8f4dd2550f14978d045f241000bd399ff17bb388cd68bc7b1
 SHA512 (aerc/github.com__proton_mail_crypto_@v_v0.0.0-20200420072808-71bec3603bf3.mod) = 
997bd7684ef59d103e132fbd0bb6841d20b621f18ff245100b1f3870343c567d6cc7d12b8c9e8e34a6a9fd615ef4b24778de35b6a7faed9b2633b01384b88925
 Size (aerc/github.com__proton_mail_crypto_@v_v0.0.0-20200420072808-71bec3603bf3.mod) = 155 bytes
@@ -99,12 +99,12 @@ Size (aerc/github.com_emersion_go-imap_@
 BLAKE2s (aerc/github.com_emersion_go-imap_@v_v1.2.1.zip) = 05f1defdc8aa0b1b17a12325e8d607b05af56c6839f153f0ef5a4324e2b7a505
 SHA512 (aerc/github.com_emersion_go-imap_@v_v1.2.1.zip) = b915dc7ba7476b2f28228f760bf4871e73997ab63c8343b77b2f2370bece24bc5c0a6dcecf886de18bac33cb80289b082ba861b9d9f19f9a38b30d944c949051
 Size (aerc/github.com_emersion_go-imap_@v_v1.2.1.zip) = 155667 bytes
-BLAKE2s (aerc/github.com_emersion_go-maildir_@v_v0.3.0.mod) = 316db636f182fbcf1a370f0500e363964fddd2851ab37d4ab684847b9055364b
-SHA512 (aerc/github.com_emersion_go-maildir_@v_v0.3.0.mod) = 007f90e861cfa8eb32f0b344acd3a97dcc85c10176aade304712e92fde1df4727895636ec065db37ef6cc3114a22bd92ccdf6124200675caf36b1a96bd22d290
-Size (aerc/github.com_emersion_go-maildir_@v_v0.3.0.mod) = 47 bytes
-BLAKE2s (aerc/github.com_emersion_go-maildir_@v_v0.3.0.zip) = 343986b1494456c44b0cfb2dcdf24885f81c42e09ab8fb17301d5965eada1cbc
-SHA512 (aerc/github.com_emersion_go-maildir_@v_v0.3.0.zip) = fe98ee162d7ab51b02e17da5a0a20976e49d75ec76a0e255e5b1c548a5ee47d0dba2b8ce7b22cac893c7107923db1a22fe14506d3dff94b6960eadc554209e78
-Size (aerc/github.com_emersion_go-maildir_@v_v0.3.0.zip) = 8258 bytes
+BLAKE2s (aerc/github.com_emersion_go-maildir_@v_v0.4.1.mod) = 23c45b098e847da9cdb4ff1100b08366df481848ba272099fe9ca226ea189801
+SHA512 (aerc/github.com_emersion_go-maildir_@v_v0.4.1.mod) = 915917875e21782f2ea09aeec35b062242a5aa59adf71b09c6f74ac846885cce8b69deb239c77e529caba0f9e38234b85020b548d899afd7193cbef3e658fd2d
+Size (aerc/github.com_emersion_go-maildir_@v_v0.4.1.mod) = 47 bytes
+BLAKE2s (aerc/github.com_emersion_go-maildir_@v_v0.4.1.zip) = 325bf5e25c9303a9e069d234036bb2b34f6f9c4b89e1f72f7466aa127ce34609
+SHA512 (aerc/github.com_emersion_go-maildir_@v_v0.4.1.zip) = 5b351dcb20a186bea730996bc7b2fc14fbbcaf5e0642ef5bff3b8c01bccbc93b897650c617568442cf16a8ef165b41077fab25a256582f753ab443966496b7c0
+Size (aerc/github.com_emersion_go-maildir_@v_v0.4.1.zip) = 10243 bytes
 BLAKE2s (aerc/github.com_emersion_go-mbox_@v_v1.0.3.mod) = c200f27555dc91323073cd1e97f77fc7690bc2cdf081c67dc0724e440788a602
 SHA512 (aerc/github.com_emersion_go-mbox_@v_v1.0.3.mod) = 3859b4908ef8189d43e966f32adbb4a6421aefaae7e858e77984a01686a444d71e766db42b9284496ee8b222143ea0f48bd16b09d020d03c1c21057b9dba259b
 Size (aerc/github.com_emersion_go-mbox_@v_v1.0.3.mod) = 44 bytes
@@ -246,12 +246,6 @@ Size (aerc/github.com_golang_snappy_@v_v
 BLAKE2s (aerc/github.com_google_go-cmp_@v_v0.5.5.mod) = 54befdbebc1a7ed8c2f5de2cc688fab3ab3337a212c5f36bde6d427830820200
 SHA512 (aerc/github.com_google_go-cmp_@v_v0.5.5.mod) = cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713
 Size (aerc/github.com_google_go-cmp_@v_v0.5.5.mod) = 105 bytes
-BLAKE2s (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.mod) = cd2155833aea8a3d072dc083d22ae0b3fcb4f86fad731dd5589b321d31d5a7fa
-SHA512 (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.mod) = 
33a53fe7874517289a9eb9d87b62060ab4827159300acb6f933018b30fc56e3356ec3d33ee64e452137cc6c892a0c6eddeb7e6bd383be8972407c6e7568f94fa
-Size (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.mod) = 40 bytes
-BLAKE2s (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.zip) = 3e5a6a0d4f82d4e992d9b960b1f015fd1b39b4b9ba66d0fe8e1d8600a4ab4adf
-SHA512 (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.zip) = 
74bf278d42859148df97c1fdefcbe962ebc583e3c567157b4e17721fd4cef5db7d24c9a76fb32a3d827e6bce6ba761181d9a2d1eca804b59f3cb792a30198906
-Size (aerc/github.com_google_shlex_@v_v0.0.0-20191202100458-e7afc7fbc510.zip) = 8977 bytes
 BLAKE2s (aerc/github.com_hpcloud_tail_@v_v1.0.0.mod) = 1ee5741889f5afb54b27b91241470647d1baf1e0aa7aa2571dfb9a9543f72375
 SHA512 (aerc/github.com_hpcloud_tail_@v_v1.0.0.mod) = 54a5bbc02b82693a977a4f690314b16d94cf071decddee3a4af2a90398e626ff188bc34ab3517278e7aac4e657f3f3070a020c85274be3750371dfdeee139b23
 Size (aerc/github.com_hpcloud_tail_@v_v1.0.0.mod) = 31 bytes
@@ -414,9 +408,12 @@ Size (aerc/github.com_stretchr_testify_@
 BLAKE2s (aerc/github.com_stretchr_testify_@v_v1.8.2.mod) = 9cba4c7e673fa366fcec4603d67030a0a278ca58afe2c8e4d74de88ed9d89dd8
 SHA512 (aerc/github.com_stretchr_testify_@v_v1.8.2.mod) = 0fe9325c142599f577ef2f281f09dce40b431b21bf32834e30fba68ae8896c0fdee66e93fa64ede86e326ec9d74a639233fe813f701387cacd27d19814c31351
 Size (aerc/github.com_stretchr_testify_@v_v1.8.2.mod) = 188 bytes
-BLAKE2s (aerc/github.com_stretchr_testify_@v_v1.8.2.zip) = 4efc34406fedc5b5d32393f2e0b3b9cc8e3c3f0a298fdc8e5d84100a246bb9a5
-SHA512 (aerc/github.com_stretchr_testify_@v_v1.8.2.zip) = eaa6456c46c1d9518e0f047606c5e74842ce189e7c07cb7e73eea393482d339f0c82f4d19769470250509bc7810ace36ab24d78145ad1da261db5497ba9166f9
-Size (aerc/github.com_stretchr_testify_@v_v1.8.2.zip) = 114188 bytes
+BLAKE2s (aerc/github.com_stretchr_testify_@v_v1.8.4.mod) = 9cb979f9a53faf1fe49a3cd34a458afe917803f872507c727f8e1f8210726e1c
+SHA512 (aerc/github.com_stretchr_testify_@v_v1.8.4.mod) = 10c923ac832f54ecd370cd7441f56561b9adf0bb05858605f3515759cef29383cda816f2d3fe7ef004f51b428afa4a19163a619f7dc2aa30f7177636d7c8d175
+Size (aerc/github.com_stretchr_testify_@v_v1.8.4.mod) = 188 bytes
+BLAKE2s (aerc/github.com_stretchr_testify_@v_v1.8.4.zip) = 9dd97309e320a0041d37fc0f5decf607f80278cbd912255e0106a71f5b71db22
+SHA512 (aerc/github.com_stretchr_testify_@v_v1.8.4.zip) = add4fc4cd5c88b97f3693e2c775ca9bc6a2c296b348230ee9cca0c3caf031b77442d49818639fc9c24a3a434a94c905a11ee43955acff115edf0b787d322ada2
+Size (aerc/github.com_stretchr_testify_@v_v1.8.4.zip) = 120537 bytes
 BLAKE2s (aerc/github.com_syndtr_goleveldb_@v_v1.0.0.mod) = 850fd64b8cf91b48f19d1f00a0070560cfe468050a3b31853c6c7aa1f20f2790
 SHA512 (aerc/github.com_syndtr_goleveldb_@v_v1.0.0.mod) = ab5490498bd7094429cd5ad92115675715f8d70493b8a322bd816a87952d922350c64d3d2703543fa7f36368c901a5ca6bcff5d79d023b518f134b2e21787631
 Size (aerc/github.com_syndtr_goleveldb_@v_v1.0.0.mod) = 207 bytes
@@ -438,6 +435,9 @@ Size (aerc/golang.org_x_mod_@v_v0.6.0-de
 BLAKE2s (aerc/golang.org_x_mod_@v_v0.8.0.mod) = 46afeec3ff404db0c277f2327c09392ff6412842beaa74cc9cf91bb5a9210d96
 SHA512 (aerc/golang.org_x_mod_@v_v0.8.0.mod) = 76e9bc61587af5cca8e4b230f0f7e723e790d1c9d637e9db1e29d9ef49e0315ce611e3b94a2dee4ec7e1e672a3422dad4dec6efc9959eca6805fde6b7633ab83
 Size (aerc/golang.org_x_mod_@v_v0.8.0.mod) = 84 bytes
+BLAKE2s (aerc/golang.org_x_mod_@v_v0.8.0.zip) = 37dec90a0ceed819d1026f6e7ee4d4df1b0816b41ac818f5493f997edf3834cf
+SHA512 (aerc/golang.org_x_mod_@v_v0.8.0.zip) = 7ffea489afb92065fa82a81cd1bf73ae3a35593c8800e28118ab80c34289a02d614844e9b6e747d67354363a3b1134a2c5de05cc03bcb5afe404e924659f6dec
+Size (aerc/golang.org_x_mod_@v_v0.8.0.zip) = 161670 bytes
 BLAKE2s (aerc/golang.org_x_net_@v_v0.0.0-20180906233101-161cd47e91fd.mod) = 06a3da5cceea928b7c378db1959b5a336bc8af368619c53d1c102c72f30d4643
 SHA512 (aerc/golang.org_x_net_@v_v0.0.0-20180906233101-161cd47e91fd.mod) = 
d7446d3dd844b97512470f7ff05fce72d099f7800396e2738a54d41796f0f76be07e7aea1f638fee0190c7d8ce65eefc54eebe6917a06d14da04d0c9c8f9891a
 Size (aerc/golang.org_x_net_@v_v0.0.0-20180906233101-161cd47e91fd.mod) = 24 bytes
Index: pkgsrc/mail/aerc/go-modules.mk
diff -u pkgsrc/mail/aerc/go-modules.mk:1.1 pkgsrc/mail/aerc/go-modules.mk:1.2
--- pkgsrc/mail/aerc/go-modules.mk:1.1  Fri Dec 29 20:58:15 2023
+++ pkgsrc/mail/aerc/go-modules.mk      Mon Mar  4 13:05:28 2024
@@ -1,11 +1,11 @@
-# $NetBSD: go-modules.mk,v 1.1 2023/12/29 20:58:15 wiz Exp $
+# $NetBSD: go-modules.mk,v 1.2 2024/03/04 13:05:28 wiz Exp $
 
+GO_MODULE_FILES+=      git.sr.ht/~rjarry/go-opt/@v/v1.3.0.mod
+GO_MODULE_FILES+=      git.sr.ht/~rjarry/go-opt/@v/v1.3.0.zip
 GO_MODULE_FILES+=      git.sr.ht/~rockorager/go-jmap/@v/v0.3.0.mod
 GO_MODULE_FILES+=      git.sr.ht/~rockorager/go-jmap/@v/v0.3.0.zip
-GO_MODULE_FILES+=      git.sr.ht/~rockorager/tcell-term/@v/v0.8.0.mod
-GO_MODULE_FILES+=      git.sr.ht/~rockorager/tcell-term/@v/v0.8.0.zip
-GO_MODULE_FILES+=      git.sr.ht/~sircmpwn/getopt/@v/v1.0.0.mod
-GO_MODULE_FILES+=      git.sr.ht/~sircmpwn/getopt/@v/v1.0.0.zip
+GO_MODULE_FILES+=      git.sr.ht/~rockorager/tcell-term/@v/v0.10.0.mod
+GO_MODULE_FILES+=      git.sr.ht/~rockorager/tcell-term/@v/v0.10.0.zip
 GO_MODULE_FILES+=      github.com/!proton!mail/crypto/@v/v0.0.0-20200420072808-71bec3603bf3.mod
 GO_MODULE_FILES+=      github.com/!proton!mail/crypto/@v/v0.0.0-20200420072808-71bec3603bf3.zip
 GO_MODULE_FILES+=      github.com/!proton!mail/go-crypto/@v/v0.0.0-20211112122917-428f8eabeeb3.mod
@@ -32,8 +32,8 @@ GO_MODULE_FILES+=     github.com/emersion/go
 GO_MODULE_FILES+=      github.com/emersion/go-imap/@v/v1.0.5.mod
 GO_MODULE_FILES+=      github.com/emersion/go-imap/@v/v1.2.1.mod
 GO_MODULE_FILES+=      github.com/emersion/go-imap/@v/v1.2.1.zip
-GO_MODULE_FILES+=      github.com/emersion/go-maildir/@v/v0.3.0.mod
-GO_MODULE_FILES+=      github.com/emersion/go-maildir/@v/v0.3.0.zip
+GO_MODULE_FILES+=      github.com/emersion/go-maildir/@v/v0.4.1.mod
+GO_MODULE_FILES+=      github.com/emersion/go-maildir/@v/v0.4.1.zip
 GO_MODULE_FILES+=      github.com/emersion/go-mbox/@v/v1.0.3.mod
 GO_MODULE_FILES+=      github.com/emersion/go-mbox/@v/v1.0.3.zip
 GO_MODULE_FILES+=      github.com/emersion/go-message/@v/v0.11.1.mod
@@ -81,8 +81,6 @@ GO_MODULE_FILES+=     github.com/golang/snap
 GO_MODULE_FILES+=      github.com/golang/snappy/@v/v0.0.4.mod
 GO_MODULE_FILES+=      github.com/golang/snappy/@v/v0.0.4.zip
 GO_MODULE_FILES+=      github.com/google/go-cmp/@v/v0.5.5.mod
-GO_MODULE_FILES+=      github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.mod
-GO_MODULE_FILES+=      github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.zip
 GO_MODULE_FILES+=      github.com/hpcloud/tail/@v/v1.0.0.mod
 GO_MODULE_FILES+=      github.com/jaytaylor/html2text/@v/v0.0.0-20200412013138-3577fbdbcff7.mod
 GO_MODULE_FILES+=      github.com/jaytaylor/html2text/@v/v0.0.0-20211105163654-bc68cce691ba.mod
@@ -137,7 +135,8 @@ GO_MODULE_FILES+=   github.com/stretchr/te
 GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.7.1.mod
 GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.8.0.mod
 GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.8.2.mod
-GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.8.2.zip
+GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.8.4.mod
+GO_MODULE_FILES+=      github.com/stretchr/testify/@v/v1.8.4.zip
 GO_MODULE_FILES+=      github.com/syndtr/goleveldb/@v/v1.0.0.mod
 GO_MODULE_FILES+=      github.com/syndtr/goleveldb/@v/v1.0.0.zip
 GO_MODULE_FILES+=      github.com/xo/terminfo/@v/v0.0.0-20220910002029-abceb7e1c41e.mod
@@ -145,6 +144,7 @@ GO_MODULE_FILES+=   github.com/xo/terminfo
 GO_MODULE_FILES+=      github.com/yuin/goldmark/@v/v1.4.13.mod
 GO_MODULE_FILES+=      golang.org/x/mod/@v/v0.6.0-dev.0.20220419223038-86c51ed26bb4.mod
 GO_MODULE_FILES+=      golang.org/x/mod/@v/v0.8.0.mod
+GO_MODULE_FILES+=      golang.org/x/mod/@v/v0.8.0.zip
 GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod
 GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod
 GO_MODULE_FILES+=      golang.org/x/net/@v/v0.0.0-20190603091049-60506f45cf65.mod



Home | Main Index | Thread Index | Old Index