forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacmetool.rb
185 lines (148 loc) · 6.15 KB
/
acmetool.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
require "language/go"
class Acmetool < Formula
desc "Automatic certificate acquisition tool for ACME (Let's Encrypt)"
homepage "https://github.com/hlandau/acme"
url "https://github.com/hlandau/acme.git",
:tag => "v0.0.61",
:revision => "1cda304f9ab3d3c8ad20652895f4a2c9620bb8c1"
bottle do
sha256 "b28fe2e5b7d1c56d555a8bd31ab60934fe84c93a52388465917a783a30b4e760" => :high_sierra
sha256 "6a9c9a0a544920654a9d8f4dd62c8492d8b489f1530533bcb4081d6f34083bec" => :sierra
sha256 "8d93e9854fc281d5966e7ea9c6fccda4179cddcc761730549e5e0972d0a5df54" => :el_capitan
sha256 "d79921f89f2e52ccc89d056d7dc07ee350332b75a64e3f6f7cfc90d68729d478" => :yosemite
end
depends_on "go" => :build
go_resource "github.com/alecthomas/template" do
url "https://github.com/alecthomas/template.git",
:revision => "a0175ee3bccc567396460bf5acd36800cb10c49c"
end
go_resource "github.com/alecthomas/units" do
url "https://github.com/alecthomas/units.git",
:revision => "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"
end
go_resource "github.com/coreos/go-systemd" do
url "https://github.com/coreos/go-systemd.git",
:revision => "d2196463941895ee908e13531a23a39feb9e1243"
end
go_resource "github.com/hlandau/buildinfo" do
url "https://github.com/hlandau/buildinfo.git",
:revision => "337a29b5499734e584d4630ce535af64c5fe7813"
end
go_resource "github.com/hlandau/dexlogconfig" do
url "https://github.com/hlandau/dexlogconfig.git",
:revision => "244f29bd260884993b176cd14ef2f7631f6f3c18"
end
go_resource "github.com/hlandau/goutils" do
url "https://github.com/hlandau/goutils.git",
:revision => "0cdb66aea5b843822af6fdffc21286b8fe8379c4"
end
go_resource "github.com/hlandau/xlog" do
url "https://github.com/hlandau/xlog.git",
:revision => "197ef798aed28e08ed3e176e678fda81be993a31"
end
go_resource "github.com/jmhodges/clock" do
url "https://github.com/jmhodges/clock.git",
:revision => "880ee4c335489bc78d01e4d0a254ae880734bc15"
end
go_resource "github.com/mattn/go-isatty" do
url "https://github.com/mattn/go-isatty.git",
:revision => "fc9e8d8ef48496124e79ae0df75490096eccf6fe"
end
go_resource "github.com/mattn/go-runewidth" do
url "https://github.com/mattn/go-runewidth.git",
:revision => "97311d9f7767e3d6f422ea06661bc2c7a19e8a5d"
end
go_resource "github.com/mitchellh/go-wordwrap" do
url "https://github.com/mitchellh/go-wordwrap.git",
:revision => "ad45545899c7b13c020ea92b2072220eefad42b8"
end
go_resource "github.com/ogier/pflag" do
url "https://github.com/ogier/pflag.git",
:revision => "45c278ab3607870051a2ea9040bb85fcb8557481"
end
go_resource "github.com/peterhellberg/link" do
url "https://github.com/peterhellberg/link.git",
:revision => "3eea38ca14b7b3252feea5daf92be3864209eb1d"
end
go_resource "github.com/satori/go.uuid" do
url "https://github.com/satori/go.uuid.git",
:revision => "5bf94b69c6b68ee1b541973bb8e1144db23a194b"
end
go_resource "github.com/shiena/ansicolor" do
url "https://github.com/shiena/ansicolor.git",
:revision => "a422bbe96644373c5753384a59d678f7d261ff10"
end
go_resource "golang.org/x/crypto" do
url "https://go.googlesource.com/crypto.git",
:revision => "eb71ad9bd329b5ac0fd0148dd99bd62e8be8e035"
end
go_resource "golang.org/x/net" do
url "https://go.googlesource.com/net.git",
:revision => "1c05540f6879653db88113bc4a2b70aec4bd491f"
end
go_resource "golang.org/x/text" do
url "https://go.googlesource.com/text.git",
:revision => "e56139fd9c5bc7244c76116c68e500765bb6db6b"
end
go_resource "gopkg.in/alecthomas/kingpin.v2" do
url "https://gopkg.in/alecthomas/kingpin.v2.git",
:revision => "1087e65c9441605df944fb12c33f0fe7072d18ca"
end
go_resource "gopkg.in/cheggaaa/pb.v1" do
url "https://gopkg.in/cheggaaa/pb.v1.git",
:revision => "0d6285554e726cc0620cbecc7e6969c945dcc63b"
end
go_resource "gopkg.in/hlandau/configurable.v1" do
url "https://gopkg.in/hlandau/configurable.v1.git",
:revision => "41496864a1fe3e0fef2973f22372b755d2897402"
end
go_resource "gopkg.in/hlandau/easyconfig.v1" do
url "https://gopkg.in/hlandau/easyconfig.v1.git",
:revision => "7589cb96edce2f94f8c1e6eb261f8c2b06220fe7"
end
go_resource "gopkg.in/hlandau/service.v2" do
url "https://gopkg.in/hlandau/service.v2.git",
:revision => "b64b3467ebd16f64faec1640c25e318efc0c0d7b"
end
go_resource "gopkg.in/hlandau/svcutils.v1" do
url "https://gopkg.in/hlandau/svcutils.v1.git",
:revision => "c25dac49e50cbbcbef8c81b089f56156f4067729"
end
go_resource "gopkg.in/square/go-jose.v1" do
url "https://gopkg.in/square/go-jose.v1.git",
:revision => "aa2e30fdd1fe9dd3394119af66451ae790d50e0d"
end
go_resource "gopkg.in/tylerb/graceful.v1" do
url "https://gopkg.in/tylerb/graceful.v1.git",
:revision => "4654dfbb6ad53cb5e27f37d99b02e16c1872fbbb"
end
go_resource "gopkg.in/yaml.v2" do
url "https://gopkg.in/yaml.v2.git",
:revision => "eb3733d160e74a9c7e442f435eb3bea458e1d19f"
end
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/hlandau").mkpath
ln_sf buildpath, buildpath/"src/github.com/hlandau/acme"
Language::Go.stage_deps resources, buildpath/"src"
cd "cmd/acmetool" do
# https://github.com/hlandau/acme/blob/master/_doc/PACKAGING-PATHS.md
ldflags = %W[
-X github.com/hlandau/acme/storage.RecommendedPath=#{var}/lib/acmetool
-X github.com/hlandau/acme/hooks.DefaultPath=#{lib}/hooks
-X github.com/hlandau/acme/responder.StandardWebrootPath=#{var}/run/acmetool/acme-challenge
#{Utils.popen_read("#{buildpath}/src/github.com/hlandau/buildinfo/gen")}
]
system "go", "build", "-o", bin/"acmetool", "-ldflags", ldflags.join(" ")
end
(man8/"acmetool.8").write Utils.popen_read(bin/"acmetool", "--help-man")
doc.install Dir["_doc/*"]
end
def post_install
(var/"lib/acmetool").mkpath
(var/"run/acmetool").mkpath
end
test do
assert_match version.to_s, shell_output("#{bin}/acmetool --version", 2)
end
end