Skip to content

Commit

Permalink
bazarr: upgrade 1.3.0 -> 1.4.0
Browse files Browse the repository at this point in the history
* Add back support for ARMv7 architecture
* Relax hardcoded version constraint on python dependency
  • Loading branch information
smaarn committed Dec 29, 2023
1 parent 3037e12 commit 791b91f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cross/bazarr/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME = bazarr
PKG_VERS = 1.3.0
PKG_VERS = 1.4.0
PKG_EXT = zip
PKG_DIST_NAME = $(PKG_NAME).$(PKG_EXT)
PKG_DIST_FILE = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
Expand Down
6 changes: 3 additions & 3 deletions cross/bazarr/digests
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bazarr-1.3.0.zip SHA1 19c0745e3e9e8dfb223b8085cf8b41cd21a9dbac
bazarr-1.3.0.zip SHA256 7fd2ca2595fe7594541aafa0fcf1ef0b337c5290e2069115bea10ee8264fa001
bazarr-1.3.0.zip MD5 74d0d31dd880fa8c6b6f79009cc2c593
bazarr-1.4.0.zip SHA1 382f96afa748842647cd3f9d31338a8b205dbcae
bazarr-1.4.0.zip SHA256 b023f5239ec54974dfe624259942101ccad218d3b11bf47669a854dc3f31e56c
bazarr-1.4.0.zip MD5 b6faa26c117cfaf807f2ad022963062f
13 changes: 6 additions & 7 deletions spk/bazarr/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
SPK_NAME = bazarr
SPK_VERS = 1.3.0
SPK_REV = 12
SPK_VERS = 1.4.0
SPK_REV = 13
SPK_ICON = src/bazarr.png

PYTHON_PACKAGE = python311

SPK_DEPENDS = "python311>=3.11.4-7:ffmpeg"
SPK_DEPENDS = "python311:ffmpeg"

WHEELS = src/requirements-crossenv.txt src/requirements-pure.txt

Expand All @@ -28,15 +28,14 @@ WHEELS_BUILD_ARGS += --enable-zlib
MAINTAINER = smaarn
DESCRIPTION = "Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movies and Bazarr takes care of everything for you."
DISPLAY_NAME = Bazarr
CHANGELOG = "Update to version 1.3.0.<br />See corresponding changelogs <a href=\"https://github.com/morpheus65535/bazarr/releases/tag/v1.3.0\">here</a> for more details"
CHANGELOG = '1. Update to <a href="https://github.com/morpheus65535/bazarr/releases/tag/v1.4.0">1.4.0</a> (also includes <a href="https://github.com/morpheus65535/bazarr/releases/tag/v1.3.1">1.3.1</a>)<br />2. Add back support for ARMv7L architectures'

HOMEPAGE = https://www.bazarr.media/
LICENSE = GPL-3.0 license
STARTABLE = yes

# [numpy] <= 1.21.6 (armv5) - gcc-4.6.4 - unsupported
# [numpy] <= 1.22.4 (armv7l) - gcc-4.8.3 - unsupported
UNSUPPORTED_ARCHS = $(ARMv5_ARCHS) $(ARMv7L_ARCHS)
# armv5 no longer supported by Python 3.11
UNSUPPORTED_ARCHS = $(ARMv5_ARCHS)

HOMEPAGE = https://www.bazarr.media
LICENSE = GPLv3
Expand Down
8 changes: 8 additions & 0 deletions spk/bazarr/src/requirements-crossenv-numpy-armv5.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
##
## All configurations below are optional and
## are provided to demonstrate how to build
## various wheels. Uncoment to enable.
##

# [numpy]
numpy==1.21.6
8 changes: 8 additions & 0 deletions spk/bazarr/src/requirements-crossenv-numpy-armv7l.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
##
## All configurations below are optional and
## are provided to demonstrate how to build
## various wheels. Uncoment to enable.
##

# [numpy]
numpy==1.22.4

0 comments on commit 791b91f

Please sign in to comment.