update to twisted 11.1.0

no problem ajacoutot@
This commit is contained in:
eric 2011-12-08 20:15:40 +00:00
parent d17a2a6954
commit ad63ab3b67
31 changed files with 191 additions and 222 deletions

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.16 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.17 2011/12/08 20:15:40 eric Exp $
COMMENT= SSH and SFTP protocol implementation
CATEGORIES= net
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedConch-${VERSION}
PKGNAME= py-twisted-conch-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedConch

View File

@ -1,5 +1,5 @@
MD5 (TwistedConch-11.0.0.tar.bz2) = OC170kYJ8VKlit+3JEsW5A==
RMD160 (TwistedConch-11.0.0.tar.bz2) = QHLaZiR9biv74oUoBPl/bwdj+T0=
SHA1 (TwistedConch-11.0.0.tar.bz2) = WoJMk5azftoOvAIJm5xbail96LE=
SHA256 (TwistedConch-11.0.0.tar.bz2) = o70AmSi4OIkosk+7sp4drm6gkvOjeAAfQmxvYwLyVQQ=
SIZE (TwistedConch-11.0.0.tar.bz2) = 209673
MD5 (TwistedConch-11.1.0.tar.bz2) = TfJY0WvfgzmTTE/l4sTjcQ==
RMD160 (TwistedConch-11.1.0.tar.bz2) = f894M7uerwQqW1mZm9oL1olFf5s=
SHA1 (TwistedConch-11.1.0.tar.bz2) = RRO/AdES50C6CRxEx805idodyEU=
SHA256 (TwistedConch-11.1.0.tar.bz2) = +gFEfUJcetl4WfWCR3WoQfJ55LKx+vbaptW28ONdobU=
SIZE (TwistedConch-11.1.0.tar.bz2) = 211556

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.7 2011/06/20 10:25:32 eric Exp $
@comment $OpenBSD: PLIST,v 1.8 2011/12/08 20:15:40 eric Exp $
@conflict cftp-*
bin/cftp
bin/ckeygen
@ -152,6 +152,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_openssh_compat.
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_openssh_compat.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_recvline.py
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_recvline.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_scripts.py
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_scripts.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_session.py
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_session.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/conch/test/test_ssh.py

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.21 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.22 2011/12/08 20:15:40 eric Exp $
COMMENT= event-based Python framework (core module)
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedCore-${VERSION}
PKGNAME= py-twisted-core-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedCore
@ -35,7 +34,8 @@ TRIAL_TARGET?= twisted.application.test \
twisted.internet.test \
twisted.protocols.test \
twisted.python.test \
twisted.scripts.test \
twisted.persisted.test \
twisted.manhole.test \
twisted.test \
twisted.trial.test

View File

@ -1,5 +1,5 @@
MD5 (TwistedCore-11.0.0.tar.bz2) = yw8cWBWNowVu19hCSDAoCQ==
RMD160 (TwistedCore-11.0.0.tar.bz2) = psT81wRyJmz9odiUeMAqr67DjsQ=
SHA1 (TwistedCore-11.0.0.tar.bz2) = FMFeTqx4d0SQfCwxkq9xDU/+ik4=
SHA256 (TwistedCore-11.0.0.tar.bz2) = Ruo9k5DslKMjRYlUT8FUxI+1cUEhNipYLbYs2HMTPy8=
SIZE (TwistedCore-11.0.0.tar.bz2) = 1396224
MD5 (TwistedCore-11.1.0.tar.bz2) = mHDVTcnxfUUYxSSIkc0Ihw==
RMD160 (TwistedCore-11.1.0.tar.bz2) = COBW+Gp7kiXENhL8yC4yDEROf/w=
SHA1 (TwistedCore-11.1.0.tar.bz2) = 22Lj3x+HCBJ95Ne6XyyBaLJKI4g=
SHA256 (TwistedCore-11.1.0.tar.bz2) = AEG1w4zXxABD9kxKrrX8xGMcIpd2yJbPoYj9K1Z/120=
SIZE (TwistedCore-11.1.0.tar.bz2) = 1455613

View File

