mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
update
This commit is contained in:
115
lang/go122/Makefile
Normal file
115
lang/go122/Makefile
Normal file
@@ -0,0 +1,115 @@
|
||||
# Created by: Devon H. O'Dell <devon.odell@gmail.com>
|
||||
# $FreeBSD: head/lang/go/Makefile 470619 2018-05-22 14:32:09Z jlaffaye $
|
||||
|
||||
PORTNAME= go
|
||||
PORTVERSION= 1.22.8
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= https://golang.org/dl/
|
||||
MASTER_SITES+= https://github.com/dmgk/go-bootstrap/releases/download/${BOOTSTRAP_TAG}/:bootstrap
|
||||
MASTER_SITES+= LOCAL/dmgk:bootstrap
|
||||
DISTFILES= go${PORTVERSION}.src.tar.gz
|
||||
DISTFILES+= go-${OPSYS:tl}-${GOARCH}${GOARM}-${BOOTSTRAP_TAG}.tar.xz:bootstrap
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
DISTINFO_FILE = ${MASTERDIR}/distinfo.${ARCH}
|
||||
|
||||
BOOTSTRAP_TAG= go1.20
|
||||
|
||||
|
||||
.if ${ARCH} == amd64
|
||||
GOARCH=amd64
|
||||
.elif ${ARCH} == i386
|
||||
GOARCH=386
|
||||
.elif ${ARCH} == armv6
|
||||
GOARCH=arm
|
||||
GOARM=6
|
||||
.elif ${ARCH} == armv7
|
||||
GOARCH=arm
|
||||
GOARM=7
|
||||
.elif ${ARCH} == aarch64
|
||||
GOARCH=arm64
|
||||
.else
|
||||
IGNORE= unknown arch ${ARCH}
|
||||
.endif
|
||||
|
||||
MAINTAINER= jlaffaye@FreeBSD.org
|
||||
COMMENT= Go programming language
|
||||
|
||||
RUN_DEPENDS= bash:lang/bash
|
||||
BUILD_DEPENDS= bash:lang/bash
|
||||
|
||||
USES= shebangfix
|
||||
SHEBANG_LANG= sh perl
|
||||
SHEBANG_FILES+= misc/wasm/go_js_wasm_exec
|
||||
SHEBANG_FILES+= src/net/http/cgi/testdata/test.cgi
|
||||
SHEBANG_GLOB= *.bash *.pl *.sh
|
||||
|
||||
sh_OLD_CMD= /bin/bash
|
||||
sh_CMD= "/usr/bin/env bash"
|
||||
|
||||
WRKSRC= ${WRKDIR}/go
|
||||
ONLY_FOR_ARCHS= i386 amd64 armv6 armv7 aarch64
|
||||
|
||||
USE_LOCALE= en_US.UTF-8
|
||||
EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 ${TAR}
|
||||
|
||||
post-patch:
|
||||
cd ${WRKSRC} && ${FIND} . -name '*.orig' -delete
|
||||
${REINPLACE_CMD} -e 's|type -ap |type |' ${WRKSRC}/src/make.bash
|
||||
${REINPLACE_CMD} -e 's|^if ulimit -T|false \&\& &|' ${WRKSRC}/src/run.bash
|
||||
|
||||
|
||||
PLIST= pkg-plist.${ARCH}
|
||||
|
||||
#GOROOT_BOOTSTRAP=${WRKDIR}/go-${OPSYS:tl}-${GOARCH}${GOARM}-bootstrap
|
||||
GOROOT_BOOTSTRAP=${LOCALBASE}/lib/go
|
||||
|
||||
do-build:
|
||||
# cd ${WRKSRC}/src ; ${SETENV} \
|
||||
# XDG_CACHE_HOME=${WRKDIR} \
|
||||
# GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP} \
|
||||
# GOROOT=${WRKSRC} \
|
||||
# GOROOT_FINAL=${PREFIX}/go \
|
||||
# GOBIN= \
|
||||
# GOOS=${OPSYS:tl} \
|
||||
# GOARCH=${GOARCH} \
|
||||
# GO386=${GO386} \
|
||||
# GOARM=${GOARM} \
|
||||
# CC=${CC} \
|
||||
# ${LOCALBASE}/bin/bash make.bash -v
|
||||
|
||||
cd ${WRKSRC}/src ; ${SETENV} \
|
||||
XDG_CACHE_HOME=${WRKDIR} \
|
||||
GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP} \
|
||||
GOROOT=${WRKSRC} \
|
||||
GOROOT_FINAL=${PREFIX}/go \
|
||||
GOBIN=${GOROOT_BOOTSTRAP}/bin/go \
|
||||
GOOS=${OPSYS:tl} \
|
||||
GOARCH=${GOARCH} \
|
||||
GO386=${GO386} \
|
||||
GOARM=${GOARM} \
|
||||
CC=${CC} \
|
||||
GOMEMLIMIT=256KiB GOGC=20 \
|
||||
${LOCALBASE}/bin/bash make.bash -v
|
||||
|
||||
|
||||
|
||||
${RM} -r ${WRKSRC}/pkg/obj \
|
||||
${WRKSRC}/pkg/bootstrap \
|
||||
${WRKSRC}/pkg/${OPSYS:tl}_${GOARCH}/cmd
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && \
|
||||
${RM} -r .gitattributes .gitignore .github favicon.ico robots.txt \
|
||||
pkg/obj pkg/bootstrap pkg/${OPSYS:tl}_${GOARCH_${ARCH}}/cmd
|
||||
|
||||
${CP} -a ${WRKSRC} ${STAGEDIR}${PREFIX}/lib
|
||||
.for f in go gofmt
|
||||
${LN} -sf ../lib/go/bin/${f} ${STAGEDIR}${PREFIX}/bin/${f}
|
||||
.endfor
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/go/bin/*
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/go/pkg/tool/*/*
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
#EOF
|
||||
5
lang/go122/distinfo.amd64
Normal file
5
lang/go122/distinfo.amd64
Normal file
@@ -0,0 +1,5 @@
|
||||
TIMESTAMP = 1728892977
|
||||
SHA256 (go1.22.8.src.tar.gz) = df12c23ebf19dea0f4bf46a22cbeda4a3eca6f474f318390ce774974278440b8
|
||||
SIZE (go1.22.8.src.tar.gz) = 27563052
|
||||
SHA256 (go-freebsd-amd64-go1.20.tar.xz) = 170f612c4b8a59400f27d642aab37afa831fe2d6df3e7473dec2d4574a59a46c
|
||||
SIZE (go-freebsd-amd64-go1.20.tar.xz) = 34684360
|
||||
4
lang/go122/pkg-descr
Normal file
4
lang/go122/pkg-descr
Normal file
@@ -0,0 +1,4 @@
|
||||
Go is an open source programming environment that makes it easy to build
|
||||
simple, reliable, and efficient software.
|
||||
|
||||
WWW: http://golang.org
|
||||
14311
lang/go122/pkg-plist.amd64
Normal file
14311
lang/go122/pkg-plist.amd64
Normal file
File diff suppressed because it is too large
Load Diff
115
lang/go124/Makefile
Normal file
115
lang/go124/Makefile
Normal file
@@ -0,0 +1,115 @@
|
||||
# Created by: Devon H. O'Dell <devon.odell@gmail.com>
|
||||
# $FreeBSD: head/lang/go/Makefile 470619 2018-05-22 14:32:09Z jlaffaye $
|
||||
|
||||
PORTNAME= go
|
||||
PORTVERSION= 1.24.4
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= https://golang.org/dl/
|
||||
MASTER_SITES+= https://github.com/dmgk/go-bootstrap/releases/download/${BOOTSTRAP_TAG}/:bootstrap
|
||||
MASTER_SITES+= LOCAL/dmgk:bootstrap
|
||||
DISTFILES= go${PORTVERSION}.src.tar.gz
|
||||
DISTFILES+= go-${OPSYS:tl}-${GOARCH}${GOARM}-${BOOTSTRAP_TAG}.tar.xz:bootstrap
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
DISTINFO_FILE = ${MASTERDIR}/distinfo.${ARCH}
|
||||
|
||||
BOOTSTRAP_TAG= go1.20
|
||||
|
||||
|
||||
.if ${ARCH} == amd64
|
||||
GOARCH=amd64
|
||||
.elif ${ARCH} == i386
|
||||
GOARCH=386
|
||||
.elif ${ARCH} == armv6
|
||||
GOARCH=arm
|
||||
GOARM=6
|
||||
.elif ${ARCH} == armv7
|
||||
GOARCH=arm
|
||||
GOARM=7
|
||||
.elif ${ARCH} == aarch64
|
||||
GOARCH=arm64
|
||||
.else
|
||||
IGNORE= unknown arch ${ARCH}
|
||||
.endif
|
||||
|
||||
MAINTAINER= jlaffaye@FreeBSD.org
|
||||
COMMENT= Go programming language
|
||||
|
||||
RUN_DEPENDS= bash:lang/bash
|
||||
BUILD_DEPENDS= bash:lang/bash
|
||||
|
||||
USES= shebangfix
|
||||
SHEBANG_LANG= sh perl
|
||||
SHEBANG_FILES+= misc/wasm/go_js_wasm_exec
|
||||
SHEBANG_FILES+= src/net/http/cgi/testdata/test.cgi
|
||||
SHEBANG_GLOB= *.bash *.pl *.sh
|
||||
|
||||
sh_OLD_CMD= /bin/bash
|
||||
sh_CMD= "/usr/bin/env bash"
|
||||
|
||||
WRKSRC= ${WRKDIR}/go
|
||||
ONLY_FOR_ARCHS= i386 amd64 armv6 armv7 aarch64
|
||||
|
||||
USE_LOCALE= en_US.UTF-8
|
||||
EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 ${TAR}
|
||||
|
||||
post-patch:
|
||||
cd ${WRKSRC} && ${FIND} . -name '*.orig' -delete
|
||||
${REINPLACE_CMD} -e 's|type -ap |type |' ${WRKSRC}/src/make.bash
|
||||
${REINPLACE_CMD} -e 's|^if ulimit -T|false \&\& &|' ${WRKSRC}/src/run.bash
|
||||
|
||||
|
||||
PLIST= pkg-plist.${ARCH}
|
||||
|
||||
#GOROOT_BOOTSTRAP=${WRKDIR}/go-${OPSYS:tl}-${GOARCH}${GOARM}-bootstrap
|
||||
GOROOT_BOOTSTRAP=${LOCALBASE}/lib/go
|
||||
|
||||
do-build:
|
||||
# cd ${WRKSRC}/src ; ${SETENV} \
|
||||
# XDG_CACHE_HOME=${WRKDIR} \
|
||||
# GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP} \
|
||||
# GOROOT=${WRKSRC} \
|
||||
# GOROOT_FINAL=${PREFIX}/go \
|
||||
# GOBIN= \
|
||||
# GOOS=${OPSYS:tl} \
|
||||
# GOARCH=${GOARCH} \
|
||||
# GO386=${GO386} \
|
||||
# GOARM=${GOARM} \
|
||||
# CC=${CC} \
|
||||
# ${LOCALBASE}/bin/bash make.bash -v
|
||||
|
||||
cd ${WRKSRC}/src ; ${SETENV} \
|
||||
XDG_CACHE_HOME=${WRKDIR} \
|
||||
GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP} \
|
||||
GOROOT=${WRKSRC} \
|
||||
GOROOT_FINAL=${PREFIX}/go \
|
||||
GOBIN=${GOROOT_BOOTSTRAP}/bin/go \
|
||||
GOOS=${OPSYS:tl} \
|
||||
GOARCH=${GOARCH} \
|
||||
GO386=${GO386} \
|
||||
GOARM=${GOARM} \
|
||||
CC=${CC} \
|
||||
GOMEMLIMIT=256KiB GOGC=20 \
|
||||
${LOCALBASE}/bin/bash make.bash -v
|
||||
|
||||
|
||||
|
||||
${RM} -r ${WRKSRC}/pkg/obj \
|
||||
${WRKSRC}/pkg/bootstrap \
|
||||
${WRKSRC}/pkg/${OPSYS:tl}_${GOARCH}/cmd
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && \
|
||||
${RM} -r .gitattributes .gitignore .github favicon.ico robots.txt \
|
||||
pkg/obj pkg/bootstrap pkg/${OPSYS:tl}_${GOARCH_${ARCH}}/cmd
|
||||
|
||||
${CP} -a ${WRKSRC} ${STAGEDIR}${PREFIX}/lib
|
||||
.for f in go gofmt
|
||||
${LN} -sf ../lib/go/bin/${f} ${STAGEDIR}${PREFIX}/bin/${f}
|
||||
.endfor
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/go/bin/*
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/go/pkg/tool/*/*
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
#EOF
|
||||
5
lang/go124/distinfo.amd64
Normal file
5
lang/go124/distinfo.amd64
Normal file
@@ -0,0 +1,5 @@
|
||||
TIMESTAMP = 1751294654
|
||||
SHA256 (go1.24.4.src.tar.gz) = 5a86a83a31f9fa81490b8c5420ac384fd3d95a3e71fba665c7b3f95d1dfef2b4
|
||||
SIZE (go1.24.4.src.tar.gz) = 30788576
|
||||
SHA256 (go-freebsd-amd64-go1.20.tar.xz) = 170f612c4b8a59400f27d642aab37afa831fe2d6df3e7473dec2d4574a59a46c
|
||||
SIZE (go-freebsd-amd64-go1.20.tar.xz) = 34684360
|
||||
4
lang/go124/pkg-descr
Normal file
4
lang/go124/pkg-descr
Normal file
@@ -0,0 +1,4 @@
|
||||
Go is an open source programming environment that makes it easy to build
|
||||
simple, reliable, and efficient software.
|
||||
|
||||
WWW: http://golang.org
|
||||
15732
lang/go124/pkg-plist.amd64
Normal file
15732
lang/go124/pkg-plist.amd64
Normal file
File diff suppressed because it is too large
Load Diff
BIN
net/v2ray/files/geoip.dat
Normal file
BIN
net/v2ray/files/geoip.dat
Normal file
Binary file not shown.
11242
net/v2ray/files/geosite.dat
Normal file
11242
net/v2ray/files/geosite.dat
Normal file
File diff suppressed because it is too large
Load Diff
61
net/xray/Makefile
Normal file
61
net/xray/Makefile
Normal file
@@ -0,0 +1,61 @@
|
||||
PORTNAME= xray
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 25.10.15
|
||||
CATEGORIES= net
|
||||
|
||||
MAINTAINER= shen.elf@gmail.com
|
||||
COMMENT= Platform for building proxies to bypass network restrictions
|
||||
WWW= https://www.v2ray.com
|
||||
|
||||
USES= go:modules
|
||||
USE_GITHUB= yes
|
||||
USE_RC_SUBR= xray
|
||||
|
||||
GH_ACCOUNT= XTLS
|
||||
GH_PROJECT= Xray-core
|
||||
GH_TUPLE= #
|
||||
|
||||
GO_BUILDFLAGS= -ldflags='${STRIP} -w'
|
||||
GO_TARGET= ./main:xray
|
||||
GO_TESTFLAGS= -p 1 -tags json -timeout 30m
|
||||
|
||||
#USERS= v2ray
|
||||
#GROUPS= v2ray
|
||||
|
||||
OWNER= ${PORTNAME}
|
||||
GROUP= ${PORTNAME}
|
||||
OWNER_ID= 361
|
||||
GROUP_ID= 361
|
||||
|
||||
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
||||
PKGINSTALL= ${WRKDIR}/pkg-install
|
||||
USE_RC_SUBR= ${PORTNAME}
|
||||
SUB_FILES+= pkg-install pkg-deinstall
|
||||
|
||||
SUB_LIST+= OWNER=${OWNER}
|
||||
SUB_LIST+= GROUP=${GROUP}
|
||||
SUB_LIST+= OWNER_ID=${OWNER_ID}
|
||||
SUB_LIST+= GROUP_ID=${GROUP_ID}
|
||||
|
||||
#PLIST_SUB+= LOCALSTATEDIR=${LOCALSTATEDIR}
|
||||
#PLIST_SUB+= PREFIX=${PREFIX}
|
||||
|
||||
#SUB_LIST+= LOCALSTATEDIR=${LOCALSTATEDIR}
|
||||
SUB_LIST+= PREFIX=${PREFIX}
|
||||
|
||||
#LOCALSTATEDIR= /var
|
||||
#LAYOUT_FILE= ${WRKSRC}/config.layout
|
||||
|
||||
pre-build:
|
||||
cd ${WRKSRC} && go mod vendor
|
||||
|
||||
#post-install:
|
||||
# ${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
# ${INSTALL_DATA} ${WRKSRC}/release/config/geoip.dat ${STAGEDIR}${DATADIR}/geoip.dat
|
||||
# ${INSTALL_DATA} ${WRKSRC}/release/config/geosite.dat ${STAGEDIR}${DATADIR}/geosite.dat
|
||||
# ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
# ${INSTALL_DATA} ${WRKSRC}/release/config/config.json ${STAGEDIR}${EXAMPLESDIR}/config.json.sample
|
||||
# ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_socks_vmess.json ${STAGEDIR}${EXAMPLESDIR}/vpoint_socks_vmess.json
|
||||
# ${INSTALL_DATA} ${WRKSRC}/release/config/vpoint_vmess_freedom.json ${STAGEDIR}${EXAMPLESDIR}/vpoint_vmess_freedom.json
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
net/xray/distinfo
Normal file
3
net/xray/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1761468401
|
||||
SHA256 (XTLS-Xray-core-v25.10.15_GH0.tar.gz) = 5df030f456db58b682110545e19da9b971303387955562ec408f484580450736
|
||||
SIZE (XTLS-Xray-core-v25.10.15_GH0.tar.gz) = 703659
|
||||
12
net/xray/files/pkg-deinstall.in
Normal file
12
net/xray/files/pkg-deinstall.in
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -x
|
||||
|
||||
case $2 in
|
||||
DEINSTALL)
|
||||
;;
|
||||
POST-DEINSTALL)
|
||||
;;
|
||||
esac
|
||||
exit 0
|
||||
#EOF
|
||||
45
net/xray/files/pkg-install.in
Normal file
45
net/xray/files/pkg-install.in
Normal file
@@ -0,0 +1,45 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -x
|
||||
|
||||
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
|
||||
GROUP="%%GROUP%%"
|
||||
OWNER="%%OWNER%%"
|
||||
GROUP_ID="%%GROUP_ID%%"
|
||||
OWNER_ID="%%OWNER_ID%%"
|
||||
|
||||
PKG_PREFIX="%%PREFIX%%"
|
||||
# LOCALSTATEDIR="%%LOCALSTATEDIR%%"
|
||||
|
||||
# PROXYDIR="%%LOCALSTATEDIR%%/cache/apache"
|
||||
# RUNDIR="%%LOCALSTATEDIR%%/run/apache"
|
||||
# LOGDIR="%%LOCALSTATEDIR%%/log/apache"
|
||||
# DATADIR="%%LOCALSTATEDIR%%/www/apache"
|
||||
|
||||
NAME="xray"
|
||||
SHELL="/usr/sbin/nologin"
|
||||
|
||||
|
||||
pw group add ${GROUP} -g ${GROUP_ID}
|
||||
pw group show ${GROUP}
|
||||
pw user add ${OWNER} -u ${OWNER_ID} \
|
||||
-g ${GROUP} \
|
||||
-d ${PKG_PREFIX} \
|
||||
-s "${SHELL}" -u ${OWNER_ID} \
|
||||
-c "${NAME}"
|
||||
pw group mod ${GROUP} -M ${OWNER}
|
||||
pw user show ${OWNER}
|
||||
pw group show ${GROUP}
|
||||
# for dir in ${LOGDIR} ${PROXYDIR} ${RUNDIR}; do
|
||||
# install -d -o ${OWNER} -g ${GROUP} -m 0750 ${dir}
|
||||
# done
|
||||
# install -d -o root -g wheel -m 0755 ${DATADIR}
|
||||
;;
|
||||
POST-INSTALL)
|
||||
;;
|
||||
esac
|
||||
exit 0
|
||||
#EOF
|
||||
47
net/xray/files/xray.in
Normal file
47
net/xray/files/xray.in
Normal file
@@ -0,0 +1,47 @@
|
||||
#!/bin/sh
|
||||
|
||||
# PROVIDE: xray
|
||||
# REQUIRE: LOGIN
|
||||
# KEYWORD: shutdown
|
||||
|
||||
# Add these lines to /etc/rc.conf.local or /etc/rc.conf to enable `xray':
|
||||
#
|
||||
# xray_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable xray
|
||||
# xray_config (path): Set to "%%PREFIX%%/etc/xray/config.json" by default
|
||||
# Set it to the xray server config
|
||||
# xray_logdir (path): Set to "/var/log/xray" by default.
|
||||
# Set it to the directory of xray log files
|
||||
# xray_env (str): Set to "" by default.
|
||||
# Set it to the desired environment variables
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="xray"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
: ${xray_enable="NO"}
|
||||
: ${xray_config="%%PREFIX%%/etc/$name/config.json"}
|
||||
: ${xray_logdir="/var/log/${name}"}
|
||||
: ${xray_env=""}
|
||||
: ${xray_user="%%OWNER%%"}
|
||||
: ${xray_group="%%GROUP%%"}
|
||||
|
||||
asset_env="XRAY_LOCATION_ASSET=%%PREFIX%%/share/$name"
|
||||
pidfile="/var/run/$name.pid"
|
||||
procname="%%PREFIX%%/bin/$name"
|
||||
command="/usr/sbin/daemon"
|
||||
command_args="-c -p ${pidfile} /usr/bin/env ${asset_env} ${xray_env} ${procname} -config ${xray_config}"
|
||||
required_files="${xray_config}"
|
||||
|
||||
start_precmd="xray_startprecmd"
|
||||
|
||||
xray_startprecmd() {
|
||||
touch "${pidfile}"
|
||||
chown ${xray_user}:${xray_group} "${pidfile}"
|
||||
mkdir -p "${xray_logdir}"
|
||||
chown -R ${xray_user}:${xray_group} "${xray_logdir}"
|
||||
}
|
||||
|
||||
load_rc_config "$name"
|
||||
run_rc_command "$1"
|
||||
3
net/xray/pkg-descr
Normal file
3
net/xray/pkg-descr
Normal file
@@ -0,0 +1,3 @@
|
||||
Project V is a set of network tools that help you to build your
|
||||
own computer network. It secures your network connections and
|
||||
thus protects your privacy.
|
||||
1
net/xray/pkg-plist
Normal file
1
net/xray/pkg-plist
Normal file
@@ -0,0 +1 @@
|
||||
bin/xray
|
||||
Reference in New Issue
Block a user