Skip to content

Commit 1cf52f1

Browse files
Updates for v0.7.1: Makefile, patches, Readme.
1 parent 56bc115 commit 1cf52f1

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ This repository provides IPKs of [librespot](https://github.com/librespot-org/li
1111
We currently provide IPKs for the following Rust targets / OpenWrt package architectures:
1212
* __aarch64-unknown-linux-musl__: aarch64_cortex-a53, aarch64_cortex-a72, aarch64_cortex-a76, aarch64_generic
1313
* __arm*-unknown-linux-musl*__: arm_arm1176jzf-s_vfp, arm_arm926ej-s, arm_cortex-a15_neon-vfpv4, arm_cortex-a5_vfpv4, arm_cortex-a7, arm_cortex-a7_neon-vfpv4, arm_cortex-a8_vfpv3, arm_cortex-a9, arm_cortex-a9_neon, arm_cortex-a9_vfpv3-d16, arm_fa526, arm_xscale
14-
* __loongarch64-unknown-linux-musl__: loongarch64_generic
1514
* __mips*-unknown-linux-musl__: mips64_mips64r2, mips64_octeonplus, mips_24kc, mips_mips32, mipsel_24kc, mipsel_24kc_24kf, mipsel_74kc, mipsel_mips32
1615
* __powerpc*-unknown-linux-musl__: powerpc64_e5500, powerpc_464fp, powerpc_8548
1716
* __riscv64gc-unknown-linux-musl__: riscv64_riscv64
@@ -24,8 +23,11 @@ The following OpenWrt architectures don't compile "due to unsupported architectu
2423
The following OpenWrt architectures don't compile due to missing SSE support for Ring:
2524
* __i*86-unknown-linux-musl__: i386_pentium-mmx, i386_pentium4
2625

26+
The following OpenWrt architecture doesn't compile due to an error in compiling symphonia-codec-vorbis (but we have an IPK package for v0.6.0) :
27+
* __loongarch64-unknown-linux-musl__: loongarch64_generic
28+
2729
# Building locally
28-
Here is an example on how to build for mipsel (ramips-mt7621). Check the OpenWrt SDK manual to make sure you have all depencies installed before starting.
30+
Here is an example on how to build an IPK for mipsel (ramips-mt7621). Check the OpenWrt SDK manual to make sure you have all depencies installed before starting. To build an APK instead just replace SDK_LINK with the SDK from the latest SNAPSHOT.
2931

3032
```
3133
# Select the OpenWrt target / OpenWrt SDK you want to use
@@ -52,6 +54,6 @@ sed -i 's/llvm.download-ci-llvm=true/llvm.download-ci-llvm="false"/' ./feeds/pac
5254
make defconfig
5355
make -j1 V=s package/feeds/librespot/librespot/compile
5456
55-
# Find the location of the IPK
56-
ls -la -R bin/ | grep librespot | grep ipk
57+
# Find the location of the package
58+
ls -la -R bin/ | grep librespot | grep -e ipk -e apk
5759
```

packages/sound/librespot/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
include $(TOPDIR)/rules.mk
66

77
PKG_NAME:=librespot
8-
PKG_VERSION:=0.7.0
8+
PKG_VERSION:=0.7.1
99
PKG_RELEASE:=1
1010

1111
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
1212
PKG_SOURCE_URL:=https://codeload.github.com/librespot-org/librespot/tar.gz/v$(PKG_VERSION)?
13-
PKG_HASH:=61f90b661ba883890a7ed8fe3926372b99252abad11dcacf94f2c89df21b7746
13+
PKG_HASH:=1d09cf7a9b05663bc74806dc729dba818f2f1108728b60ccaac42bb54bf46864
1414

1515
PKG_MAINTAINER:=Leonardo
1616
PKG_LICENSE:=MIT

packages/sound/librespot/patches/010-use_rustls-tls-webpki-roots_and_alsa-backend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/Cargo.toml
22
+++ b/Cargo.toml
3-
@@ -36,7 +36,7 @@ repository = "https://github.com/libresp
3+
@@ -37,7 +37,7 @@ repository = "https://github.com/libresp
44
edition = "2024"
55

66
[features]

0 commit comments

Comments
 (0)