Update to 2.1.0

This commit is contained in:
exu 2025-03-10 19:43:55 +01:00
parent 4cc7a9030c
commit a82eddea5c
2 changed files with 32 additions and 32 deletions

View File

@ -1,7 +1,7 @@
pkgbase = streamrip pkgbase = streamrip
pkgdesc = A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud. pkgdesc = A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud.
pkgver = 2.0.5 pkgver = 2.1.0
pkgrel = 2 pkgrel = 1
url = https://github.com/nathom/streamrip url = https://github.com/nathom/streamrip
arch = any arch = any
license = GPL3 license = GPL3
@ -29,7 +29,7 @@ pkgbase = streamrip
depends = python-tomlkit depends = python-tomlkit
depends = python-requests depends = python-requests
optdepends = ffmpeg: Additional functionality optdepends = ffmpeg: Additional functionality
source = git+https://github.com/nathom/streamrip.git#tag=v2.0.5 source = git+https://github.com/nathom/streamrip.git#tag=v2.1.0
sha256sums = SKIP sha256sums = SKIP
pkgname = streamrip pkgname = streamrip

View File

@ -1,50 +1,50 @@
# Maintainer: exu <aur _a_ frm01 _d_ net> # Maintainer: exu <aur _a_ frm01 _d_ net>
pkgname=streamrip pkgname=streamrip
pkgver=2.0.5 pkgver=2.1.0
pkgrel=2 pkgrel=1
pkgdesc='A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud.' pkgdesc='A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud.'
arch=(any) arch=(any)
url='https://github.com/nathom/streamrip' url='https://github.com/nathom/streamrip'
license=('GPL3') license=('GPL3')
depends=(python depends=(python
python-aiodns python-aiodns
python-aiofiles python-aiofiles
python-aiohttp python-aiohttp
python-aiolimiter # AUR python-aiolimiter # AUR
python-appdirs python-appdirs
python-click-help-colors python-click-help-colors
python-deezer-py # AUR python-deezer-py # AUR
python-m3u8 # AUR python-m3u8 # AUR
python-mutagen python-mutagen
python-pathvalidate # AUR python-pathvalidate # AUR
python-pillow python-pillow
python-pycryptodomex python-pycryptodomex
python-pytest-asyncio python-pytest-asyncio
python-pytest-mock python-pytest-mock
python-rich python-rich
python-simple-term-menu python-simple-term-menu
python-tomlkit python-tomlkit
python-requests) python-requests)
makedepends=(git makedepends=(git
python-build python-build
python-installer python-installer
python-poetry) python-poetry)
optdepends=('ffmpeg: Additional functionality') optdepends=('ffmpeg: Additional functionality')
source=(git+https://github.com/nathom/streamrip.git#tag=v$pkgver) source=(git+https://github.com/nathom/streamrip.git#tag=v$pkgver)
sha256sums=('SKIP') sha256sums=('SKIP')
pkgver() { pkgver() {
cd streamrip cd streamrip
printf "${pkgver//-/.}" printf "${pkgver//-/.}"
} }
build() { build() {
cd streamrip cd streamrip
python -m build -wn python -m build -wn
} }
package() { package() {
cd streamrip cd streamrip
python -m installer -d "$pkgdir" dist/*.whl python -m installer -d "$pkgdir" dist/*.whl
} }