forked from pool/perl-Test-TCP
Compare commits
19 Commits
2104e954fe
...
2d4257b5b2
Author | SHA256 | Date | |
---|---|---|---|
2d4257b5b2 | |||
a8458f3a94 | |||
a0b4817e69 | |||
10b4e951ec | |||
eb1a529dd6 | |||
|
bcc3a2d6f4 | ||
e94c8137c3 | |||
|
8129fd942e | ||
1efd1327bb | |||
|
cc11f2f37e | ||
b246a88762 | |||
4c85eb38e5 | |||
2edc51a55a | |||
|
2255f262d0 | ||
30915013f2 | |||
a87f646e47 | |||
1c23d73a06 | |||
|
551d77458f | ||
|
8be4a6d543 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e8d7e5eeff413dad0b52eaadc543ed650bc573b0d89803e352a9f5ea7cfe4d14
|
||||
size 25061
|
BIN
Test-TCP-2.22.tar.gz
(Stored with Git LFS)
Normal file
BIN
Test-TCP-2.22.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,66 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 9 08:24:52 UTC 2019 - <timueller+perl@suse.de>
|
||||
|
||||
- updated to 2.22
|
||||
see /usr/share/doc/packages/perl-Test-TCP/Changes
|
||||
|
||||
2.22 2019-10-08T08:15:34Z
|
||||
- Portability fixes for Win32 and non-linux #83, #87
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 4 09:41:51 UTC 2019 - <timueller+perl@suse.de>
|
||||
|
||||
- updated to 2.21
|
||||
see /usr/share/doc/packages/perl-Test-TCP/Changes
|
||||
|
||||
2.21 2019-10-03T03:15:22Z
|
||||
- Fix race condition in check_port(UDP) #78
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 4 05:27:16 UTC 2019 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
- updated to 2.20
|
||||
see /usr/share/doc/packages/perl-Test-TCP/Changes
|
||||
|
||||
2.20 2019-08-03T22:47:58Z
|
||||
|
||||
- Fix test for . not in @INC by default #58
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 12 06:50:28 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 2.19
|
||||
see /usr/share/doc/packages/perl-Test-TCP/Changes
|
||||
|
||||
2.19 2017-05-11T13:02:47Z
|
||||
|
||||
commit aac1b06c1e3b0d73ca964794bab0c444d454ebcc
|
||||
Author: Yasuhiro Matsumoto <mattn.jp@gmail.com>
|
||||
Date: Thu May 11 18:40:13 2017 +0900
|
||||
|
||||
don't run command when the port is empty
|
||||
|
||||
Test::TCP do hack on Windows for checking port used.
|
||||
|
||||
https://github.com/tokuhirom/Test-TCP/commit/0f4510d8
|
||||
|
||||
But this way always return 0 with succeeded with empty port. This is not
|
||||
expected behavior. So this change fix to call check_port if the port is
|
||||
not defined.
|
||||
|
||||
fixes #60
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 25 06:52:34 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 2.18
|
||||
see /usr/share/doc/packages/perl-Test-TCP/Changes
|
||||
|
||||
2.18 2017-04-24T06:00:25Z
|
||||
- let the kernel select an empty port #59
|
||||
https://github.com/tokuhirom/Test-TCP/pull/59
|
||||
(i110)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 19 06:04:06 UTC 2016 - coolo@suse.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Test-TCP
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,19 +12,19 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Test-TCP
|
||||
Version: 2.17
|
||||
Version: 2.22
|
||||
Release: 0
|
||||
%define cpan_name Test-TCP
|
||||
Summary: Testing Tcp Program
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Summary: Testing TCP program
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Test-TCP/
|
||||
Source0: http://www.cpan.org/authors/id/S/SY/SYOHEX/%{cpan_name}-%{version}.tar.gz
|
||||
Url: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MI/MIYAGAWA/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@@ -44,11 +44,11 @@ Test::TCP is a test utility to test TCP/IP-based server programs.
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@@ -57,6 +57,7 @@ Test::TCP is a test utility to test TCP/IP-based server programs.
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes LICENSE minil.toml README.md
|
||||
%doc Changes README.md
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user