generated from breakings/Actions-OpenWrt
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
198 additions
and
117 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
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 |
---|---|---|
|
@@ -11,13 +11,13 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=boost | ||
PKG_VERSION:=1.80.0 | ||
PKG_SOURCE_VERSION:=1_80_0 | ||
PKG_RELEASE:=$(AUTORELEASE) | ||
PKG_VERSION:=1.82.0 | ||
PKG_SOURCE_VERSION:=1_82_0 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)_$(PKG_SOURCE_VERSION).tar.bz2 | ||
PKG_SOURCE_URL:=@SF/$(PKG_NAME)/$(PKG_NAME)/$(PKG_VERSION) https://boostorg.jfrog.io/artifactory/main/release/$(PKG_VERSION)/source/ | ||
PKG_HASH:=1e19565d82e43bc59209a168f5ac899d3ba471d55c7610c677d4ccf2c9c500c0 | ||
PKG_HASH:=a6e1ab9b0860e6a2881dd7b21fe9f737a095e5f33a3a874afc6a345228597ee6 | ||
|
||
PKG_MAINTAINER:=Carlos M. Ferreira <[email protected]> | ||
PKG_LICENSE:=BSL-1.0 | ||
|
@@ -42,7 +42,7 @@ define Package/boost/Default | |
endef | ||
|
||
define Package/boost/description | ||
This package provides the Boost v1.80.0 libraries. | ||
This package provides the Boost v1.82.0 libraries. | ||
Boost is a set of free, peer-reviewed, portable C++ source libraries. | ||
|
||
This package provides the following run-time libraries: | ||
|
@@ -74,10 +74,11 @@ This package provides the following run-time libraries: | |
- thread | ||
- timer | ||
- type_erasure | ||
- url | ||
- wave | ||
|
||
There are many more header-only libraries supported by Boost. | ||
See more at http://www.boost.org/doc/libs/1_80_0/ | ||
See more at http://www.boost.org/doc/libs/1_82_0/ | ||
endef | ||
|
||
PKG_BUILD_DEPENDS:=boost/host | ||
|
@@ -362,6 +363,7 @@ $(eval $(call DefineBoostLibrary,system)) | |
$(eval $(call DefineBoostLibrary,thread,system chrono atomic)) | ||
$(eval $(call DefineBoostLibrary,timer,chrono)) | ||
$(eval $(call DefineBoostLibrary,type_erasure,chrono system thread)) | ||
$(eval $(call DefineBoostLibrary,url)) | ||
$(eval $(call DefineBoostLibrary,wave,date_time thread filesystem)) | ||
|
||
include $(INCLUDE_DIR)/host-build.mk | ||
|
@@ -382,7 +384,13 @@ TARGET_LDFLAGS += -pthread -lrt -lstdc++ -Wl,--gc-sections,--as-needed,--print-g | |
TARGET_CFLAGS += \ | ||
$(if $(CONFIG_SOFT_FLOAT),-DBOOST_NO_FENV_H) -fPIC -ffunction-sections -fdata-sections -flto | ||
|
||
EXTRA_CXXFLAGS += $(if $(CONFIG_GCC_USE_VERSION_10),-std=gnu++20,$(if $(CONFIG_GCC_USE_VERSION_5),-std=gnu++14,-std=gnu++17)) | ||
ifeq ($(word 1,$(subst ., ,$(call qstrip,$(CONFIG_GCC_VERSION)))),5) | ||
EXTRA_CXXFLAGS += -std=gnu++14 | ||
else ifneq ($(filter-out 6 7 8 9,$(word 1,$(subst ., ,$(call qstrip,$(CONFIG_GCC_VERSION))))),) | ||
EXTRA_CXXFLAGS += -std=gnu++17 | ||
else | ||
EXTRA_CXXFLAGS += -std=gnu++2a | ||
endif | ||
|
||
ifneq ($(findstring mips,$(ARCH)),) | ||
BOOST_ABI = o32 | ||
|
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,15 +1,15 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=containerd | ||
PKG_VERSION:=1.6.19 | ||
PKG_VERSION:=1.6.20 | ||
PKG_RELEASE:=1 | ||
PKG_LICENSE:=Apache-2.0 | ||
PKG_LICENSE_FILES:=LICENSE | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://codeload.github.com/containerd/containerd/tar.gz/v${PKG_VERSION}? | ||
PKG_HASH:=7a90dc72f44e230eb5228ebac23b37e91f7d26d175d563099a8e1c0592047a28 | ||
PKG_SOURCE_VERSION:=1e1ea6e986c6c86565bc33d52e34b81b3e2bc71f | ||
PKG_HASH:=819086ccdca44cfc5f108e226c7a9294d8fad3eb32031a621623da80dedbfb11 | ||
PKG_SOURCE_VERSION:=2806fc1057397dbaeefbea0e4e17bddfbd388f38 | ||
|
||
PKG_MAINTAINER:=Gerard Ryan <[email protected]> | ||
|
||
|
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,7 +1,7 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=docker | ||
PKG_VERSION:=23.0.2 | ||
PKG_VERSION:=23.0.4 | ||
PKG_RELEASE:=1 | ||
PKG_LICENSE:=Apache-2.0 | ||
PKG_LICENSE_FILES:=LICENSE | ||
|
@@ -10,8 +10,8 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | |
PKG_GIT_URL:=github.com/docker/cli | ||
PKG_GIT_REF:=v$(PKG_VERSION) | ||
PKG_SOURCE_URL:=https://codeload.$(PKG_GIT_URL)/tar.gz/$(PKG_GIT_REF)? | ||
PKG_HASH:=bef4fc68b9f81ab2ae8bb2605e16a0965a3c4a82f0c0cf9d9f5d2cee8e95415d | ||
PKG_GIT_SHORT_COMMIT:=569dd73 # SHA1 used within the docker executables | ||
PKG_HASH:=477c37f128db7bb6926dc410f337cb525af4f26ea9719d38dc2978460dbe2de8 | ||
PKG_GIT_SHORT_COMMIT:=f480fb1 # SHA1 used within the docker executables | ||
|
||
PKG_MAINTAINER:=Gerard Ryan <[email protected]> | ||
|
||
|
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,7 +1,7 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=dockerd | ||
PKG_VERSION:=23.0.2 | ||
PKG_VERSION:=23.0.4 | ||
PKG_RELEASE:=1 | ||
PKG_LICENSE:=Apache-2.0 | ||
PKG_LICENSE_FILES:=LICENSE | ||
|
@@ -10,8 +10,8 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | |
PKG_GIT_URL:=github.com/moby/moby | ||
PKG_GIT_REF:=v$(PKG_VERSION) | ||
PKG_SOURCE_URL:=https://codeload.$(PKG_GIT_URL)/tar.gz/$(PKG_GIT_REF)? | ||
PKG_HASH:=4caca59c774445a5aad6114d89c97c88d9705f048704fecdd3f5712cb369dc39 | ||
PKG_GIT_SHORT_COMMIT:=219f21b # SHA1 used within the docker executables | ||
PKG_HASH:=6c6e965974335595eaccb17ccec927aebbc10d44b1a95262871b16c0be4c0179 | ||
PKG_GIT_SHORT_COMMIT:=cbce331 # SHA1 used within the docker executables | ||
|
||
PKG_MAINTAINER:=Gerard Ryan <[email protected]> | ||
|
||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
GO_VERSION_MAJOR_MINOR:=1.20 | ||
GO_VERSION_PATCH:=2 | ||
GO_VERSION_PATCH:=3 | ||
|
||
PKG_NAME:=golang | ||
PKG_VERSION:=$(GO_VERSION_MAJOR_MINOR)$(if $(GO_VERSION_PATCH),.$(GO_VERSION_PATCH)) | ||
|
@@ -20,7 +20,7 @@ GO_SOURCE_URLS:=https://dl.google.com/go/ \ | |
|
||
PKG_SOURCE:=go$(PKG_VERSION).src.tar.gz | ||
PKG_SOURCE_URL:=$(GO_SOURCE_URLS) | ||
PKG_HASH:=4d0e2850d197b4ddad3bdb0196300179d095bb3aefd4dfbc3b36702c3728f8ab | ||
PKG_HASH:=e447b498cde50215c4f7619e5124b0fc4e25fb5d16ea47271c47f278e7aa763a | ||
|
||
PKG_MAINTAINER:=Jeffery To <[email protected]> | ||
PKG_LICENSE:=BSD-3-Clause | ||
|
Oops, something went wrong.