From cb53c6315484105755608e66b32b62829519a86d Mon Sep 17 00:00:00 2001 From: Daniel Drown Date: Mon, 21 Mar 2022 16:47:05 -0500 Subject: [PATCH 1/3] github no longer supports legacy git protocol error message: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74e125e..d6d925b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ ### Openwrt Build Procedure This is a standard OpenWrt Feed, therefore packages should be built in the same way as another OpenWrt package. -1. Add to feeds.conf: `src-git pyther git://github.com/pyther/openwrt-feed` +1. Add to feeds.conf: `src-git pyther https://github.com/pyther/openwrt-feed.git` 2. Update the feed: `./scripts/feeds update pyther` 3. Install the package: `./scritps/feeds install $PKGNAME` 4. Build Package: `make package/$PKGNAME/{download,prepare,compile}' From 6ffdfa9eee4edb76ffa87c32c3dc46ddf1860d05 Mon Sep 17 00:00:00 2001 From: Daniel Drown Date: Fri, 25 Mar 2022 10:45:20 -0500 Subject: [PATCH 2/3] wan and router interfaces need -if-$name --- net/goeap_proxy/files/etc/init.d/goeap_proxy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/goeap_proxy/files/etc/init.d/goeap_proxy b/net/goeap_proxy/files/etc/init.d/goeap_proxy index 7d3943a..2a84911 100644 --- a/net/goeap_proxy/files/etc/init.d/goeap_proxy +++ b/net/goeap_proxy/files/etc/init.d/goeap_proxy @@ -31,8 +31,8 @@ start_service() procd_set_param stdout 1 procd_set_param stderr 1 procd_set_param command $PROG - procd_append_param command "${if_wan}" - procd_append_param command "${if_router}" + procd_append_param command -if-wan "${if_wan}" + procd_append_param command -if-router "${if_router}" if [ $ignore_logoff != "0" ]; then procd_append_param command -ignore-logoff fi From 7434c3c728744a22d9e118fca2e005515b0c2d83 Mon Sep 17 00:00:00 2001 From: Daniel Drown Date: Fri, 25 Mar 2022 11:38:26 -0500 Subject: [PATCH 3/3] update to 0.3.0 --- net/goeap_proxy/Makefile | 4 ++-- net/goeap_proxy/files/etc/init.d/goeap_proxy | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/goeap_proxy/Makefile b/net/goeap_proxy/Makefile index 5bfe330..605b867 100644 --- a/net/goeap_proxy/Makefile +++ b/net/goeap_proxy/Makefile @@ -1,11 +1,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=goeap_proxy -PKG_VERSION:=0.2.0 +PKG_VERSION:=0.3.0 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/pyther/goeap_proxy.git -PKG_SOURCE_VERSION:=12ebcc82b92fd69083e5b3ffde9050e93a20d17a +PKG_SOURCE_VERSION:=3abd66cf35c70b86fe75989ca64c7a72cc8fa797 PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 diff --git a/net/goeap_proxy/files/etc/init.d/goeap_proxy b/net/goeap_proxy/files/etc/init.d/goeap_proxy index 2a84911..7d3943a 100644 --- a/net/goeap_proxy/files/etc/init.d/goeap_proxy +++ b/net/goeap_proxy/files/etc/init.d/goeap_proxy @@ -31,8 +31,8 @@ start_service() procd_set_param stdout 1 procd_set_param stderr 1 procd_set_param command $PROG - procd_append_param command -if-wan "${if_wan}" - procd_append_param command -if-router "${if_router}" + procd_append_param command "${if_wan}" + procd_append_param command "${if_router}" if [ $ignore_logoff != "0" ]; then procd_append_param command -ignore-logoff fi