add 64/32bit linux split
This commit is contained in:
parent
8e6242c2e4
commit
75f9a2fcbc
1825 changed files with 1 additions and 0 deletions
10
Linux_x86_64/bin/alembic
Executable file
10
Linux_x86_64/bin/alembic
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/python
|
||||
# EASY-INSTALL-ENTRY-SCRIPT: 'alembic==0.6.5','console_scripts','alembic'
|
||||
__requires__ = 'alembic==0.6.5'
|
||||
import sys
|
||||
from pkg_resources import load_entry_point
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(
|
||||
load_entry_point('alembic==0.6.5', 'console_scripts', 'alembic')()
|
||||
)
|
||||
15
Linux_x86_64/bin/cftp
Executable file
15
Linux_x86_64/bin/cftp
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.conch.scripts.cftp import run
|
||||
run()
|
||||
15
Linux_x86_64/bin/ckeygen
Executable file
15
Linux_x86_64/bin/ckeygen
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.conch.scripts.ckeygen import run
|
||||
run()
|
||||
15
Linux_x86_64/bin/conch
Executable file
15
Linux_x86_64/bin/conch
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.conch.scripts.conch import run
|
||||
run()
|
||||
11
Linux_x86_64/bin/easy_install
Executable file
11
Linux_x86_64/bin/easy_install
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from setuptools.command.easy_install import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
||||
11
Linux_x86_64/bin/easy_install-2.7
Executable file
11
Linux_x86_64/bin/easy_install-2.7
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from setuptools.command.easy_install import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(main())
|
||||
88
Linux_x86_64/bin/edsig
Executable file
88
Linux_x86_64/bin/edsig
Executable file
|
|
@ -0,0 +1,88 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import os, sys
|
||||
import ed25519
|
||||
from hashlib import sha256
|
||||
|
||||
def help():
|
||||
print """\
|
||||
Usage: (ed25519 version %s)
|
||||
|
||||
edsig generate [STEM]
|
||||
creates keypair, writes to 'STEM.signing.key' and 'STEM.verifying.key'
|
||||
default is to 'signing.key' and 'verifying.key'
|
||||
|
||||
edsig sign (signing.key|keyfile) message.file
|
||||
prints signature to stdout
|
||||
If message.file is "-", reads from stdin.
|
||||
|
||||
edsig verify (verifying.key|keyfile) message.file (signature|sigfile)
|
||||
prints 'good signature!' or raises exception
|
||||
If message.file is "-", reads from stdin.
|
||||
|
||||
Key-providing arguments can either be the key itself, or point to a file
|
||||
containing the key.
|
||||
""" % ed25519.__version__
|
||||
|
||||
def remove_prefix(prefix, s):
|
||||
if not s.startswith(prefix):
|
||||
raise ValueError("no prefix found")
|
||||
return s[len(prefix):]
|
||||
|
||||
def data_from_arg(arg, prefix, keylen, readable):
|
||||
if (readable
|
||||
and arg.startswith(prefix)
|
||||
and len(remove_prefix(prefix, arg))==keylen):
|
||||
return arg
|
||||
if os.path.isfile(arg):
|
||||
return open(arg,"r").read()
|
||||
raise ValueError("unable to get data from '%s'" % arg)
|
||||
|
||||
def message_rep(msg_arg):
|
||||
if msg_arg == "-":
|
||||
f = sys.stdin
|
||||
else:
|
||||
f = open(msg_arg, "rb")
|
||||
h = sha256()
|
||||
while True:
|
||||
data = f.read(16*1024)
|
||||
if not data:
|
||||
break
|
||||
h.update(data)
|
||||
return h.digest()
|
||||
|
||||
if len(sys.argv) < 2:
|
||||
help()
|
||||
elif sys.argv[1] == "generate":
|
||||
sk,vk = ed25519.create_keypair()
|
||||
if len(sys.argv) > 2:
|
||||
sk_outfile = sys.argv[2]+".signing.key"
|
||||
vk_outfile = sys.argv[2]+".verifying.key"
|
||||
else:
|
||||
sk_outfile = "signing.key"
|
||||
vk_outfile = "verifying.key"
|
||||
sk_s = sk.to_seed(prefix="sign0-")
|
||||
vk_s = vk.to_ascii("verf0-", "base32")
|
||||
open(sk_outfile,"w").write(sk_s)
|
||||
open(vk_outfile,"w").write(vk_s+"\n")
|
||||
print "wrote private signing key to", sk_outfile
|
||||
print "write public verifying key to", vk_outfile
|
||||
elif sys.argv[1] == "sign":
|
||||
sk_arg = sys.argv[2]
|
||||
msg_arg = sys.argv[3]
|
||||
sk = ed25519.SigningKey(data_from_arg(sk_arg, "sign0-", 52, False),
|
||||
prefix="sign0-")
|
||||
sig = sk.sign(message_rep(msg_arg), prefix="sig0-", encoding="base32")
|
||||
print sig
|
||||
elif sys.argv[1] == "verify":
|
||||
vk_arg = sys.argv[2]
|
||||
msg_arg = sys.argv[3]
|
||||
sig_arg = sys.argv[4]
|
||||
vk = ed25519.VerifyingKey(data_from_arg(vk_arg, "verf0-", 52, True),
|
||||
prefix="verf0-", encoding="base32")
|
||||
sig = data_from_arg(sig_arg, "sig0-", 103, True)
|
||||
vk.verify(sig, message_rep(msg_arg),
|
||||
prefix="sig0-", encoding="base32") # could raise BadSignature
|
||||
print "good signature!"
|
||||
else:
|
||||
help()
|
||||
16
Linux_x86_64/bin/lore
Executable file
16
Linux_x86_64/bin/lore
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.lore.scripts.lore import run
|
||||
run()
|
||||
|
||||
20
Linux_x86_64/bin/mailmail
Executable file
20
Linux_x86_64/bin/mailmail
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
This script attempts to send some email.
|
||||
"""
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.mail.scripts import mailmail
|
||||
mailmail.run()
|
||||
|
||||
46
Linux_x86_64/bin/mako-render
Executable file
46
Linux_x86_64/bin/mako-render
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
def render(data, filename, kw):
|
||||
from mako.template import Template
|
||||
from mako.lookup import TemplateLookup
|
||||
|
||||
lookup = TemplateLookup(["."])
|
||||
return Template(data, filename, lookup=lookup).render(**kw)
|
||||
|
||||
def varsplit(var):
|
||||
if "=" not in var:
|
||||
return (var, "")
|
||||
return var.split("=", 1)
|
||||
|
||||
def main(argv=None):
|
||||
from os.path import isfile
|
||||
from sys import stdin
|
||||
|
||||
if argv is None:
|
||||
import sys
|
||||
argv = sys.argv
|
||||
|
||||
from optparse import OptionParser
|
||||
|
||||
parser = OptionParser("usage: %prog [FILENAME]")
|
||||
parser.add_option("--var", default=[], action="append",
|
||||
help="variable (can be used multiple times, use name=value)")
|
||||
|
||||
opts, args = parser.parse_args(argv[1:])
|
||||
if len(args) not in (0, 1):
|
||||
parser.error("wrong number of arguments") # Will exit
|
||||
|
||||
if (len(args) == 0) or (args[0] == "-"):
|
||||
fo = stdin
|
||||
else:
|
||||
filename = args[0]
|
||||
if not isfile(filename):
|
||||
raise SystemExit("error: can't find %s" % filename)
|
||||
fo = open(filename)
|
||||
|
||||
kw = dict([varsplit(var) for var in opts.var])
|
||||
data = fo.read()
|
||||
print(render(data, filename, kw))
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
16
Linux_x86_64/bin/manhole
Executable file
16
Linux_x86_64/bin/manhole
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
This script runs GtkManhole, a client for Twisted.Manhole
|
||||
"""
|
||||
import sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
from twisted.scripts import manhole
|
||||
manhole.run()
|
||||
12
Linux_x86_64/bin/pyhtmlizer
Executable file
12
Linux_x86_64/bin/pyhtmlizer
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
import sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
from twisted.scripts.htmlizer import run
|
||||
run()
|
||||
16
Linux_x86_64/bin/tap2deb
Executable file
16
Linux_x86_64/bin/tap2deb
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
tap2deb
|
||||
"""
|
||||
import sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
from twisted.scripts import tap2deb
|
||||
tap2deb.run()
|
||||
19
Linux_x86_64/bin/tap2rpm
Executable file
19
Linux_x86_64/bin/tap2rpm
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
# based off the tap2deb code
|
||||
# tap2rpm built by Sean Reifschneider, <jafo@tummy.com>
|
||||
|
||||
"""
|
||||
tap2rpm
|
||||
"""
|
||||
import sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
from twisted.scripts import tap2rpm
|
||||
tap2rpm.run()
|
||||
12
Linux_x86_64/bin/tapconvert
Executable file
12
Linux_x86_64/bin/tapconvert
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
import sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
from twisted.scripts.tapconvert import run
|
||||
run()
|
||||
15
Linux_x86_64/bin/tkconch
Executable file
15
Linux_x86_64/bin/tkconch
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
import sys, os
|
||||
extra = os.path.dirname(os.path.dirname(sys.argv[0]))
|
||||
sys.path.insert(0, extra)
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
sys.path.remove(extra)
|
||||
|
||||
from twisted.conch.scripts.tkconch import run
|
||||
run()
|
||||
18
Linux_x86_64/bin/trial
Executable file
18
Linux_x86_64/bin/trial
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
import os, sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
# begin chdir armor
|
||||
sys.path[:] = map(os.path.abspath, sys.path)
|
||||
# end chdir armor
|
||||
|
||||
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
||||
|
||||
from twisted.scripts.trial import run
|
||||
run()
|
||||
14
Linux_x86_64/bin/twistd
Executable file
14
Linux_x86_64/bin/twistd
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
import os, sys
|
||||
|
||||
try:
|
||||
import _preamble
|
||||
except ImportError:
|
||||
sys.exc_clear()
|
||||
|
||||
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
||||
|
||||
from twisted.scripts.twistd import run
|
||||
run()
|
||||
Loading…
Add table
Add a link
Reference in a new issue