python3-twisted: initial import

This commit is contained in:
Danny Rawlins 2017-11-05 19:16:51 +11:00
parent 0e071f1c28
commit afd71b192a
4 changed files with 2627 additions and 0 deletions

2600
python3-twisted/.footprint Normal file

File diff suppressed because it is too large Load Diff

1
python3-twisted/.md5sum Normal file
View File

@ -0,0 +1 @@
1b1b5747482dddb2ff55fd57365ea767 twisted-17.9.0.tar.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39jAh9ysL1RyccX5FL/klTIJ1s5Ix+W21ZmM6370y4VZ55x26ayZrzWpn//EPgriPbE3YUaRj9tN8Bd5D1nUtgg=
SHA256 (Pkgfile) = fc360e5fd527906b3f6f0f697c9d4ba829a6a197bbc82ed142cdcbf6493463e5
SHA256 (.footprint) = 36feac0185c7609bca9752bca33f588a942f8d065aa8a06fca0f8b791473024f
SHA256 (twisted-17.9.0.tar.gz) = c946cf2c6829119df49e68e69003ae978a7e74e61df186c5da80161d641b3852

21
python3-twisted/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: Python event-driven networking framework.
# URL: http://www.twistedmatrix.com/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python3-Automat python3-constantly python3-hyperlink python3-incremental python3-zope-interface
name=python3-twisted
version=17.9.0
release=1
source=(https://github.com/twisted/twisted/archive/twisted-$version.tar.gz)
build() {
cd twisted-twisted-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
# clean up bins
cd $PKG/usr/bin
for f in *; do
mv "$f" "${f%}3"
done
}