summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2008-01-30 17:13:14 +0000
committerPeter Volkov <pva@gentoo.org>2008-01-30 17:13:14 +0000
commitabfacbd42909a100eb685148880c13096865e896 (patch)
treec9b858e644bff113c7d6432c26c67ddd3645c71e /net-analyzer/scapy/files
parentDepend on virtual/opengl and not media-libs/mesa (diff)
downloadgentoo-2-abfacbd42909a100eb685148880c13096865e896.tar.gz
gentoo-2-abfacbd42909a100eb685148880c13096865e896.tar.bz2
gentoo-2-abfacbd42909a100eb685148880c13096865e896.zip
Fixed startup config file reading problem when scapy is used as a library, bug 203557, reported by Craig <craig AT haquarter.de>. Remove old.
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-analyzer/scapy/files')
-rw-r--r--net-analyzer/scapy/files/digest-scapy-1.0.53
-rw-r--r--net-analyzer/scapy/files/digest-scapy-1.1.1-r13
-rw-r--r--net-analyzer/scapy/files/scapy-1.1.1-config-file.patch13
3 files changed, 16 insertions, 3 deletions
diff --git a/net-analyzer/scapy/files/digest-scapy-1.0.5 b/net-analyzer/scapy/files/digest-scapy-1.0.5
deleted file mode 100644
index 6a71e42c4b06..000000000000
--- a/net-analyzer/scapy/files/digest-scapy-1.0.5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b094a03472375c3add5415345b8d79d6 scapy-1.0.5.tar.gz 144746
-RMD160 33bbc31385ca098b1361d8233f17222fa460836f scapy-1.0.5.tar.gz 144746
-SHA256 a8a77854dfdc6cee71344527510e64d1985222d20637c08f0b46b8d709c2e766 scapy-1.0.5.tar.gz 144746
diff --git a/net-analyzer/scapy/files/digest-scapy-1.1.1-r1 b/net-analyzer/scapy/files/digest-scapy-1.1.1-r1
new file mode 100644
index 000000000000..7e7e374b0880
--- /dev/null
+++ b/net-analyzer/scapy/files/digest-scapy-1.1.1-r1
@@ -0,0 +1,3 @@
+MD5 8ac720a1bea4304797c713ef1ed063f1 scapy-1.1.1.tar.gz 147401
+RMD160 20bdb1ea59a05f452a515e438e230e1d85b81016 scapy-1.1.1.tar.gz 147401
+SHA256 2a11ba05f34b2978af3add623a641e0340d39322b4ca2bd26baae743c78de956 scapy-1.1.1.tar.gz 147401
diff --git a/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch b/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch
new file mode 100644
index 000000000000..ac38942b52e5
--- /dev/null
+++ b/net-analyzer/scapy/files/scapy-1.1.1-config-file.patch
@@ -0,0 +1,13 @@
+http://hg.secdev.org/scapy/rev/443b35c8c6de
+
+Fixed startup config file reading problem when scapy is used as a library
+
+--- scapy.py.orig 2008-01-30 19:47:55.000000000 +0300
++++ scapy.py 2008-01-30 19:48:42.000000000 +0300
+@@ -12190,4 +12190,5 @@
+ if __name__ == "__main__":
+ interact()
+ else:
+- read_config_file(DEFAULT_CONFIG_FILE)
++ if DEFAULT_CONFIG_FILE:
++ read_config_file(DEFAULT_CONFIG_FILE)