-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4087774
commit 43c35bb
Showing
1 changed file
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,33 @@ | ||
# Template file for 'beets' | ||
pkgname=beets | ||
version=2.0.0 | ||
revision=2 | ||
build_style=python3-module | ||
hostmakedepends="python3-setuptools" | ||
version=2.1.0 | ||
revision=1 | ||
build_style=python3-pep517 | ||
# tests requires unpackaged librosa, pytest-flask | ||
make_check_args="--ignore=test/plugins/test_autobpm.py | ||
--ignore=test/plugins/test_aura.py" | ||
hostmakedepends="python3-poetry-core python3-Sphinx" | ||
depends="python3-munkres python3-musicbrainzngs python3-Unidecode python3-yaml | ||
python3-jellyfish python3-mediafile python3-confuse python3-typing_extensions" | ||
python3-jellyfish python3-mediafile python3-confuse python3-platformdirs" | ||
checkdepends="$depends python3-BeautifulSoup4 python3-Flask python3-mock | ||
python3-pylast python3-pytest python3-pytest-cov python3-mpd2 python3-xdg | ||
python3-responses python3-requests-oauthlib python3-reflink python3-rarfile | ||
python3-discogs_client python3-py7zr" | ||
python3-discogs_client python3-py7zr python3-typing_extensions | ||
python3-dateutil python3-gobject gstreamer1 ffmpeg" | ||
short_desc="Media library management system for obsessive-compulsive music geeks" | ||
maintainer="Joel Beckmeyer <[email protected]>" | ||
license="MIT" | ||
homepage="https://beets.io" | ||
changelog="https://raw.githubusercontent.com/beetbox/beets/master/docs/changelog.rst" | ||
distfiles="${PYPI_SITE}/b/${pkgname}/${pkgname}-${version}.tar.gz" | ||
checksum=3b1172b5bc3729e33a6ea4689f7d0236682bf828c67196b6a260f0389cb1f8cf | ||
distfiles="https://github.com/beetbox/beets/archive/refs/tags/v${version}.tar.gz" | ||
checksum=9cd7a3e1d63494e59ece9e1ed64a31e2fb6496f53d88179c1f5cf0b2fa5d453c | ||
make_check=ci-skip # tests don't work as root | ||
|
||
post_install() { | ||
vman man/beet.1 | ||
vman man/beetsconfig.5 | ||
vlicense LICENSE | ||
vcompletion extra/_beet zsh beet | ||
cd docs | ||
make man | ||
vman _build/man/beet.1 | ||
vman _build/man/beetsconfig.5 | ||
} |