gnu: getmail: Deprecate with getmail6.

* gnu/packages/mail.scm (getmail): Mark as deprecated in favor of...
(getmail6): ... this new package.
This commit is contained in:
Maxim Cournoyer 2022-04-29 17:35:33 -04:00
parent 9a550ba8c9
commit 7c443f9158
No known key found for this signature in database
GPG Key ID: 1260E46482E63562

View File

@ -32,7 +32,7 @@
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org> ;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org>
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com> ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2020, 2021 Alexey Abramov <levenson@mmer.org> ;;; Copyright © 2020, 2021 Alexey Abramov <levenson@mmer.org>
;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de> ;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
@ -40,7 +40,6 @@
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com> ;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
;;; Copyright © 2020 divoplade <d@divoplade.fr> ;;; Copyright © 2020 divoplade <d@divoplade.fr>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2021 Benoit Joly <benoit@benoitj.ca> ;;; Copyright © 2021 Benoit Joly <benoit@benoitj.ca>
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
@ -1551,31 +1550,33 @@ minimum information necessary to bring replicas up to date regardless of which
pairs have previously synchronized.") pairs have previously synchronized.")
(license license:gpl2+))) ; with OpenSSL libcrypto exception (license license:gpl2+))) ; with OpenSSL libcrypto exception
(define-public getmail (define-public getmail6
(package (package
(name "getmail") (name "getmail6")
(version "5.16") (version "6.18.6")
(source (source (origin
(origin (method git-fetch)
(method url-fetch) (uri (git-reference
(uri (string-append "https://pyropus.ca/software/getmail/old-versions/" (url "https://github.com/getmail6/getmail6")
"getmail-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 "1yk7lrndbfsrbdxikwzdqvadryqsldalxdn3a184dg4sxzmgis3a")))) (base32
"08a5yw6ll1kmd1ardj8rzhsw4wl48zzdc87g5lh4p5snv8w2m4ja"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments (list #:tests? #f)) ;tests require docker
(list #:tests? #f ; no tests (home-page "https://github.com/getmail6/getmail6")
#:python python-2))
(home-page "https://pyropus.ca/software/getmail/")
(synopsis "Mail retriever") (synopsis "Mail retriever")
(description (description
"A flexible, extensible mail retrieval system with support for "A flexible, extensible mail retrieval system with support for POP3,
POP3, IMAP4, SSL variants of both, maildirs, mboxrd files, external MDAs, IMAP4, SSL variants of both, maildirs, mboxrd files, external MDAs, arbitrary
arbitrary message filtering, single-user and domain-mailboxes, and many other message filtering, single-user and domain-mailboxes, and many other useful
useful features.") features. This is a fork derived from getmali 5.14, aimed at Python 3
compatibility.")
(license license:gpl2+))) ;see docs/COPYING
;; License is specified in file '__init__.py'. (define-public getmail
(license license:gpl2))) (deprecated-package "getmail" getmail6))
(define-public libetpan (define-public libetpan
(package (package