-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update mbedtls to v2.28.6 - adjust config (daemon_pid_dir is still required, despite it got removed in sample config)
- Loading branch information
Showing
13 changed files
with
147 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
lnk:lib/libmbedcrypto.so | ||
lib:lib/libmbedcrypto.so.2.28.4 | ||
lib:lib/libmbedcrypto.so.2.28.6 | ||
lnk:lib/libmbedcrypto.so.7 | ||
lnk:lib/libmbedtls.so | ||
lnk:lib/libmbedtls.so.14 | ||
lib:lib/libmbedtls.so.2.28.4 | ||
lib:lib/libmbedtls.so.2.28.6 | ||
lnk:lib/libmbedx509.so | ||
lib:lib/libmbedx509.so.1 | ||
lib:lib/libmbedx509.so.2.28.4 | ||
lib:lib/libmbedx509.so.2.28.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mbedtls-2.28.4.tar.gz SHA1 6fdf9583f64c9944b764bf09dd369044ca8383d6 | ||
mbedtls-2.28.4.tar.gz SHA256 504bd29af6e7f9f3de1f0f7b7e16c73987a4194338681acd72b82383a49d55d5 | ||
mbedtls-2.28.4.tar.gz MD5 5fbc51c611b466530f24cf015eb0e129 | ||
mbedtls-2.28.6.tar.gz SHA1 bcf9e3e1877a8f951b7014fd5178ae041bc1177d | ||
mbedtls-2.28.6.tar.gz SHA256 18cac49f4efef7269d233972bb09c57ace40d992229fa49804e7b10cf0debe43 | ||
mbedtls-2.28.6.tar.gz MD5 220cb91781b69d5b180d4acf3ed8286b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
shairport-sync-3.3.9.tar.gz SHA1 0c7dde82759059e73c184ce11c035303b9ce31c8 | ||
shairport-sync-3.3.9.tar.gz SHA256 17990cb2620551caa07a1c3b371889e55803071eaada04e958c356547a7e1795 | ||
shairport-sync-3.3.9.tar.gz MD5 ca1fa16eb03f8e0abbb4baf6b1e2c9be | ||
shairport-sync-4.3.2.tar.gz SHA1 4adfc9dc8c3c8c1dfc391df0b919c343170bf89d | ||
shairport-sync-4.3.2.tar.gz SHA256 dfb485c0603398032a00e51f84b874749bbf155b257adda3d270d5989de08bfd | ||
shairport-sync-4.3.2.tar.gz MD5 d3f9d3e1d031e7748a2697037218ece2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
PKG_NAME = sps-alsa-explore | ||
PKG_VERS = 1.1 | ||
PKG_EXT = tar.gz | ||
# git hash from February 17th 2023 | ||
PKG_GIT_HASH = defb2ab6ccda8c6bb0506b4c3f0d145ddc0d0bf0 | ||
PKG_DIST_NAME = $(PKG_GIT_HASH).$(PKG_EXT) | ||
PKG_DIST_SITE = https://github.com/mikebrady/sps-alsa-explore/archive | ||
PKG_DIST_FILE = $(PKG_NAME)-git$(PKG_GIT_HASH).$(PKG_EXT) | ||
PKG_DIR = $(PKG_NAME)-$(PKG_GIT_HASH) | ||
|
||
DEPENDS = cross/alsa-lib | ||
|
||
HOMEPAGE = https://github.com/mikebrady/sps-alsa-explore | ||
COMMENT = A tool to scan ALSA devices for use by Shairport Sync. | ||
LICENSE = GPLv2 | ||
|
||
GNU_CONFIGURE = 1 | ||
PRE_CONFIGURE_TARGET = sps-alsa-explore_pre_configure | ||
|
||
include ../../mk/spksrc.archs.mk | ||
ifeq ($(findstring $(ARCH),$(ARMv5_ARCHS) $(OLD_PPC_ARCHS)),$(ARCH)) | ||
# take clock_gettime from librt | ||
ADDITIONAL_LDFLAGS = -lrt | ||
endif | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
|
||
.PHONY: sps-alsa-explore_pre_configure | ||
sps-alsa-explore_pre_configure: | ||
@$(RUN) autoreconf -fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bin:bin/sps-alsa-explore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
sps-alsa-explore-gitdefb2ab6ccda8c6bb0506b4c3f0d145ddc0d0bf0.tar.gz SHA1 20f16965472b9a1d18c1ccd9fa9ec89d05972723 | ||
sps-alsa-explore-gitdefb2ab6ccda8c6bb0506b4c3f0d145ddc0d0bf0.tar.gz SHA256 f67cfc569a34fb5e91b678c42c719fb11fe65f77d4f4180973cf99abd1453e6f | ||
sps-alsa-explore-gitdefb2ab6ccda8c6bb0506b4c3f0d145ddc0d0bf0.tar.gz MD5 5af3d8c410cc49c94f6f91443ac98f98 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.