aboutsummaryrefslogtreecommitdiffstats
path: root/main/postfix
diff options
context:
space:
mode:
authorAndy Postnikov <apostnikov@gmail.com>2018-02-23 02:15:09 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-02-23 15:20:13 +0100
commit65c7f6603b530a76bb41d387dee640d3ba9c5f6c (patch)
tree39782dad761dd484cd82d555b8f192777d9bf5ff /main/postfix
parentb134408ecff071aa79926f33a22028d73de69394 (diff)
main/postfix: upgrade to 3.3.0
Diffstat (limited to 'main/postfix')
-rw-r--r--main/postfix/APKBUILD6
-rw-r--r--main/postfix/no-glibc.patch11
2 files changed, 2 insertions, 15 deletions
diff --git a/main/postfix/APKBUILD b/main/postfix/APKBUILD
index cc1e6a8c503..2b02e34c1d0 100644
--- a/main/postfix/APKBUILD
+++ b/main/postfix/APKBUILD
@@ -2,7 +2,7 @@
# Contributor: Ɓukasz Jendrysik <scadu@yandex.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=postfix
-pkgver=3.2.5
+pkgver=3.3.0
pkgrel=0
pkgdesc="Secure and fast drop-in replacement for Sendmail (MTA)"
url="http://www.postfix.org/"
@@ -19,7 +19,6 @@ pkgusers="postfix"
pkggroups="postfix postdrop"
source="ftp://ftp.porcupine.org/mirrors/${pkgname}-release/official/${pkgname}-${pkgver}.tar.gz
$pkgname.initd
- no-glibc.patch
postfix-install.patch
libressl.patch
"
@@ -164,8 +163,7 @@ stone() {
find src/smtpstone -mindepth 1 -perm 0755 -exec cp {} "$subpkgdir"/usr/bin \;
}
-sha512sums="ffd07e8664d41a5c40b7f3f7511a4c4cc57310d103395b12f2f7e9499d1f901768d6ebb1d5d1588d6fdb834ad2548a9df6d925ff3d7f74d74764a6f6f550ecb6 postfix-3.2.5.tar.gz
+sha512sums="14f52fc47d6bbafefc7452ffbac4c4fb837d30181705486e8e43d6ca9003d218a01755ed4cb86413464c2585b9b84c2adcfef4933326b5d7446fe6c39b6cae8e postfix-3.3.0.tar.gz
2752e69c4e1857bdcf29444ffb458bca818bc60b9c77c20823c5f5b87c36cb5e0f3217a625a7fe5788d5bfcef7570a1f2149e1233fcd23ccf7ee14190aff47a2 postfix.initd
-cf9ef0d07e54011107da57e2855cbda10047c100047e2cc2fdede072ace1fc6c060a6b1cfc8c277417a28a23ecd3c6ffdc061da1673e8f61d2ed11899f1efb25 no-glibc.patch
25cd34f23ca909d4e33aaf3239d1e397260abc7796d9a4456dee4f005682fd3a58aab8106126e5218c95bdddae415a3ef7e2223cd3b0d7b1e2bd76158bb7eaf8 postfix-install.patch
7d43dc0d4e44bb3c62b28b4c6dfb9dc49e4d95e948a27e309dc7d7ea6b7fe844f433d908fe87d0fee3e236a32b2e94d37804dba2a4d17cf0c44ab3a8c2d44e62 libressl.patch"
diff --git a/main/postfix/no-glibc.patch b/main/postfix/no-glibc.patch
deleted file mode 100644
index 59ea01468b6..00000000000
--- a/main/postfix/no-glibc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./src/util/sys_defs.h.orig
-+++ ./src/util/sys_defs.h
-@@ -812,7 +812,7 @@
- #define KERNEL_VERSION(a,b,c) (LINUX_VERSION_CODE + 1)
- #endif
- #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)) \
-- || (__GLIBC__ < 2)
-+ || (defined(__GLIBC__) && (__GLIBC__ < 2))
- #define CANT_USE_SEND_RECV_MSG
- #define DEF_SMTP_CACHE_DEMAND 0
- #else