1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
# Maintainer: Chris Severance aur.severach AatT spamgourmet.com
# Contributor: Miguel Revilla <yo@miguelrevilla.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
#_opt_OpenSSL='-1.1'
_opt_OpenSSL=''
set -u
pkgname='proftpd'
#pkgname+='-git'
pkgver=1.3.8c
# 0.0.0a to 0.0.0b are not seen as updates by some AUR helpers and pacman vercmp. We increase pkgrel with this kind of version change (too bad, this would work if they were equal, but they aren't. -# has no effect)
pkgrel=4
epoch='2'
pkgdesc='High-performance, scalable FTP SSL TLS and SFTP server'
arch=('x86_64' 'i686')
url='http://www.proftpd.org/'
license=('GPL')
if [[ "${pkgver}" =~ ^([.0-9]+)([a-z])$ ]]; then
_pkgvercmp="${BASH_REMATCH[1]}.${BASH_REMATCH[2]}" # we promote 1.3.8c -> 1.3.8.c to vercmp greater than 1.3.8
else
_pkgvercmp="${pkgver}" # We don't modify 1.3.8rc1 to vercmp less than 1.3.8
fi
if [ "$(vercmp "${_pkgvercmp}" "1.3.8")" -lt 0 ]; then
_opt_OpenSSL='-1.1'
fi
depends=('mariadb-libs' 'postgresql-libs' 'libcap' 'pam' 'hiredis')
depends+=('libsodium' 'acl' 'perl' 'zlib' 'libxcrypt' 'libldap' 'ncurses' 'glibc' "openssl${_opt_OpenSSL}")
backup=(
'etc/proftpd.conf'
'etc/dhparams.pem' # moduli
'etc/blacklist.dat'
)
options=('!emptydirs')
source=(
"ftp://ftp.proftpd.org/distrib/source/${pkgname}-${pkgver}.tar.gz"
'proftpd.logrotate'
'proftpd.service'
'proftpd.tmpfiles'
)
md5sums=('790e3d6221eb5a195dde6da5e4f17dff'
'4d7a3eedc1852d4fa9faafc072fb8320'
'f7e0c3a402a845ba8d546b2801f77ed2'
'907b149a120b046f05647c73502e23c9')
sha256sums=('2a48f2ca338456e750d2373bf671025ed799e04e0baa16c7bb8dbfd67d8734d2'
'eaacf8df09c3d267cb08e962910af9cab50d1d5b007b232eb79b5240d8c5a721'
'3a4558773ed747ab66b51551b6fc1732148e30908edc010f00a5e8675c817e64'
'359cb8f5b30e66627929f7c50cbdd7dcc6919f7261f36eb617045210caf90abb')
_cherries=(
#CHERRIES
)
_srcdir="${pkgname}-${pkgver}"
if [ "${pkgname%-git}" != "${pkgname}" ]; then
source[0]='git+https://github.com/proftpd/proftpd.git'
md5sums[0]='SKIP'
sha256sums[0]='SKIP'
_srcdir="${pkgname%-git}"
makedepends+=('git')
provides=("${pkgname%-git}=${pkgver%%.r*}")
conflicts=("${pkgname%-git}")
unset epoch
pkgver() {
set -u
cd "${_srcdir}"
git describe --long --tags | sed -E -e 's:([^-]*-g):r\1:' -e 's:-:.:g' -e 's:^v::g'
set +u
}
fi
#true && pkgver="${_pkgvercmp}" # Let's see if Repology paints this dotted version in black (bogus)
if [[ "${pkgver}" =~ ^[.0-9]+$ ]]; then
pkgver+='A' # we promote 1.3.8 -> 1.3.8A to vercmp more than 1.3.7c and less than than 1.3.8a
fi
prepare() {
set -u
cd "${_srcdir}"
local _f
shopt -s nullglob
for _f in "${startdir}"/*.localpatch; do
set +u; msg2 "Patch ${_f}"; set -u
patch -Nup1 -i "${_f}"
done
shopt -u nullglob
sed -E -e '/^#define SFTP_DH_PREF_MIN_LEN/ s:2048:3072:g' -i 'contrib/mod_sftp/kex.c' # update group-exchange to modern standards
local _allcrypto=(
-e '/ciphers\[\] =/,/^}/ s:,\s*FALSE\s*,:,/* patched */TRUE,:'
-e '/digests\[\] =/,/^}/ s:,\s*FALSE\s*,:,/* patched */TRUE,:'
)
#sed -E "${_allcrypto[@]}" -i 'contrib/mod_sftp/crypto.c'
local _cherry
for _cherry in "${_cherries[@]}"; do
set +u; msg2 "Cherry-pick ${_cherry}"; set -u
git cherry-pick -n "${_cherry}"
done
set +u
}
_configure() {
set -u
cd "${_srcdir}"
#CFLAGS="${CFLAGS/-march=x86-64/-march=native}"
#CXXFLAGS="${CXXFLAGS/-march=x86-64/-march=native}"
if [ "$(vercmp "${_pkgvercmp}" '1.3.7')" -lt 0 ]; then
CFLAGS+=' -fcommon'
fi
#CFLAGS+=' -fno-strict-aliasing'
CFLAGS+=' -DOPENSSL_NO_DSA'
local _modules=(
'mod_digest'
'mod_dynmasq'
'mod_facl'
'mod_quotatab'
'mod_quotatab_file'
'mod_sftp'
'mod_tls'
'mod_tls_shmcache'
)
if [ -z "${_opt_OpenSSL}" ]; then
_modules+=( # these link to latest OpenSSL so cannot be used if using an old version
'mod_quotatab_sql'
'mod_sql'
'mod_sql_passwd'
'mod_ldap'
'mod_sql_mysql'
'mod_sql_postgres'
)
fi
_modules+=('mod_ifsession') # must be last
local _m="$(printf '%s:' "${_modules[@]}")"
local _conf=(
--prefix='/usr'
--sbindir='/usr/bin'
--libexecdir='/usr/lib'
--sysconfdir='/etc'
--localstatedir='/run/proftpd'
--enable-ctrls
--enable-facl
--enable-ipv6
--enable-nls
--disable-pam
--enable-redis
--with-includes='/usr/include/mysql:/usr/include/postgresql'
--with-libraries='/usr/lib/mysql:/usr/lib/postgresql'
--with-modules="${_m%:}"
--with-systemd
#CC=gcc-9 CXX=g++-9
)
if [ ! -z "${_opt_OpenSSL}" ]; then
_conf+=(--with-openssl-cmdline="/usr/bin/openssl${_opt_OpenSSL}")
#LIBS+=" -lopenssl${_opt_OpenSSL}"
LDFLAGS+=" -L/usr/lib/openssl${_opt_OpenSSL}"
CPPFLAGS+=" -I/usr/include/openssl${_opt_OpenSSL}"
fi
./configure "${_conf[@]}"
cd "${srcdir}"
set +u
}
build() {
_configure
set -u
cd "${_srcdir}"
make -s
set +u
}
package() {
set -u
cd "${_srcdir}"
make -s -j1 DESTDIR="${pkgdir}" install
sed -e 's|nogroup|nobody|g' -i "${pkgdir}/etc/proftpd.conf"
install -Dpm644 '../proftpd.logrotate' "${pkgdir}/etc/logrotate.d/proftpd"
install -Dpm755 'contrib/xferstats.holger-preiss' "${pkgdir}/usr/bin/ftpstats"
install -Dpm644 '../proftpd.service' -t "${pkgdir}/usr/lib/systemd/system/"
install -Dpm644 '../proftpd.tmpfiles' "${pkgdir}/usr/lib/tmpfiles.d/proftpd.conf"
# /run is tmpfs
rmdir "${pkgdir}"/run/{proftpd,}
set +u
}
set +u
|