Compare commits
76 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c364159f1a | ||
|
|
a28b0a7c7d | ||
|
|
2e3e4085eb | ||
|
|
b068e4104c | ||
|
|
9ecd047ae0 | ||
|
|
7f398568ca | ||
|
|
b7cb457c44 | ||
|
|
538b1d0c53 | ||
|
|
9fd11293df | ||
|
|
f05422fa44 | ||
|
|
ca553ea961 | ||
|
|
d8ee5cf86d | ||
|
|
e50853b5b3 | ||
|
|
3da83887d4 | ||
|
|
74bfbd2775 | ||
|
|
78fd2309e3 | ||
|
|
db85180819 | ||
|
|
343b0c4c24 |
||
|
|
93da17829e | ||
|
|
194cfb2862 | ||
|
|
25a5895d94 | ||
|
|
ba87b04ada | ||
|
|
bda70b644a | ||
|
|
122f439fd0 | ||
|
|
c245f0080f | ||
|
|
b07e160d77 | ||
|
|
b4c70787a2 | ||
|
|
98e3383688 | ||
|
|
549d07e79c | ||
|
|
6ac3aff84d | ||
|
|
1d0924e58f | ||
|
|
aa27f6e03c | ||
|
|
5fe3d74336 | ||
|
|
c3cfc98c59 | ||
|
|
81ebae551d | ||
|
|
117732fdb7 | ||
|
|
d750d14cdd | ||
|
|
b965142dce | ||
|
|
c3d3c586e7 | ||
|
|
3283509b8a | ||
|
|
88f286572e | ||
|
|
b7594a88e0 | ||
|
|
ae311baf59 | ||
|
|
2805178277 |
||
|
|
baf718af49 | ||
|
|
cc311e698b | ||
|
|
148ccf6ed0 | ||
|
|
8a639d7060 | ||
|
|
67269d83ba | ||
|
|
25f111638e | ||
|
|
f7eac2099a | ||
|
|
b870f2651c | ||
|
|
e1ac1b8b64 | ||
|
|
0cffe89803 | ||
|
|
38c0f0e5dc | ||
|
|
9531424268 | ||
|
|
ea0c0164fe | ||
|
|
44ed85cd63 | ||
|
|
9ce640e374 | ||
|
|
2ab2950785 | ||
|
|
367391c256 | ||
|
|
5cac5c7920 | ||
|
|
2b8e08287a |
||
|
|
3b7bf3f28d | ||
|
|
a2c16df3ee | ||
|
|
0e265b46d1 | ||
|
|
b338659f07 | ||
|
|
c493730dee | ||
|
|
a8925e4acb | ||
|
|
3f7fb4d2f0 | ||
|
|
d6fa51f5a2 | ||
|
|
ba5896a8a9 | ||
|
|
4759c7e6bc | ||
|
|
74c6a0da33 | ||
|
|
e1d736ca64 | ||
|
|
c25c9bb6c8 |
14 changed files with 803 additions and 668 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,5 +1 @@
|
|||
caddy-*.tar.gz
|
||||
dnsproviders-*.tar.gz
|
||||
geoip-*.tar.gz
|
||||
lego-*.tar.gz
|
||||
realip-*.tar.gz
|
||||
|
|
|
|||
96
0001-Disable-commands-that-can-alter-the-binary.patch
Normal file
96
0001-Disable-commands-that-can-alter-the-binary.patch
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
From 41711beb6776923a84c06fad76964e5932333bd7 Mon Sep 17 00:00:00 2001
|
||||
From: Carl George <carl@george.computer>
|
||||
Date: Wed, 16 Feb 2022 11:45:03 -0600
|
||||
Subject: [PATCH] Disable commands that can alter the binary
|
||||
|
||||
---
|
||||
cmd/commands.go | 45 --------------------------------------------
|
||||
cmd/commands_test.go | 8 ++++----
|
||||
2 files changed, 4 insertions(+), 49 deletions(-)
|
||||
|
||||
diff --git a/cmd/commands.go b/cmd/commands.go
|
||||
index c9ea636b..791ddf6d 100644
|
||||
--- a/cmd/commands.go
|
||||
+++ b/cmd/commands.go
|
||||
@@ -404,51 +404,6 @@ is always printed to stdout.
|
||||
},
|
||||
})
|
||||
|
||||
- RegisterCommand(Command{
|
||||
- Name: "upgrade",
|
||||
- Short: "Upgrade Caddy (EXPERIMENTAL)",
|
||||
- Long: `
|
||||
-Downloads an updated Caddy binary with the same modules/plugins at the
|
||||
-latest versions. EXPERIMENTAL: May be changed or removed.
|
||||
-`,
|
||||
- CobraFunc: func(cmd *cobra.Command) {
|
||||
- cmd.Flags().BoolP("keep-backup", "k", false, "Keep the backed up binary, instead of deleting it")
|
||||
- cmd.RunE = WrapCommandFuncForCobra(cmdUpgrade)
|
||||
- },
|
||||
- })
|
||||
-
|
||||
- RegisterCommand(Command{
|
||||
- Name: "add-package",
|
||||
- Usage: "<package[@version]...>",
|
||||
- Short: "Adds Caddy packages (EXPERIMENTAL)",
|
||||
- Long: `
|
||||
-Downloads an updated Caddy binary with the specified packages (module/plugin)
|
||||
-added, with an optional version specified (e.g., "package@version"). Retains
|
||||
-existing packages. Returns an error if any of the specified packages are already
|
||||
-included. EXPERIMENTAL: May be changed or removed.
|
||||
-`,
|
||||
- CobraFunc: func(cmd *cobra.Command) {
|
||||
- cmd.Flags().BoolP("keep-backup", "k", false, "Keep the backed up binary, instead of deleting it")
|
||||
- cmd.RunE = WrapCommandFuncForCobra(cmdAddPackage)
|
||||
- },
|
||||
- })
|
||||
-
|
||||
- RegisterCommand(Command{
|
||||
- Name: "remove-package",
|
||||
- Func: cmdRemovePackage,
|
||||
- Usage: "<packages...>",
|
||||
- Short: "Removes Caddy packages (EXPERIMENTAL)",
|
||||
- Long: `
|
||||
-Downloads an updated Caddy binaries without the specified packages (module/plugin).
|
||||
-Returns an error if any of the packages are not included.
|
||||
-EXPERIMENTAL: May be changed or removed.
|
||||
-`,
|
||||
- CobraFunc: func(cmd *cobra.Command) {
|
||||
- cmd.Flags().BoolP("keep-backup", "k", false, "Keep the backed up binary, instead of deleting it")
|
||||
- cmd.RunE = WrapCommandFuncForCobra(cmdRemovePackage)
|
||||
- },
|
||||
- })
|
||||
-
|
||||
defaultFactory.Use(func(rootCmd *cobra.Command) {
|
||||
manpageCommand := Command{
|
||||
Name: "manpage",
|
||||
diff --git a/cmd/commands_test.go b/cmd/commands_test.go
|
||||
index 085a9d78..f6d01fa3 100644
|
||||
--- a/cmd/commands_test.go
|
||||
+++ b/cmd/commands_test.go
|
||||
@@ -19,7 +19,7 @@ func TestCommandsAreAvailable(t *testing.T) {
|
||||
// include the commands registered through calls to init in
|
||||
// other packages
|
||||
cmds := Commands()
|
||||
- if len(cmds) != 17 {
|
||||
+ if len(cmds) != 14 {
|
||||
t.Errorf("expected 17 commands, got %d", len(cmds))
|
||||
}
|
||||
|
||||
@@ -27,10 +27,10 @@ func TestCommandsAreAvailable(t *testing.T) {
|
||||
slices.Sort(commandNames)
|
||||
|
||||
expectedCommandNames := []string{
|
||||
- "adapt", "add-package", "build-info", "completion",
|
||||
+ "adapt", "build-info", "completion",
|
||||
"environ", "fmt", "list-modules", "manpage",
|
||||
- "reload", "remove-package", "run", "start",
|
||||
- "stop", "storage", "upgrade", "validate", "version",
|
||||
+ "reload", "run", "start",
|
||||
+ "stop", "storage", "validate", "version",
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(expectedCommandNames, commandNames) {
|
||||
--
|
||||
2.50.1
|
||||
|
||||
36
Caddyfile
Normal file
36
Caddyfile
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# The Caddyfile is an easy way to configure your Caddy web server.
|
||||
#
|
||||
# https://caddyserver.com/docs/caddyfile
|
||||
|
||||
|
||||
# The configuration below serves a welcome page over HTTP on port 80. To use
|
||||
# your own domain name with automatic HTTPS, ensure your A/AAAA DNS record is
|
||||
# pointing to this machine's public IP, then replace `http://` with your domain
|
||||
# name. Refer to the documentation for full instructions on the address
|
||||
# specification.
|
||||
#
|
||||
# https://caddyserver.com/docs/caddyfile/concepts#addresses
|
||||
http:// {
|
||||
|
||||
# Set this path to your site's directory.
|
||||
root * /usr/share/caddy
|
||||
|
||||
# Enable the static file server.
|
||||
file_server
|
||||
|
||||
# Another common task is to set up a reverse proxy:
|
||||
# reverse_proxy localhost:8080
|
||||
|
||||
# Or serve a PHP site through php-fpm:
|
||||
# php_fastcgi localhost:9000
|
||||
|
||||
# Refer to the directive documentation for more options.
|
||||
# https://caddyserver.com/docs/caddyfile/directives
|
||||
|
||||
}
|
||||
|
||||
|
||||
# As an alternative to editing the above site block, you can add your own site
|
||||
# block files in the Caddyfile.d directory, and they will be included as long
|
||||
# as they use the .caddyfile extension.
|
||||
import Caddyfile.d/*.caddyfile
|
||||
28
caddy-api.service
Normal file
28
caddy-api.service
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# caddy-api.service
|
||||
#
|
||||
# For using Caddy with its API.
|
||||
#
|
||||
# This unit is "durable" in that it will automatically resume
|
||||
# the last active configuration if the service is restarted.
|
||||
#
|
||||
# See https://caddyserver.com/docs/install for instructions.
|
||||
|
||||
[Unit]
|
||||
Description=Caddy web server
|
||||
Documentation=https://caddyserver.com/docs/
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
User=caddy
|
||||
Group=caddy
|
||||
ExecStart=/usr/bin/caddy run --environ --resume
|
||||
TimeoutStopSec=5s
|
||||
LimitNOFILE=1048576
|
||||
PrivateTmp=true
|
||||
ProtectHome=true
|
||||
ProtectSystem=full
|
||||
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
http:// {
|
||||
gzip
|
||||
root /usr/share/caddy
|
||||
}
|
||||
|
||||
import conf.d/*.conf
|
||||
|
|
@ -1,25 +1,31 @@
|
|||
# caddy.service
|
||||
#
|
||||
# For using Caddy with a config file.
|
||||
#
|
||||
# WARNING: This service does not use the --resume flag, so if you
|
||||
# use the API to make changes, they will be overwritten by the
|
||||
# Caddyfile next time the service is restarted. If you intend to
|
||||
# use Caddy's API to configure it, add the --resume flag to the
|
||||
# `caddy run` command or use the caddy-api.service file instead.
|
||||
|
||||
[Unit]
|
||||
Description=Caddy HTTP/2 web server
|
||||
Documentation=https://caddyserver.com/docs
|
||||
Description=Caddy web server
|
||||
Documentation=https://caddyserver.com/docs/
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
User=caddy
|
||||
Group=caddy
|
||||
Environment=CADDYPATH=/var/lib/caddy
|
||||
EnvironmentFile=-/etc/caddy/envfile
|
||||
ExecStartPre=/usr/bin/caddy -conf /etc/caddy/caddy.conf -validate
|
||||
ExecStart=/usr/bin/caddy -conf /etc/caddy/caddy.conf -root /tmp -agree
|
||||
ExecReload=/usr/bin/kill -USR1 $MAINPID
|
||||
KillMode=mixed
|
||||
KillSignal=SIGQUIT
|
||||
ExecStartPre=/usr/bin/caddy validate --config /etc/caddy/Caddyfile
|
||||
ExecStart=/usr/bin/caddy run --environ --config /etc/caddy/Caddyfile
|
||||
ExecReload=/usr/bin/caddy reload --config /etc/caddy/Caddyfile
|
||||
TimeoutStopSec=5s
|
||||
LimitNOFILE=1048576
|
||||
LimitNPROC=512
|
||||
PrivateTmp=true
|
||||
ProtectHome=true
|
||||
ProtectSystem=full
|
||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
|||
895
caddy.spec
895
caddy.spec
|
|
@ -1,489 +1,310 @@
|
|||
# plugins
|
||||
%bcond_without geoip
|
||||
%bcond_without realip
|
||||
%bcond_without cloudflare
|
||||
%bcond_without digitalocean
|
||||
%bcond_without dyn
|
||||
%bcond_without gandi
|
||||
%bcond_without namecheap
|
||||
%bcond_without pdns
|
||||
%bcond_without rackspace
|
||||
%bcond_without rfc2136
|
||||
%bcond_without googlecloud
|
||||
%bcond_without route53
|
||||
%bcond_without azure
|
||||
%global goipath github.com/caddyserver/caddy
|
||||
|
||||
%if %{with azure}%{with cloudflare}%{with digitalocean}%{with dyn}%{with gandi}%{with googlecloud}%{with namecheap}%{with pdns}%{with rackspace}%{with rfc2136}%{with route53}
|
||||
%bcond_without dnsproviders
|
||||
%endif
|
||||
|
||||
%bcond_with debug
|
||||
|
||||
%if %{with debug}
|
||||
%global _dwz_low_mem_die_limit 0
|
||||
%if %{defined el8}
|
||||
%global gotest() go test -short -compiler gc -ldflags "${LDFLAGS:-}" %{?**};
|
||||
%else
|
||||
%global debug_package %{nil}
|
||||
%global gotestflags %{gocompilerflags} -short
|
||||
%endif
|
||||
|
||||
%if %{undefined gobuild}
|
||||
%define gobuild(o:) go build -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n')" -a -v -x %{?**};
|
||||
Name: caddy
|
||||
Version: 2.10.2
|
||||
Release: %autorelease
|
||||
Summary: Web server with automatic HTTPS
|
||||
URL: https://caddyserver.com
|
||||
|
||||
# main source code is Apache-2.0
|
||||
# see comments above bundled provides for a breakdown of the rest
|
||||
License: Apache-2.0 AND BSD-1-Clause AND BSD-2-Clause AND BSD-2-Clause-Views AND BSD-3-Clause AND CC0-1.0 AND ISC AND MIT AND MPL-2.0
|
||||
|
||||
Source0: https://%{goipath}/archive/v%{version}/caddy-%{version}.tar.gz
|
||||
Source1: caddy-%{version}-vendor.tar.gz
|
||||
Source2: create-vendor-tarball.sh
|
||||
|
||||
# based on reference files upstream
|
||||
# https://github.com/caddyserver/dist
|
||||
Source10: Caddyfile
|
||||
Source20: caddy.service
|
||||
Source21: caddy-api.service
|
||||
Source22: caddy.sysusers
|
||||
Source30: poweredby-white.png
|
||||
Source31: poweredby-black.png
|
||||
|
||||
# downstream only patch to disable commands that can alter the binary
|
||||
Patch1: 0001-Disable-commands-that-can-alter-the-binary.patch
|
||||
|
||||
%if %{defined el8}
|
||||
ExclusiveArch: %{golang_arches}
|
||||
%else
|
||||
BuildRequires: go-rpm-macros
|
||||
ExclusiveArch: %{golang_arches_future}
|
||||
%endif
|
||||
|
||||
Name: caddy
|
||||
Version: 0.11.4
|
||||
Release: 3%{?dist}
|
||||
Summary: HTTP/2 web server with automatic HTTPS
|
||||
License: ASL 2.0 and MIT
|
||||
URL: https://caddyserver.com
|
||||
ExclusiveArch: %{?go_arches:%{go_arches}}%{!?go_arches:%{ix86} x86_64 %{arm} aarch64 ppc64le s390x %{mips}}
|
||||
%{?go_compiler:BuildRequires: compiler(go-compiler)}
|
||||
# https://github.com/mholt/caddy/pull/2267
|
||||
BuildRequires: golang >= 1.10
|
||||
BuildRequires: systemd
|
||||
BuildRequires: systemd-rpm-macros
|
||||
%{?systemd_requires}
|
||||
Provides: webserver
|
||||
%{?sysusers_requires_compat}
|
||||
|
||||
# caddy
|
||||
%global import_path github.com/mholt/caddy
|
||||
Source0: https://%{import_path}/archive/v%{version}/caddy-%{version}.tar.gz
|
||||
Source1: caddy.conf
|
||||
Source2: caddy.service
|
||||
Source3: index.html
|
||||
Requires: system-logos-httpd
|
||||
Provides: webserver
|
||||
|
||||
# dnsproviders
|
||||
%global import_path_dnsproviders github.com/caddyserver/dnsproviders
|
||||
%global version_dnsproviders 0.1.3
|
||||
Source10: https://%{import_path_dnsproviders}/archive/v%{version_dnsproviders}/dnsproviders-%{version_dnsproviders}.tar.gz
|
||||
# https://github.com/caddyserver/caddy/commit/05acc5131ed5c80acbd28ed8d907b166cd15b72c
|
||||
BuildRequires: golang >= 1.25
|
||||
|
||||
# lego
|
||||
%global import_path_lego github.com/xenolf/lego
|
||||
%global version_lego 2.2.0
|
||||
Source11: https://%{import_path_lego}/archive/v%{version_lego}/lego-%{version_lego}.tar.gz
|
||||
# Apache-2.0:
|
||||
Provides: bundled(golang(cel.dev/expr)) = 0.24.0
|
||||
Provides: bundled(golang(cloud.google.com/go/auth)) = 0.16.2
|
||||
Provides: bundled(golang(cloud.google.com/go/auth/oauth2adapt)) = 0.2.8
|
||||
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 0.7.0
|
||||
Provides: bundled(golang(github.com/Masterminds/goutils)) = 1.1.1
|
||||
Provides: bundled(golang(github.com/caddyserver/certmagic)) = 0.24.0
|
||||
Provides: bundled(golang(github.com/coreos/go-oidc/v3)) = 3.14.1
|
||||
Provides: bundled(golang(github.com/dgraph-io/badger)) = 1.6.2
|
||||
Provides: bundled(golang(github.com/dgraph-io/badger/v2)) = 2.2007.4
|
||||
Provides: bundled(golang(github.com/go-logr/logr)) = 1.4.3
|
||||
Provides: bundled(golang(github.com/go-logr/stdr)) = 1.2.2
|
||||
Provides: bundled(golang(github.com/google/cel-go)) = 0.26.0
|
||||
Provides: bundled(golang(github.com/google/certificate-transparency-go)) = 74a5dd3
|
||||
Provides: bundled(golang(github.com/google/go-tpm)) = 0.9.5
|
||||
Provides: bundled(golang(github.com/google/go-tspi)) = 0.3.0
|
||||
Provides: bundled(golang(github.com/google/s2a-go)) = 0.1.9
|
||||
Provides: bundled(golang(github.com/googleapis/enterprise-certificate-proxy)) = 0.3.6
|
||||
Provides: bundled(golang(github.com/inconshreveable/mousetrap)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/kylelemons/godebug)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/pires/go-proxyproto)) = 0.8.1
|
||||
Provides: bundled(golang(github.com/prometheus/client_model)) = 0.6.2
|
||||
Provides: bundled(golang(github.com/prometheus/common)) = 0.65.0
|
||||
Provides: bundled(golang(github.com/prometheus/procfs)) = 0.16.1
|
||||
Provides: bundled(golang(github.com/smallstep/go-attestation)) = 2306d5b
|
||||
Provides: bundled(golang(github.com/smallstep/linkedca)) = 0.23.0
|
||||
Provides: bundled(golang(github.com/smallstep/nosql)) = 0.7.0
|
||||
Provides: bundled(golang(github.com/smallstep/truststore)) = 0.13.0
|
||||
Provides: bundled(golang(github.com/spf13/cobra)) = 1.9.1
|
||||
Provides: bundled(golang(go.opentelemetry.io/auto/sdk)) = 1.1.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp)) = 0.61.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/propagators/autoprop)) = 0.62.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/propagators/aws)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/propagators/b3)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/propagators/jaeger)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/contrib/propagators/ot)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/otlptrace)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel/metric)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel/sdk)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/otel/trace)) = 1.37.0
|
||||
Provides: bundled(golang(go.opentelemetry.io/proto/otlp)) = 1.7.0
|
||||
Provides: bundled(golang(go.uber.org/mock)) = 0.5.2
|
||||
Provides: bundled(golang(google.golang.org/genproto/googleapis/api)) = 513f239
|
||||
Provides: bundled(golang(google.golang.org/genproto/googleapis/rpc)) = 513f239
|
||||
Provides: bundled(golang(google.golang.org/grpc)) = 1.73.0
|
||||
Provides: bundled(golang(google.golang.org/grpc/cmd/protoc-gen-go-grpc)) = 1.5.1
|
||||
|
||||
%if %{with azure}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/azure)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/azure)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with cloudflare}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/cloudflare)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/cloudflare)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with digitalocean}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/digitalocean)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/digitalocean)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with dyn}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/dyn)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/dyn)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with gandi}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/gandi)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/gandi)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with googlecloud}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/googlecloud)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/googlecloud)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with namecheap}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/namecheap)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/namecheap)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with pdns}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/pdns)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/pdns)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with rackspace}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/rackspace)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/rackspace)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with rfc2136}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/rfc2136)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/rfc2136)) = %{version_lego}
|
||||
%endif
|
||||
%if %{with route53}
|
||||
Provides: bundled(golang(%{import_path_dnsproviders}/route53)) = %{version_dnsproviders}
|
||||
Provides: bundled(golang(%{import_path_lego}/providers/dns/route53)) = %{version_lego}
|
||||
%endif
|
||||
# BSD-2-Clause:
|
||||
Provides: bundled(golang(github.com/pkg/errors)) = 0.9.1
|
||||
Provides: bundled(golang(github.com/russross/blackfriday/v2)) = 2.1.0
|
||||
|
||||
# geoip
|
||||
%global import_path_geoip github.com/kodnaplakal/caddy-geoip
|
||||
%global commit_geoip 6af15b436fdcb08a743c30f9bad044ad32b53b49
|
||||
Source20: https://%{import_path_geoip}/archive/%{commit_geoip}/geoip-%{commit_geoip}.tar.gz
|
||||
%if %{with geoip}
|
||||
Provides: bundled(golang(%{import_path_geoip})) = %{commit_geoip}
|
||||
BuildRequires: golang(github.com/oschwald/maxminddb-golang)
|
||||
%endif
|
||||
# BSD-3-Clause:
|
||||
Provides: bundled(golang(dario.cat/mergo)) = 1.0.1
|
||||
Provides: bundled(golang(github.com/antlr4-go/antlr/v4)) = 4.13.0
|
||||
Provides: bundled(golang(github.com/cloudflare/circl)) = 1.6.1
|
||||
Provides: bundled(golang(github.com/golang/protobuf)) = 1.5.4
|
||||
Provides: bundled(golang(github.com/golang/snappy)) = 0.0.4
|
||||
Provides: bundled(golang(github.com/google/uuid)) = 1.6.0
|
||||
Provides: bundled(golang(github.com/grpc-ecosystem/grpc-gateway/v2)) = 2.27.1
|
||||
Provides: bundled(golang(github.com/manifoldco/promptui)) = 0.9.0
|
||||
Provides: bundled(golang(github.com/miekg/dns)) = 1.1.63
|
||||
Provides: bundled(golang(github.com/munnerz/goautoneg)) = a7dc8b6
|
||||
Provides: bundled(golang(github.com/pbnjay/memory)) = 7b4eea6
|
||||
Provides: bundled(golang(github.com/pmezard/go-difflib)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/spf13/pflag)) = 1.0.7
|
||||
Provides: bundled(golang(github.com/tailscale/tscert)) = d3f8340
|
||||
Provides: bundled(golang(golang.org/x/crypto)) = 0.40.0
|
||||
Provides: bundled(golang(golang.org/x/crypto/x509roots/fallback)) = 49bf5b8
|
||||
Provides: bundled(golang(golang.org/x/exp)) = 7e4ce0a
|
||||
Provides: bundled(golang(golang.org/x/mod)) = 0.25.0
|
||||
Provides: bundled(golang(golang.org/x/net)) = 0.42.0
|
||||
Provides: bundled(golang(golang.org/x/oauth2)) = 0.30.0
|
||||
Provides: bundled(golang(golang.org/x/sync)) = 0.16.0
|
||||
Provides: bundled(golang(golang.org/x/sys)) = 0.34.0
|
||||
Provides: bundled(golang(golang.org/x/term)) = 0.33.0
|
||||
Provides: bundled(golang(golang.org/x/text)) = 0.27.0
|
||||
Provides: bundled(golang(golang.org/x/time)) = 0.12.0
|
||||
Provides: bundled(golang(golang.org/x/tools)) = 0.34.0
|
||||
Provides: bundled(golang(google.golang.org/api)) = 0.240.0
|
||||
Provides: bundled(golang(google.golang.org/protobuf)) = 1.36.6
|
||||
|
||||
# realip
|
||||
%global import_path_realip github.com/captncraig/caddy-realip
|
||||
%global commit_realip 5dd1f4047d0f649f21ba9f8d7e491d712be9a5b0
|
||||
Source21: https://%{import_path_realip}/archive/%{commit_realip}/realip-%{commit_realip}.tar.gz
|
||||
%if %{with realip}
|
||||
Provides: bundled(golang(%{import_path_realip})) = %{commit_realip}
|
||||
%endif
|
||||
# CC0-1.0:
|
||||
Provides: bundled(golang(github.com/zeebo/blake3)) = 0.2.4
|
||||
|
||||
# vendored libraries (Source0)
|
||||
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 7a4ba9f439fbc50061834a4063b57cf7222ba83f
|
||||
Provides: bundled(golang(github.com/aead/chacha20)) = 8b13a72661dae6e9e5dea04f344f0dc95ea29547
|
||||
Provides: bundled(golang(github.com/alecthomas/template)) = a0175ee3bccc567396460bf5acd36800cb10c49c
|
||||
Provides: bundled(golang(github.com/alecthomas/units)) = 2efee857e7cfd4f3d0138cc3cbb1b4966962b93a
|
||||
Provides: bundled(golang(github.com/codahale/aesnicheck)) = 349fcc471aaccc29cd074e1275f1a494323826cd
|
||||
Provides: bundled(golang(github.com/dustin/go-humanize)) = 259d2a102b871d17f30e3cd9881a642961a1e486
|
||||
Provides: bundled(golang(github.com/flynn/go-shlex)) = 3f9db97f856818214da2e1057f8ad84803971cff
|
||||
Provides: bundled(golang(github.com/golang/mock/gomock)) = 600781dde9cca80734169b9e969d9054ccc57937
|
||||
Provides: bundled(golang(github.com/golang/protobuf/proto)) = 748d386b5c1ea99658fd69fe9f03991ce86a90c1
|
||||
Provides: bundled(golang(github.com/golang/protobuf/ptypes/any)) = 748d386b5c1ea99658fd69fe9f03991ce86a90c1
|
||||
Provides: bundled(golang(github.com/google/uuid)) = dec09d789f3dba190787f8b4454c7d3c936fed9e
|
||||
Provides: bundled(golang(github.com/gorilla/websocket)) = a69d9f6de432e2c6b296a947d8a5ee88f68522cf
|
||||
Provides: bundled(golang(github.com/hashicorp/go-syslog)) = 326bf4a7f709d263f964a6a96558676b103f3534
|
||||
Provides: bundled(golang(github.com/jimstudt/http-authentication/basic)) = 3eca13d6893afd7ecabe15f4445f5d2872a1b012
|
||||
Provides: bundled(golang(github.com/klauspost/cpuid)) = ae832f27941af41db13bd6d8efd2493e3b22415a
|
||||
Provides: bundled(golang(github.com/lucas-clemente/quic-go)) = f90751eabaa39364e3861ee5a8b179f140847d7e
|
||||
Provides: bundled(golang(github.com/mholt/certmagic)) = a7f18a937c080b88693cd4e14d48e42cc067b268
|
||||
Provides: bundled(golang(github.com/miekg/dns)) = 0f3adef2e2201d72e50309a36fc99d8a9d1a4960
|
||||
Provides: bundled(golang(github.com/naoina/go-stringutil)) = 6b638e95a32d0c1131db0e7fe83775cbea4a0d0b
|
||||
Provides: bundled(golang(github.com/naoina/toml)) = e6f5723bf2a66af014955e0888881314cf294129
|
||||
Provides: bundled(golang(github.com/russross/blackfriday)) = 067529f716f4c3f5e37c8c95ddd59df1007290ae
|
||||
Provides: bundled(golang(github.com/xenolf/lego/acme)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/certcrypto)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/certificate)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/challenge)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/lego)) = f05aa4c241fd8b43da9dc8cab8c8965e5b3c1b55
|
||||
Provides: bundled(golang(github.com/xenolf/lego/log)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/platform/wait)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/registration)) = a43ec709e8034f388aab28d14b97aeed0e7aa98c
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/github.com/miekg/dns)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/crypto/ed25519)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/crypto/ocsp)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/crypto/pbkdf2)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/bpf)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/idna)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/internal/iana)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/internal/socket)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/ipv4)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/net/ipv6)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/sys/unix)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/collate)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/internal/colltab)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/internal/gen)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/internal/tag)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/internal/triegen)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/internal/ucd)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/language)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/secure/bidirule)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/transform)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/unicode/bidi)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/unicode/cldr)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/unicode/norm)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/golang.org/x/text/unicode/rangetable)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(github.com/xenolf/lego/vendor/gopkg.in/square/go-jose.v2)) = b05b54d1f69a31ceed92e2995243c5b17821c9e4
|
||||
Provides: bundled(golang(go4.org/syncutil/singleflight)) = 034d17a462f7b2dcd1a4a73553ec5357ff6e6c6e
|
||||
Provides: bundled(golang(golang.org/x/crypto/curve25519)) = 94eea52f7b742c7cbe0b03b22f0c4c8631ece122
|
||||
Provides: bundled(golang(golang.org/x/crypto/ed25519)) = c4a91bd4f524f10d064139674cf55852e055ad01
|
||||
Provides: bundled(golang(golang.org/x/crypto/hkdf)) = 2faea1465de239e4babd8f5905cc25b781712442
|
||||
Provides: bundled(golang(golang.org/x/crypto/ocsp)) = 2faea1465de239e4babd8f5905cc25b781712442
|
||||
Provides: bundled(golang(golang.org/x/crypto/ssh/terminal)) = 2faea1465de239e4babd8f5905cc25b781712442
|
||||
Provides: bundled(golang(golang.org/x/net/context)) = f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f
|
||||
Provides: bundled(golang(golang.org/x/net/http/httpguts)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/http2)) = f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f
|
||||
Provides: bundled(golang(golang.org/x/net/idna)) = f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f
|
||||
Provides: bundled(golang(golang.org/x/net/lex/httplex)) = f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f
|
||||
Provides: bundled(golang(golang.org/x/net/publicsuffix)) = f5079bd7f6f74e23c4d65efa0f4ce14cbd6a3c0f
|
||||
Provides: bundled(golang(golang.org/x/oauth2)) = b53b38ad8a6435bd399ea76d0fa74f23149cca4e
|
||||
Provides: bundled(golang(golang.org/x/sys/cpu)) = 49385e6e15226593f68b26af201feec29d5bba22
|
||||
Provides: bundled(golang(golang.org/x/sys/unix)) = 35ef4487ce0a1ea5d4b616ffe71e34febe723695
|
||||
Provides: bundled(golang(golang.org/x/text/internal/gen)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/internal/triegen)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/internal/ucd)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/secure/bidirule)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/transform)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/bidi)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/cldr)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/norm)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/rangetable)) = 836efe42bb4aa16aaa17b9c155d8813d336ed720
|
||||
Provides: bundled(golang(google.golang.org/api/compute/v1)) = 66dba45b06824cbfe030e696b156d562994531e1
|
||||
Provides: bundled(golang(google.golang.org/api/gensupport)) = 66dba45b06824cbfe030e696b156d562994531e1
|
||||
Provides: bundled(golang(google.golang.org/api/googleapi)) = 66dba45b06824cbfe030e696b156d562994531e1
|
||||
Provides: bundled(golang(google.golang.org/appengine)) = ad2570cd3913654e00c5f0183b39d2f998e54046
|
||||
Provides: bundled(golang(gopkg.in/alecthomas/kingpin.v2)) = 1087e65c9441605df944fb12c33f0fe7072d18ca
|
||||
Provides: bundled(golang(gopkg.in/natefinch/lumberjack.v2)) = 7d6a1875575e09256dc552b4c0e450dcd02bd10e
|
||||
Provides: bundled(golang(gopkg.in/square/go-jose.v2)) = 6ee92191fea850cdcab9a18867abf5f521cdbadb
|
||||
Provides: bundled(golang(gopkg.in/yaml.v2)) = 25c4ec802a7d637f88d584ab26798e94ad14c13b
|
||||
# ISC:
|
||||
Provides: bundled(golang(github.com/davecgh/go-spew)) = 1.1.1
|
||||
|
||||
# vendored libraries (Source11)
|
||||
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 0.26.0
|
||||
Provides: bundled(golang(github.com/Azure/azure-sdk-for-go/services/dns/mgmt/2017-09-01/dns)) = 19.1.0
|
||||
Provides: bundled(golang(github.com/Azure/azure-sdk-for-go/version)) = 19.1.0
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/adal)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/azure)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/azure/auth)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/date)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/to)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/validation)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/logger)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/Azure/go-autorest/version)) = 10.15.2
|
||||
Provides: bundled(golang(github.com/JamesClonk/vultr/lib)) = 1.15.0
|
||||
Provides: bundled(golang(github.com/OpenDNS/vegadns2client)) = a3fa4a771d87bda2514a90a157e1fed1b6897d2e
|
||||
Provides: bundled(golang(github.com/akamai/AkamaiOPEN-edgegrid-golang/client-v1)) = 0.7.3
|
||||
Provides: bundled(golang(github.com/akamai/AkamaiOPEN-edgegrid-golang/configdns-v1)) = 0.7.3
|
||||
Provides: bundled(golang(github.com/akamai/AkamaiOPEN-edgegrid-golang/edgegrid)) = 0.7.3
|
||||
Provides: bundled(golang(github.com/akamai/AkamaiOPEN-edgegrid-golang/jsonhooks-v1)) = 0.7.3
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth/credentials)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth/signers)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/endpoints)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/errors)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/sdk/utils)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aliyun/alibaba-cloud-sdk-go/services/alidns)) = 1.27.7
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awserr)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awsutil)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client/metadata)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/corehandlers)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/endpointcreds)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/stscreds)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/csm)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/defaults)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/ec2metadata)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/endpoints)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/request)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/session)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/signer/v4)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkio)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkrand)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkuri)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/shareddefaults)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/json/jsonutil)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/jsonrpc)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query/queryutil)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/rest)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restxml)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/lightsail)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/route53)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts)) = 1.15.23
|
||||
Provides: bundled(golang(github.com/cenkalti/backoff)) = 2.1.1
|
||||
Provides: bundled(golang(github.com/cloudflare/cloudflare-go)) = 0.8.5
|
||||
Provides: bundled(golang(github.com/cpu/goacmedns)) = 565ecf2a84df654865cc102705ac160a3b04fc01
|
||||
Provides: bundled(golang(github.com/davecgh/go-spew/spew)) = 1.1.1
|
||||
Provides: bundled(golang(github.com/decker502/dnspod-go)) = 83a3ba562b048c9fc88229408e593494b7774684
|
||||
Provides: bundled(golang(github.com/dgrijalva/jwt-go)) = 3.2.0
|
||||
Provides: bundled(golang(github.com/dimchansky/utfbom)) = 5448fe645cb1964ba70ac8f9f2ffe975e61a536c
|
||||
Provides: bundled(golang(github.com/dnsimple/dnsimple-go/dnsimple)) = 0.21.0
|
||||
Provides: bundled(golang(github.com/exoscale/egoscale)) = 0.11.6
|
||||
Provides: bundled(golang(github.com/fatih/structs)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/go-ini/ini)) = 1.38.2
|
||||
Provides: bundled(golang(github.com/go-resty/resty)) = 1.8.0
|
||||
Provides: bundled(golang(github.com/golang/protobuf/proto)) = 1.2.0
|
||||
Provides: bundled(golang(github.com/google/go-querystring/query)) = 53e6ce116135b80d037921a7fdd5138cf32d7a8a
|
||||
Provides: bundled(golang(github.com/google/uuid)) = 0.2
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/dns/v2/recordsets)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/dns/v2/zones)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/identity/v2/tenants)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/identity/v2/tokens)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/identity/v3/tokens)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/openstack/utils)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/gophercloud/gophercloud/pagination)) = a2b0ad6ce68c8302027db1a5f9dbb03b0c8ab072
|
||||
Provides: bundled(golang(github.com/iij/doapi)) = 8803795a9b7b938fa88ddbd63a77893beee14cd8
|
||||
Provides: bundled(golang(github.com/iij/doapi/protocol)) = 8803795a9b7b938fa88ddbd63a77893beee14cd8
|
||||
Provides: bundled(golang(github.com/jmespath/go-jmespath)) = 0b12d6b5
|
||||
Provides: bundled(golang(github.com/json-iterator/go)) = 1.1.5
|
||||
Provides: bundled(golang(github.com/juju/ratelimit)) = 1.0.1
|
||||
Provides: bundled(golang(github.com/kolo/xmlrpc)) = 16bdd962781df9696f40cc2bab924f1a855a7f89
|
||||
Provides: bundled(golang(github.com/linode/linodego)) = 0.5.1
|
||||
Provides: bundled(golang(github.com/miekg/dns)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/mitchellh/go-homedir)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/mitchellh/mapstructure)) = 1.1.2
|
||||
Provides: bundled(golang(github.com/modern-go/concurrent)) = 1.0.3
|
||||
Provides: bundled(golang(github.com/modern-go/reflect2)) = 1.0.1
|
||||
Provides: bundled(golang(github.com/namedotcom/go/namecom)) = 08470befbe04613bd4b44cb6978b05d50294c4d4
|
||||
Provides: bundled(golang(github.com/nrdcg/auroradns)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/nrdcg/goinwx)) = 0.6.0
|
||||
Provides: bundled(golang(github.com/ovh/go-ovh/ovh)) = c3e61035ea66f5c637719c90140da4e3ac3b1bf0
|
||||
Provides: bundled(golang(github.com/pkg/errors)) = 0.8.0
|
||||
Provides: bundled(golang(github.com/pmezard/go-difflib/difflib)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/rainycape/memcache)) = 1031fa0ce2f20c1c0e1e1b51951d8ea02c84fa05
|
||||
Provides: bundled(golang(github.com/sacloud/libsacloud)) = 108b1efe4b4d106fee6760bdf1847c4f92e1a92e
|
||||
Provides: bundled(golang(github.com/sacloud/libsacloud/api)) = 108b1efe4b4d106fee6760bdf1847c4f92e1a92e
|
||||
Provides: bundled(golang(github.com/sacloud/libsacloud/sacloud)) = 108b1efe4b4d106fee6760bdf1847c4f92e1a92e
|
||||
Provides: bundled(golang(github.com/sacloud/libsacloud/sacloud/ostype)) = 108b1efe4b4d106fee6760bdf1847c4f92e1a92e
|
||||
Provides: bundled(golang(github.com/satori/go.uuid)) = 1.2.0
|
||||
Provides: bundled(golang(github.com/sirupsen/logrus)) = 1.0.6
|
||||
Provides: bundled(golang(github.com/stretchr/objx)) = 0.1.1
|
||||
Provides: bundled(golang(github.com/stretchr/testify/assert)) = 1.2.2
|
||||
Provides: bundled(golang(github.com/stretchr/testify/mock)) = 1.2.2
|
||||
Provides: bundled(golang(github.com/stretchr/testify/require)) = 1.2.2
|
||||
Provides: bundled(golang(github.com/stretchr/testify/suite)) = 1.2.2
|
||||
Provides: bundled(golang(github.com/timewasted/linode)) = 37e84520dcf74488f67654f9c775b9752c232dc1
|
||||
Provides: bundled(golang(github.com/timewasted/linode/dns)) = 37e84520dcf74488f67654f9c775b9752c232dc1
|
||||
Provides: bundled(golang(github.com/transip/gotransip)) = 1dc93a7db3567a5ccf865106afac88278ba940cf
|
||||
Provides: bundled(golang(github.com/transip/gotransip/domain)) = 1dc93a7db3567a5ccf865106afac88278ba940cf
|
||||
Provides: bundled(golang(github.com/transip/gotransip/util)) = 1dc93a7db3567a5ccf865106afac88278ba940cf
|
||||
Provides: bundled(golang(github.com/urfave/cli)) = 1.20.0
|
||||
Provides: bundled(golang(golang.org/x/crypto/ed25519)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/ed25519/internal/edwards25519)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/ocsp)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/pbkdf2)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/pkcs12)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/pkcs12/internal/rc2)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/crypto/ssh/terminal)) = 614d502a4dac94afa3a6ce146bd1736da82514c6
|
||||
Provides: bundled(golang(golang.org/x/net/bpf)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/context)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/context/ctxhttp)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/idna)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/internal/iana)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/internal/socket)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/ipv4)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/ipv6)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/net/publicsuffix)) = 8a410e7b638dca158bf9e766925842f6651ff828
|
||||
Provides: bundled(golang(golang.org/x/oauth2)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/oauth2/clientcredentials)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/oauth2/google)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/oauth2/internal)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/oauth2/jws)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/oauth2/jwt)) = d2e6202438beef2727060aa7cabdd924d92ebfd9
|
||||
Provides: bundled(golang(golang.org/x/sys/unix)) = d99a578cf41bfccdeaf48b0845c823a4b8b0ad5e
|
||||
Provides: bundled(golang(golang.org/x/sys/windows)) = d99a578cf41bfccdeaf48b0845c823a4b8b0ad5e
|
||||
Provides: bundled(golang(golang.org/x/text/collate)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/collate/build)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/internal/colltab)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/internal/gen)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/internal/tag)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/internal/triegen)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/internal/ucd)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/language)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/secure/bidirule)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/transform)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/bidi)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/cldr)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/norm)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/text/unicode/rangetable)) = 0.3.0
|
||||
Provides: bundled(golang(golang.org/x/time/rate)) = fbb02b2291d28baffd63558aa44b4b56f178d650
|
||||
Provides: bundled(golang(google.golang.org/api/dns/v1)) = 087779f1d2c96357d4c45bd04c4d10d7b5f22736
|
||||
Provides: bundled(golang(google.golang.org/api/gensupport)) = 087779f1d2c96357d4c45bd04c4d10d7b5f22736
|
||||
Provides: bundled(golang(google.golang.org/api/googleapi)) = 087779f1d2c96357d4c45bd04c4d10d7b5f22736
|
||||
Provides: bundled(golang(google.golang.org/api/googleapi/internal/uritemplates)) = 087779f1d2c96357d4c45bd04c4d10d7b5f22736
|
||||
Provides: bundled(golang(google.golang.org/appengine)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/app_identity)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/base)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/datastore)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/log)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/modules)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/remote_api)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/internal/urlfetch)) = 1.1.0
|
||||
Provides: bundled(golang(google.golang.org/appengine/urlfetch)) = 1.1.0
|
||||
Provides: bundled(golang(gopkg.in/ini.v1)) = 1.38.2
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest/model/account)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest/model/data)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest/model/dns)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest/model/filter)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/ns1/ns1-go.v2/rest/model/monitor)) = 028658c6d9be774b6d103a923d8c4b2715135c3f
|
||||
Provides: bundled(golang(gopkg.in/square/go-jose.v2)) = 2.1.9
|
||||
Provides: bundled(golang(gopkg.in/square/go-jose.v2/cipher)) = 2.1.9
|
||||
Provides: bundled(golang(gopkg.in/square/go-jose.v2/json)) = 2.1.9
|
||||
# MIT:
|
||||
Provides: bundled(golang(github.com/BurntSushi/toml)) = 1.5.0
|
||||
Provides: bundled(golang(github.com/KimMachineGun/automemlimit)) = 0.7.4
|
||||
Provides: bundled(golang(github.com/Masterminds/semver/v3)) = 3.3.0
|
||||
Provides: bundled(golang(github.com/Masterminds/sprig/v3)) = 3.3.0
|
||||
Provides: bundled(golang(github.com/Microsoft/go-winio)) = 0.6.0
|
||||
Provides: bundled(golang(github.com/alecthomas/chroma/v2)) = 2.20.0
|
||||
Provides: bundled(golang(github.com/aryann/difflib)) = ff5ff6d
|
||||
Provides: bundled(golang(github.com/beorn7/perks)) = 1.0.1
|
||||
Provides: bundled(golang(github.com/caddyserver/zerossl)) = 0.1.3
|
||||
Provides: bundled(golang(github.com/ccoveille/go-safecast)) = 1.6.1
|
||||
Provides: bundled(golang(github.com/cenkalti/backoff/v5)) = 5.0.2
|
||||
Provides: bundled(golang(github.com/cespare/xxhash)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/cespare/xxhash/v2)) = 2.3.0
|
||||
Provides: bundled(golang(github.com/chzyer/readline)) = 1.5.1
|
||||
Provides: bundled(golang(github.com/cpuguy83/go-md2man/v2)) = 2.0.7
|
||||
Provides: bundled(golang(github.com/dgryski/go-farm)) = a6ae236
|
||||
Provides: bundled(golang(github.com/dlclark/regexp2)) = 1.11.5
|
||||
Provides: bundled(golang(github.com/dustin/go-humanize)) = 1.0.1
|
||||
Provides: bundled(golang(github.com/felixge/httpsnoop)) = 1.0.4
|
||||
Provides: bundled(golang(github.com/francoispqt/gojay)) = 1.2.13
|
||||
Provides: bundled(golang(github.com/fxamacker/cbor/v2)) = 2.8.0
|
||||
Provides: bundled(golang(github.com/go-chi/chi/v5)) = 5.2.2
|
||||
Provides: bundled(golang(github.com/huandu/xstrings)) = 1.5.0
|
||||
Provides: bundled(golang(github.com/jackc/pgpassfile)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/jackc/pgservicefile)) = 091c0ba
|
||||
Provides: bundled(golang(github.com/jackc/pgx/v5)) = 5.6.0
|
||||
Provides: bundled(golang(github.com/jackc/puddle/v2)) = 2.2.1
|
||||
Provides: bundled(golang(github.com/klauspost/cpuid/v2)) = 2.3.0
|
||||
Provides: bundled(golang(github.com/libdns/libdns)) = 1.1.0
|
||||
Provides: bundled(golang(github.com/mattn/go-colorable)) = 0.1.13
|
||||
Provides: bundled(golang(github.com/mattn/go-isatty)) = 0.0.20
|
||||
Provides: bundled(golang(github.com/mgutz/ansi)) = d51e80e
|
||||
Provides: bundled(golang(github.com/mitchellh/copystructure)) = 1.2.0
|
||||
Provides: bundled(golang(github.com/mitchellh/go-ps)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/mitchellh/reflectwalk)) = 1.0.2
|
||||
Provides: bundled(golang(github.com/quic-go/qpack)) = 0.5.1
|
||||
Provides: bundled(golang(github.com/quic-go/quic-go)) = 0.54.0
|
||||
Provides: bundled(golang(github.com/rs/xid)) = 1.6.0
|
||||
Provides: bundled(golang(github.com/shopspring/decimal)) = 1.4.0
|
||||
Provides: bundled(golang(github.com/shurcooL/sanitized_anchor_name)) = 1.0.0
|
||||
Provides: bundled(golang(github.com/sirupsen/logrus)) = 1.9.3
|
||||
Provides: bundled(golang(github.com/slackhq/nebula)) = 1.9.5
|
||||
Provides: bundled(golang(github.com/smallstep/pkcs7)) = 0.2.1
|
||||
Provides: bundled(golang(github.com/spf13/cast)) = 1.7.0
|
||||
Provides: bundled(golang(github.com/stoewer/go-strcase)) = 1.2.0
|
||||
Provides: bundled(golang(github.com/stretchr/testify)) = 1.10.0
|
||||
Provides: bundled(golang(github.com/urfave/cli)) = 1.22.17
|
||||
Provides: bundled(golang(github.com/x448/float16)) = 0.8.4
|
||||
Provides: bundled(golang(github.com/yuin/goldmark)) = 1.7.13
|
||||
Provides: bundled(golang(github.com/yuin/goldmark-highlighting/v2)) = 37449ab
|
||||
Provides: bundled(golang(go.etcd.io/bbolt)) = 1.3.10
|
||||
Provides: bundled(golang(go.uber.org/automaxprocs)) = 1.6.0
|
||||
Provides: bundled(golang(go.uber.org/multierr)) = 1.11.0
|
||||
Provides: bundled(golang(go.uber.org/zap)) = 1.27.0
|
||||
Provides: bundled(golang(go.uber.org/zap/exp)) = 0.3.0
|
||||
Provides: bundled(golang(gopkg.in/natefinch/lumberjack.v2)) = 2.2.1
|
||||
|
||||
# MPL-2.0:
|
||||
Provides: bundled(golang(github.com/go-sql-driver/mysql)) = 1.8.1
|
||||
|
||||
# Apache-2.0 AND BSD-2-Clause:
|
||||
Provides: bundled(golang(go.step.sm/crypto)) = 0.67.0
|
||||
Provides: bundled(golang(github.com/smallstep/cli-utils)) = 0.12.1
|
||||
|
||||
# Apache-2.0 AND BSD-3-Clause:
|
||||
Provides: bundled(golang(github.com/go-jose/go-jose/v3)) = 3.0.4
|
||||
Provides: bundled(golang(github.com/go-jose/go-jose/v4)) = 4.0.5
|
||||
Provides: bundled(golang(github.com/googleapis/gax-go/v2)) = 2.14.2
|
||||
Provides: bundled(golang(github.com/mholt/acmez/v3)) = 3.1.2
|
||||
Provides: bundled(golang(github.com/smallstep/certificates)) = 0.28.4
|
||||
|
||||
# Apache-2.0 AND MIT:
|
||||
Provides: bundled(golang(github.com/dgraph-io/ristretto)) = 0.2.0
|
||||
Provides: bundled(golang(gopkg.in/yaml.v3)) = 3.0.1
|
||||
|
||||
# BSD-1-Clause AND BSD-3-Clause:
|
||||
Provides: bundled(golang(filippo.io/edwards25519)) = 1.1.0
|
||||
|
||||
# BSD-2-Clause-Views AND BSD-3-Clause:
|
||||
Provides: bundled(golang(howett.net/plist)) = 1.0.0
|
||||
|
||||
# BSD-3-Clause AND MIT:
|
||||
Provides: bundled(golang(github.com/smallstep/scep)) = 8cf1ca4
|
||||
|
||||
# CC0-1.0 AND MIT:
|
||||
Provides: bundled(golang(github.com/AndreasBriese/bbloom)) = 46b345b
|
||||
|
||||
# Apache-2.0 AND BSD-3-Clause AND MIT:
|
||||
Provides: bundled(golang(github.com/klauspost/compress)) = 1.18.0
|
||||
Provides: bundled(golang(github.com/prometheus/client_golang)) = 1.23.0
|
||||
|
||||
|
||||
%description
|
||||
Caddy is the HTTP/2 web server with automatic HTTPS. Official Caddy builds
|
||||
with customized plugins can be downloaded from https://caddyserver.com. This
|
||||
package is an unofficial build with the following plugins:
|
||||
|
||||
%{?with_geoip: http.geoip
|
||||
}%{?with_realip: http.realip
|
||||
}%{?with_azure: tls.dns.azure
|
||||
}%{?with_cloudflare: tls.dns.cloudflare
|
||||
}%{?with_digitalocean: tls.dns.digitalocean
|
||||
}%{?with_dyn: tls.dns.dyn
|
||||
}%{?with_gandi: tls.dns.gandi
|
||||
}%{?with_googlecloud: tls.dns.googlecloud
|
||||
}%{?with_namecheap: tls.dns.namecheap
|
||||
}%{?with_pdns: tls.dns.powerdns
|
||||
}%{?with_rackspace: tls.dns.rackspace
|
||||
}%{?with_rfc2136: tls.dns.rfc2136
|
||||
}%{?with_route53: tls.dns.route53
|
||||
}
|
||||
Caddy is an extensible server platform that uses TLS by default.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -c -a 10 -a 11 -a 20 -a 21
|
||||
|
||||
cp caddy-%{version}/LICENSE.txt LICENSE.txt
|
||||
cp caddy-%{version}/dist/README.txt README.txt
|
||||
mkdir -p $(dirname _build/src/%{import_path})
|
||||
mv caddy-%{version} _build/src/%{import_path}
|
||||
|
||||
%if %{with dnsproviders}
|
||||
cp dnsproviders-%{version_dnsproviders}/LICENSE LICENSE-dnsproviders
|
||||
mkdir -p $(dirname _build/src/%{import_path_dnsproviders})
|
||||
mv dnsproviders-%{version_dnsproviders} _build/src/%{import_path_dnsproviders}
|
||||
cp lego-%{version_lego}/LICENSE LICENSE-lego
|
||||
mkdir -p $(dirname _build/src/%{import_path_lego})
|
||||
mv lego-%{version_lego} _build/src/%{import_path_lego}
|
||||
%endif
|
||||
|
||||
%if %{with geoip}
|
||||
cp caddy-geoip-%{commit_geoip}/LICENSE LICENSE-geoip
|
||||
mkdir -p $(dirname _build/src/%{import_path_geoip})
|
||||
mv caddy-geoip-%{commit_geoip} _build/src/%{import_path_geoip}
|
||||
%endif
|
||||
|
||||
%if %{with realip}
|
||||
cp caddy-realip-%{commit_realip}/LICENSE LICENSE-realip
|
||||
mkdir -p $(dirname _build/src/%{import_path_realip})
|
||||
mv caddy-realip-%{commit_realip} _build/src/%{import_path_realip}
|
||||
%endif
|
||||
|
||||
sed -e '/other plugins/ a \\t// plugins added during rpmbuild' \
|
||||
%{?with_geoip: -e '/other plugins/ a \\t_ "%{import_path_geoip}"'} \
|
||||
%{?with_realip: -e '/other plugins/ a \\t_ "%{import_path_realip}"'} \
|
||||
%{?with_azure: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/azure"'} \
|
||||
%{?with_cloudflare: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/cloudflare"'} \
|
||||
%{?with_digitalocean: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/digitalocean"'} \
|
||||
%{?with_dyn: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/dyn"'} \
|
||||
%{?with_gandi: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/gandi"'} \
|
||||
%{?with_googlecloud: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/googlecloud"'} \
|
||||
%{?with_namecheap: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/namecheap"'} \
|
||||
%{?with_pdns: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/pdns"'} \
|
||||
%{?with_rackspace: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/rackspace"'} \
|
||||
%{?with_rfc2136: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/rfc2136"'} \
|
||||
%{?with_route53: -e '/other plugins/ a \\t_ "%{import_path_dnsproviders}/route53"'} \
|
||||
-i _build/src/%{import_path}/caddy/caddymain/run.go
|
||||
%autosetup -p 1 -a 1
|
||||
mkdir -p src/$(dirname %{goipath})
|
||||
ln -s $PWD src/%{goipath}
|
||||
|
||||
|
||||
%build
|
||||
export GOPATH="$PWD/_build:%{gopath}"
|
||||
export LDFLAGS="${LDFLAGS:-} -X %{import_path}/caddy/caddymain.appVersion=%{version}"
|
||||
%gobuild -o _bin/caddy %{import_path}/caddy
|
||||
%if %{defined el8}
|
||||
export GO111MODULE=off
|
||||
%endif
|
||||
export GOPATH=$PWD
|
||||
export LDFLAGS="-X %{goipath}.CustomVersion=v%{version}"
|
||||
%gobuild -o bin/caddy %{goipath}/cmd/caddy
|
||||
|
||||
|
||||
%install
|
||||
install -D -m 0755 _bin/caddy %{buildroot}%{_bindir}/caddy
|
||||
install -D -m 0644 %{S:1} %{buildroot}%{_sysconfdir}/caddy/caddy.conf
|
||||
install -D -m 0644 %{S:2} %{buildroot}%{_unitdir}/caddy.service
|
||||
install -D -m 0644 %{S:3} %{buildroot}%{_datadir}/caddy/index.html
|
||||
install -d -m 0755 %{buildroot}%{_sysconfdir}/caddy/conf.d
|
||||
# command
|
||||
install -D -p -m 0755 -t %{buildroot}%{_bindir} bin/caddy
|
||||
|
||||
# man pages
|
||||
./bin/caddy manpage --directory %{buildroot}%{_mandir}/man8
|
||||
|
||||
# config
|
||||
install -D -p -m 0644 -t %{buildroot}%{_sysconfdir}/caddy %{S:10}
|
||||
install -d -m 0755 %{buildroot}%{_sysconfdir}/caddy/Caddyfile.d
|
||||
|
||||
# systemd units
|
||||
install -D -p -m 0644 -t %{buildroot}%{_unitdir} %{S:20} %{S:21}
|
||||
|
||||
# sysusers
|
||||
install -D -p -m 0644 %{S:22} %{buildroot}%{_sysusersdir}/caddy.conf
|
||||
|
||||
# data directory
|
||||
install -d -m 0750 %{buildroot}%{_sharedstatedir}/caddy
|
||||
|
||||
# welcome page
|
||||
%if %{defined fedora}
|
||||
install -D -p -m 0644 %{S:30} %{buildroot}%{_datadir}/caddy/poweredby.png
|
||||
ln -s ../fedora-testpage/index.html %{buildroot}%{_datadir}/caddy/index.html
|
||||
%else
|
||||
install -D -p -m 0644 %{S:31} %{buildroot}%{_datadir}/caddy/poweredby.png
|
||||
ln -s ../testpage/index.html %{buildroot}%{_datadir}/caddy/index.html
|
||||
%endif
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/caddy/icons
|
||||
ln -s ../../pixmaps/poweredby.png %{buildroot}%{_datadir}/caddy/icons/poweredby.png
|
||||
%if %{defined rhel} && 0%{?rhel} >= 9
|
||||
ln -s ../pixmaps/system-noindex-logo.png %{buildroot}%{_datadir}/caddy/system_noindex_logo.png
|
||||
%endif
|
||||
|
||||
# shell completions
|
||||
install -d -m 0755 %{buildroot}%{bash_completions_dir}
|
||||
./bin/caddy completion bash > %{buildroot}%{bash_completions_dir}/caddy
|
||||
install -d -m 0755 %{buildroot}%{zsh_completions_dir}
|
||||
./bin/caddy completion zsh > %{buildroot}%{zsh_completions_dir}/_caddy
|
||||
install -d -m 0755 %{buildroot}%{fish_completions_dir}
|
||||
./bin/caddy completion fish > %{buildroot}%{fish_completions_dir}/caddy.fish
|
||||
|
||||
|
||||
%check
|
||||
# ensure that the version was embedded correctly
|
||||
[[ "$(./bin/caddy version)" == "v%{version}" ]] || exit 1
|
||||
|
||||
# run the upstream tests
|
||||
export GOPATH=$PWD
|
||||
cd src/%{goipath}
|
||||
%gotest ./...
|
||||
|
||||
|
||||
%pre
|
||||
getent group caddy &> /dev/null || \
|
||||
groupadd -r caddy &> /dev/null
|
||||
getent passwd caddy &> /dev/null || \
|
||||
useradd -r -g caddy -d %{_sharedstatedir}/caddy -s /sbin/nologin -c 'Caddy web server' caddy &> /dev/null
|
||||
exit 0
|
||||
%sysusers_create_compat %{S:22}
|
||||
|
||||
|
||||
%post
|
||||
|
|
@ -505,8 +326,8 @@ if [ -x /usr/sbin/semanage ]; then
|
|||
# QUIC
|
||||
semanage port --add --type http_port_t --proto udp 80 2> /dev/null || :
|
||||
semanage port --add --type http_port_t --proto udp 443 2> /dev/null || :
|
||||
# HTTP challenge alternate port
|
||||
semanage port --add --type http_port_t --proto tcp 5033 2> /dev/null || :
|
||||
# admin endpoint
|
||||
semanage port --add --type http_port_t --proto tcp 2019 2> /dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
|
|
@ -531,156 +352,36 @@ if [ $1 -eq 0 ]; then
|
|||
# QUIC
|
||||
semanage port --delete --type http_port_t --proto udp 80 2> /dev/null || :
|
||||
semanage port --delete --type http_port_t --proto udp 443 2> /dev/null || :
|
||||
# HTTP challenge alternate port
|
||||
semanage port --delete --type http_port_t --proto tcp 5033 2> /dev/null || :
|
||||
# admin endpoint
|
||||
semanage port --delete --type http_port_t --proto tcp 2019 2> /dev/null || :
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
%files
|
||||
%license LICENSE.txt
|
||||
%{?with_geoip:%license LICENSE-geoip}
|
||||
%{?with_realip:%license LICENSE-realip}
|
||||
%{?with_dnsproviders:%license LICENSE-dnsproviders}
|
||||
%{?with_dnsproviders:%license LICENSE-lego}
|
||||
%doc README.txt
|
||||
%license LICENSE
|
||||
%doc README.md AUTHORS
|
||||
%{_bindir}/caddy
|
||||
%{_mandir}/man8/caddy*.8*
|
||||
%{_datadir}/caddy
|
||||
%{_unitdir}/caddy.service
|
||||
%{_unitdir}/caddy-api.service
|
||||
%{_sysusersdir}/caddy.conf
|
||||
%dir %{_sysconfdir}/caddy
|
||||
%dir %{_sysconfdir}/caddy/conf.d
|
||||
%config(noreplace) %{_sysconfdir}/caddy/caddy.conf
|
||||
%config(noreplace) %{_sysconfdir}/caddy/Caddyfile
|
||||
%dir %{_sysconfdir}/caddy/Caddyfile.d
|
||||
%attr(0750,caddy,caddy) %dir %{_sharedstatedir}/caddy
|
||||
%if %{defined el8}
|
||||
# this is normally owned by filesystem
|
||||
%dir %{_datadir}/zsh
|
||||
%dir %{_datadir}/zsh/site-functions
|
||||
%dir %{_datadir}/fish
|
||||
%dir %{_datadir}/fish/vendor_completions.d
|
||||
%endif
|
||||
%{bash_completions_dir}/caddy
|
||||
%{zsh_completions_dir}/_caddy
|
||||
%{fish_completions_dir}/caddy.fish
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu May 09 2019 Carl George <carl@george.computer> - 0.11.4-2
|
||||
- Switch unit file from ProtectSystem strict to full rhbz#1706651
|
||||
|
||||
* Wed Mar 06 2019 Carl George <carl@george.computer> - 0.11.4-1
|
||||
- Latest upstream
|
||||
- Update bundled dnsproviders to 0.1.3
|
||||
- Update bundled lego to 2.2.0
|
||||
- Enable googlecloud, route53, and azure dns providers on epel7
|
||||
- Allow custom http port with default config file rhbz#1685446
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Nov 14 2018 Carl George <carl@george.computer> - 0.11.1-2
|
||||
- Buildrequires at least golang 1.10
|
||||
|
||||
* Tue Nov 13 2018 Carl George <carl@george.computer> - 0.11.1-1
|
||||
- Latest upstream
|
||||
- Update bundled geoip
|
||||
|
||||
* Fri Oct 19 2018 Carl George <carl@george.computer> - 0.11.0-3
|
||||
- Enable httpd_can_network_connect selinux boolean to connect to ACME endpoint rhbz#1641158
|
||||
- Define UDP 80/443 as selinux http_port_t for QUIC rhbz#1608548
|
||||
- Define TCP 5033 as selinux http_port_t for HTTP challenge rhbz#1641160
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sat May 12 2018 Carl George <carl@george.computer> - 0.11.0-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Apr 21 2018 Carl George <carl@george.computer> - 0.10.14-1
|
||||
- Latest upstream
|
||||
- Overhaul %%prep to extract everything with %%setup
|
||||
- Edit lego providers to require acmev2 instead of acme
|
||||
- Add provides for specific providers from %%import_path_dnsproviders and %%import_path_lego
|
||||
- Add azure dns provider on f28+
|
||||
|
||||
* Fri Apr 20 2018 Carl George <carl@george.computer> - 0.10.11-6
|
||||
- Enable geoip plugin on EL7
|
||||
- Only provide bundled geoip/realip/dnsproviders/lego when the respective plugin is enabled
|
||||
|
||||
* Wed Apr 18 2018 Carl George <carl@george.computer> - 0.10.11-5
|
||||
- Add geoip plugin
|
||||
|
||||
* Tue Apr 17 2018 Carl George <carl@george.computer> - 0.10.11-4
|
||||
- Correct ExclusiveArch fallback
|
||||
|
||||
* Mon Apr 16 2018 Carl George <carl@george.computer> - 0.10.11-3
|
||||
- Enable s390x
|
||||
- Disable googlecloud and route53 dns providers on EL7 due to dependency issues
|
||||
|
||||
* Fri Mar 30 2018 Carl George <carl@george.computer> - 0.10.11-2
|
||||
- Add googlecloud dns provider
|
||||
- Add route53 dns provider
|
||||
- Set minimum golang version to 1.9
|
||||
- Set selinux labels in scriptlets
|
||||
|
||||
* Sat Feb 24 2018 Carl George <carl@george.computer> - 0.10.11-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Feb 24 2018 Carl George <carl@george.computer> - 0.10.10-4
|
||||
- Change ProtectSystem from strict to full in unit file on RHEL
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 11 2018 Carl George <carl@george.computer> - 0.10.10-2
|
||||
- Add powerdns provider
|
||||
|
||||
* Mon Oct 09 2017 Carl George <carl@george.computer> - 0.10.10-1
|
||||
- Latest upstream
|
||||
|
||||
* Mon Oct 02 2017 Carl George <carl@george.computer> - 0.10.9-6
|
||||
- Add provides for bundled libraries
|
||||
|
||||
* Mon Oct 02 2017 Carl George <carl@george.computer> - 0.10.9-5
|
||||
- Enable rfc2136 dns provider
|
||||
- List plugins in description
|
||||
|
||||
* Mon Sep 18 2017 Carl George <carl@george.computer> - 0.10.9-4
|
||||
- Exclude s390x
|
||||
|
||||
* Sun Sep 17 2017 Carl George <carl@george.computer> - 0.10.9-3
|
||||
- Add realip plugin
|
||||
- Add conditionals for plugins
|
||||
|
||||
* Sat Sep 16 2017 Carl George <carl@george.computer> - 0.10.9-2
|
||||
- Add sources for caddyserver/dnsproviders and xenolf/lego
|
||||
- Disable all dns providers that require additional libraries (dnsimple, dnspod, googlecloud, linode, ovh, route53, vultr)
|
||||
- Rewrite default index.html
|
||||
|
||||
* Tue Sep 12 2017 Carl George <carl@george.computer> - 0.10.9-1
|
||||
- Latest upstream
|
||||
- Add config validation to unit file
|
||||
- Disable exoscale dns provider https://github.com/xenolf/lego/issues/429
|
||||
|
||||
* Fri Sep 08 2017 Carl George <carl@george.computer> - 0.10.8-1
|
||||
- Latest upstream
|
||||
- Build with %%gobuild macro
|
||||
- Move config subdirectory from /etc/caddy/caddy.conf.d to /etc/caddy/conf.d
|
||||
|
||||
* Tue Aug 29 2017 Carl George <carl@george.computer> - 0.10.7-1
|
||||
- Latest upstream
|
||||
|
||||
* Fri Aug 25 2017 Carl George <carl@george.computer> - 0.10.6-2
|
||||
- Use SIQQUIT to stop service
|
||||
- Increase the process limit from 64 to 512
|
||||
- Only `go get` in caddy/caddymain
|
||||
|
||||
* Fri Aug 11 2017 Carl George <carl@george.computer> - 0.10.6-1
|
||||
- Latest upstream
|
||||
- Add webserver virtual provides
|
||||
- Drop tmpfiles and just own /var/lib/caddy directly
|
||||
- Remove PrivateDevices setting from unit file, it prevents selinux process transitions
|
||||
- Disable rfc2136 dns provider https://github.com/caddyserver/dnsproviders/issues/11
|
||||
|
||||
* Sat Jun 03 2017 Carl George <carl.george@rackspace.com> - 0.10.3-2
|
||||
- Rename Envfile to envfile
|
||||
- Rename Caddyfile to caddy.conf
|
||||
- Include additional configs from caddy.conf.d directory
|
||||
|
||||
* Fri May 19 2017 Carl George <carl.george@rackspace.com> - 0.10.3-1
|
||||
- Latest upstream
|
||||
|
||||
* Mon May 15 2017 Carl George <carl.george@rackspace.com> - 0.10.2-1
|
||||
- Initial package
|
||||
%autochangelog
|
||||
|
|
|
|||
1
caddy.sysusers
Normal file
1
caddy.sysusers
Normal file
|
|
@ -0,0 +1 @@
|
|||
u caddy - "Caddy web server" /var/lib/caddy /usr/sbin/nologin
|
||||
285
changelog
Normal file
285
changelog
Normal file
|
|
@ -0,0 +1,285 @@
|
|||
* Wed Jan 22 2025 Carl George <carlwgeorge@fedoraproject.org> - 2.9.1-3
|
||||
- Run tests with -short flag like upstream to avoid test failures
|
||||
- Resolves FTBFS rhbz#2339573 rhbz#2339954
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Jan 08 2025 Carl George <carlwgeorge@fedoraproject.org> - 2.9.1-1
|
||||
- Update to version 2.9.1 rhbz#2336409
|
||||
|
||||
* Wed Jan 01 2025 Carl George <carlwgeorge@fedoraproject.org> - 2.9.0-1
|
||||
- Update to version 2.9.0 rhbz#2316289
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Fri Jul 05 2024 Carl George <carlwgeorge@fedoraproject.org> - 2.8.4-1
|
||||
- Update to version 2.8.4 rhbz#2278549
|
||||
- Resolves CVE-2023-49295 rhbz#2257829
|
||||
- Resolves CVE-2024-27304 rhbz#2268278
|
||||
- Resolves CVE-2024-27289 rhbz#2268468
|
||||
- Resolves CVE-2024-28180 rhbz#2268877
|
||||
- Resolves CVE-2024-22189 rhbz#2273517
|
||||
- Remove LimitNPROC from systemd unit files
|
||||
|
||||
* Sun Feb 11 2024 Maxwell G <maxwell@gtmx.me> - 2.7.6-2
|
||||
- Rebuild for golang 1.22.0
|
||||
|
||||
* Fri Feb 09 2024 Carl George <carlwgeorge@fedoraproject.org> - 2.7.6-1
|
||||
- Update to version 2.7.6 rhbz#2253698
|
||||
- Includes fix for CVE-2023-45142 rhbz#2246587
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Oct 30 2023 Carl George <carlwgeorge@fedoraproject.org> - 2.7.5-1
|
||||
- Update to version 2.7.5
|
||||
- Update poweredby logos
|
||||
- Add symlink for system_noindex_logo.png on EL9
|
||||
- Symlink directly to fedora-testpage directory on Fedora
|
||||
|
||||
* Thu Aug 17 2023 Carl George <carlwgeorge@fedoraproject.org> - 2.7.4-1
|
||||
- Update to version 2.7.4, resolves rhbz#2232696
|
||||
- Fix CVE-2023-3978, resolves rhbz#2229582
|
||||
|
||||
* Tue Aug 08 2023 Carl George <carl@george.computer> - 2.7.3-1
|
||||
- Update to version 2.7.3, resolves rhbz#2229638
|
||||
|
||||
* Thu Aug 03 2023 Carl George <carl@george.computer> - 2.7.2-1
|
||||
- Update to version 2.7.2, resolves rhbz#2228776
|
||||
|
||||
* Thu Jul 27 2023 Carl George <carl@george.computer> - 2.7.0~beta2-1
|
||||
- Update to version 2.7.0~beta2, resolves rhbz#2225732 rhbz#2124366
|
||||
- Resolves CVE-2022-41717 rhbz#2164315
|
||||
- Resolves CVE-2022-41723 rhbz#2178412
|
||||
- Add man pages
|
||||
- Use generated shell completion files instead of static ones
|
||||
- Add fish shell completions
|
||||
- Switch to systemd sysusers
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jan 24 2023 Carl George <carl@george.computer> - 2.5.2-3
|
||||
- Rebuild for CVE-2022-41717 in golang
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Aug 09 2022 Carl George <carl@george.computer> - 2.5.2-1
|
||||
- Latest upstream, resolves rhbz#2062499 rhbz#2113136
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jul 19 2022 Maxwell G <gotmax@e.email> - 2.4.6-4
|
||||
- Rebuild for CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in
|
||||
golang
|
||||
|
||||
* Fri Jun 17 2022 Robert-André Mauchin <zebob.m@gmail.com> - 2.4.6-3
|
||||
- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, CVE-2022-27191,
|
||||
CVE-2022-29526, CVE-2022-30629
|
||||
|
||||
* Fri Feb 25 2022 Carl George <carl@george.computer> - 2.4.6-2
|
||||
- Update welcome page symlink and image to work on both Fedora and EPEL
|
||||
|
||||
* Wed Feb 16 2022 Carl George <carl@george.computer> - 2.4.6-1
|
||||
- Latest upstream rhbz#1984163
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Mar 03 2021 Carl George <carl@george.computer> - 2.3.0-1
|
||||
- Latest upstream
|
||||
- Fix vendored license handling
|
||||
- Switch to white logo rhbz#1934864
|
||||
|
||||
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.2.1-3
|
||||
- Rebuilt for updated systemd-rpm-macros
|
||||
See https://pagure.io/fesco/issue/2583.
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Oct 30 2020 Carl George <carl@george.computer> - 2.2.1-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Sep 26 2020 Carl George <carl@george.computer> - 2.2.0-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Sep 19 2020 Carl George <carl@george.computer> - 2.2.0~rc3-1
|
||||
- Latest upstream
|
||||
|
||||
* Fri Aug 14 2020 Carl George <carl@george.computer> - 2.1.1-2
|
||||
- Add bash and zsh completion support
|
||||
|
||||
* Sun Aug 09 2020 Carl George <carl@george.computer> - 2.1.1-1
|
||||
- Update to Caddy v2
|
||||
- Remove all v1 plugins
|
||||
- Use vendored dependencies
|
||||
- Remove devel subpackage
|
||||
- Rename config file per upstream request
|
||||
- Use webserver test page from system-logos-httpd
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 07 20:56:10 CEST 2020 Robert-André Mauchin <zebob.m@gmail.com> - 1.0.4-1
|
||||
- Update to 1.0.4 (#1803691)
|
||||
|
||||
* Mon Feb 17 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.3-3
|
||||
- Rebuilt for GHSA-jf24-p9p9-4rjh
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Sep 07 2019 Carl George <carl@george.computer> - 1.0.3-1
|
||||
- Latest upstream
|
||||
- Remove bundled lego and plugins
|
||||
- Remove dyn, gandi, namecheap, and rfc2136 dns providers
|
||||
- Add patch0 to fix `-version` flag
|
||||
- Add patch1 to adjust blackfriday import path
|
||||
- Add devel subpackages
|
||||
- Run test suite
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu May 09 2019 Carl George <carl@george.computer> - 0.11.4-2
|
||||
- Switch unit file from ProtectSystem strict to full rhbz#1706651
|
||||
|
||||
* Wed Mar 06 2019 Carl George <carl@george.computer> - 0.11.4-1
|
||||
- Latest upstream
|
||||
- Update bundled dnsproviders to 0.1.3
|
||||
- Update bundled lego to 2.2.0
|
||||
- Enable googlecloud, route53, and azure dns providers on epel7
|
||||
- Allow custom http port with default config file rhbz#1685446
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Nov 14 2018 Carl George <carl@george.computer> - 0.11.1-2
|
||||
- Buildrequires at least golang 1.10
|
||||
|
||||
* Tue Nov 13 2018 Carl George <carl@george.computer> - 0.11.1-1
|
||||
- Latest upstream
|
||||
- Update bundled geoip
|
||||
|
||||
* Fri Oct 19 2018 Carl George <carl@george.computer> - 0.11.0-3
|
||||
- Enable httpd_can_network_connect selinux boolean to connect to ACME endpoint rhbz#1641158
|
||||
- Define UDP 80/443 as selinux http_port_t for QUIC rhbz#1608548
|
||||
- Define TCP 5033 as selinux http_port_t for HTTP challenge rhbz#1641160
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sat May 12 2018 Carl George <carl@george.computer> - 0.11.0-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Apr 21 2018 Carl George <carl@george.computer> - 0.10.14-1
|
||||
- Latest upstream
|
||||
- Overhaul %%prep to extract everything with %%setup
|
||||
- Edit lego providers to require acmev2 instead of acme
|
||||
- Add provides for specific providers from %%import_path_dnsproviders and %%import_path_lego
|
||||
- Add azure dns provider on f28+
|
||||
|
||||
* Fri Apr 20 2018 Carl George <carl@george.computer> - 0.10.11-6
|
||||
- Enable geoip plugin on EL7
|
||||
- Only provide bundled geoip/realip/dnsproviders/lego when the respective plugin is enabled
|
||||
|
||||
* Wed Apr 18 2018 Carl George <carl@george.computer> - 0.10.11-5
|
||||
- Add geoip plugin
|
||||
|
||||
* Tue Apr 17 2018 Carl George <carl@george.computer> - 0.10.11-4
|
||||
- Correct ExclusiveArch fallback
|
||||
|
||||
* Mon Apr 16 2018 Carl George <carl@george.computer> - 0.10.11-3
|
||||
- Enable s390x
|
||||
- Disable googlecloud and route53 dns providers on EL7 due to dependency issues
|
||||
|
||||
* Fri Mar 30 2018 Carl George <carl@george.computer> - 0.10.11-2
|
||||
- Add googlecloud dns provider
|
||||
- Add route53 dns provider
|
||||
- Set minimum golang version to 1.9
|
||||
- Set selinux labels in scriptlets
|
||||
|
||||
* Sat Feb 24 2018 Carl George <carl@george.computer> - 0.10.11-1
|
||||
- Latest upstream
|
||||
|
||||
* Sat Feb 24 2018 Carl George <carl@george.computer> - 0.10.10-4
|
||||
- Change ProtectSystem from strict to full in unit file on RHEL
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 11 2018 Carl George <carl@george.computer> - 0.10.10-2
|
||||
- Add powerdns provider
|
||||
|
||||
* Mon Oct 09 2017 Carl George <carl@george.computer> - 0.10.10-1
|
||||
- Latest upstream
|
||||
|
||||
* Mon Oct 02 2017 Carl George <carl@george.computer> - 0.10.9-6
|
||||
- Add provides for bundled libraries
|
||||
|
||||
* Mon Oct 02 2017 Carl George <carl@george.computer> - 0.10.9-5
|
||||
- Enable rfc2136 dns provider
|
||||
- List plugins in description
|
||||
|
||||
* Mon Sep 18 2017 Carl George <carl@george.computer> - 0.10.9-4
|
||||
- Exclude s390x
|
||||
|
||||
* Sun Sep 17 2017 Carl George <carl@george.computer> - 0.10.9-3
|
||||
- Add realip plugin
|
||||
- Add conditionals for plugins
|
||||
|
||||
* Sat Sep 16 2017 Carl George <carl@george.computer> - 0.10.9-2
|
||||
- Add sources for caddyserver/dnsproviders and xenolf/lego
|
||||
- Disable all dns providers that require additional libraries (dnsimple, dnspod, googlecloud, linode, ovh, route53, vultr)
|
||||
- Rewrite default index.html
|
||||
|
||||
* Tue Sep 12 2017 Carl George <carl@george.computer> - 0.10.9-1
|
||||
- Latest upstream
|
||||
- Add config validation to unit file
|
||||
- Disable exoscale dns provider https://github.com/xenolf/lego/issues/429
|
||||
|
||||
* Fri Sep 08 2017 Carl George <carl@george.computer> - 0.10.8-1
|
||||
- Latest upstream
|
||||
- Build with %%gobuild macro
|
||||
- Move config subdirectory from /etc/caddy/caddy.conf.d to /etc/caddy/conf.d
|
||||
|
||||
* Tue Aug 29 2017 Carl George <carl@george.computer> - 0.10.7-1
|
||||
- Latest upstream
|
||||
|
||||
* Fri Aug 25 2017 Carl George <carl@george.computer> - 0.10.6-2
|
||||
- Use SIQQUIT to stop service
|
||||
- Increase the process limit from 64 to 512
|
||||
- Only `go get` in caddy/caddymain
|
||||
|
||||
* Fri Aug 11 2017 Carl George <carl@george.computer> - 0.10.6-1
|
||||
- Latest upstream
|
||||
- Add webserver virtual provides
|
||||
- Drop tmpfiles and just own /var/lib/caddy directly
|
||||
- Remove PrivateDevices setting from unit file, it prevents selinux process transitions
|
||||
- Disable rfc2136 dns provider https://github.com/caddyserver/dnsproviders/issues/11
|
||||
|
||||
* Sat Jun 03 2017 Carl George <carl.george@rackspace.com> - 0.10.3-2
|
||||
- Rename Envfile to envfile
|
||||
- Rename Caddyfile to caddy.conf
|
||||
- Include additional configs from caddy.conf.d directory
|
||||
|
||||
* Fri May 19 2017 Carl George <carl.george@rackspace.com> - 0.10.3-1
|
||||
- Latest upstream
|
||||
|
||||
* Mon May 15 2017 Carl George <carl.george@rackspace.com> - 0.10.2-1
|
||||
- Initial package
|
||||
40
create-vendor-tarball.sh
Executable file
40
create-vendor-tarball.sh
Executable file
|
|
@ -0,0 +1,40 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
tag=$1
|
||||
|
||||
if [[ -z $tag ]]; then
|
||||
echo "This script requires the tag as an argument."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
PKG="caddy"
|
||||
REPO="https://github.com/caddyserver/$PKG"
|
||||
|
||||
# transform tag into version
|
||||
case $tag in
|
||||
*beta*)
|
||||
# v2.0.0-beta.1 -> 2.0.0~beta1
|
||||
temp=${tag#v}
|
||||
version=${temp/-beta./~beta}
|
||||
;;
|
||||
*rc*)
|
||||
# v2.0.0-rc.1 -> 2.0.0~rc1
|
||||
temp=${tag#v}
|
||||
version=${temp/-rc./~rc}
|
||||
;;
|
||||
*)
|
||||
# v2.0.0 -> 2.0.0
|
||||
version=${tag#v}
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "Using tag: $tag"
|
||||
echo "Using version: $version"
|
||||
|
||||
git -c advice.detachedHead=false clone --branch $tag --depth 1 $REPO.git $PKG-$version
|
||||
pushd $PKG-$version
|
||||
GOPROXY='https://proxy.golang.org,direct' go mod vendor
|
||||
popd
|
||||
tar -C $PKG-$version -czf $PKG-$version-vendor.tar.gz vendor
|
||||
45
index.html
45
index.html
File diff suppressed because one or more lines are too long
BIN
poweredby-black.png
Normal file
BIN
poweredby-black.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
BIN
poweredby-white.png
Normal file
BIN
poweredby-white.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
7
sources
7
sources
|
|
@ -1,5 +1,2 @@
|
|||
SHA512 (caddy-0.11.4.tar.gz) = 463c1e570292c042ffc959c2bf0c20df55477843deeef2f782030fe681ab8c5317505fdb00659662d52ffc8a56b5b1a7b7e6fc72b7f737d4950331ac781f239a
|
||||
SHA512 (dnsproviders-0.1.3.tar.gz) = 8f8b1199f5c41ceee06221d2e79260d90e02e91af77fb90c2a2bad8a6c630311c4880ea94f5f570d9d89132c1b81c5f1b1599eecfc24a9dd3f0f3254def7f48f
|
||||
SHA512 (geoip-6af15b436fdcb08a743c30f9bad044ad32b53b49.tar.gz) = 34ccea181cfd17e05c5fb0dc3ebe04440ef62fe57c8ec585e61d69f2c8ebd9a20be3ead9e879517b5adcec0f135836ad6979d49942ee3d5bae6a5d6428d3442d
|
||||
SHA512 (lego-2.2.0.tar.gz) = 8f071131c6379daeb2800730d798145516912b747636245d1738a76aefa06ecd8a8b32aceb80b7785b1a118ea4bbe90853d2ec182ce60e8f7179efd1727758dc
|
||||
SHA512 (realip-5dd1f4047d0f649f21ba9f8d7e491d712be9a5b0.tar.gz) = 98dc0d55a19f599dab58fcffcea2945db43ee3ebf31bdaf183cdf44ede5341ecded073690bc90b5cdfdef13ad0b4d6841df18efa164652c2e27496d4e5cd9535
|
||||
SHA512 (caddy-2.10.2.tar.gz) = 986b11e26cdaa4fbe554cf7b6bb333404fc33190945ef995122518a3fe2fe582a4cf4d2a8ab463e045857650e9deb88123f8d86a93dbdc465635755b00356205
|
||||
SHA512 (caddy-2.10.2-vendor.tar.gz) = 8b4b63f5b8ba4b29ec01da55820214f4c63a1c545756815e26d73bdcc3b3ac5aada863ef32ab6db898b90a9501c0ed6e03ed44e53612cdb8d872ab89480d466d
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue