1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Remove opensmtpd-extras.

* gnu/packages/mail.scm (opensmtpd-extras): Delete variable.

Fixes: guix/guix#3864
Change-Id: Ic909c437da838bb72658cb8b45d2179536ca5b79
This commit is contained in:
Andreas Enge
2025-11-26 09:50:13 +01:00
parent e9c4dc10bf
commit 8f7ba9697b

View File

@@ -3499,67 +3499,6 @@ to esoteric or niche requirements.")
(license:non-copyleft "file://COPYING")
license:public-domain license:isc license:openssl))))
(define-public opensmtpd-extras
(package
(name "opensmtpd-extras")
(version "6.7.1")
(source (origin
(method url-fetch)
(uri (string-append "https://www.opensmtpd.org/archives/"
"opensmtpd-extras-" version ".tar.gz"))
(sha256
(base32
"1b1mx71bvmv92lbm08wr2p60g3qhikvv3n15zsr6dcwbk9aqahzq"))))
(build-system gnu-build-system)
(native-inputs
(list pkg-config))
(inputs
`(("libressl" ,libressl)
("libevent" ,libevent)
("libxcrypt" ,libxcrypt) ;required by Python.h
("mysql" ,mariadb "dev")
("opensmtpd" ,opensmtpd)
("postgresql" ,postgresql)
("python" ,python-2)
("sqlite" ,sqlite)))
(arguments
`(#:configure-flags
(list "--sysconfdir=/etc"
"--localstatedir=/var"
"--with-queue-null"
"--with-queue-python"
"--with-queue-ram"
"--with-queue-stub"
"--with-table-ldap"
"--with-table-mysql"
"--with-table-postgres"
;; "--with-table-redis" ; TODO: package hiredis
"--with-table-socketmap"
"--with-table-passwd"
"--with-table-python"
"--with-table-sqlite"
"--with-table-stub"
"--with-scheduler-ram"
"--with-scheduler-stub"
"--with-scheduler-python"
"--with-user-smtpd=smtpd"
;; We have to configure it like this because the default checks for
;; for example Python in /usr/{,local/}bin and fails otherwise.
(string-append "--with-python="
(assoc-ref %build-inputs "python")))))
(home-page "https://www.opensmtpd.org")
(synopsis "Extra tables, filters, and various other addons for OpenSMTPD")
(description
"This package provides extra tables, filters, and various other addons
for OpenSMTPD to extend its functionality.")
(license (list license:bsd-2 license:bsd-3 ; openbsd-compat
license:isc)))) ; everything else
(define-public libopensmtpd
;; Private source dependency of opensmtpd-filter-dkimsign (by the same
;; author), until any project actually uses it in its compiled form.