Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beets: python3 upgrade followups #4095

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions spk/beets/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
SPK_NAME = beets
SPK_VERS = 1.4.9
SPK_REV = 4
SPK_REV = 5
SPK_ICON = src/beets.png

PIP = pip3
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It turns out that the version used by the spk was built using the environment’s python 3 installation.

PIP = $(WORK_DIR)/../../../native/python3/work-native/install/usr/local/bin/pip
BUILD_DEPENDS = native/python3

WHEELS = src/requirements.txt
SPK_DEPENDS = "python3>=3.5.6-8"
SPK_DEPENDS = "python3>=3.7.7"

MAINTAINER = ymartin59
DESCRIPTION = "Beets is the media library management system for obsessive-compulsive music geeks. The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes. It then provides a bouquet of tools for manipulating and accessing your music. Plugins not available due to lacking dependencies: AcousticBrainz Submit, Gmusic, ReplayGain."
DISPLAY_NAME = beets

CHANGELOG = "1. Upgrade to beets 1.4.9<br/>2. Update to python 3."
CHANGELOG = "1. Upgraded minimum version of python 3."

HOMEPAGE = http://beets.io/
LICENSE = GPL
Expand Down