diff options
| author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-04 10:57:03 +0100 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-04 10:57:03 +0100 |
| commit | 5c2d9841cd24561a8d2380c349c024cf43d9ba45 (patch) | |
| tree | 4e2f28b8a4018a0e607e811c85f9678dbe9d7f9b /meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb | |
| parent | f39f9057f7289cef45971ff53ecd97ff3b4c5f99 (diff) | |
| download | meta-openembedded-5c2d9841cd24561a8d2380c349c024cf43d9ba45.tar.gz | |
python-twisted: update to 10.2.0
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb | 224 |
1 files changed, 224 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb b/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb new file mode 100644 index 0000000000..14e8f18e61 --- /dev/null +++ b/meta-oe/recipes-devtools/python/python-twisted_10.2.0.bb | |||
| @@ -0,0 +1,224 @@ | |||
| 1 | DESCRIPTION = "Twisted is an event-driven networking framework written in Python and licensed under the LGPL. \ | ||
| 2 | Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols \ | ||
| 3 | (including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more." | ||
| 4 | HOMEPAGE = "http://www.twistedmatrix.com" | ||
| 5 | SECTION = "console/network" | ||
| 6 | |||
| 7 | #twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather than LGPL. | ||
| 8 | LICENSE = "MIT" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c3159ad36d96a939fcd8f2c2c9b9d08a" | ||
| 10 | |||
| 11 | SRC_URI = "http://tmrc.mit.edu/mirror/twisted/Twisted/10.2/Twisted-${PV}.tar.bz2 " | ||
| 12 | SRC_URI[md5sum] = "73da62c793269eade8121da336b01ba5" | ||
| 13 | SRC_URI[sha256sum] = "562ed61c18aa72da99c23fb19c2c101d178995eb3a78ab3c09560a613e180c84" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/Twisted-${PV}" | ||
| 16 | |||
| 17 | inherit setuptools | ||
| 18 | |||
| 19 | do_install_append() { | ||
| 20 | # remove some useless files before packaging | ||
| 21 | find ${D} -name "*.bat" -o -name "*.c" -o -name "*.h" -exec rm {} \; | ||
| 22 | } | ||
| 23 | |||
| 24 | PACKAGES += "\ | ||
| 25 | ${PN}-zsh \ | ||
| 26 | ${PN}-test \ | ||
| 27 | ${PN}-protocols \ | ||
| 28 | ${PN}-bin \ | ||
| 29 | ${PN}-conch \ | ||
| 30 | ${PN}-lore \ | ||
| 31 | ${PN}-mail \ | ||
| 32 | ${PN}-names \ | ||
| 33 | ${PN}-news \ | ||
| 34 | ${PN}-runner \ | ||
| 35 | ${PN}-web \ | ||
| 36 | ${PN}-words \ | ||
| 37 | ${PN}-flow \ | ||
| 38 | ${PN}-pair \ | ||
| 39 | ${PN}-core \ | ||
| 40 | " | ||
| 41 | |||
| 42 | RDEPENDS_${PN} = "python-core python-zopeinterface" | ||
| 43 | RDEPENDS_${PN} += "\ | ||
| 44 | ${PN}-bin \ | ||
| 45 | ${PN}-conch \ | ||
| 46 | ${PN}-lore \ | ||
| 47 | ${PN}-mail \ | ||
| 48 | ${PN}-names \ | ||
| 49 | ${PN}-news \ | ||
| 50 | ${PN}-runner \ | ||
| 51 | ${PN}-web \ | ||
| 52 | ${PN}-words \ | ||
| 53 | " | ||
| 54 | |||
| 55 | ALLOW_EMPTY_${PN} = "1" | ||
| 56 | FILES_${PN} = "" | ||
| 57 | |||
| 58 | FILES_${PN}-test = " \ | ||
| 59 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/test \ | ||
| 60 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/test \ | ||
| 61 | " | ||
| 62 | |||
| 63 | FILES_${PN}-protocols = " \ | ||
| 64 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/ \ | ||
| 65 | " | ||
| 66 | |||
| 67 | FILES_${PN}-zsh = " \ | ||
| 68 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \ | ||
| 69 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \ | ||
| 70 | " | ||
| 71 | |||
| 72 | FILES_${PN}-bin = " \ | ||
| 73 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/_c_urlarg.so \ | ||
| 74 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/cBanana.so \ | ||
| 75 | " | ||
| 76 | |||
| 77 | FILES_${PN}-conch = " \ | ||
| 78 | ${bindir}/ckeygen \ | ||
| 79 | ${bindir}/tkconch \ | ||
| 80 | ${bindir}/conch \ | ||
| 81 | ${bindir}/conchftp \ | ||
| 82 | ${bindir}/cftp \ | ||
| 83 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_conch.py* \ | ||
| 84 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/conch \ | ||
| 85 | " | ||
| 86 | |||
| 87 | FILES_${PN}-core = " \ | ||
| 88 | ${bindir}/manhole \ | ||
| 89 | ${bindir}/mktap \ | ||
| 90 | ${bindir}/twistd \ | ||
| 91 | ${bindir}/tap2deb \ | ||
| 92 | ${bindir}/tap2rpm \ | ||
| 93 | ${bindir}/tapconvert \ | ||
| 94 | ${bindir}/tkmktap \ | ||
| 95 | ${bindir}/trial \ | ||
| 96 | ${bindir}/easy_install* \ | ||
| 97 | ${bindir}/pyhtmlizer \ | ||
| 98 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.so \ | ||
| 99 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \ | ||
| 100 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__init__.py* \ | ||
| 101 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/notestplugin.py* \ | ||
| 102 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/testplugin.py* \ | ||
| 103 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_ftp.py* \ | ||
| 104 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_inet.py* \ | ||
| 105 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_manhole.py* \ | ||
| 106 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_portforward.py* \ | ||
| 107 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_socks.py* \ | ||
| 108 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_telnet.py* \ | ||
| 109 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_trial.py* \ | ||
| 110 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/dropin.cache \ | ||
| 111 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/application \ | ||
| 112 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/cred \ | ||
| 113 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/enterprise \ | ||
| 114 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/internet \ | ||
| 115 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \ | ||
| 116 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \ | ||
| 117 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/persisted \ | ||
| 118 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols\ | ||
| 119 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python\ | ||
| 120 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/timeoutqueue.py* \ | ||
| 121 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/filepath.py* \ | ||
| 122 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dxprofile.py* \ | ||
| 123 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/plugin.py* \ | ||
| 124 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/htmlizer.py* \ | ||
| 125 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/__init__.py* \ | ||
| 126 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dispatch.py* \ | ||
| 127 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/hook.py* \ | ||
| 128 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadpool.py* \ | ||
| 129 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/otp.py* \ | ||
| 130 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/usage.py* \ | ||
| 131 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/roots.py* \ | ||
| 132 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/versions.py* \ | ||
| 133 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/urlpath.py* \ | ||
| 134 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/util.py* \ | ||
| 135 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/components.py* \ | ||
| 136 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/logfile.py* \ | ||
| 137 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/runtime.py* \ | ||
| 138 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/reflect.py* \ | ||
| 139 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/context.py* \ | ||
| 140 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadable.py* \ | ||
| 141 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/rebuild.py* \ | ||
| 142 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/failure.py* \ | ||
| 143 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/lockfile.py* \ | ||
| 144 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/formmethod.py* \ | ||
| 145 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/finalize.py* \ | ||
| 146 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/win32.py* \ | ||
| 147 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dist.py* \ | ||
| 148 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/shortcut.py* \ | ||
| 149 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zipstream.py* \ | ||
| 150 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/release.py* \ | ||
| 151 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/syslog.py* \ | ||
| 152 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/log.py* \ | ||
| 153 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/compat.py* \ | ||
| 154 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.py* \ | ||
| 155 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/procutils.py* \ | ||
| 156 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/text.py* \ | ||
| 157 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_twisted_zsh_stub \ | ||
| 158 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/scripts/ \ | ||
| 159 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/ \ | ||
| 160 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/tap/ \ | ||
| 161 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/trial/ \ | ||
| 162 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/__init__.py* \ | ||
| 163 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/_version.py* \ | ||
| 164 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/copyright.py* \ | ||
| 165 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/im.py* \ | ||
| 166 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \ | ||
| 167 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.py* \ | ||
| 168 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/*.py* \ | ||
| 169 | " | ||
| 170 | |||
| 171 | FILES_${PN}-lore = " \ | ||
| 172 | ${bindir}/bookify \ | ||
| 173 | ${bindir}/lore \ | ||
| 174 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_lore.py* \ | ||
| 175 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/lore \ | ||
| 176 | " | ||
| 177 | |||
| 178 | FILES_${PN}-mail = " \ | ||
| 179 | ${bindir}/mailmail \ | ||
| 180 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_mail.py* \ | ||
| 181 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/mail \ | ||
| 182 | " | ||
| 183 | |||
| 184 | FILES_${PN}-names = " \ | ||
| 185 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_names.py* \ | ||
| 186 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/names \ | ||
| 187 | " | ||
| 188 | |||
| 189 | FILES_${PN}-news = " \ | ||
| 190 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_news.py* \ | ||
| 191 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/news \ | ||
| 192 | " | ||
| 193 | |||
| 194 | FILES_${PN}-runner = " \ | ||
| 195 | ${libdir}/site-packages/twisted/runner/portmap.so \ | ||
| 196 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/runner\ | ||
| 197 | " | ||
| 198 | |||
| 199 | FILES_${PN}-web = " \ | ||
| 200 | ${bindir}/websetroot \ | ||
| 201 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_web.py* \ | ||
| 202 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/web\ | ||
| 203 | " | ||
| 204 | |||
| 205 | FILES_${PN}-words = " \ | ||
| 206 | ${bindir}/im \ | ||
| 207 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_words.py* \ | ||
| 208 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/words\ | ||
| 209 | " | ||
| 210 | |||
| 211 | FILES_${PN}-flow = " \ | ||
| 212 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_flow.py* \ | ||
| 213 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/flow \" | ||
| 214 | |||
| 215 | FILES_${PN}-pair = " \ | ||
| 216 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_pair.py* \ | ||
| 217 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/pair \ | ||
| 218 | " | ||
| 219 | |||
| 220 | FILES_${PN}-dbg += " \ | ||
| 221 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/.debug \ | ||
| 222 | ${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/.debug \ | ||
| 223 | " | ||
| 224 | |||
