[DRE-commits] [ruby-packetfu] branch master updated (858a7c9 -> a412a3c)

Jérémy Bobbio lunar at moszumanska.debian.org
Thu Sep 10 14:59:15 UTC 2015


This is an automated email from the git hooks/post-receive script.

lunar pushed a change to branch master
in repository ruby-packetfu.

      from  858a7c9   prepare changelog
      adds  ac23f4a   Imported Upstream version 1.1.11
       new  88b12ca   Merge tag 'upstream/1.1.11'
       new  3c50c5f   Ship some upstream documentation
       new  79d2349   Update debian/copyright
       new  b0c8eaa   Tighten pcaprub dependency
       new  6fba478   Refresh and drop obsolete patches
       new  940ca34   Add a patch to use Ruby 2.1+ new API instead of the unpackaged network_interface library
       new  b9219e8   Update Vcs-Git URL
       new  a16d847   Switch to debhelper compat level 9
       new  a580619   Override lintian regarding the OUI database
       new  a412a3c   Release version 1.1.11-1

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    3 +
 .travis.yml                                        |    8 +
 CONTRIBUTING.md                                    |   47 +
 Gemfile                                            |    4 +
 LICENSE.txt                                        |    2 +-
 README.rdoc                                        |   65 +-
 Rakefile                                           |    8 +-
 bench/octets.rb                                    |   18 +-
 checksums.yaml.gz.sig                              |  Bin 0 -> 256 bytes
 data.tar.gz.sig                                    |    2 +
 debian/changelog                                   |   16 +
 debian/compat                                      |    2 +-
 debian/control                                     |    6 +-
 debian/copyright                                   |    4 +-
 ...better-about-version-checking-multidigits.patch |   20 -
 ...o-not-require-rubygems-even-with-Ruby-1.8.patch |   18 -
 ...Fix-encoding-issues-in-specs-for-Ruby-2.x.patch |   49 -
 debian/patches/0004-Port-to-rspec3.patch           |  108 --
 debian/patches/0005-Require-rspec-its.patch        |   12 +-
 ...work_interface-by-Ruby-2.1-Socket.getifad.patch |   90 ++
 debian/patches/series                              |    5 +-
 debian/ruby-packetfu.docs                          |    1 +
 debian/source/lintian-overrides                    |    2 +
 examples/100kpackets.rb                            |   24 +-
 examples/ackscan.rb                                |   32 +-
 examples/arp.rb                                    |   70 +-
 examples/arphood.rb                                |   72 +-
 examples/dissect_thinger.rb                        |   12 +-
 examples/new-simple-stats.rb                       |   46 +-
 examples/packetfu-shell.rb                         |   50 +-
 examples/simple-sniffer.rb                         |   18 +-
 examples/simple-stats.rb                           |   46 +-
 examples/slammer.rb                                |    6 +-
 gem-public_cert.pem                                |   21 +
 lib/packetfu.rb                                    |  276 ++---
 lib/packetfu/capture.rb                            |  338 +++---
 lib/packetfu/config.rb                             |  104 +-
 lib/packetfu/inject.rb                             |  112 +-
 lib/packetfu/packet.rb                             | 1059 +++++++++---------
 lib/packetfu/pcap.rb                               | 1158 ++++++++++----------
 lib/packetfu/protos/arp.rb                         |  180 +--
 lib/packetfu/protos/arp/header.rb                  |  316 +++---
 lib/packetfu/protos/arp/mixin.rb                   |   72 +-
 lib/packetfu/protos/eth.rb                         |   88 +-
 lib/packetfu/protos/eth/header.rb                  |  486 ++++----
 lib/packetfu/protos/eth/mixin.rb                   |    6 +-
 lib/packetfu/protos/hsrp.rb                        |  138 +--
 lib/packetfu/protos/hsrp/header.rb                 |  214 ++--
 lib/packetfu/protos/hsrp/mixin.rb                  |   58 +-
 lib/packetfu/protos/icmp.rb                        |  142 +--
 lib/packetfu/protos/icmp/header.rb                 |  164 +--
 lib/packetfu/protos/icmp/mixin.rb                  |   28 +-
 lib/packetfu/protos/invalid.rb                     |   98 +-
 lib/packetfu/protos/ip.rb                          |  138 +--
 lib/packetfu/protos/ip/header.rb                   |  582 +++++-----
 lib/packetfu/protos/ip/mixin.rb                    |   80 +-
 lib/packetfu/protos/ipv6.rb                        |  100 +-
 lib/packetfu/protos/ipv6/header.rb                 |  376 +++----
 lib/packetfu/protos/ipv6/mixin.rb                  |   58 +-
 lib/packetfu/protos/tcp.rb                         |  352 +++---
 lib/packetfu/protos/tcp/ecn.rb                     |   70 +-
 lib/packetfu/protos/tcp/flags.rb                   |  148 +--
 lib/packetfu/protos/tcp/header.rb                  |  536 ++++-----
 lib/packetfu/protos/tcp/hlen.rb                    |   64 +-
 lib/packetfu/protos/tcp/mixin.rb                   |   92 +-
 lib/packetfu/protos/tcp/option.rb                  |  642 +++++------
 lib/packetfu/protos/tcp/options.rb                 |  190 ++--
 lib/packetfu/protos/tcp/reserved.rb                |   70 +-
 lib/packetfu/protos/udp.rb                         |  282 ++---
 lib/packetfu/protos/udp/header.rb                  |  182 +--
 lib/packetfu/protos/udp/mixin.rb                   |    6 +-
 lib/packetfu/structfu.rb                           |  560 +++++-----
 lib/packetfu/utils.rb                              |  517 +++++----
 lib/packetfu/version.rb                            |   82 +-
 metadata.gz.sig                                    |    2 +
 metadata.yml                                       |  152 ++-
 packetfu.gemspec                                   |   17 +-
 spec/arp_spec.rb                                   |  191 ++++
 spec/eth_spec.rb                                   |  148 +++
 spec/ethpacket_spec.rb                             |   74 --
 spec/icmp_spec.rb                                  |   97 ++
 spec/ip_spec.rb                                    |   78 ++
 spec/ipv6_spec.rb                                  |   81 ++
 spec/packet_spec.rb                                |  120 +-
 spec/packet_subclasses_spec.rb                     |   19 +-
 spec/packetfu_spec.rb                              |  117 +-
 spec/sample3.pcap                                  |  Bin 0 -> 974 bytes
 spec/spec_helper.rb                                |   44 +
 spec/structfu_spec.rb                              |  541 +++++----
 spec/tcp_spec.rb                                   |  153 ++-
 spec/udp_spec.rb                                   |   32 +
 spec/utils_spec.rb                                 |   95 ++
 test/all_tests.rb                                  |   31 +-
 test/func_lldp.rb                                  |    6 +-
 test/ptest.rb                                      |    4 +-
 test/test_arp.rb                                   |  135 ---
 test/test_capture.rb                               |   90 +-
 test/test_eth.rb                                   |  138 +--
 test/test_hsrp.rb                                  |   18 +-
 test/test_icmp.rb                                  |   62 --
 test/test_inject.rb                                |   36 +-
 test/test_invalid.rb                               |   32 +-
 test/test_ip.rb                                    |   50 -
 test/test_ip6.rb                                   |   68 --
 test/test_octets.rb                                |   44 +-
 test/test_packet.rb                                |  310 +++---
 test/test_pcap.rb                                  |  342 +++---
 test/test_structfu.rb                              |  196 ++--
 test/test_tcp.rb                                   |  642 +++++------
 test/test_udp.rb                                   |  154 +--
 110 files changed, 7978 insertions(+), 7392 deletions(-)
 create mode 100644 .travis.yml
 create mode 100644 CONTRIBUTING.md
 create mode 100644 Gemfile
 create mode 100644 checksums.yaml.gz.sig
 create mode 100644 data.tar.gz.sig
 delete mode 100644 debian/patches/0001-Be-better-about-version-checking-multidigits.patch
 delete mode 100644 debian/patches/0002-Do-not-require-rubygems-even-with-Ruby-1.8.patch
 delete mode 100644 debian/patches/0003-Fix-encoding-issues-in-specs-for-Ruby-2.x.patch
 delete mode 100644 debian/patches/0004-Port-to-rspec3.patch
 create mode 100644 debian/patches/0006-Replace-network_interface-by-Ruby-2.1-Socket.getifad.patch
 create mode 100644 debian/ruby-packetfu.docs
 create mode 100644 debian/source/lintian-overrides
 create mode 100644 gem-public_cert.pem
 create mode 100644 metadata.gz.sig
 create mode 100644 spec/arp_spec.rb
 create mode 100644 spec/eth_spec.rb
 delete mode 100644 spec/ethpacket_spec.rb
 create mode 100644 spec/icmp_spec.rb
 create mode 100644 spec/ip_spec.rb
 create mode 100644 spec/ipv6_spec.rb
 create mode 100644 spec/sample3.pcap
 create mode 100644 spec/spec_helper.rb
 create mode 100644 spec/udp_spec.rb
 create mode 100644 spec/utils_spec.rb
 delete mode 100644 test/test_arp.rb
 delete mode 100644 test/test_icmp.rb
 delete mode 100755 test/test_ip.rb
 delete mode 100644 test/test_ip6.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-packetfu.git



More information about the Pkg-ruby-extras-commits mailing list