Skip to content

Commit

Permalink
Abort adding support for ARM v5
Browse files Browse the repository at this point in the history
  • Loading branch information
smaarn committed Oct 8, 2023
1 parent 1a3a222 commit 444ff98
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spk/bazarr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ 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 = "Add back support for ARMv5 and ARMv7L architectures"
CHANGELOG = "Add back support for ARMv7L architectures"

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

# armv5 no longer supported by Python 3.11
UNSUPPORTED_ARCHS = $(ARMv5_ARCHS)

HOMEPAGE = https://www.bazarr.media
LICENSE = GPLv3

Expand Down Expand Up @@ -61,11 +64,8 @@ else
WHEELS += src/requirements-crossenv-greenlet-v1.txt
endif

# [numpy] <= 1.21.6 (armv5)
ifeq ($(findstring $(ARCH),$(ARMv5_ARCHS)),$(ARCH))
WHEELS += src/requirements-crossenv-numpy-armv5.txt
# [numpy] <= 1.22.4 (armv7l)
else ifeq ($(findstring $(ARCH),$(ARMv7L_ARCHS)),$(ARCH))
ifeq ($(findstring $(ARCH),$(ARMv7L_ARCHS)),$(ARCH))
WHEELS += src/requirements-crossenv-numpy-armv7l.txt
# [numpy] <= 1.24.4 last working version with gcc-4.9
else ifeq ($(call version_le, $(TC_GCC), 5.0),1)
Expand Down

0 comments on commit 444ff98

Please sign in to comment.