mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-21 21:40:41 +08:00
pkgadd: overture
This commit is contained in:
parent
8b5d5ee313
commit
62e58b3c46
10 changed files with 11422 additions and 0 deletions
37
overture/.SRCINFO
Normal file
37
overture/.SRCINFO
Normal file
|
@ -0,0 +1,37 @@
|
|||
pkgbase = overture
|
||||
pkgdesc = A DNS upstream switcher written in Go in order to purify DNS records
|
||||
pkgver = 1.5
|
||||
pkgrel = 2
|
||||
url = https://github.com/shawn1m/overture
|
||||
install = overture.install
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
arch = arm
|
||||
arch = armv6h
|
||||
arch = armv7h
|
||||
arch = aarch64
|
||||
license = MIT
|
||||
makedepends = go>=1.9
|
||||
optdepends = dnsmasq: advanced DNS configuration
|
||||
provides = overture
|
||||
backup = etc/overture/config.json
|
||||
backup = etc/overture/hosts
|
||||
backup = etc/overture/china_ip_list.txt
|
||||
backup = etc/overture/gfwlist.txt
|
||||
source = git+https://github.com/shawn1m/overture.git#tag=v1.5
|
||||
source = china_ip_list.txt
|
||||
source = domain_ttl.txt
|
||||
source = config.json
|
||||
source = gfwlist.txt
|
||||
source = hosts
|
||||
source = overture.service
|
||||
sha256sums = SKIP
|
||||
sha256sums = 82948c5f5d806b384a4eda405fba0691c8df10cd1293d116a80d427ebe802e18
|
||||
sha256sums = 107cb3b11c4a06d5a804c4375c56890fd8e2006ecd978ad76332dc480e0e1946
|
||||
sha256sums = 3d630b10c18756aadc6a05e572a2e163c9e730340a5a022549181113457a0d70
|
||||
sha256sums = b9faeacafaf842f6643a81b6d85c60bf7d045132b661f787e6ced19318d4d049
|
||||
sha256sums = 02c82a9ffce44f1517b0b64380e11ea41d15812267a0fbff97221b5a6921df50
|
||||
sha256sums = 9529e60a7963fd284ad2afb99d28803af90f16db99a1ba662ac5c7fd52903d3f
|
||||
|
||||
pkgname = overture
|
||||
|
16
overture/.gitignore
vendored
Normal file
16
overture/.gitignore
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
# ignore everything
|
||||
*
|
||||
!.gitignore
|
||||
|
||||
# except PKGBUILD needed files
|
||||
!PKGBUILD
|
||||
!*.install
|
||||
!*.service
|
||||
!.SRCINFO
|
||||
|
||||
# add files that don't have an online source
|
||||
!china_ip_list.txt
|
||||
!domain_ttl.txt
|
||||
!config.json
|
||||
!gfwlist.txt
|
||||
!hosts
|
93
overture/PKGBUILD
Normal file
93
overture/PKGBUILD
Normal file
|
@ -0,0 +1,93 @@
|
|||
# Contributor: Maddie Zhan <maddie@emzee.be>
|
||||
# Maintainer: Maddie Zhan <maddie@emzee.be>
|
||||
|
||||
pkgname=overture
|
||||
pkgver=1.5
|
||||
pkgrel=2
|
||||
pkgdesc="A DNS upstream switcher written in Go in order to purify DNS records"
|
||||
arch=("i686" "x86_64" "arm" "armv6h" "armv7h" "aarch64")
|
||||
url="https://github.com/shawn1m/overture"
|
||||
license=("MIT")
|
||||
provides=("overture")
|
||||
optdepends=("dnsmasq: advanced DNS configuration")
|
||||
makedepends=("go>=1.9")
|
||||
backup=("etc/overture/config.json" "etc/overture/hosts" "etc/overture/china_ip_list.txt" "etc/overture/gfwlist.txt")
|
||||
|
||||
install=${pkgname}.install
|
||||
|
||||
_gourl=github.com/shawn1m/${pkgname}
|
||||
source=("git+https://github.com/shawn1m/${pkgname}.git#tag=v${pkgver}"
|
||||
"china_ip_list.txt"
|
||||
"domain_ttl.txt"
|
||||
"config.json"
|
||||
"gfwlist.txt"
|
||||
"hosts"
|
||||
"overture.service")
|
||||
|
||||
sha256sums=("SKIP"
|
||||
"82948c5f5d806b384a4eda405fba0691c8df10cd1293d116a80d427ebe802e18"
|
||||
"107cb3b11c4a06d5a804c4375c56890fd8e2006ecd978ad76332dc480e0e1946"
|
||||
"3d630b10c18756aadc6a05e572a2e163c9e730340a5a022549181113457a0d70"
|
||||
"b9faeacafaf842f6643a81b6d85c60bf7d045132b661f787e6ced19318d4d049"
|
||||
"02c82a9ffce44f1517b0b64380e11ea41d15812267a0fbff97221b5a6921df50"
|
||||
"9529e60a7963fd284ad2afb99d28803af90f16db99a1ba662ac5c7fd52903d3f")
|
||||
|
||||
_goroot="/usr/lib/go"
|
||||
|
||||
prepare() {
|
||||
export GOROOT=/usr/lib/go
|
||||
|
||||
rm -rf build
|
||||
mkdir -p build/go
|
||||
cd build/go
|
||||
|
||||
for f in "$GOROOT/"*; do
|
||||
ln -s "$f"
|
||||
done
|
||||
|
||||
rm -rf pkg
|
||||
mkdir pkg
|
||||
cd pkg
|
||||
|
||||
for f in "$GOROOT/pkg/"*; do
|
||||
ln -s "$f"
|
||||
done
|
||||
|
||||
export GOROOT="$srcdir/build/go"
|
||||
export GOPATH="$srcdir/build"
|
||||
|
||||
mkdir -p "$GOPATH/src/github.com/shawn1m"
|
||||
|
||||
mv "$srcdir/$pkgname" $GOPATH/src/${_gourl}
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $GOPATH/src/${_gourl}
|
||||
go get ./...
|
||||
|
||||
msg2 "Building overture"
|
||||
CGO_ENABLED=0 go build -ldflags="-w -s" -o $pkgname main/main.go
|
||||
}
|
||||
|
||||
package() {
|
||||
# Binary
|
||||
install -Dm0755 "$srcdir/build/src/${_gourl}/$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
|
||||
# Config and other files
|
||||
install -Dm0644 "$srcdir/config.json" "$pkgdir/etc/overture/config.json"
|
||||
install -Dm0644 "$srcdir/domain_ttl.txt" "$pkgdir/etc/overture/domain_ttl.txt"
|
||||
install -Dm0644 "$srcdir/china_ip_list.txt" "$pkgdir/etc/overture/china_ip_list.txt"
|
||||
install -Dm0644 "$srcdir/gfwlist.txt" "$pkgdir/etc/overture/gfwlist.txt"
|
||||
install -Dm0644 "$srcdir/hosts" "$pkgdir/etc/overture/hosts"
|
||||
|
||||
# Service
|
||||
install -Dm0644 "$srcdir/$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service"
|
||||
|
||||
# License
|
||||
install -Dm0644 "$srcdir/build/src/${_gourl}/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
echo "If you're upgrading from pre-1.4 versions, please make sure your config.json"
|
||||
echo "is up to date with the v1.4 format, or else Overture might not start properly."
|
||||
}
|
5604
overture/china_ip_list.txt
Normal file
5604
overture/china_ip_list.txt
Normal file
File diff suppressed because it is too large
Load diff
69
overture/config.json
Normal file
69
overture/config.json
Normal file
|
@ -0,0 +1,69 @@
|
|||
{
|
||||
"BindAddress": ":53",
|
||||
"PrimaryDNS": [
|
||||
{
|
||||
"Name": "114DNS",
|
||||
"Address": "114.114.114.114:53",
|
||||
"Protocol": "udp",
|
||||
"SOCKS5Address": "",
|
||||
"Timeout": 5,
|
||||
"EDNSClientSubnet": {
|
||||
"Policy": "disable",
|
||||
"ExternalIP": "",
|
||||
"NoCookie": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Google DNS",
|
||||
"Address": "8.8.8.8:53",
|
||||
"Protocol": "udp",
|
||||
"SOCKS5Address": "",
|
||||
"Timeout": 5,
|
||||
"EDNSClientSubnet": {
|
||||
"Policy": "disable",
|
||||
"ExternalIP": "",
|
||||
"NoCookie": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"AlternativeDNS": [
|
||||
{
|
||||
"Name": "Google DNS",
|
||||
"Address": "8.8.8.8:53",
|
||||
"Protocol": "tcp",
|
||||
"SOCKS5Address": "",
|
||||
"Timeout": 5,
|
||||
"EDNSClientSubnet": {
|
||||
"Policy": "disable",
|
||||
"ExternalIP": ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "OpenDNS",
|
||||
"Address": "208.67.222.222:443",
|
||||
"Protocol": "tcp",
|
||||
"SOCKS5Address": "",
|
||||
"Timeout": 5,
|
||||
"EDNSClientSubnet":{
|
||||
"Policy": "disable",
|
||||
"ExternalIP": ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"OnlyPrimaryDNS": false,
|
||||
"IPv6UseAlternativeDNS": false,
|
||||
"WhenPrimaryDNSAnswerNoneUse": "PrimaryDNS",
|
||||
"IPNetworkFile": {
|
||||
"Primary": "/etc/overture/china_ip_list.txt",
|
||||
"Alternative": ""
|
||||
},
|
||||
"DomainFile": {
|
||||
"Primary": "",
|
||||
"Alternative": "/etc/overture/gfwlist.txt"
|
||||
},
|
||||
"HostsFile": "/etc/overture/hosts",
|
||||
"MinimumTTL": 0,
|
||||
"DomainTTLFile": "/etc/overture/domain_ttl.txt",
|
||||
"CacheSize": 4096,
|
||||
"RejectQtype": [255]
|
||||
}
|
1
overture/domain_ttl.txt
Normal file
1
overture/domain_ttl.txt
Normal file
|
@ -0,0 +1 @@
|
|||
example.com$ 100
|
5584
overture/gfwlist.txt
Normal file
5584
overture/gfwlist.txt
Normal file
File diff suppressed because it is too large
Load diff
1
overture/hosts
Normal file
1
overture/hosts
Normal file
|
@ -0,0 +1 @@
|
|||
127.0.0.1 localhost
|
4
overture/overture.install
Normal file
4
overture/overture.install
Normal file
|
@ -0,0 +1,4 @@
|
|||
pre_remove() {
|
||||
systemctl stop overture.service
|
||||
systemctl disable overture.service
|
||||
}
|
13
overture/overture.service
Normal file
13
overture/overture.service
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=A DNS upstream switcher written in Go in order to purify DNS records
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=nobody
|
||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||
ExecStart=/usr/bin/overture -c /etc/overture/config.json
|
||||
Restart=always
|
||||
RestartSec=5
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in a new issue