8
0
forked from pool/perl-Net-Pcap

16 Commits

Author SHA256 Message Date
f489526cc1 Add Gitea build results 2025-08-12 18:16:03 +02:00
007c856efa Accepting request 1062273 from devel:languages:perl:autoupdate
- updated to 0.21
   see /usr/share/doc/packages/perl-Net-Pcap/Changes
  0.21 - 2023-01-19 - Max Maischein (CORION)
    [Configure]
    - Avoid implicit ints during feature probing
      This is required for compatibility with future compilers as (for example)
      Fedora is moving to stricter C compiler versions.
      This is merely a cleanup of the C code probing for Pcap functionality,
      no need to upgrade.
    [Code]
    - use "our" for global variable declaration
    - Don't inherit from Exporter anymore
      This might break modules that rely on Net::Pcap isa Exporter, but that
      was never documented.
  0.20 - 2021-12-17 - Max Maischein (CORION)
    [Bugfixes]
    - CPAN RT #118727 Spelling fixes
      Reported by Gregor Herrmann

OBS-URL: https://build.opensuse.org/request/show/1062273
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=21
2023-02-01 08:18:47 +00:00
fd8feae081 Accepting request 1037695 from home:pmonrealgonzalez:branches:devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1037695
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=19
2022-11-23 17:14:00 +00:00
bdfcbfe890 Accepting request 1037409 from home:pmonrealgonzalez:branches:devel:languages:perl
- Add missing dependencies for pcapdump [bsc#1201615]
- Remove patch not applied and not mentioned in the changelog.
  * perl-Net-Pcap-avoid-pcap_rmtauth-redefinition.patch

OBS-URL: https://build.opensuse.org/request/show/1037409
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=18
2022-11-23 17:03:33 +00:00
0e4c905d48 Accepting request 999000 from devel:languages:perl:autoupdate
- updated to 0.20

OBS-URL: https://build.opensuse.org/request/show/999000
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=17
2022-08-24 12:22:33 +00:00
d62bcdf0b8 Prevent auto-submits
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=16
2020-10-25 09:47:25 +00:00
b617243e0e fix interface issue
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=15
2020-10-15 18:05:59 +00:00
1ef14915f2 Accepting request 648750 from home:pmonrealgonzalez:branches:devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/648750
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=13
2018-11-13 15:14:36 +00:00
54d95bb9f9 Accepting request 648748 from home:pmonrealgonzalez:branches:devel:languages:perl
- Cleaned with spec-cleaner

OBS-URL: https://build.opensuse.org/request/show/648748
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=12
2018-11-13 14:54:06 +00:00
Stephan Kulow
e569d87147 Accepting request 647646 from home:pmonrealgonzalez:branches:devel:languages:perl
- updated to 0.18
  [Bugfixes]
  - CPAN RT #77807: Net::Pcap is no longer limited to one callback function,
    thanks to a patch by James Rouzier.
  - CPAN RT #55163: Typo in eg/pcapdump (Iain Arnell and Jose Pedro Oliveira).
  - CPAN RT #83842: Typo in Net:Pcap (Xavier Guimard).
 
  [API]
  - Added pcap_offline_filter() (Martijn Lievaart).
 
  [Code]
  - use warnings (David Farrell).
 
  [Documentation]
  - Moved HISTORY from README to main documentation.
  - Rewrote AUTHORS to acknowledge all contributors.
  - Updated copyright years.
 
  [Tests]
  - Added timeouts to prevent tests from hanging (Patrice Auffret).
  - t/17-lib_version.t: adjust regexp to match Apple builds (David Farrell).
  - t/50-poe-component-pcap.t: small improvments.
  - Added t/50-net-pcap-easy.t to test with Net::Pcap::Easy.
  - Added t/50-anyevent-pcap.t to test with AnyEvent::Pcap.
  - Make t/50-* pass with old versions of Test::More
 
  [Distribution]
  - Converted the Changes file to CPAN::Changes::Spec format.
  - Makefile.PL: append CCFLAGS to $Config{ccflags} instead of overriding it.
  - Makefile.PL: now dies when libpcap isn't found.

OBS-URL: https://build.opensuse.org/request/show/647646
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=11
2018-11-13 14:45:57 +00:00
Stephan Kulow
fc93e1259b OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=9 2013-08-06 07:38:18 +00:00
Stephan Kulow
78858a93c4 - updated to 0.17
- [BUGFIX] CPAN-RT#43308: Net::Pcap no longer enables immediate
     (unsafe) signals delivery.
   - [BUGFIX] Fix allocated size in pcap_open(), pcap_createsrcstr()
     and pcap_parsesrcstr(). 
   - [API] Now make the C-like API available by default. Added the
     pcap_perl_settings() function and UNSAFE_SIGNALS pseudo-bloc.
   - [CODE] Replaced all occurrences of safemalloc() with Newx().
   - [CODE] Silenced some warnings.
   - [DOC] Added a long note about Net::Pcap and signals delivery.
   - [DOC] Improved README.
   - [DOC] Mention Net::Pcap::Easy.
   - [TESTS] Fixed t/17-lib_version.t to handle two digits versions.
   - [TESTS] CPAN-RT#44448: Fixed t/17-lib_version.t to handle
     versions from the CVS, thanks to Craig Davison.
   - [TESTS] Refactored t/01-api.t and added checks for the new API.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=7
2013-07-27 12:52:26 +00:00
Stephan Kulow
3639af5020 Accepting request 104449 from devel:openSUSE:Factory:patch-license
patch license to follow spdx.org standard

OBS-URL: https://build.opensuse.org/request/show/104449
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=5
2012-02-13 12:20:06 +00:00
Pascal Bleser
75a9426f38 fix libpcap detection -- bnc#711611
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=3
2011-12-16 06:11:14 +00:00
Pascal Bleser
00633c67a0 disable make test
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=2
2011-03-23 10:36:33 +00:00
Pascal Bleser
21379f3c12 0.16
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Pcap?expand=0&rev=1
2011-03-23 09:56:34 +00:00