deluge: 2.0.3 -> 2.0.5; now uses python3

This commit is contained in:
Tim Biermann 2022-02-05 18:16:21 +01:00
parent f83cc01996
commit ab534054fe
3 changed files with 1714 additions and 1660 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+IhPPYjGEiGRgnrBcrKT1m3aC/zcvq1ARqEEUqzNa0FzMQE5Ct32R2y6/Zza83iHm1ArD0QCZ1hP9uWXQmMOg0=
SHA256 (Pkgfile) = 79d61b6d504950f840e6ee22f1c2c0cca95d6629a5be87fff6dd53eecddb813d
SHA256 (.footprint) = b91252bdc20a9fc08566feb804689ebeff0c447afc338aea7103df637c9a5bec
SHA256 (deluge-2.0.3.tar.xz) = 7e7ae8e6ca2a2bf0d487227cecf81e27332f0b92b567cc2bda38e47d859da891
RWSagIOpLGJF3zQ5QJLtPkhhMXsHDdUHWp+lFl4TGxqRjBDEFRZ3cDfSkseD/1i6M6CSFwZfeRtaKIbO4Jc1L7Q8b7imOHsY6Q0=
SHA256 (Pkgfile) = 591a8965612ab99d0693c9d15fe85f0f3f2f598f3f0232c4755c369c97497eb2
SHA256 (.footprint) = 0a5e18572daba652c64223437d985c505cfdf5068b79b82a96ef726a2deef7f5
SHA256 (deluge-2.0.5.tar.xz) = c4bd04abfd211b65218be03f3c46d26f44024884de10e01859fb856fdd6f25d8

View File

@ -1,16 +1,16 @@
# Description: A bittorrent client based on Python and GTK.
# URL: https://www.deluge-torrent.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: librsvg libtorrent-rasterbar python-chardet python-pyopenssl python-pyxdg python-twisted python3-pyxdg
# Depends on: librsvg libtorrent-rasterbar python3-chardet python3-pyopenssl python3-pyxdg python3-twisted python3-pyxdg
name=deluge
version=2.0.3
version=2.0.5
release=1
source=(https://ftp.osuosl.org/pub/deluge/source/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
/usr/bin/python setup.py build
/usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1 --skip-build
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1 --skip-build
}