-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathcontainerd.spec
More file actions
663 lines (603 loc) · 37.9 KB
/
containerd.spec
File metadata and controls
663 lines (603 loc) · 37.9 KB
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
%global goipath github.com/containerd/containerd
Version: 1.6.38
%if %{defined fedora}
%gometa
%ifnarch %{arm}
%bcond_without tests
%endif
%else
ExclusiveArch: %{?go_arches:%{go_arches}}%{!?go_arches:%{ix86} x86_64 %{arm} aarch64 ppc64le s390x %{mips}}
%global debug_package %{nil}
%global gourl https://%{goipath}
%global gosource %{gourl}/archive/refs/tags/v%{version}.tar.gz
%define gobuildroot %{expand:
GO_BUILD_PATH=$PWD/_build
install -m 0755 -vd $(dirname $GO_BUILD_PATH/src/%{goipath})
ln -fs $PWD $GO_BUILD_PATH/src/%{goipath}
cd $GO_BUILD_PATH/src/%{goipath}
install -m 0755 -vd _bin
export PATH=$PWD/_bin${PATH:+:$PATH}
export GOPATH=$GO_BUILD_PATH:%{gopath}
}
%define gobuild(o:) %{expand:
%global _dwz_low_mem_die_limit 0
%ifnarch ppc64
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-seccomp no_btrfs}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags %{?__golang_extldflags}'" -a -v -x %{?**};
%else
go build -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-seccomp no_btrfs}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags %{?__golang_extldflags}'" -a -v -x %{?**};
%endif
}
%endif
Name: containerd
Release: 1%{?dist}
Summary: An industry-standard container runtime
License: ASL 2.0
URL: https://containerd.io
Source0: %{gosource}
Source1: containerd.service
Source2: containerd.toml
# Carve out code requiring github.com/Microsoft/hcsshim
Patch0: 0001-Revert-commit-for-Windows-metrics.patch
# NOTE: We do not require golang as we do not rely on the package to install it
# BuildRequires: golang >= 1.10
BuildRequires: libseccomp-devel
BuildRequires: systemd
%{?systemd_requires}
# NOTE: A bug in runc 1.1.3 seems to cause issues with "exec" in containers
# See https://github.com/containerd/containerd/issues/7219
Requires: (runc < 1:1.1.3 or runc > 1:1.1.3)
# vendored libraries
# From github.com/containerd/containerd repository, checkout the corresponding version and run:
# go list -m -mod=mod -f '{{ if not .Main }}{{.Path }} {{ .Version }}{{ end }}' -u all 2> /dev/null \
# | awk '{ s = split($2, v, "-"); print "Provides: bundled(golang("$1")) = "v[s] }'
Provides: bundled(golang(bazil.org/fuse)) = 371fbbdaa898
Provides: bundled(golang(cloud.google.com/go)) = v0.65.0
Provides: bundled(golang(cloud.google.com/go/bigquery)) = v1.8.0
Provides: bundled(golang(cloud.google.com/go/compute)) = v1.23.0
Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = v0.2.3
Provides: bundled(golang(cloud.google.com/go/datastore)) = v1.1.0
Provides: bundled(golang(cloud.google.com/go/firestore)) = v1.1.0
Provides: bundled(golang(cloud.google.com/go/pubsub)) = v1.3.1
Provides: bundled(golang(cloud.google.com/go/storage)) = v1.10.0
Provides: bundled(golang(dario.cat/mergo)) = v1.0.0
Provides: bundled(golang(dmitri.shuralyov.com/gpu/mtl)) = 666a987793e9
Provides: bundled(golang(github.com/AdaLogics/go-fuzz-headers)) = 6c3934b029d8
Provides: bundled(golang(github.com/Azure/azure-sdk-for-go)) = v16.2.1+incompatible
Provides: bundled(golang(github.com/Azure/go-ansiterm)) = d185dfc1b5a1
Provides: bundled(golang(github.com/Azure/go-autorest)) = v14.2.0+incompatible
Provides: bundled(golang(github.com/Azure/go-autorest/autorest)) = v0.11.18
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/adal)) = v0.9.13
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/date)) = v0.3.0
Provides: bundled(golang(github.com/Azure/go-autorest/autorest/mocks)) = v0.4.1
Provides: bundled(golang(github.com/Azure/go-autorest/logger)) = v0.2.1
Provides: bundled(golang(github.com/Azure/go-autorest/tracing)) = v0.6.0
Provides: bundled(golang(github.com/BurntSushi/toml)) = v0.3.1
Provides: bundled(golang(github.com/BurntSushi/xgb)) = 27f122750802
Provides: bundled(golang(github.com/Microsoft/go-winio)) = v0.5.3
Provides: bundled(golang(github.com/Microsoft/hcsshim)) = v0.9.12
Provides: bundled(golang(github.com/Microsoft/hcsshim/test)) = 43a75bb4edd3
Provides: bundled(golang(github.com/NYTimes/gziphandler)) = v1.1.1
Provides: bundled(golang(github.com/OneOfOne/xxhash)) = v1.2.2
Provides: bundled(golang(github.com/PuerkitoBio/purell)) = v1.1.1
Provides: bundled(golang(github.com/PuerkitoBio/urlesc)) = de5bf2ad4578
Provides: bundled(golang(github.com/Shopify/logrus-bugsnag)) = 577dee27f20d
Provides: bundled(golang(github.com/alecthomas/template)) = fb15b899a751
Provides: bundled(golang(github.com/alecthomas/units)) = f65c72e2690d
Provides: bundled(golang(github.com/alexflint/go-filemutex)) = v1.1.0
Provides: bundled(golang(github.com/antihax/optional)) = v1.0.0
Provides: bundled(golang(github.com/armon/circbuf)) = bbbad097214e
Provides: bundled(golang(github.com/armon/consul-api)) = eb2c6b5be1b6
Provides: bundled(golang(github.com/armon/go-metrics)) = f0300d1749da
Provides: bundled(golang(github.com/armon/go-radix)) = 7fddfc383310
Provides: bundled(golang(github.com/asaskevich/govalidator)) = f61b66f89f4a
Provides: bundled(golang(github.com/aws/aws-sdk-go)) = v1.15.11
Provides: bundled(golang(github.com/benbjohnson/clock)) = v1.0.3
Provides: bundled(golang(github.com/beorn7/perks)) = v1.0.1
Provides: bundled(golang(github.com/bgentry/speakeasy)) = v0.1.0
Provides: bundled(golang(github.com/bitly/go-simplejson)) = v0.5.0
Provides: bundled(golang(github.com/bits-and-blooms/bitset)) = v1.2.0
Provides: bundled(golang(github.com/bketelsen/crypt)) = 5cbc8cc4026c
Provides: bundled(golang(github.com/blang/semver)) = v3.5.1+incompatible
Provides: bundled(golang(github.com/bmizerany/assert)) = b7ed37b82869
Provides: bundled(golang(github.com/bshuster-repo/logrus-logstash-hook)) = v0.4.1
Provides: bundled(golang(github.com/buger/jsonparser)) = v1.1.1
Provides: bundled(golang(github.com/bugsnag/bugsnag-go)) = b1d153021fcd
Provides: bundled(golang(github.com/bugsnag/osext)) = 0dd3f918b21b
Provides: bundled(golang(github.com/bugsnag/panicwrap)) = e2c28503fcd0
Provides: bundled(golang(github.com/cenkalti/backoff/v4)) = v4.1.2
Provides: bundled(golang(github.com/census-instrumentation/opencensus-proto)) = v0.4.1
Provides: bundled(golang(github.com/certifi/gocertifi)) = 2c3bb06c6054
Provides: bundled(golang(github.com/cespare/xxhash)) = v1.1.0
Provides: bundled(golang(github.com/cespare/xxhash/v2)) = v2.2.0
Provides: bundled(golang(github.com/checkpoint-restore/go-criu/v4)) = v4.1.0
Provides: bundled(golang(github.com/checkpoint-restore/go-criu/v5)) = v5.0.0
Provides: bundled(golang(github.com/chzyer/logex)) = v1.1.10
Provides: bundled(golang(github.com/chzyer/readline)) = 2972be24d48e
Provides: bundled(golang(github.com/chzyer/test)) = a1ea475d72b1
Provides: bundled(golang(github.com/cilium/ebpf)) = v0.7.0
Provides: bundled(golang(github.com/client9/misspell)) = v0.3.4
Provides: bundled(golang(github.com/cncf/udpa/go)) = c52dc94e7fbe
Provides: bundled(golang(github.com/cncf/xds/go)) = e9ce68804cb4
Provides: bundled(golang(github.com/cockroachdb/datadriven)) = bf6692d28da5
Provides: bundled(golang(github.com/cockroachdb/errors)) = v1.2.4
Provides: bundled(golang(github.com/cockroachdb/logtags)) = eb05cc24525f
Provides: bundled(golang(github.com/containerd/aufs)) = v1.0.0
Provides: bundled(golang(github.com/containerd/btrfs)) = v1.0.0
Provides: bundled(golang(github.com/containerd/cgroups)) = v1.0.4
Provides: bundled(golang(github.com/containerd/console)) = v1.0.3
Provides: bundled(golang(github.com/containerd/continuity)) = v0.3.0
Provides: bundled(golang(github.com/containerd/errdefs)) = v0.1.0
Provides: bundled(golang(github.com/containerd/fifo)) = v1.0.0
Provides: bundled(golang(github.com/containerd/go-cni)) = v1.1.6
Provides: bundled(golang(github.com/containerd/go-runc)) = v1.0.0
Provides: bundled(golang(github.com/containerd/imgcrypt)) = v1.1.8
Provides: bundled(golang(github.com/containerd/log)) = v0.1.0
Provides: bundled(golang(github.com/containerd/nri)) = v0.1.1
Provides: bundled(golang(github.com/containerd/stargz-snapshotter/estargz)) = v0.4.1
Provides: bundled(golang(github.com/containerd/ttrpc)) = v1.1.2
Provides: bundled(golang(github.com/containerd/typeurl)) = v1.0.2
Provides: bundled(golang(github.com/containerd/zfs)) = v1.1.0
Provides: bundled(golang(github.com/containernetworking/cni)) = v1.1.1
Provides: bundled(golang(github.com/containernetworking/plugins)) = v1.1.1
Provides: bundled(golang(github.com/containers/ocicrypt)) = v1.1.10
Provides: bundled(golang(github.com/coreos/bbolt)) = v1.3.2
Provides: bundled(golang(github.com/coreos/etcd)) = v3.3.13+incompatible
Provides: bundled(golang(github.com/coreos/go-iptables)) = v0.6.0
Provides: bundled(golang(github.com/coreos/go-oidc)) = v2.1.0+incompatible
Provides: bundled(golang(github.com/coreos/go-semver)) = v0.3.0
Provides: bundled(golang(github.com/coreos/go-systemd)) = 95778dfbb74e
Provides: bundled(golang(github.com/coreos/go-systemd/v22)) = v22.3.2
Provides: bundled(golang(github.com/coreos/pkg)) = 399ea9e2e55f
Provides: bundled(golang(github.com/cpuguy83/go-md2man/v2)) = v2.0.0
Provides: bundled(golang(github.com/creack/pty)) = v1.1.11
Provides: bundled(golang(github.com/cyphar/filepath-securejoin)) = v0.2.2
Provides: bundled(golang(github.com/d2g/dhcp4)) = a1d1b6c41b1c
Provides: bundled(golang(github.com/d2g/dhcp4client)) = v1.0.0
Provides: bundled(golang(github.com/d2g/dhcp4server)) = 7d4a0a7f59a5
Provides: bundled(golang(github.com/d2g/hardwareaddr)) = e7d9fbe030e4
Provides: bundled(golang(github.com/davecgh/go-spew)) = v1.1.1
Provides: bundled(golang(github.com/denverdino/aliyungo)) = a747050bb1ba
Provides: bundled(golang(github.com/dgrijalva/jwt-go)) = v3.2.0+incompatible
Provides: bundled(golang(github.com/dgryski/go-sip13)) = e10d5fee7954
Provides: bundled(golang(github.com/dnaeon/go-vcr)) = v1.0.1
Provides: bundled(golang(github.com/docker/cli)) = a8ff7f821017
Provides: bundled(golang(github.com/docker/distribution)) = v2.7.1+incompatible
Provides: bundled(golang(github.com/docker/docker)) = a8608b5b67c7
Provides: bundled(golang(github.com/docker/docker-credential-helpers)) = v0.6.3
Provides: bundled(golang(github.com/docker/go-connections)) = v0.4.0
Provides: bundled(golang(github.com/docker/go-events)) = e31b211e4f1c
Provides: bundled(golang(github.com/docker/go-metrics)) = v0.0.1
Provides: bundled(golang(github.com/docker/go-units)) = v0.4.0
Provides: bundled(golang(github.com/docker/libtrust)) = fa567046d9b1
Provides: bundled(golang(github.com/docker/spdystream)) = 449fdfce4d96
Provides: bundled(golang(github.com/docopt/docopt-go)) = ee0de3bc6815
Provides: bundled(golang(github.com/dustin/go-humanize)) = v1.0.0
Provides: bundled(golang(github.com/elazarl/goproxy)) = 947c36da3153
Provides: bundled(golang(github.com/emicklei/go-restful)) = v2.16.0+incompatible
Provides: bundled(golang(github.com/emicklei/go-restful/v3)) = v3.10.1
Provides: bundled(golang(github.com/envoyproxy/go-control-plane)) = v0.11.1
Provides: bundled(golang(github.com/envoyproxy/protoc-gen-validate)) = v1.0.2
Provides: bundled(golang(github.com/evanphx/json-patch)) = v4.11.0+incompatible
Provides: bundled(golang(github.com/fatih/color)) = v1.7.0
Provides: bundled(golang(github.com/felixge/httpsnoop)) = v1.0.1
Provides: bundled(golang(github.com/form3tech-oss/jwt-go)) = v3.2.3+incompatible
Provides: bundled(golang(github.com/frankban/quicktest)) = v1.11.3
Provides: bundled(golang(github.com/fsnotify/fsnotify)) = v1.4.9
Provides: bundled(golang(github.com/fullsailor/pkcs7)) = d7302db945fa
Provides: bundled(golang(github.com/garyburd/redigo)) = 535138d7bcd7
Provides: bundled(golang(github.com/getsentry/raven-go)) = v0.2.0
Provides: bundled(golang(github.com/ghodss/yaml)) = v1.0.0
Provides: bundled(golang(github.com/go-gl/glfw)) = e6da0acd62b1
Provides: bundled(golang(github.com/go-gl/glfw/v3.3/glfw)) = 6f7a984d4dc4
Provides: bundled(golang(github.com/go-ini/ini)) = v1.25.4
Provides: bundled(golang(github.com/go-jose/go-jose/v3)) = v3.0.3
Provides: bundled(golang(github.com/go-kit/kit)) = v0.9.0
Provides: bundled(golang(github.com/go-kit/log)) = v0.1.0
Provides: bundled(golang(github.com/go-logfmt/logfmt)) = v0.5.0
Provides: bundled(golang(github.com/go-logr/logr)) = v1.3.0
Provides: bundled(golang(github.com/go-logr/stdr)) = v1.2.2
Provides: bundled(golang(github.com/go-openapi/jsonpointer)) = v0.19.5
Provides: bundled(golang(github.com/go-openapi/jsonreference)) = v0.19.5
Provides: bundled(golang(github.com/go-openapi/spec)) = v0.19.3
Provides: bundled(golang(github.com/go-openapi/swag)) = v0.19.14
Provides: bundled(golang(github.com/go-stack/stack)) = v1.8.0
Provides: bundled(golang(github.com/go-task/slim-sprig)) = 348f09dbbbc0
Provides: bundled(golang(github.com/godbus/dbus)) = ade71ed3457e
Provides: bundled(golang(github.com/godbus/dbus/v5)) = v5.0.6
Provides: bundled(golang(github.com/gogo/googleapis)) = v1.4.0
Provides: bundled(golang(github.com/gogo/protobuf)) = v1.3.2
Provides: bundled(golang(github.com/golang/glog)) = v1.1.2
Provides: bundled(golang(github.com/golang/groupcache)) = 41bb18bfe9da
Provides: bundled(golang(github.com/golang/mock)) = v1.6.0
Provides: bundled(golang(github.com/golang/protobuf)) = v1.5.4
Provides: bundled(golang(github.com/google/btree)) = v1.0.1
Provides: bundled(golang(github.com/google/go-cmp)) = v0.6.0
Provides: bundled(golang(github.com/google/go-containerregistry)) = v0.5.1
Provides: bundled(golang(github.com/google/gofuzz)) = v1.2.0
Provides: bundled(golang(github.com/google/martian)) = v2.1.0+incompatible
Provides: bundled(golang(github.com/google/martian/v3)) = v3.0.0
Provides: bundled(golang(github.com/google/pprof)) = 94a9f03dee38
Provides: bundled(golang(github.com/google/renameio)) = v0.1.0
Provides: bundled(golang(github.com/google/uuid)) = v1.3.1
Provides: bundled(golang(github.com/googleapis/gax-go/v2)) = v2.0.5
Provides: bundled(golang(github.com/googleapis/gnostic)) = v0.5.5
Provides: bundled(golang(github.com/gopherjs/gopherjs)) = 0766667cb4d1
Provides: bundled(golang(github.com/gorilla/handlers)) = 60c7bfde3e33
Provides: bundled(golang(github.com/gorilla/mux)) = v1.7.3
Provides: bundled(golang(github.com/gorilla/websocket)) = v1.4.2
Provides: bundled(golang(github.com/gregjones/httpcache)) = 9cad4c3443a7
Provides: bundled(golang(github.com/grpc-ecosystem/go-grpc-middleware)) = v1.3.0
Provides: bundled(golang(github.com/grpc-ecosystem/go-grpc-prometheus)) = v1.2.0
Provides: bundled(golang(github.com/grpc-ecosystem/grpc-gateway)) = v1.16.0
Provides: bundled(golang(github.com/hashicorp/consul/api)) = v1.1.0
Provides: bundled(golang(github.com/hashicorp/consul/sdk)) = v0.1.1
Provides: bundled(golang(github.com/hashicorp/errwrap)) = v1.1.0
Provides: bundled(golang(github.com/hashicorp/go-cleanhttp)) = v0.5.1
Provides: bundled(golang(github.com/hashicorp/go-immutable-radix)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/go-msgpack)) = v0.5.3
Provides: bundled(golang(github.com/hashicorp/go-multierror)) = v1.1.1
Provides: bundled(golang(github.com/hashicorp/go-rootcerts)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/go-sockaddr)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/go-syslog)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/go-uuid)) = v1.0.1
Provides: bundled(golang(github.com/hashicorp/go.net)) = v0.0.1
Provides: bundled(golang(github.com/hashicorp/golang-lru)) = v0.5.1
Provides: bundled(golang(github.com/hashicorp/hcl)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/logutils)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/mdns)) = v1.0.0
Provides: bundled(golang(github.com/hashicorp/memberlist)) = v0.1.3
Provides: bundled(golang(github.com/hashicorp/serf)) = v0.8.2
Provides: bundled(golang(github.com/hpcloud/tail)) = v1.0.0
Provides: bundled(golang(github.com/ianlancetaylor/demangle)) = 28f6c0f3b639
Provides: bundled(golang(github.com/imdario/mergo)) = v0.3.12
Provides: bundled(golang(github.com/inconshreveable/mousetrap)) = v1.0.0
Provides: bundled(golang(github.com/intel/goresctrl)) = v0.2.0
Provides: bundled(golang(github.com/j-keck/arping)) = 2cf9dc699c56
Provides: bundled(golang(github.com/jmespath/go-jmespath)) = bd40a432e4c7
Provides: bundled(golang(github.com/joefitzgerald/rainbow-reporter)) = v0.1.0
Provides: bundled(golang(github.com/jonboulle/clockwork)) = v0.2.2
Provides: bundled(golang(github.com/josharian/intern)) = v1.0.0
Provides: bundled(golang(github.com/jpillora/backoff)) = v1.0.0
Provides: bundled(golang(github.com/json-iterator/go)) = v1.1.12
Provides: bundled(golang(github.com/jstemmer/go-junit-report)) = v0.9.1
Provides: bundled(golang(github.com/jtolds/gls)) = v4.20.0+incompatible
Provides: bundled(golang(github.com/julienschmidt/httprouter)) = v1.3.0
Provides: bundled(golang(github.com/kisielk/errcheck)) = v1.5.0
Provides: bundled(golang(github.com/kisielk/gotool)) = v1.0.0
Provides: bundled(golang(github.com/klauspost/compress)) = v1.15.9
Provides: bundled(golang(github.com/konsorten/go-windows-terminal-sequences)) = v1.0.3
Provides: bundled(golang(github.com/kr/logfmt)) = b84e30acd515
Provides: bundled(golang(github.com/kr/pretty)) = v0.2.1
Provides: bundled(golang(github.com/kr/pty)) = v1.1.5
Provides: bundled(golang(github.com/kr/text)) = v0.2.0
Provides: bundled(golang(github.com/linuxkit/virtsock)) = f8cee7dfc7a3
Provides: bundled(golang(github.com/magiconair/properties)) = v1.8.1
Provides: bundled(golang(github.com/mailru/easyjson)) = v0.7.6
Provides: bundled(golang(github.com/marstr/guid)) = v1.1.0
Provides: bundled(golang(github.com/mattn/go-colorable)) = v0.0.9
Provides: bundled(golang(github.com/mattn/go-isatty)) = v0.0.4
Provides: bundled(golang(github.com/mattn/go-runewidth)) = v0.0.2
Provides: bundled(golang(github.com/mattn/go-shellwords)) = v1.0.12
Provides: bundled(golang(github.com/matttproud/golang_protobuf_extensions)) = v1.0.4
Provides: bundled(golang(github.com/maxbrunsfeld/counterfeiter/v6)) = v6.2.2
Provides: bundled(golang(github.com/miekg/dns)) = v1.0.14
Provides: bundled(golang(github.com/miekg/pkcs11)) = v1.1.1
Provides: bundled(golang(github.com/mistifyio/go-zfs)) = f784269be439+incompatible
Provides: bundled(golang(github.com/mistifyio/go-zfs/v3)) = v3.0.1
Provides: bundled(golang(github.com/mitchellh/cli)) = v1.0.0
Provides: bundled(golang(github.com/mitchellh/go-homedir)) = v1.1.0
Provides: bundled(golang(github.com/mitchellh/go-testing-interface)) = v1.0.0
Provides: bundled(golang(github.com/mitchellh/gox)) = v0.4.0
Provides: bundled(golang(github.com/mitchellh/iochan)) = v1.0.0
Provides: bundled(golang(github.com/mitchellh/mapstructure)) = v1.1.2
Provides: bundled(golang(github.com/moby/locker)) = v1.0.1
Provides: bundled(golang(github.com/moby/spdystream)) = v0.2.0
Provides: bundled(golang(github.com/moby/sys/mountinfo)) = v0.6.2
Provides: bundled(golang(github.com/moby/sys/signal)) = v0.6.0
Provides: bundled(golang(github.com/moby/sys/symlink)) = v0.2.0
Provides: bundled(golang(github.com/moby/sys/user)) = v0.1.0
Provides: bundled(golang(github.com/moby/term)) = 9d4ed1856297
Provides: bundled(golang(github.com/modern-go/concurrent)) = bacd9c7ef1dd
Provides: bundled(golang(github.com/modern-go/reflect2)) = v1.0.2
Provides: bundled(golang(github.com/morikuni/aec)) = v1.0.0
Provides: bundled(golang(github.com/mrunalp/fileutils)) = v0.5.0
Provides: bundled(golang(github.com/munnerz/goautoneg)) = a7dc8b61c822
Provides: bundled(golang(github.com/mwitkow/go-conntrack)) = 2f068394615f
Provides: bundled(golang(github.com/mxk/go-flowrate)) = cca7078d478f
Provides: bundled(golang(github.com/ncw/swift)) = v1.0.47
Provides: bundled(golang(github.com/networkplumbing/go-nft)) = v0.2.0
Provides: bundled(golang(github.com/niemeyer/pretty)) = a10e7caefd8e
Provides: bundled(golang(github.com/nxadm/tail)) = v1.4.8
Provides: bundled(golang(github.com/oklog/ulid)) = v1.3.1
Provides: bundled(golang(github.com/olekukonko/tablewriter)) = a0225b3f23b5
Provides: bundled(golang(github.com/onsi/ginkgo)) = v1.16.4
Provides: bundled(golang(github.com/onsi/ginkgo/v2)) = v2.1.3
Provides: bundled(golang(github.com/onsi/gomega)) = v1.17.0
Provides: bundled(golang(github.com/opencontainers/go-digest)) = v1.0.0
Provides: bundled(golang(github.com/opencontainers/image-spec)) = v1.1.0
Provides: bundled(golang(github.com/opencontainers/runc)) = v1.1.5
Provides: bundled(golang(github.com/opencontainers/runtime-spec)) = 1c3f411f0417
Provides: bundled(golang(github.com/opencontainers/runtime-tools)) = 1d69bd0f9c39
Provides: bundled(golang(github.com/opencontainers/selinux)) = v1.10.1
Provides: bundled(golang(github.com/opentracing/opentracing-go)) = v1.1.0
Provides: bundled(golang(github.com/pascaldekloe/goe)) = 57f6aae5913c
Provides: bundled(golang(github.com/pelletier/go-toml)) = v1.9.5
Provides: bundled(golang(github.com/peterbourgon/diskv)) = v2.0.1+incompatible
Provides: bundled(golang(github.com/pkg/errors)) = v0.9.1
Provides: bundled(golang(github.com/pmezard/go-difflib)) = v1.0.0
Provides: bundled(golang(github.com/posener/complete)) = v1.1.1
Provides: bundled(golang(github.com/pquerna/cachecontrol)) = 0dec1b30a021
Provides: bundled(golang(github.com/prometheus/client_golang)) = v1.11.1
Provides: bundled(golang(github.com/prometheus/client_model)) = v0.2.0
Provides: bundled(golang(github.com/prometheus/common)) = v0.30.0
Provides: bundled(golang(github.com/prometheus/procfs)) = v0.7.3
Provides: bundled(golang(github.com/prometheus/tsdb)) = v0.7.1
Provides: bundled(golang(github.com/rogpeppe/fastuuid)) = v1.2.0
Provides: bundled(golang(github.com/rogpeppe/go-internal)) = v1.3.0
Provides: bundled(golang(github.com/russross/blackfriday)) = v1.6.0
Provides: bundled(golang(github.com/russross/blackfriday/v2)) = v2.0.1
Provides: bundled(golang(github.com/ryanuber/columnize)) = 9b3edd62028f
Provides: bundled(golang(github.com/safchain/ethtool)) = 9aa261dae9b1
Provides: bundled(golang(github.com/satori/go.uuid)) = v1.2.0
Provides: bundled(golang(github.com/sclevine/spec)) = v1.2.0
Provides: bundled(golang(github.com/sean-/seed)) = e2103e2c3529
Provides: bundled(golang(github.com/seccomp/libseccomp-golang)) = v0.9.1
Provides: bundled(golang(github.com/shurcooL/sanitized_anchor_name)) = v1.0.0
Provides: bundled(golang(github.com/sirupsen/logrus)) = v1.9.3
Provides: bundled(golang(github.com/smartystreets/assertions)) = b2de0cb4f26d
Provides: bundled(golang(github.com/smartystreets/goconvey)) = v1.6.4
Provides: bundled(golang(github.com/soheilhy/cmux)) = v0.1.5
Provides: bundled(golang(github.com/spaolacci/murmur3)) = f09979ecbc72
Provides: bundled(golang(github.com/spf13/afero)) = v1.2.2
Provides: bundled(golang(github.com/spf13/cast)) = v1.3.0
Provides: bundled(golang(github.com/spf13/cobra)) = v1.1.3
Provides: bundled(golang(github.com/spf13/jwalterweatherman)) = v1.0.0
Provides: bundled(golang(github.com/spf13/pflag)) = v1.0.5
Provides: bundled(golang(github.com/spf13/viper)) = v1.7.0
Provides: bundled(golang(github.com/stefanberger/go-pkcs11uri)) = 78284954bff6
Provides: bundled(golang(github.com/stoewer/go-strcase)) = v1.2.0
Provides: bundled(golang(github.com/stretchr/objx)) = v0.5.0
Provides: bundled(golang(github.com/stretchr/testify)) = v1.8.4
Provides: bundled(golang(github.com/subosito/gotenv)) = v1.2.0
Provides: bundled(golang(github.com/syndtr/gocapability)) = 42c35b437635
Provides: bundled(golang(github.com/tchap/go-patricia)) = v2.2.6+incompatible
Provides: bundled(golang(github.com/tmc/grpc-websocket-proxy)) = e5319fda7802
Provides: bundled(golang(github.com/ugorji/go)) = v1.1.4
Provides: bundled(golang(github.com/urfave/cli)) = v1.22.2
Provides: bundled(golang(github.com/vishvananda/netlink)) = f5de75959ad5
Provides: bundled(golang(github.com/vishvananda/netns)) = 2eb08e3e575f
Provides: bundled(golang(github.com/willf/bitset)) = v1.1.11
Provides: bundled(golang(github.com/xeipuuv/gojsonpointer)) = 4e3ac2762d5f
Provides: bundled(golang(github.com/xeipuuv/gojsonreference)) = bd5ef7bd5415
Provides: bundled(golang(github.com/xeipuuv/gojsonschema)) = v1.2.0
Provides: bundled(golang(github.com/xiang90/probing)) = 43a291ad63a2
Provides: bundled(golang(github.com/xordataexchange/crypt)) = b2862e3d0a77
Provides: bundled(golang(github.com/yuin/goldmark)) = v1.4.13
Provides: bundled(golang(github.com/yvasiyarov/go-metrics)) = 57bccd1ccd43
Provides: bundled(golang(github.com/yvasiyarov/gorelic)) = a9bba5b9ab50
Provides: bundled(golang(github.com/yvasiyarov/newrelic_platform_go)) = b21fdbd4370f
Provides: bundled(golang(go.etcd.io/bbolt)) = v1.3.7
Provides: bundled(golang(go.etcd.io/etcd)) = dd1b699fc489
Provides: bundled(golang(go.etcd.io/etcd/api/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/etcd/client/pkg/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/etcd/client/v2)) = v2.305.0
Provides: bundled(golang(go.etcd.io/etcd/client/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/etcd/pkg/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/etcd/raft/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/etcd/server/v3)) = v3.5.0
Provides: bundled(golang(go.etcd.io/gofail)) = v0.1.0
Provides: bundled(golang(go.mozilla.org/pkcs7)) = 432b2356ecb1
Provides: bundled(golang(go.opencensus.io)) = v0.24.0
Provides: bundled(golang(go.opentelemetry.io/contrib)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc)) = v0.46.0
Provides: bundled(golang(go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/otel)) = v1.21.0
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/internal/retry)) = v1.3.0
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/otlptrace)) = v1.3.0
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc)) = v1.3.0
Provides: bundled(golang(go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp)) = v1.3.0
Provides: bundled(golang(go.opentelemetry.io/otel/metric)) = v1.21.0
Provides: bundled(golang(go.opentelemetry.io/otel/oteltest)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/otel/sdk)) = v1.21.0
Provides: bundled(golang(go.opentelemetry.io/otel/sdk/export/metric)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/otel/sdk/metric)) = v0.20.0
Provides: bundled(golang(go.opentelemetry.io/otel/trace)) = v1.21.0
Provides: bundled(golang(go.opentelemetry.io/proto/otlp)) = v0.11.0
Provides: bundled(golang(go.uber.org/atomic)) = v1.7.0
Provides: bundled(golang(go.uber.org/goleak)) = v1.1.12
Provides: bundled(golang(go.uber.org/multierr)) = v1.6.0
Provides: bundled(golang(go.uber.org/zap)) = v1.17.0
Provides: bundled(golang(golang.org/x/crypto)) = v0.21.0
Provides: bundled(golang(golang.org/x/exp)) = 6cc2880d07d6
Provides: bundled(golang(golang.org/x/image)) = cff245a6509b
Provides: bundled(golang(golang.org/x/lint)) = 738671d3881b
Provides: bundled(golang(golang.org/x/mobile)) = d2bd2a29d028
Provides: bundled(golang(golang.org/x/mod)) = v0.8.0
Provides: bundled(golang(golang.org/x/net)) = v0.23.0
Provides: bundled(golang(golang.org/x/oauth2)) = v0.11.0
Provides: bundled(golang(golang.org/x/sync)) = v0.3.0
Provides: bundled(golang(golang.org/x/sys)) = v0.18.0
Provides: bundled(golang(golang.org/x/term)) = v0.18.0
Provides: bundled(golang(golang.org/x/text)) = v0.14.0
Provides: bundled(golang(golang.org/x/time)) = 1f47c861a9ac
Provides: bundled(golang(golang.org/x/tools)) = v0.6.0
Provides: bundled(golang(golang.org/x/xerrors)) = 5ec99f83aff1
Provides: bundled(golang(google.golang.org/api)) = v0.30.0
Provides: bundled(golang(google.golang.org/appengine)) = v1.6.7
Provides: bundled(golang(google.golang.org/cloud)) = 975617b05ea8
Provides: bundled(golang(google.golang.org/genproto)) = b8732ec3820d
Provides: bundled(golang(google.golang.org/genproto/googleapis/api)) = b8732ec3820d
Provides: bundled(golang(google.golang.org/genproto/googleapis/rpc)) = d307bd883b97
Provides: bundled(golang(google.golang.org/grpc)) = v1.59.0
Provides: bundled(golang(google.golang.org/protobuf)) = v1.33.0
Provides: bundled(golang(gopkg.in/airbrake/gobrake.v2)) = v2.0.9
Provides: bundled(golang(gopkg.in/alecthomas/kingpin.v2)) = v2.2.6
Provides: bundled(golang(gopkg.in/check.v1)) = 10cb98267c6c
Provides: bundled(golang(gopkg.in/cheggaaa/pb.v1)) = v1.0.25
Provides: bundled(golang(gopkg.in/errgo.v2)) = v2.1.0
Provides: bundled(golang(gopkg.in/fsnotify.v1)) = v1.4.7
Provides: bundled(golang(gopkg.in/gemnasium/logrus-airbrake-hook.v2)) = v2.1.2
Provides: bundled(golang(gopkg.in/inf.v0)) = v0.9.1
Provides: bundled(golang(gopkg.in/ini.v1)) = v1.51.0
Provides: bundled(golang(gopkg.in/natefinch/lumberjack.v2)) = v2.0.0
Provides: bundled(golang(gopkg.in/resty.v1)) = v1.12.0
Provides: bundled(golang(gopkg.in/square/go-jose.v2)) = v2.5.1
Provides: bundled(golang(gopkg.in/tomb.v1)) = dd632973f1e7
Provides: bundled(golang(gopkg.in/yaml.v2)) = v2.4.0
Provides: bundled(golang(gopkg.in/yaml.v3)) = v3.0.1
Provides: bundled(golang(gotest.tools)) = v2.2.0+incompatible
Provides: bundled(golang(gotest.tools/v3)) = v3.4.0
Provides: bundled(golang(honnef.co/go/tools)) = 2020.1.4
Provides: bundled(golang(k8s.io/api)) = v0.22.5
Provides: bundled(golang(k8s.io/apimachinery)) = v0.22.5
Provides: bundled(golang(k8s.io/apiserver)) = v0.22.5
Provides: bundled(golang(k8s.io/client-go)) = v0.22.5
Provides: bundled(golang(k8s.io/code-generator)) = v0.19.7
Provides: bundled(golang(k8s.io/component-base)) = v0.22.5
Provides: bundled(golang(k8s.io/cri-api)) = v0.25.0
Provides: bundled(golang(k8s.io/gengo)) = 83324d819ded
Provides: bundled(golang(k8s.io/klog/v2)) = v2.30.0
Provides: bundled(golang(k8s.io/kube-openapi)) = 20434351676c
Provides: bundled(golang(k8s.io/kubernetes)) = v1.13.0
Provides: bundled(golang(k8s.io/utils)) = cb0fa318a74b
Provides: bundled(golang(rsc.io/binaryregexp)) = v0.2.0
Provides: bundled(golang(rsc.io/quote/v3)) = v3.1.0
Provides: bundled(golang(rsc.io/sampler)) = v1.3.0
Provides: bundled(golang(sigs.k8s.io/apiserver-network-proxy/konnectivity-client)) = v0.0.22
Provides: bundled(golang(sigs.k8s.io/structured-merge-diff/v4)) = v4.1.2
Provides: bundled(golang(sigs.k8s.io/yaml)) = v1.2.0
%description
containerd is an industry-standard container runtime with an emphasis on
simplicity, robustness and portability. It is available as a daemon for Linux
and Windows, which can manage the complete container lifecycle of its host
system: image transfer and storage, container execution and supervision,
low-level storage and network attachments, etc.
%prep
%autosetup -p1
# Used only for generation:
rm -rf cmd/protoc-gen-gogoctrd
%build
%gobuildroot
export LDFLAGS="-X %{goipath}/version.Version=%{version}"
for cmd in cmd/* ; do
%gobuild -o _bin/$(basename $cmd) %{goipath}/$cmd
done
mkdir _man
go-md2man -in docs/man/containerd-config.8.md -out _man/containerd-config.8
go-md2man -in docs/man/containerd-config.toml.5.md -out _man/containerd-config.toml.5
_bin/gen-manpages containerd.8 _man
_bin/gen-manpages ctr.8 _man
rm _bin/gen-manpages
%install
install -m 0755 -vd %{buildroot}%{_bindir}
install -m 0755 -vp _bin/* %{buildroot}%{_bindir}/
install -D -p -m 0644 _man/containerd.8 %{buildroot}%{_mandir}/man1/containerd.8
install -D -p -m 0644 _man/containerd-config.8 %{buildroot}%{_mandir}/man1/containerd-config.8
install -D -p -m 0644 _man/ctr.8 %{buildroot}%{_mandir}/man1/ctr.8
install -D -p -m 0644 _man/containerd-config.toml.5 %{buildroot}%{_mandir}/man5/containerd-config.toml.5
install -D -p -m 0644 %{S:1} %{buildroot}%{_unitdir}/containerd.service
install -D -p -m 0644 %{S:2} %{buildroot}%{_sysconfdir}/containerd/config.toml
%if %{with tests}
%check
%gochecks -d . -d mount -t snapshots
%endif
%post
%systemd_post containerd.service
%preun
%systemd_preun containerd.service
%postun
%systemd_postun_with_restart containerd.service
%files
%license LICENSE NOTICE
%doc docs ROADMAP.md SCOPE.md code-of-conduct.md BUILDING.md
%doc README.md RELEASES.md
%{_bindir}/*
%{_mandir}/man1/containerd.8*
%{_mandir}/man1/containerd-config.8*
%{_mandir}/man1/ctr.8*
%{_mandir}/man5/containerd-config.toml.5*
%{_unitdir}/containerd.service
%dir %{_sysconfdir}/containerd
%config(noreplace) %{_sysconfdir}/containerd/config.toml
%changelog
* Wed Apr 16 2025 Ayoub Nasr <ayoub.nasr@scality.com> - 1.6.38
- Latest upstream in branch 1.6.x
* Fri Oct 18 2024 Ayoub Nasr <ayoub.nasr@scality.com> - 1.6.36-1
- Latest upstream in branch 1.6.x
* Mon Sep 23 2024 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.35-2
- Drop RHEL 7 based support
* Mon Aug 12 2024 Yoan Moscatelli <yoan.moscatelli@scality.com> - 1.6.35-1
- Latest upstream in branch 1.6.x
* Mon Apr 8 2024 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.31-1
- Latest upstream
* Mon Sep 25 2023 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.24-1
- Latest upstream
* Tue Jul 18 2023 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.21-1
- Latest upstream
* Thu Mar 2 2023 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.19-1
- Latest upstream
* Tue Sep 27 2022 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.8-1
- Latest upstream
* Fri Aug 5 2022 Guillaume Demonet <guillaume.demonet@scality.com> - 1.6.4-2
- Constrain runc version to avoid issue with "exec"
* Wed May 25 2022 Guillaume Demonet <guillaume.demonet@scality.com> - 1.6.4-1
- Latest upstream
* Mon Feb 21 2022 Teddy Andrieux <teddy.andrieux@scality.com> - 1.6.0-1
- Latest upstream
* Mon Dec 20 2021 Alexandre Allard <alexandre.allard@scality.com> - 1.5.8-1
- Latest upstream
* Thu Jul 29 2021 Nicolas Trangez <nicolas.trangez@scality.com> - 1.4.8-1
- Latest upstream
* Fri Mar 19 2021 Nicolas Trangez <nicolas.trangez@scality.com> - 1.4.3-3
- Only configure 'fs.may_detach_mounts' on EL7
* Fri Mar 19 2021 Nicolas Trangez <nicolas.trangez@scality.com> - 1.4.3-2
- Configure 'fs.may_detach_mounts' sysctl to be '1'
* Tue Dec 1 2020 Nicolas Trangez <nicolas.trangez@scality.com> - 1.4.3-1
- Latest upstream
* Fri Oct 16 2020 Nicolas Trangez <nicolas.trangez@scality.com> - 1.4.1-1
- Update to 1.4.1, based on containerd-1.4.1-1.fc34
* Fri Oct 16 2020 Guillaume Demonet <guillaume.demonet@scality.com> - 1.2.14-2
- Re-enable seccomp support
* Fri Oct 16 2020 Guillaume Demonet <guillaume.demonet@scality.com> - 1.2.14-1
- Latest upstream
* Mon Apr 6 2020 Nicolas Trangez <nicolas.trangez@scality.com> - 1.2.13-2
- Enable seccomp support
* Mon Apr 6 2020 Nicolas Trangez <nicolas.trangez@scality.com> - 1.2.13-1
- Latest upstream
* Tue Feb 26 2019 Carl George <carl@george.computer> - 1.2.4-1
- Latest upstream
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Jan 03 2019 Carl George <carl@george.computer> - 1.2.1-1
- Latest upstream
- Run test suite (except on el7 or %%arm)
* Thu Oct 25 2018 Carl George <carl@george.computer> - 1.2.0-1
- Latest upstream
* Mon Aug 13 2018 Carl George <carl@george.computer> - 1.1.2-1
- Latest upstream
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Thu Apr 26 2018 Carl George <carl@george.computer> - 1.1.0-1
- Latest upstream
- Build and include man pages
* Wed Apr 04 2018 Carl George <carl@george.computer> - 1.0.3-1
- Latest upstream
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Jan 22 2018 Carl George <carl@george.computer> - 1.0.1-1
- Latest upstream
* Wed Dec 06 2017 Carl George <carl@george.computer> - 1.0.0-1
- Latest upstream
* Fri Nov 10 2017 Carl George <carl@george.computer> - 1.0.0-0.5.beta.3
- Latest upstream
* Thu Oct 19 2017 Carl George <carl@george.computer> - 1.0.0-0.4.beta.2
- Own /etc/containerd
* Thu Oct 12 2017 Carl George <carl@george.computer> - 1.0.0-0.3.beta.2
- Latest upstream
- Require runc 1.0.0 https://github.com/containerd/containerd/issues/1508#issuecomment-335566293
* Mon Oct 09 2017 Carl George <carl@george.computer> - 1.0.0-0.2.beta.1
- Add provides for vendored dependencies
- Add ctr command
* Wed Oct 04 2017 Carl George <carl@george.computer> - 1.0.0-0.1.beta.1
- Initial package