@ -1,73 +1,29 @@
$OpenBSD: patch-twisted_internet_process_py,v 1.1 2011/06/20 10:25:32 eric Exp $
--- twisted/internet/process.py.orig Mon Mar 21 03:43:05 2011
+++ twisted/internet/process.py Tue May 3 13:02:00 2011
@@ -502,25 +502,25 @@ class _FDDetector(object):
/proc/%d/fd exists, if so use that.
Otherwise, ask resource.getrlimit, if that throws an exception, then
- fallback to _fallbackFDImplementation.
+ fallback to _resourceFDImplementation or _fallbackFDImplementation as
+ last resort.
$OpenBSD: patch-twisted_internet_process_py,v 1.2 2011/12/08 20:15:40 eric Exp $
--- twisted/internet/process.py.orig Thu Nov 24 11:55:40 2011
+++ twisted/internet/process.py Thu Nov 24 11:55:12 2011
@@ -501,7 +501,7 @@ class _FDDetector(object):
This will try to return the fewest possible descriptors without missing
any.
"""
try:
self.listdir("/dev/fd")
if self._checkDevFDSanity(): # FreeBSD support :-)
return self._devFDImplementation
- else:
- return self._fallbackFDImplementation
except:
try:
self.listdir("/proc/%d/fd" % (self.getpid(),))
return self._procFDImplementation
except:
- try:
- self._resourceFDImplementation() # Imports resource
- return self._resourceFDImplementation
- except:
- return self._fallbackFDImplementation
+ pass
+ try:
+ self._resourceFDImplementation() # Imports resource
+ return self._resourceFDImplementation
+ except:
+ return self._fallbackFDImplementation
def _checkDevFDSanity(self):
"""
@@ -560,11 +560,7 @@ class _FDDetector(object):
Note that on OS-X we expect to be using the /dev/fd implementation.
"""
import resource
- maxfds = resource.getrlimit(resource.RLIMIT_NOFILE)[1] + 1
- # OS-X reports 9223372036854775808. That's a lot of fds
- # to close
- if maxfds > 1024:
- maxfds = 1024
+ maxfds = resource.getrlimit(resource.RLIMIT_NOFILE)[0]
return xrange(maxfds)
- self._listOpenFDs = self._getImplementation()
+ self._listOpenFDs = self._correctFDImplementation
return self._listOpenFDs()
@@ -584,7 +580,21 @@ def _listOpenFDs():
Use the global detector object to figure out which FD implementation to
use.
"""
- return detector._listOpenFDs()
@@ -577,6 +577,16 @@ class _FDDetector(object):
maxfds = min(1024, resource.getrlimit(resource.RLIMIT_NOFILE)[1])
return range(maxfds)
+ def _correctFDImplementation(self):
+ import resource
+
+ def _filterReallyOpenFDs(guess):
+ """
+ Remove false-positive from a list of supposedly open file descriptors.
+
+ Returns a set of open file descriptors.
+ """
+ fds = set(guess)
+ maxfds = resource.getrlimit(resource.RLIMIT_NOFILE)[0]
+ fds = set(xrange(maxfds))
+ poll = select.poll()
+ for fd in fds:
+ poll.register(fd, select.POLLIN)
+ return sorted(fds.difference(set(fd for (fd, ev) in poll.poll(0)
+ if ev == select.POLLNVAL)))
+
+ return _filterReallyOpenFDs(detector._listOpenFDs())
+ invals = set(f for (f, e) in poll.poll(0) if e == select.POLLNVAL)
+ return sorted(fds.difference(invals))
class Process(_BaseProcess):
detector = _FDDetector()

View File

