[packages/pure-ftpd] up to 1.0.54
arekm
arekm at pld-linux.org
Tue Aug 18 08:35:31 CEST 2026
commit a3a233a6e9249ac2c8732fa8e0657a401ac67bfd
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Tue Aug 18 08:30:33 2026 +0200
up to 1.0.54
Drop oob.patch, released upstream.
oob.patch | 23 -----------------------
pure-ftpd.spec | 8 +++-----
2 files changed, 3 insertions(+), 28 deletions(-)
---
diff --git a/pure-ftpd.spec b/pure-ftpd.spec
index dd82856..7032226 100644
--- a/pure-ftpd.spec
+++ b/pure-ftpd.spec
@@ -9,16 +9,16 @@
%bcond_without tls # disable SSL/TLS support
%bcond_without cap # disable capabilities
-%define rel 3
+%define rel 1
Summary: Small, fast and secure FTP server
Summary(pl.UTF-8): Mały, szybki i bezpieczny serwer FTP
Name: pure-ftpd
-Version: 1.0.52
+Version: 1.0.54
Release: %{rel}%{?with_extra:extra}
License: BSD-like%{?with_extra:, GLPv2 for pure-config due to libcfg+ license}
Group: Daemons
Source0: https://download.pureftpd.org/pub/pure-ftpd/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 6fdd75053b7aaa0f45089a7bf7fcd0b4
+# Source0-md5: 190e6c60b79297b531bdc49d5ad91eb8
Source1: %{name}.pamd
Source2: %{name}.init
Source3: %{name}.sysconfig
@@ -36,7 +36,6 @@ Patch5: paths.patch
Patch6: %{name}-apparmor.patch
Patch7: %{name}-mysql-utf8.patch
Patch8: caps.patch
-Patch9: oob.patch
Patch11: keep-spaces.patch
URL: http://www.pureftpd.org/
@@ -119,7 +118,6 @@ Ten pakiet zawiera schemat Pure-FTPd pureftpd.schema dla openldapa.
%patch -P6 -p1
%patch -P7 -p1
%patch -P8 -p1
-%patch -P9 -p1
%patch -P11 -p1
diff --git a/oob.patch b/oob.patch
deleted file mode 100644
index 5ad30e6..0000000
--- a/oob.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-commit 2bbe0f25c6b905044803649a29df5f765f940b91
-Author: Frank Denis <github at pureftpd.org>
-Date: Fri Oct 25 10:20:24 2024 +0200
-
- Fix code similar to the one fixed in 350d66fbbd6
-
- Noticed by @StayPirate, thanks!
-
-diff --git a/src/ls.c b/src/ls.c
-index 9063646..94150ad 100644
---- a/src/ls.c
-+++ b/src/ls.c
-@@ -972,8 +972,8 @@ void donlst(const char *base)
-
- if (*base != 0 && chdir(base) != 0) {
- if (*base++ == '-') {
-- while (!isspace((unsigned char) *base++));
-- while (isspace((unsigned char) *base++));
-+ while (*base != 0 && !isspace((unsigned char) *base++));
-+ while (*base != 0 && isspace((unsigned char) *base++));
- if (*base != 0 && chdir(base) != 0) {
- addreply_noformat(550, MSG_STAT_FAILURE2);
- return;
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/pure-ftpd.git/commitdiff/a3a233a6e9249ac2c8732fa8e0657a401ac67bfd
More information about the pld-cvs-commit
mailing list