Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
@ -1 +0,0 @@
|
|||||||
815541a33bf02a43b5b41194389b8435e7890935 SOURCES/netkit-ftp-0.17.tar.gz
|
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/netkit-ftp-0.17.tar.gz
|
netkit-ftp-0.17.tar.bz2
|
||||||
|
netkit-ftp-0.17.tar.gz
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
Summary: The standard UNIX FTP (File Transfer Protocol) client
|
Summary: The standard UNIX FTP (File Transfer Protocol) client
|
||||||
Name: ftp
|
Name: ftp
|
||||||
Version: 0.17
|
Version: 0.17
|
||||||
Release: 78%{?dist}
|
Release: 97%{?dist}
|
||||||
License: BSD with advertising
|
License: BSD-4-Clause-UC
|
||||||
Group: Applications/Internet
|
|
||||||
Source0: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-ftp-%{version}.tar.gz
|
Source0: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-ftp-%{version}.tar.gz
|
||||||
URL: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
|
URL: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit
|
||||||
Patch1: netkit-ftp-0.17-pre20000412.pasv-security.patch
|
Patch1: netkit-ftp-0.17-pre20000412.pasv-security.patch
|
||||||
@ -40,11 +39,12 @@ Patch31: netkit-ftp-0.17-commands-leaks.patch
|
|||||||
Patch32: netkit-ftp-0.17-lsn-timeout.patch
|
Patch32: netkit-ftp-0.17-lsn-timeout.patch
|
||||||
Patch33: netkit-ftp-0.17-getlogin.patch
|
Patch33: netkit-ftp-0.17-getlogin.patch
|
||||||
Patch34: netkit-ftp-0.17-token.patch
|
Patch34: netkit-ftp-0.17-token.patch
|
||||||
Patch35: netkit-ftp-0.17-out-of-memory.patch
|
Patch35: netkit-ftp-0.17-linelen-segfault.patch
|
||||||
Patch36: netkit-ftp-0.17-makeargv-linelen.patch
|
Patch36: netkit-ftp-0.17-out-of-memory.patch
|
||||||
|
|
||||||
BuildRequires: glibc-devel, readline-devel, ncurses-devel
|
BuildRequires: glibc-devel, readline-devel, ncurses-devel
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter, gcc
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The ftp package provides the standard UNIX command-line FTP (File
|
The ftp package provides the standard UNIX command-line FTP (File
|
||||||
@ -90,11 +90,11 @@ file transfers.
|
|||||||
%patch32 -p1 -b .lsn-timeout
|
%patch32 -p1 -b .lsn-timeout
|
||||||
%patch33 -p1 -b .getlogin
|
%patch33 -p1 -b .getlogin
|
||||||
%patch34 -p1 -b .token
|
%patch34 -p1 -b .token
|
||||||
%patch35 -p1 -b .out-of-memory
|
%patch35 -p1 -b .linelen-segfault
|
||||||
%patch36 -p1 -b .makeargv
|
%patch36 -p1 -b .out-of-memory
|
||||||
|
|
||||||
%build
|
%build
|
||||||
sh configure --with-c-compiler=gcc --enable-ipv6
|
sh configure --with-c-compiler=%{__cc} --enable-ipv6
|
||||||
perl -pi -e '
|
perl -pi -e '
|
||||||
s,^CC=.*$,CC=cc,;
|
s,^CC=.*$,CC=cc,;
|
||||||
s,-O2,\$(RPM_OPT_FLAGS) -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64,;
|
s,-O2,\$(RPM_OPT_FLAGS) -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64,;
|
||||||
@ -104,7 +104,7 @@ perl -pi -e '
|
|||||||
s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
|
s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
|
||||||
' MCONFIG
|
' MCONFIG
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
|
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
|
||||||
@ -121,15 +121,74 @@ make INSTALLROOT=${RPM_BUILD_ROOT} install
|
|||||||
%{_mandir}/man5/netrc.*
|
%{_mandir}/man5/netrc.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Dec 11 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-78
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 0.17-97
|
||||||
- Resolves: #1657821 - netkit ftp client buffer overflow in makeargv
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
* Tue Nov 13 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-77
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.17-96
|
||||||
- Resolves: #1645120 - ftp put failed with 'ftp: Out of memory' when stacksize set to unlimited
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
* Fri Aug 31 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-76
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-95
|
||||||
- Resolves: #1624112 - Review annocheck distro flag failures in ftp
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
- Fixed bogus dates in log
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-94
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-93
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 16 2023 Michal Ruprich <mruprich@redhat.com> - 0.17-92
|
||||||
|
- SPDX migration
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-91
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-90
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-89
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-88
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Apr 20 2021 Michal Ruprich <mruprich@redhat.com> - 0.17-87
|
||||||
|
- Fixes 'out of memory' error when stacksize is unlimited
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-86
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 19 2020 Michal Ruprich <mruprich@redhat.com> - 0.17-85
|
||||||
|
- Use make_build macro and remove hard-coded gcc
|
||||||
|
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-84
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-83
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-82
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.17-81
|
||||||
|
- Rebuild for readline 8.0
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-80
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 18 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-79
|
||||||
|
- Resolves: #1624949 - netkit ftp client buffer overflow in makeargv()
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-78
|
||||||
|
- Resolves: #1604015 - ftp: FTBFS in Fedora rawhide
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-77
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Mar 14 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-76
|
||||||
|
- use distribution LDFLAGS during build (#1548427) - fix by jsynacek
|
||||||
|
- fixed bogus dates in changelog
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-75
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-75
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
25
gating.yaml
Normal file
25
gating.yaml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_context: bodhi_update_push_testing
|
||||||
|
subject_type: koji_build
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
|
||||||
|
|
||||||
|
#Rawhide
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- fedora-*
|
||||||
|
decision_context: bodhi_update_push_stable
|
||||||
|
subject_type: koji_build
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build./plans/tier1-public.functional}
|
||||||
|
|
||||||
|
#gating rhel
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-*
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-public.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/tier1-internal.functional}
|
36
plans.fmf
Normal file
36
plans.fmf
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/tier1-internal:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/tier1/internal
|
||||||
|
|
||||||
|
/tier1-public:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/tier1/public
|
||||||
|
|
||||||
|
/tier2-tier3-internal:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/tier2-tier3/internal
|
||||||
|
|
||||||
|
/tier2-tier3-public:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/tier2-tier3/public
|
||||||
|
|
||||||
|
/others-internal:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/others/internal
|
||||||
|
|
||||||
|
/others-public:
|
||||||
|
plan:
|
||||||
|
import:
|
||||||
|
url: https://src.fedoraproject.org/tests/ftp.git
|
||||||
|
name: /plans/others/public
|
||||||
|
|
Loading…
Reference in New Issue
Block a user