update 2022-09-08 20:22:35
This commit is contained in:
parent
7d961fcf6b
commit
6b9bb9e660
|
@ -10,12 +10,12 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=haproxy
|
PKG_NAME:=haproxy
|
||||||
PKG_VERSION:=2.6.2
|
PKG_VERSION:=2.6.4
|
||||||
PKG_RELEASE:=$(AUTORELEASE)
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://www.haproxy.org/download/2.6/src
|
PKG_SOURCE_URL:=https://www.haproxy.org/download/2.6/src
|
||||||
PKG_HASH:=f9b7dc06e02eb13b5d94dc66e0864a714aee2af9dfab10fa353ff9f1f52c8202
|
PKG_HASH:=f07d67ada2ff3a999fed4e34459c0489536331a549665ac90cb6a8df91f4a289
|
||||||
|
|
||||||
PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de>, \
|
PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de>, \
|
||||||
Christian Lachner <gladiac@gmail.com>
|
Christian Lachner <gladiac@gmail.com>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
CLONEURL=https://git.haproxy.org/git/haproxy-2.6.git
|
CLONEURL=https://git.haproxy.org/git/haproxy-2.6.git
|
||||||
BASE_TAG=v2.6.2
|
BASE_TAG=v2.6.4
|
||||||
TMP_REPODIR=tmprepo
|
TMP_REPODIR=tmprepo
|
||||||
PATCHESDIR=patches
|
PATCHESDIR=patches
|
||||||
|
|
||||||
|
|
|
@ -8,3 +8,14 @@
|
||||||
"--config=" + asset.GetV2rayConfigPath(),
|
"--config=" + asset.GetV2rayConfigPath(),
|
||||||
}
|
}
|
||||||
if confdir := asset.GetV2rayConfigDirPath(); confdir != "" {
|
if confdir := asset.GetV2rayConfigDirPath(); confdir != "" {
|
||||||
|
--- a/core/v2ray/where/where.go
|
||||||
|
+++ b/core/v2ray/where/where.go
|
||||||
|
@@ -41,7 +41,7 @@ func GetV2rayServiceVersion() (variant V
|
||||||
|
if err != nil || len(v2rayPath) <= 0 {
|
||||||
|
return Unknown, "", fmt.Errorf("cannot find v2ray executable binary")
|
||||||
|
}
|
||||||
|
- out, err := exec.Command(v2rayPath, "-version").Output()
|
||||||
|
+ out, err := exec.Command(v2rayPath, "version").Output()
|
||||||
|
var fields []string
|
||||||
|
if fields = strings.Fields(strings.TrimSpace(string(out))); len(fields) < 2 {
|
||||||
|
return Unknown, "", fmt.Errorf("cannot parse version of v2ray")
|
||||||
|
|
Loading…
Reference in New Issue