@ -1,27 +0,0 @@
$OpenBSD: patch-twisted_internet_test_test_process_py,v 1.1 2011/06/20 10:25:32 eric Exp $
--- twisted/internet/test/test_process.py.orig Mon Mar 21 03:43:05 2011
+++ twisted/internet/test/test_process.py Tue Jun 14 10:13:39 2011
@@ -267,13 +267,12 @@ class ProcessTestsBuilderBase(ReactorBuilder):
top = here.parent().parent().parent().parent()
source = (
"import sys",
- "sys.path.insert(0, '%s')" % (top.path,),
"from twisted.internet import process",
- "sys.stdout.write(str(process._listOpenFDs()))",
+ "sys.stdout.write(str(sorted(process._listOpenFDs())))",
"sys.stdout.flush()")
def checkOutput(output):
- self.assertEquals('[0, 1, 2, 3]', output)
+ self.assertEquals('[0, 1, 2, 3, 4]', output)
reactor = self.buildReactor()
@@ -631,6 +630,7 @@ class FDDetectorTest(TestCase):
@ivar openedFile: A flag indicating whether to include an extra file
descriptor in the result of listing /dev/fd.
"""
+ skip = "This test is useless and it breaks things"
if runtime.platform.isWindows():
skip = (
"Process support does not need to detect open file descriptors on "

View File

@ -1,17 +1,11 @@
These tests are for the release process. skip them.
$OpenBSD: patch-twisted_python_test_test_release_py,v 1.1 2011/06/20 10:25:32 eric Exp $
--- twisted/python/test/test_release.py.orig Wed May 4 15:29:20 2011
+++ twisted/python/test/test_release.py Wed May 4 15:29:13 2011
@@ -41,10 +41,7 @@ from twisted.python._release import UncleanWorkingDire
from twisted.python._release import ChangeVersionsScript, BuildTarballsScript
from twisted.python._release import NewsBuilder
-if os.name != 'posix':
- skip = "Release toolchain only supported on POSIX."
-else:
- skip = None
+skip = "Nothing to see here"
$OpenBSD: patch-twisted_python_test_test_release_py,v 1.2 2011/12/08 20:15:40 eric Exp $
--- twisted/python/test/test_release.py.orig Thu Nov 24 11:18:00 2011
+++ twisted/python/test/test_release.py Thu Nov 24 11:17:50 2011
@@ -45,6 +45,7 @@ if os.name != 'posix':
skip = "Release toolchain only supported on POSIX."
else:
skip = None
+skip = "Nothing useful here"
# Check a bunch of dependencies to skip tests if necessary.

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-twisted_trial_test_test_util_py,v 1.1 2011/06/20 10:25:32 eric Exp $
--- twisted/trial/test/test_util.py.orig Wed May 4 15:36:05 2011
+++ twisted/trial/test/test_util.py Wed May 4 15:35:48 2011
@@ -250,7 +250,7 @@ class TestRunSequentially(TestCase):
self.assertEqual(fail.getErrorMessage(), 'foo')
self.assertEqual(result, 'bar')
return d.addCallback(check)
- test_stripFlags.todo = "YAGNI"
+ test_stripFlags.skip = "YAGNI"

View File

@ -1,6 +1,5 @@
@comment $OpenBSD: PLIST,v 1.7 2011/06/20 10:25:32 eric Exp $
@comment $OpenBSD: PLIST,v 1.8 2011/12/08 20:15:40 eric Exp $
bin/manhole
bin/mktap
bin/pyhtmlizer
bin/tap2deb
bin/tap2rpm
@ -71,6 +70,10 @@ lib/python${MODPY_VERSION}/site-packages/twisted/internet/_baseprocess.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_baseprocess.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_dumbwin32proc.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_dumbwin32proc.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_newtls.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_newtls.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_oldtls.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_oldtls.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_pollingfile.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_pollingfile.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_posixserialport.py
@ -81,6 +84,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/internet/_sigchld.c
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_sigchld.so
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_signals.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_signals.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_ssl.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_ssl.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_sslverify.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_sslverify.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/_threadedselect.py
@ -180,6 +185,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/internet/tcp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/connectionmixins.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/connectionmixins.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/fake_CAs/
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/fake_CAs/not-a-certificate
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/fake_CAs/thing1.pem
@ -201,20 +208,28 @@ lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_baseprocess.
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_baseprocess.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_core.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_core.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_default.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_default.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_endpoints.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_endpoints.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_fdset.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_fdset.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_filedescriptor.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_filedescriptor.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_gtkreactor.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_gtkreactor.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_inlinecb.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_inlinecb.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_inotify.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_inotify.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_interfaces.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_interfaces.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_iocp.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_iocp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_main.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_main.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_newtls.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_newtls.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_pollingfile.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_pollingfile.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_posixbase.py
@ -227,6 +242,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_protocol.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_protocol.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_qtreactor.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_qtreactor.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_serialport.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_serialport.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_sigchld.py
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_sigchld.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/internet/test/test_tcp.py
@ -275,6 +292,11 @@ lib/python${MODPY_VERSION}/site-packages/twisted/manhole/service.py
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/service.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/telnet.py
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/telnet.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/test/
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/test/test_explorer.py
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/test/test_explorer.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/ui/
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/ui/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/manhole/ui/__init__.pyc
@ -308,6 +330,11 @@ lib/python${MODPY_VERSION}/site-packages/twisted/persisted/sob.py
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/sob.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/styles.py
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/styles.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/test/
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/test/test_styles.py
lib/python${MODPY_VERSION}/site-packages/twisted/persisted/test/test_styles.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/plugin.py
lib/python${MODPY_VERSION}/site-packages/twisted/plugin.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/
@ -410,7 +437,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/_inotify.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/_inotify.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/_release.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/_release.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/_twisted_zsh_stub
lib/python${MODPY_VERSION}/site-packages/twisted/python/_shellcomp.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/_shellcomp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/compat.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/compat.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/components.py
@ -419,8 +447,6 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/context.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/context.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/deprecate.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/deprecate.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/dispatch.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/dispatch.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/dist.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/dist.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/failure.py
@ -474,6 +500,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/deprecatedattributes.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/deprecatedattributes.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/modules_helpers.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/modules_helpers.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_components.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_components.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_deprecate.py
@ -492,6 +520,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_release.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_release.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_runtime.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_runtime.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_shellcomp.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_shellcomp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_syslog.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_syslog.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_util.py
@ -502,12 +532,15 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_win32.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_win32.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_zipstream.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_zipstream.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_zshcomp.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/test/test_zshcomp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/text.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/text.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/threadable.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/threadable.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/threadpool.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/threadpool.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/twisted-completion.zsh
lib/python${MODPY_VERSION}/site-packages/twisted/python/urlpath.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/urlpath.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/usage.py
@ -523,7 +556,7 @@ lib/python${MODPY_VERSION}/site-packages/twisted/python/zippath.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/zipstream.py
lib/python${MODPY_VERSION}/site-packages/twisted/python/zipstream.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/README
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/README.txt
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/_cftp
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/_ckeygen
lib/python${MODPY_VERSION}/site-packages/twisted/python/zsh/_conch
@ -552,8 +585,6 @@ lib/python${MODPY_VERSION}/site-packages/twisted/scripts/htmlizer.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/htmlizer.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/manhole.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/manhole.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/mktap.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/mktap.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/tap2deb.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/tap2deb.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/tap2rpm.py
@ -563,8 +594,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/scripts/tapconvert.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_mktap.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_mktap.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_scripts.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_scripts.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_tap2rpm.py
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/test/test_tap2rpm.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/scripts/tkunzip.py
@ -734,6 +765,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/test/test_formmethod.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_formmethod.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_ftp.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_ftp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_ftp_options.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_ftp_options.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_hook.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_hook.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_htb.py
@ -850,8 +883,6 @@ lib/python${MODPY_VERSION}/site-packages/twisted/test/test_unix.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_unix.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_usage.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_usage.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_zshcomp.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/test_zshcomp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/testutils.py
lib/python${MODPY_VERSION}/site-packages/twisted/test/testutils.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/test/time_helpers.py
@ -966,6 +997,7 @@ share/doc/py-twisted-core/development/policy/test-standard.html
share/doc/py-twisted-core/development/policy/writing-standard.html
share/doc/py-twisted-core/development/security.html
share/doc/py-twisted-core/howto/
share/doc/py-twisted-core/howto/amp.html
share/doc/py-twisted-core/howto/application.html
share/doc/py-twisted-core/howto/basics.html
share/doc/py-twisted-core/howto/book.tex
@ -995,6 +1027,10 @@ share/doc/py-twisted-core/howto/listings/TwistedQuotes/quotes.txt
share/doc/py-twisted-core/howto/listings/TwistedQuotes/quotetap.py
share/doc/py-twisted-core/howto/listings/TwistedQuotes/quotetap2.py
share/doc/py-twisted-core/howto/listings/TwistedQuotes/webquote.rpy
share/doc/py-twisted-core/howto/listings/amp/
share/doc/py-twisted-core/howto/listings/amp/basic_client.py
share/doc/py-twisted-core/howto/listings/amp/basic_server.tac
share/doc/py-twisted-core/howto/listings/amp/command_client.py
share/doc/py-twisted-core/howto/listings/application/
share/doc/py-twisted-core/howto/listings/application/service.tac
share/doc/py-twisted-core/howto/listings/deferred/
@ -1043,6 +1079,31 @@ share/doc/py-twisted-core/howto/listings/process/
share/doc/py-twisted-core/howto/listings/process/process.py
share/doc/py-twisted-core/howto/listings/process/quotes.py
share/doc/py-twisted-core/howto/listings/process/trueandfalse.py
share/doc/py-twisted-core/howto/listings/servers/
share/doc/py-twisted-core/howto/listings/servers/chat.py
share/doc/py-twisted-core/howto/listings/trial/
share/doc/py-twisted-core/howto/listings/trial/calculus/
share/doc/py-twisted-core/howto/listings/trial/calculus/__init__.py
share/doc/py-twisted-core/howto/listings/trial/calculus/base_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/base_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/base_3.py
share/doc/py-twisted-core/howto/listings/trial/calculus/client_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/client_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/client_3.py
share/doc/py-twisted-core/howto/listings/trial/calculus/remote_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/remote_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/
share/doc/py-twisted-core/howto/listings/trial/calculus/test/__init__.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_base_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_base_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_base_2b.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_base_3.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_client_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_client_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_client_3.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_remote_1.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_remote_2.py
share/doc/py-twisted-core/howto/listings/trial/calculus/test/test_remote_3.py
share/doc/py-twisted-core/howto/listings/udp/
share/doc/py-twisted-core/howto/listings/udp/MulticastClient.py
share/doc/py-twisted-core/howto/listings/udp/MulticastServer.py
@ -1073,6 +1134,7 @@ share/doc/py-twisted-core/howto/template.tpl
share/doc/py-twisted-core/howto/testing.html
share/doc/py-twisted-core/howto/threading.html
share/doc/py-twisted-core/howto/time.html
share/doc/py-twisted-core/howto/trial.html
share/doc/py-twisted-core/howto/tutorial/
share/doc/py-twisted-core/howto/tutorial/backends.html
share/doc/py-twisted-core/howto/tutorial/client.html
@ -1151,8 +1213,6 @@ share/doc/py-twisted-core/index.html
share/doc/py-twisted-core/man/
share/doc/py-twisted-core/man/manhole-man.html
share/doc/py-twisted-core/man/manhole.1
share/doc/py-twisted-core/man/mktap-man.html
share/doc/py-twisted-core/man/mktap.1
share/doc/py-twisted-core/man/pyhtmlizer-man.html
share/doc/py-twisted-core/man/pyhtmlizer.1
share/doc/py-twisted-core/man/tap2deb-man.html
@ -1222,6 +1282,7 @@ share/examples/py-twisted-core/simpleclient.py
share/examples/py-twisted-core/simpleserv.py
share/examples/py-twisted-core/stdin.py
share/examples/py-twisted-core/stdiodemo.py
share/examples/py-twisted-core/streaming.py
share/examples/py-twisted-core/testlogging.py
share/examples/py-twisted-core/threadedselect/
share/examples/py-twisted-core/threadedselect/Cocoa/

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= documentation generator
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedLore-${VERSION}
PKGNAME= py-twisted-lore-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedLore

View File

@ -1,5 +1,5 @@
MD5 (TwistedLore-11.0.0.tar.bz2) = HJkEoyzkisNupbcGtG8mDQ==
RMD160 (TwistedLore-11.0.0.tar.bz2) = LyHHec3FeBb1L0njLmUzwi57Yus=
SHA1 (TwistedLore-11.0.0.tar.bz2) = 1UlRigcqi759CIldkL+EWeGul8k=
SHA256 (TwistedLore-11.0.0.tar.bz2) = 2bFtX+TiDLK0JZOG7Zhxgk2U3Lnwtqvkwoh6Nmt0w24=
SIZE (TwistedLore-11.0.0.tar.bz2) = 87252
MD5 (TwistedLore-11.1.0.tar.bz2) = QtBlMBwf8tdYhozo6SuQeg==
RMD160 (TwistedLore-11.1.0.tar.bz2) = FINxbUHVhLrnygZDugpn6DnDGV0=
SHA1 (TwistedLore-11.1.0.tar.bz2) = GnxfRcy74sbZzWX43eoWtzDIyFo=
SHA256 (TwistedLore-11.1.0.tar.bz2) = 5gLl5rbVExxi3Hpcv8efxprnOH7iHALt253vz7lgFz4=
SIZE (TwistedLore-11.1.0.tar.bz2) = 87032

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.5 2010/07/05 13:37:02 eric Exp $
@comment $OpenBSD: PLIST,v 1.6 2011/12/08 20:15:40 eric Exp $
bin/lore
lib/python${MODPY_VERSION}/site-packages/Twisted_Lore-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/twisted/lore/
@ -60,6 +60,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_lore.py
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_lore.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_man2lore.py
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_man2lore.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_scripts.py
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_scripts.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_slides.py
lib/python${MODPY_VERSION}/site-packages/twisted/lore/test/test_slides.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/lore/texi.py

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= MTP, IMAP and POP protocol implementation
CATEGORIES= mail
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedMail-${VERSION}
PKGNAME= py-twisted-mail-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedMail

View File

@ -1,5 +1,5 @@
MD5 (TwistedMail-11.0.0.tar.bz2) = L98tLUJ45nXsSBBHiL+UIQ==
RMD160 (TwistedMail-11.0.0.tar.bz2) = YfmEsr+U9TNCdLZr4DI6RrA0v/M=
SHA1 (TwistedMail-11.0.0.tar.bz2) = SRRmtYyVfUkr8mMr99IzL0ZcXAg=
SHA256 (TwistedMail-11.0.0.tar.bz2) = D4dt2AYCKUY1z4CSJg3Nxh997Bd9dZRu0hxVf1NMeoo=
SIZE (TwistedMail-11.0.0.tar.bz2) = 145928
MD5 (TwistedMail-11.1.0.tar.bz2) = aK6c3GVSZTAWxrezH2WZvQ==
RMD160 (TwistedMail-11.1.0.tar.bz2) = 2nL7Q+MwD9grzHteSjjmlZkgDNA=
SHA1 (TwistedMail-11.1.0.tar.bz2) = hZVLn5tu6zb8e+AkFugdw4uZ0jc=
SHA256 (TwistedMail-11.1.0.tar.bz2) = hDdQ41bMs6bIym/cwvztFUd63DMKc32jO33eiUZ/tko=
SIZE (TwistedMail-11.1.0.tar.bz2) = 146808

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2009/01/30 16:22:09 eric Exp $
@comment $OpenBSD: PLIST,v 1.5 2011/12/08 20:15:40 eric Exp $
bin/mailmail
lib/python${MODPY_VERSION}/site-packages/Twisted_Mail-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/twisted/mail/
@ -57,6 +57,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_pop3.py
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_pop3.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_pop3client.py
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_pop3client.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_scripts.py
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_scripts.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_smtp.py
lib/python${MODPY_VERSION}/site-packages/twisted/mail/test/test_smtp.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/twisted_mail.py

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= DNS protocol implementation
CATEGORIES+= net
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedNames-${VERSION}
PKGNAME= py-twisted-names-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedNames

View File

@ -1,5 +1,5 @@
MD5 (TwistedNames-11.0.0.tar.bz2) = gu96ThTtsfwQL+xJ/5a5Ow==
RMD160 (TwistedNames-11.0.0.tar.bz2) = JV8KXdxvELLxOczAOcxFAFrQ4M4=
SHA1 (TwistedNames-11.0.0.tar.bz2) = 3vNa/vlZBWTF2cNJd2J7r4zkgVE=
SHA256 (TwistedNames-11.0.0.tar.bz2) = c48+T6VtLr7d8PN3RBn7496QZ0JOuSjOI0vBeKFG1JY=
SIZE (TwistedNames-11.0.0.tar.bz2) = 52156
MD5 (TwistedNames-11.1.0.tar.bz2) = /oh6ZE7xZTHgP/n4OqQSKA==
RMD160 (TwistedNames-11.1.0.tar.bz2) = 8Lkc+R+fP5q1dZY0H/oNTj9JCGE=
SHA1 (TwistedNames-11.1.0.tar.bz2) = dlgOfnYAeZ4/drSkoTVWk9RVsY8=
SHA256 (TwistedNames-11.1.0.tar.bz2) = Ck2tLkGQtOZjX8Davo3UCiekzPfZJ/XW0kD1vtrrP/M=
SIZE (TwistedNames-11.1.0.tar.bz2) = 54824

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2010/07/05 13:37:02 eric Exp $
@comment $OpenBSD: PLIST,v 1.5 2011/12/08 20:15:40 eric Exp $
lib/python${MODPY_VERSION}/site-packages/Twisted_Names-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/twisted/names/
lib/python${MODPY_VERSION}/site-packages/twisted/names/__init__.py
@ -42,6 +42,8 @@ lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_common.py
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_common.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_dns.py
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_dns.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_hosts.py
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_hosts.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_names.py
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_names.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/names/test/test_rootresolve.py

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= NNTP protocol implementation
CATEGORIES+= news
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedNews-${VERSION}
PKGNAME= py-twisted-news-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedNews

View File

@ -1,5 +1,5 @@
MD5 (TwistedNews-11.0.0.tar.bz2) = aRQvHqbsUQahv4yPcANoWQ==
RMD160 (TwistedNews-11.0.0.tar.bz2) = s+nqMxyvZQMnSp38rhzpaAPYxSA=
SHA1 (TwistedNews-11.0.0.tar.bz2) = UU0aU+KxwRzmRJkfjsxb40Fy408=
SHA256 (TwistedNews-11.0.0.tar.bz2) = ijn9bDj4kCm2AowV68fikJG2KlZbLlLj3bTjbYl3PMQ=
SIZE (TwistedNews-11.0.0.tar.bz2) = 19289
MD5 (TwistedNews-11.1.0.tar.bz2) = 06yceyRGbWSSd24UjWadAA==
RMD160 (TwistedNews-11.1.0.tar.bz2) = z8oVCMRxvdJgvBf69OAiVXZgtHI=
SHA1 (TwistedNews-11.1.0.tar.bz2) = DkagRL9DPWVfebFfq1MWVH48FME=
SHA256 (TwistedNews-11.1.0.tar.bz2) = rSqc+rVXAjgtpvbL1pz8phT5WGZd93HNlj0sbkfHFnc=
SIZE (TwistedNews-11.1.0.tar.bz2) = 19309

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.6 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.7 2011/12/08 20:15:40 eric Exp $
COMMENT= low-level networking for Twisted
CATEGORIES+= net
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedPair-${VERSION}
PKGNAME= py-twisted-pair-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedPair

View File

@ -1,5 +1,5 @@
MD5 (TwistedPair-11.0.0.tar.bz2) = UfBL0cdip/+7/QxgeWMUWA==
RMD160 (TwistedPair-11.0.0.tar.bz2) = Zw1pBezbfT7L3I6+3lH/nouq80A=
SHA1 (TwistedPair-11.0.0.tar.bz2) = qYux9PwOLwSPS5Z/PXRMQTRX6X4=
SHA256 (TwistedPair-11.0.0.tar.bz2) = PmvGoROFUEdZ6giXoQ0nu85DG0JvYCM9GzbYZNQgKE8=
SIZE (TwistedPair-11.0.0.tar.bz2) = 9133
MD5 (TwistedPair-11.1.0.tar.bz2) = xmH3GxXv881mc3sDwnnPqQ==
RMD160 (TwistedPair-11.1.0.tar.bz2) = CyvxfJ2PVkJCF1hbJo83PKzpZ3s=
SHA1 (TwistedPair-11.1.0.tar.bz2) = Lte6J94lT2FzYtI1JpCBcQ2C84M=
SHA256 (TwistedPair-11.1.0.tar.bz2) = oiCg9Eripdm/KRgckxAmlIzKOhCIo7Dt9K3xtaorKM8=
SIZE (TwistedPair-11.1.0.tar.bz2) = 9141

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.14 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.15 2011/12/08 20:15:40 eric Exp $
COMMENT= process management module for Twisted
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedRunner-${VERSION}
PKGNAME= py-twisted-runner-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedRunner

View File

@ -1,5 +1,5 @@
MD5 (TwistedRunner-11.0.0.tar.bz2) = pW1+XyYueAUWKAWq7i7xWw==
RMD160 (TwistedRunner-11.0.0.tar.bz2) = nfMU2ltTKqpzXvRfc6XsY2ug+l0=
SHA1 (TwistedRunner-11.0.0.tar.bz2) = ZzRRMixASoimr9fU2pOCzZV5tbA=
SHA256 (TwistedRunner-11.0.0.tar.bz2) = wPYrSWC5Ei6JjVaMrWr95uycBJNz5bG3ZPJFM1gv4/U=
SIZE (TwistedRunner-11.0.0.tar.bz2) = 13267
MD5 (TwistedRunner-11.1.0.tar.bz2) = IZl4KNWgPtArAzSskWQCSQ==
RMD160 (TwistedRunner-11.1.0.tar.bz2) = e4QDYGRW6XuQsmPbtGIz47ldn28=
SHA1 (TwistedRunner-11.1.0.tar.bz2) = P2T6DAyCHXm0UoO3PJZjwkx1Qeo=
SHA256 (TwistedRunner-11.1.0.tar.bz2) = nKYeHI8YzREg25WHQmAsyxCujSV+bryaCC8nA1ipU6w=
SIZE (TwistedRunner-11.1.0.tar.bz2) = 13210

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.5 2011/06/20 10:25:33 eric Exp $
@comment $OpenBSD: PLIST,v 1.6 2011/12/08 20:15:40 eric Exp $
lib/python${MODPY_VERSION}/site-packages/Twisted_Runner-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/twisted_runner.py
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/twisted_runner.pyc
@ -19,8 +19,6 @@ lib/python${MODPY_VERSION}/site-packages/twisted/runner/procmon.py
lib/python${MODPY_VERSION}/site-packages/twisted/runner/procmon.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/runner/procmontap.py
lib/python${MODPY_VERSION}/site-packages/twisted/runner/procmontap.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/runner/procutils.py
lib/python${MODPY_VERSION}/site-packages/twisted/runner/procutils.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/runner/test/
lib/python${MODPY_VERSION}/site-packages/twisted/runner/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/twisted/runner/test/__init__.pyc

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= HTTP protocol implementation
CATEGORIES+= www
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedWeb-${VERSION}
PKGNAME= py-twisted-web-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedWeb

View File

@ -1,5 +1,5 @@
MD5 (TwistedWeb-11.0.0.tar.bz2) = HEtlDfWQMSX0XbzZRjz9uQ==
RMD160 (TwistedWeb-11.0.0.tar.bz2) = QpqGve4dajr45T1A0zqBnM0ztYM=
SHA1 (TwistedWeb-11.0.0.tar.bz2) = LOGFxq1dZ7DT6ACeMOGMZRvKFVw=
SHA256 (TwistedWeb-11.0.0.tar.bz2) = hkoIqig7ppDzXPvBi6k5qLM2vGrUUqKoVb3xs4iqrFM=
SIZE (TwistedWeb-11.0.0.tar.bz2) = 358074
MD5 (TwistedWeb-11.1.0.tar.bz2) = YPV56dbvAeD6jvFGtcobLg==
RMD160 (TwistedWeb-11.1.0.tar.bz2) = aia/aZYdzRtwzJVqLoiUWDI07Vo=
SHA1 (TwistedWeb-11.1.0.tar.bz2) = NAYz5GYs+dTqEBsHOHI7Qb5uQ3M=
SHA256 (TwistedWeb-11.1.0.tar.bz2) = SFjhEStlIMFcoCdlaVN6Hl7J2pa6ypuRB993ueT1300=
SIZE (TwistedWeb-11.1.0.tar.bz2) = 373315

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.15 2011/09/16 09:24:56 espie Exp $
# $OpenBSD: Makefile,v 1.16 2011/12/08 20:15:40 eric Exp $
COMMENT= chat and instant messaging module for Twisted
VERSION= 11.0.0
VERSION= 11.1.0
DISTNAME= TwistedWords-${VERSION}
PKGNAME= py-twisted-words-${VERSION}
REVISION= 0
HOMEPAGE= http://twistedmatrix.com/trac/wiki/TwistedWords

View File

@ -1,5 +1,5 @@
MD5 (TwistedWords-11.0.0.tar.bz2) = WhvJAGtc9LR/gpAGWps0eg==
RMD160 (TwistedWords-11.0.0.tar.bz2) = gxUKqIuLWy4ZNnWidTPTZVPbekc=
SHA1 (TwistedWords-11.0.0.tar.bz2) = U+/RUKRqssjZsz1nSAlKnIsBGRA=
SHA256 (TwistedWords-11.0.0.tar.bz2) = V0/79wa+jMQoHy1k4AbV76Nf2qYRiVSURT7J+4DOqN0=
SIZE (TwistedWords-11.0.0.tar.bz2) = 164453
MD5 (TwistedWords-11.1.0.tar.bz2) = BsDeHQhRUJZXoG9fnn8gFQ==
RMD160 (TwistedWords-11.1.0.tar.bz2) = IqJn4jFW+sSHQpD91p7+aXBM6NQ=
SHA1 (TwistedWords-11.1.0.tar.bz2) = U9D96FBESaH6WyjLRbkFZbJ8Mps=
SHA256 (TwistedWords-11.1.0.tar.bz2) = e9muy8iIpqUVsWcvMbhVXM3I63dJDV2kHIpMigDr/fg=
SIZE (TwistedWords-11.1.0.tar.bz2) = 165255

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.6 2011/06/20 10:25:33 eric Exp $
@comment $OpenBSD: PLIST,v 1.7 2011/12/08 20:15:40 eric Exp $
lib/python${MODPY_VERSION}/site-packages/Twisted_Words-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/twisted_words.py
lib/python${MODPY_VERSION}/site-packages/twisted/plugins/twisted_words.pyc
@ -128,7 +128,7 @@ lib/python${MODPY_VERSION}/site-packages/twisted/words/xish/xpath.pyc
lib/python${MODPY_VERSION}/site-packages/twisted/words/xish/xpathparser.g
lib/python${MODPY_VERSION}/site-packages/twisted/words/xish/xpathparser.py
lib/python${MODPY_VERSION}/site-packages/twisted/words/xish/xpathparser.pyc
@exec %D/sbin/twisted-regen-dropin.cache
@unexec %D/sbin/twisted-regen-dropin.cache
lib/python${MODPY_VERSION}/site-packages/twisted/words/xmpproutertap.py
lib/python${MODPY_VERSION}/site-packages/twisted/words/xmpproutertap.pyc
@exec %D/sbin/twisted-regen-dropin.cache
@unexec %D/sbin/twisted-regen-dropin.cache