Skip to content

Commit

Permalink
package/aubio: bump version
Browse files Browse the repository at this point in the history
The latest release from aubio dates back to 2019 while upstream is
active: aubio/aubio#381

Current git HEAD includes support for ffmpeg 6.x:
https://github.com/aubio/aubio/commits/master/src/io/source_avcodec.c

and also removed the dependency to libavresample which was dropped in
ffmpeg 6.0:
aubio/aubio@245deea

so we can just depend on the ffmpeg package without suboptions, quoting
configure log:

Checking for 'libavcodec'                : yes
Checking for 'libavformat'               : yes
Checking for 'libavutil'                 : yes
Checking for 'libswresample'             : yes
Checking for all libav libraries         : yes

Signed-off-by: Bernd Kuhls <[email protected]>
  • Loading branch information
bkuhls committed Apr 7, 2024
1 parent b1eff30 commit 9a89d79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions package/aubio/aubio.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# From https://aubio.org/pub/aubio-0.4.9.tar.bz2.sha256
sha256 d48282ae4dab83b3dc94c16cf011bcb63835c1c02b515490e1883049c3d1f3da aubio-0.4.9.tar.bz2

# Locally computed
sha256 b0e20427750fbfbf017f2b54e41dc0d61ab61335b705bc056ca92a928b2bdd30 aubio-152d6819b360c2e7b379ee3f373d444ab3df0895.tar.gz
# Hash for license file:
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
7 changes: 3 additions & 4 deletions package/aubio/aubio.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
#
################################################################################

AUBIO_VERSION = 0.4.9
AUBIO_SITE = https://aubio.org/pub
AUBIO_SOURCE = aubio-$(AUBIO_VERSION).tar.bz2
AUBIO_VERSION = 152d6819b360c2e7b379ee3f373d444ab3df0895
AUBIO_SITE = $(call github,aubio,aubio,$(AUBIO_VERSION))
AUBIO_LICENSE = GPL-3.0+
AUBIO_LICENSE_FILES = COPYING
AUBIO_CPE_ID_VENDOR = aubio
Expand Down Expand Up @@ -59,7 +58,7 @@ else
AUBIO_CONF_OPTS += --disable-fftw3
endif

ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE),y)
ifeq ($(BR2_PACKAGE_FFMPEG),y)
AUBIO_DEPENDENCIES += ffmpeg
AUBIO_CONF_OPTS += --enable-avcodec
else
Expand Down

0 comments on commit 9a89d79

Please sign in to comment.