diff options
author | Rene Ladan <rene@FreeBSD.org> | 2017-11-11 10:30:10 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2017-11-11 10:30:10 +0000 |
commit | 325ab7be8bd1ed2ca6d66f55090657a42620938d (patch) | |
tree | efaf3b23acddd7f70c28254ebacb5454b9ad0689 /security/py-xmlsec/files/patch-setup.py | |
parent | Update devel/py-twilio to version 6.8.4. (diff) |
Remove expired ports:
2017-11-04 lang/ats: Unmaintained, outdated, needs lots of refreshment
2017-11-09 games/lordsawar: Broken for more than 6 months
2017-11-09 databases/elixir-ecto_migrate: Broken for more than 6 months
2017-11-09 audio/gspeakers: Broken for more than 6 months
2017-11-09 net/p5-Filesys-SmbClient: Broken for more than 6 months
2017-11-09 audio/tclmidi: Broken for more than 6 months
2017-11-09 security/py-xmlsec: Broken for more than 6 months
2017-11-09 security/samba-virusfilter: Broken for more than 6 months
2017-11-09 textproc/ocaml-pxp: Broken for more than 6 months
2017-11-09 audio/sooperlooper: Broken for more than 6 months
2017-11-09 devel/dwarves: Broken for more than 6 months
2017-11-09 devel/cl-cffi-sbcl: Broken for more than 6 months
2017-11-09 devel/pinba_engine: Broken for more than 6 months
2017-11-09 devel/py-event: Broken for more than 6 months
Notes
Notes:
svn path=/head/; revision=453966
Diffstat (limited to 'security/py-xmlsec/files/patch-setup.py')
-rw-r--r-- | security/py-xmlsec/files/patch-setup.py | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/security/py-xmlsec/files/patch-setup.py b/security/py-xmlsec/files/patch-setup.py deleted file mode 100644 index 073eab6bd794..000000000000 --- a/security/py-xmlsec/files/patch-setup.py +++ /dev/null @@ -1,53 +0,0 @@ ---- setup.py.orig Fri Feb 13 08:55:47 2004 -+++ setup.py Fri Feb 13 08:57:30 2004 -@@ -71,22 +71,22 @@ - - # the crypto engine name : openssl, gnutls or nss - xmlsec1_crypto = "openssl" --if 'build' in sys.argv: -- msg = '\nChoose a crypto engine :\n' \ -- ' 1. OpenSSL\n' \ -- ' 2. GnuTLS\n' \ -- ' 3. NSS\n' \ -- 'Your choice : ' -- reply = raw_input(msg) -- choice = None -- if reply: -- choice = reply[0] -- if choice == '1': -- xmlsec1_crypto = "openssl" -- elif choice == '2': -- xmlsec1_crypto = "gnutls" -- elif choice == '3': -- xmlsec1_crypto = "nss" -+#if 'build' in sys.argv: -+# msg = '\nChoose a crypto engine :\n' \ -+# ' 1. OpenSSL\n' \ -+# ' 2. GnuTLS\n' \ -+# ' 3. NSS\n' \ -+# 'Your choice : ' -+# reply = raw_input(msg) -+# choice = None -+# if reply: -+# choice = reply[0] -+# if choice == '1': -+# xmlsec1_crypto = "openssl" -+# elif choice == '2': -+# xmlsec1_crypto = "gnutls" -+# elif choice == '3': -+# xmlsec1_crypto = "nss" - - define_macros = [] - include_dirs = [] -@@ -104,7 +104,10 @@ - if flag[2:] not in include_dirs: - include_dirs.append(flag[2:]) - elif flag[:2] == "-D": -- t = tuple(flag[2:].split('=')) -+ t = flag[2:].split('=') -+ if (len(t) == 1): -+ t.append('1') -+ t = tuple(t) - if t not in define_macros: - define_macros.append(t) - else: |