-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
104 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=nghttp3 | ||
PKG_VERSION:=1.0.0 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://github.com/ngtcp2/nghttp3/releases/download/v$(PKG_VERSION)/ | ||
PKG_HASH:=2e5b5a39415b9a0d160bbcb90b37bef7d8aee44ae504e8c0ddcb31aa92435988 | ||
|
||
PKG_LICENSE:=MIT | ||
PKG_LICENSE_FILES:=COPYING | ||
PKG_MAINTAINER:=Stan Grishin <[email protected]> | ||
|
||
CMAKE_INSTALL:=1 | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
include $(INCLUDE_DIR)/cmake.mk | ||
|
||
define Package/libnghttp3 | ||
SECTION:=libs | ||
CATEGORY:=Libraries | ||
TITLE:=HTTP/3 library written in C | ||
URL:=https://nghttp2.org/nghttp3 | ||
endef | ||
|
||
define Package/libnghttp3/description | ||
nghttp3 is a thin HTTP/3 layer over an underlying QUIC stack. | ||
endef | ||
|
||
CMAKE_OPTIONS += -DENABLE_LIB_ONLY=ON | ||
|
||
define Package/libnghttp3/install | ||
$(INSTALL_DIR) $(1)/usr/lib | ||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libnghttp3.so* $(1)/usr/lib | ||
endef | ||
|
||
$(eval $(call BuildPackage,libnghttp3)) |
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,39 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=ngtcp2 | ||
PKG_VERSION:=1.0.0 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://github.com/ngtcp2/ngtcp2/releases/download/v$(PKG_VERSION)/ | ||
PKG_HASH:=a40b18af654baaebee3431af9bb4e347f40080bf1189d658ad53f8e66bf39da3 | ||
|
||
PKG_LICENSE:=MIT | ||
PKG_LICENSE_FILES:=COPYING | ||
PKG_MAINTAINER:=Stan Grishin <[email protected]> | ||
|
||
CMAKE_INSTALL:=1 | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
include $(INCLUDE_DIR)/cmake.mk | ||
|
||
define Package/libngtcp2 | ||
SECTION:=libs | ||
CATEGORY:=Libraries | ||
TITLE:=Implementation of QUIC protocol | ||
URL:=https://nghttp2.org/ngtcp2 | ||
DEPENDS:=+libnghttp3 +libopenssl | ||
endef | ||
|
||
define Package/libngtcp2/description | ||
ngtcp2 project is an effort to implement QUIC protocol which is now being discussed in IETF QUICWG for its standardization. | ||
endef | ||
|
||
CMAKE_OPTIONS += -DENABLE_LIB_ONLY=ON | ||
|
||
define Package/libngtcp2/install | ||
$(INSTALL_DIR) $(1)/usr/lib | ||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libngtcp2*.so* $(1)/usr/lib | ||
endef | ||
|
||
$(eval $(call BuildPackage,libngtcp2)) |
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,14 +1,14 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=https-dns-proxy | ||
PKG_VERSION:=2023-05-25 | ||
PKG_RELEASE:=8 | ||
PKG_VERSION:=2023-10-25 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE_PROTO:=git | ||
PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/ | ||
PKG_SOURCE_DATE:=$(PKG_VERSION) | ||
PKG_SOURCE_VERSION:=d03e11572562f008f68df217a7378628f1bb7b79 | ||
PKG_MIRROR_HASH:=5af3683c48bc9e493ca2761a6f7ee756431692a695d6008f61b8b92431036dca | ||
PKG_SOURCE_VERSION:=977341a4e35a37ee454e97e82caf4276b1b4961a | ||
PKG_MIRROR_HASH:=8622846f1038ac05436a48d9b36a07c516cbb6504ce68e7ee8c5529788fac39b | ||
PKG_MAINTAINER:=Stan Grishin <[email protected]> | ||
PKG_LICENSE:=MIT | ||
PKG_LICENSE_FILES:=LICENSE | ||
|
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
6 changes: 3 additions & 3 deletions
6
net/https-dns-proxy/patches/020-src-options.c-add-version.patch
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,11 +1,11 @@ | ||
--- a/src/options.c | ||
+++ b/src/options.c | ||
@@ -22,7 +22,7 @@ const char * options_sw_version() { | ||
@@ -24,7 +24,7 @@ const char * options_sw_version(void) { | ||
#ifdef SW_VERSION | ||
return SW_VERSION; | ||
#else | ||
- return "2023.01.01-atLeast"; // update date sometimes, like 1-2 times a year | ||
+ return "2023-05-25-1"; // update date sometimes, like 1-2 times a year | ||
- return "2023.10.10-atLeast"; // update date sometimes, like 1-2 times a year | ||
+ return "2023-10-25-1"; // update date sometimes, like 1-2 times a year | ||
#endif | ||
} | ||
|
11 changes: 0 additions & 11 deletions
11
net/https-dns-proxy/patches/030-src-logging.c-fix-crash.patch
This file was deleted.
Oops, something went wrong.
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