-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildah.spec
2027 lines (1466 loc) · 77.4 KB
/
buildah.spec
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%global with_bundled 1
%if 0%{?fedora}
%global with_debug 1
%else
%global with_debug 0
%endif
%if 0%{?with_debug}
%global _find_debuginfo_dwz_opts %{nil}
%global _dwz_low_mem_die_limit 0
%else
%global debug_package %{nil}
%endif
%if ! 0%{?gobuild:1}
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v -x %{?**};
%endif
%global provider github
%global provider_tld com
%global project containers
%global repo buildah
# https://github.com/containers/buildah
%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
%global git0 https://%{import_path}
%global commit0 678da1d8e9770dce6361ac53bacea56b3383c9ff
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
%global build_info %(date +%s)
%global cni_version v0.7.0-alpha1
# Used for comparing with latest upstream tag
# to decide whether to autobuild (non-rawhide only)
%define built_tag v1.16.1
%define built_tag_strip %(b=%{built_tag}; echo ${b:1})
%define download_url https://%{import_path}/archive/%{built_tag}.tar.gz
Name: %{repo}
Version: 1.17.0
Release: 0.17.dev.git%{shortcommit0}%{?dist}
Summary: A command line tool used for creating OCI Images
License: ASL 2.0
URL: https://%{name}.io
Source: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
BuildRequires: device-mapper-devel
BuildRequires: golang
BuildRequires: git
BuildRequires: glib2-devel
BuildRequires: glibc-static
BuildRequires: go-md2man
BuildRequires: gpgme-devel
BuildRequires: libassuan-devel
BuildRequires: make
Requires: containers-common
# No ostree for centos 7
%if 0%{?fedora} || 0%{?centos} >= 8
BuildRequires: ostree-devel
%endif
# No btrfs for centos 8
%if 0%{?fedora} || 0%{?centos} <= 7
BuildRequires: btrfs-progs-devel
%endif
%if 0%{?fedora}
BuildRequires: libseccomp-static
Requires: libseccomp >= 2.4.1-0
Requires: crun >= 0.10-1
Recommends: container-selinux
Recommends: slirp4netns >= 0.3-0
Recommends: fuse-overlayfs
%else
BuildRequires: libseccomp-devel
Requires: libseccomp
Requires: container-selinux
Requires: slirp4netns >= 0.3-0
%endif
%description
The %{name} package provides a command line tool which can be used to
* create a working container from scratch
or
* create a working container from an image as a starting point
* mount/umount a working container's root file system for manipulation
* save container's root file system layer to create a new image
* delete a working container or an image
%package tests
Summary: Tests for %{name}
Requires: %{name} = %{version}-%{release}
Requires: bats
Requires: bzip2
Requires: podman
Requires: golang
Requires: jq
Requires: httpd-tools
Requires: openssl
%description tests
%{summary}
This package contains system tests for %{name}
%prep
%autosetup -Sgit -n %{name}-%{commit0}
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
sed -i '/docs install/d' Makefile
%build
mkdir _build
pushd _build
mkdir -p src/%{provider}.%{provider_tld}/%{project}
ln -s $(dirs +1 -l) src/%{import_path}
popd
mv vendor src
export GOPATH=$(pwd)/_build:$(pwd)
export BUILDTAGS='seccomp selinux'
export LDFLAGS="-X main.gitCommit=%{commit0} -X main.buildInfo=%{build_info} -X main.cniVersion=%{cni_version}"
%if 0%{?centos} >= 8
export BUILDTAGS+=' exclude_graphdriver_btrfs'
%endif
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
%gobuild -o bin/imgtype %{import_path}/tests/imgtype
GOMD2MAN=go-md2man %{__make} -C docs
%install
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
cp bin/imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
#define license tag if not already defined
%{!?_licensedir:%global license %doc}
%files
%license LICENSE
%doc README.md
%{_bindir}/%{name}
%{_mandir}/man1/%{name}*
%dir %{_datadir}/bash-completion
%dir %{_datadir}/bash-completion/completions
%{_datadir}/bash-completion/completions/%{name}
%files tests
%license LICENSE
%{_bindir}/%{name}-imgtype
%{_datadir}/%{name}/test
%changelog
* Mon Sep 21 2020 Lokesh Mandvekar <[email protected]> - 1.17.0-0.17.dev.git678da1d
- adjust centos deps
* Thu Sep 17 2020 RH Container Bot <[email protected]> - 1.17.0-0.16.dev.git678da1d
- autobuilt 678da1d
* Thu Sep 17 2020 RH Container Bot <[email protected]> - 1.17.0-0.15.dev.git58541a3
- autobuilt 58541a3
* Thu Sep 17 2020 RH Container Bot <[email protected]> - 1.17.0-0.14.dev.git17bb22f
- autobuilt 17bb22f
* Wed Sep 16 2020 RH Container Bot <[email protected]> - 1.17.0-0.13.dev.git552cbd3
- autobuilt 552cbd3
* Tue Sep 15 2020 RH Container Bot <[email protected]> - 1.17.0-0.12.dev.gitd0f43a0
- autobuilt d0f43a0
* Tue Sep 15 2020 RH Container Bot <[email protected]> - 1.17.0-0.11.dev.gitb47ffb9
- autobuilt b47ffb9
* Fri Sep 11 2020 RH Container Bot <[email protected]> - 1.17.0-0.10.dev.git1f8bf4d
- autobuilt 1f8bf4d
* Thu Sep 10 2020 RH Container Bot <[email protected]> - 1.17.0-0.9.dev.git33768fc
- autobuilt 33768fc
* Wed Sep 9 2020 RH Container Bot <[email protected]> - 1.17.0-0.8.dev.gitaa3128e
- autobuilt aa3128e
* Wed Sep 9 2020 RH Container Bot <[email protected]> - 1.17.0-0.7.dev.gitefc5ec2
- autobuilt efc5ec2
* Tue Sep 8 2020 RH Container Bot <[email protected]> - 1.17.0-0.6.dev.gitbfe6da5
- autobuilt bfe6da5
* Tue Sep 8 2020 RH Container Bot <[email protected]> - 1.17.0-0.5.dev.git2928303
- autobuilt 2928303
* Tue Sep 8 2020 RH Container Bot <[email protected]> - 1.17.0-0.4.dev.git555eb26
- autobuilt 555eb26
* Tue Sep 8 2020 RH Container Bot <[email protected]> - 1.17.0-0.3.dev.git49a5768
- autobuilt 49a5768
* Mon Sep 7 2020 RH Container Bot <[email protected]> - 1.17.0-0.2.dev.gitd83657c
- autobuilt d83657c
* Sat Sep 5 2020 RH Container Bot <[email protected]> - 1.17.0-0.1.dev.git28d7d44
- bump to 1.17.0
- autobuilt 28d7d44
* Thu Sep 3 2020 RH Container Bot <[email protected]> - 1.16.0-0.4.dev.git58e6b4f
- autobuilt 58e6b4f
* Thu Sep 03 2020 Lokesh Mandvekar <[email protected]> - 1.16.0-0.3.dev.gitfce9668
- tests package requires openssl
* Thu Sep 3 2020 RH Container Bot <[email protected]> - 1.16.0-0.2.dev.gitfce9668
- autobuilt fce9668
* Thu Sep 3 2020 RH Container Bot <[email protected]> - 1.16.0-0.1.dev.gitac0182c
- bump to 1.16.0
- autobuilt ac0182c
* Mon Jul 27 2020 Fedora Release Engineering <[email protected]> - 1.15.0-0.68.dev.git2c46b4b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Lokesh Mandvekar <[email protected]> - 1.15.0-0.67.dev.git2c46b4b
- update deps for centos
* Tue May 26 2020 RH Container Bot <[email protected]> - 1.15.0-0.66.dev.git2c46b4b
- autobuilt 2c46b4b
* Tue May 26 2020 RH Container Bot <[email protected]> - 1.15.0-0.65.dev.gitf7a3515
- autobuilt f7a3515
* Mon May 25 2020 RH Container Bot <[email protected]> - 1.15.0-0.64.dev.git0ac2a67
- autobuilt 0ac2a67
* Sun May 24 2020 RH Container Bot <[email protected]> - 1.15.0-0.63.dev.gitdbf0777
- autobuilt dbf0777
* Sat May 23 2020 RH Container Bot <[email protected]> - 1.15.0-0.62.dev.gitde0f541
- autobuilt de0f541
* Thu May 21 2020 RH Container Bot <[email protected]> - 1.15.0-0.61.dev.git75e94a2
- autobuilt 75e94a2
* Thu May 21 2020 RH Container Bot <[email protected]> - 1.15.0-0.60.dev.gitab1adf1
- autobuilt ab1adf1
* Wed May 20 2020 RH Container Bot <[email protected]> - 1.15.0-0.59.dev.git4fc49ce
- autobuilt 4fc49ce
* Mon May 18 2020 RH Container Bot <[email protected]> - 1.15.0-0.58.dev.git7957c13
- autobuilt 7957c13
* Wed May 13 2020 RH Container Bot <[email protected]> - 1.15.0-0.57.dev.git9bd70ac
- autobuilt 9bd70ac
* Tue May 12 2020 RH Container Bot <[email protected]> - 1.15.0-0.56.dev.git3184920
- autobuilt 3184920
* Mon May 11 2020 RH Container Bot <[email protected]> - 1.15.0-0.55.dev.git0f6c2a9
- autobuilt 0f6c2a9
* Mon May 11 2020 RH Container Bot <[email protected]> - 1.15.0-0.54.dev.gitf80da42
- autobuilt f80da42
* Fri May 08 2020 RH Container Bot <[email protected]> - 1.15.0-0.53.dev.git6a7ace0
- autobuilt 6a7ace0
* Tue May 05 2020 RH Container Bot <[email protected]> - 1.15.0-0.52.dev.gitb438050
- autobuilt b438050
* Mon May 04 2020 RH Container Bot <[email protected]> - 1.15.0-0.51.dev.git828035f
- autobuilt 828035f
* Mon May 04 2020 RH Container Bot <[email protected]> - 1.15.0-0.50.dev.git7610123
- autobuilt 7610123
* Mon May 04 2020 RH Container Bot <[email protected]> - 1.15.0-0.49.dev.git7b0dfb8
- autobuilt 7b0dfb8
* Fri May 01 2020 RH Container Bot <[email protected]> - 1.15.0-0.48.dev.gitf35e7d4
- autobuilt f35e7d4
* Fri May 01 2020 RH Container Bot <[email protected]> - 1.15.0-0.47.dev.git42a48f9
- autobuilt 42a48f9
* Fri May 01 2020 RH Container Bot <[email protected]> - 1.15.0-0.46.dev.git63567cb
- autobuilt 63567cb
* Fri May 01 2020 RH Container Bot <[email protected]> - 1.15.0-0.45.dev.git3af27b4
- autobuilt 3af27b4
* Tue Apr 28 2020 RH Container Bot <[email protected]> - 1.15.0-0.44.dev.git8169acd
- autobuilt 8169acd
* Tue Apr 28 2020 RH Container Bot <[email protected]> - 1.15.0-0.43.dev.gitbea8692
- autobuilt bea8692
* Fri Apr 24 2020 RH Container Bot <[email protected]> - 1.15.0-0.42.dev.git0b9a534
- autobuilt 0b9a534
* Fri Apr 24 2020 RH Container Bot <[email protected]> - 1.15.0-0.41.dev.git0d5ab1d
- autobuilt 0d5ab1d
* Thu Apr 23 2020 Lokesh Mandvekar <[email protected]> - 1.15.0-0.40.dev.gitf4970e6
- use latest commit
* Thu Apr 23 2020 RH Container Bot <[email protected]> - 1.15.0-0.39.dev.git843d15d
- autobuilt 843d15d
* Mon Apr 20 2020 RH Container Bot <[email protected]> - 1.15.0-0.38.dev.gitf4970e6
- autobuilt f4970e6
* Thu Apr 16 2020 RH Container Bot <[email protected]> - 1.15.0-0.37.dev.git81e2659
- autobuilt 81e2659
* Tue Apr 14 2020 RH Container Bot <[email protected]> - 1.15.0-0.36.dev.gitdb3ced9
- autobuilt db3ced9
* Mon Apr 13 2020 RH Container Bot <[email protected]> - 1.15.0-0.35.dev.gitc404c89
- autobuilt c404c89
* Mon Apr 13 2020 RH Container Bot <[email protected]> - 1.15.0-0.34.dev.git7a88d7e
- autobuilt 7a88d7e
* Thu Apr 09 2020 RH Container Bot <[email protected]> - 1.15.0-0.33.dev.gitf7ff4c1
- autobuilt f7ff4c1
* Thu Apr 09 2020 RH Container Bot <[email protected]> - 1.15.0-0.32.dev.gite48fa75
- autobuilt e48fa75
* Tue Apr 07 2020 RH Container Bot <[email protected]> - 1.15.0-0.31.dev.gitc554675
- autobuilt c554675
* Tue Apr 07 2020 RH Container Bot <[email protected]> - 1.15.0-0.30.dev.gitf5dbfc1
- autobuilt f5dbfc1
* Tue Apr 07 2020 RH Container Bot <[email protected]> - 1.15.0-0.29.dev.git310c02b
- autobuilt 310c02b
* Tue Apr 07 2020 RH Container Bot <[email protected]> - 1.15.0-0.28.dev.gitc3070ba
- autobuilt c3070ba
* Mon Apr 06 2020 RH Container Bot <[email protected]> - 1.15.0-0.27.dev.git20e41b7
- autobuilt 20e41b7
* Mon Apr 06 2020 RH Container Bot <[email protected]> - 1.15.0-0.26.dev.git9c031e0
- autobuilt 9c031e0
* Sat Apr 04 2020 RH Container Bot <[email protected]> - 1.15.0-0.25.dev.git31a01b4
- autobuilt 31a01b4
* Thu Apr 02 2020 RH Container Bot <[email protected]> - 1.15.0-0.24.dev.gite9a6703
- autobuilt e9a6703
* Wed Apr 01 2020 RH Container Bot <[email protected]> - 1.15.0-0.23.dev.git2fc064e
- autobuilt 2fc064e
* Tue Mar 31 2020 RH Container Bot <[email protected]> - 1.15.0-0.22.dev.git912ca5a
- autobuilt 912ca5a
* Tue Mar 31 2020 RH Container Bot <[email protected]> - 1.15.0-0.21.dev.git25c294c
- autobuilt 25c294c
* Mon Mar 30 2020 RH Container Bot <[email protected]> - 1.15.0-0.20.dev.git1db2cde
- autobuilt 1db2cde
* Sat Mar 28 2020 RH Container Bot <[email protected]> - 1.15.0-0.19.dev.git17ceb60
- autobuilt 17ceb60
* Fri Mar 27 2020 RH Container Bot <[email protected]> - 1.15.0-0.18.dev.gitc18e043
- autobuilt c18e043
* Fri Mar 27 2020 RH Container Bot <[email protected]> - 1.15.0-0.17.dev.gitd3804fa
- autobuilt d3804fa
* Thu Mar 26 2020 RH Container Bot <[email protected]> - 1.15.0-0.16.dev.git11ad04e
- autobuilt 11ad04e
* Thu Mar 26 2020 RH Container Bot <[email protected]> - 1.15.0-0.15.dev.gite48ff81
- autobuilt e48ff81
* Thu Mar 26 2020 RH Container Bot <[email protected]> - 1.15.0-0.14.dev.gite54da62
- autobuilt e54da62
* Wed Mar 25 2020 RH Container Bot <[email protected]> - 1.15.0-0.13.dev.gita5fabab
- autobuilt a5fabab
* Wed Mar 25 2020 RH Container Bot <[email protected]> - 1.15.0-0.12.dev.gitc61925b
- autobuilt c61925b
* Mon Mar 23 2020 RH Container Bot <[email protected]> - 1.15.0-0.11.dev.gitaba0d4d
- autobuilt aba0d4d
* Mon Mar 23 2020 RH Container Bot <[email protected]> - 1.15.0-0.10.dev.git3b9c6a3
- autobuilt 3b9c6a3
* Mon Mar 23 2020 RH Container Bot <[email protected]> - 1.15.0-0.9.dev.git10542ed
- autobuilt 10542ed
* Thu Mar 19 2020 RH Container Bot <[email protected]> - 1.15.0-0.8.dev.git665dc2f
- autobuilt 665dc2f
* Thu Mar 19 2020 Lokesh Mandvekar <[email protected]> - 1.15.0-0.7.dev.git843d15d
- use correct commit
* Thu Mar 19 2020 RH Container Bot <[email protected]> - 1.15.0-0.6.dev.gitf1cf92b
- autobuilt 843d15d
* Thu Mar 19 2020 RH Container Bot <[email protected]> - 1.15.0-0.5.dev.gitf1cf92b
- autobuilt a2285ed
* Wed Mar 18 2020 RH Container Bot <[email protected]> - 1.15.0-0.4.dev.gitf1cf92b
- autobuilt a2285ed
* Wed Mar 18 2020 RH Container Bot <[email protected]> - 1.15.0-0.3.dev.gitf1cf92b
- autobuilt a2285ed
* Tue Mar 17 2020 RH Container Bot <[email protected]> - 1.15.0-0.2.dev.gitf1cf92b
- autobuilt 040fb4b
* Mon Mar 16 2020 RH Container Bot <[email protected]> - 1.15.0-0.1.dev.gitf1cf92b
- bump to 1.15.0
- autobuilt d26f437
* Wed Feb 05 2020 RH Container Bot <[email protected]> - 1.14.0-0.35.dev.gitf1cf92b
- autobuilt f1cf92b
* Sat Feb 01 2020 RH Container Bot <[email protected]> - 1.14.0-0.34.dev.gitf89b081
- autobuilt f89b081
* Fri Jan 31 2020 RH Container Bot <[email protected]> - 1.14.0-0.33.dev.git3177db5
- autobuilt 3177db5
* Thu Jan 30 2020 RH Container Bot <[email protected]> - 1.14.0-0.32.dev.git4131dfa
- autobuilt 4131dfa
* Wed Jan 29 2020 RH Container Bot <[email protected]> - 1.14.0-0.31.dev.git82ff48a
- autobuilt 82ff48a
* Tue Jan 28 2020 RH Container Bot <[email protected]> - 1.14.0-0.30.dev.git0a063c4
- autobuilt 0a063c4
* Mon Jan 27 2020 RH Container Bot <[email protected]> - 1.14.0-0.29.dev.gitec4bbe6
- autobuilt ec4bbe6
* Tue Jan 21 2020 RH Container Bot <[email protected]> - 1.14.0-0.28.dev.git6e277a2
- autobuilt 6e277a2
* Tue Jan 21 2020 RH Container Bot <[email protected]> - 1.14.0-0.27.dev.git6417a9a
- autobuilt 6417a9a
* Tue Jan 21 2020 RH Container Bot <[email protected]> - 1.14.0-0.26.dev.git0c3234f
- autobuilt 0c3234f
* Sun Jan 19 2020 RH Container Bot <[email protected]> - 1.14.0-0.25.dev.git2055fe9
- autobuilt 2055fe9
* Fri Jan 17 2020 RH Container Bot <[email protected]> - 1.14.0-0.24.dev.gita925f79
- autobuilt a925f79
* Fri Jan 17 2020 RH Container Bot <[email protected]> - 1.14.0-0.23.dev.gitca0819f
- autobuilt ca0819f
* Thu Jan 16 2020 RH Container Bot <[email protected]> - 1.14.0-0.22.dev.gitc46f6e0
- autobuilt c46f6e0
* Thu Jan 16 2020 RH Container Bot <[email protected]> - 1.14.0-0.21.dev.gitb09fdc3
- autobuilt b09fdc3
* Wed Jan 15 2020 RH Container Bot <[email protected]> - 1.14.0-0.20.dev.git09d1c24
- autobuilt 09d1c24
* Tue Jan 14 2020 RH Container Bot <[email protected]> - 1.14.0-0.19.dev.gitbf14e6c
- autobuilt bf14e6c
* Mon Jan 13 2020 RH Container Bot <[email protected]> - 1.14.0-0.18.dev.git720e5d6
- autobuilt 720e5d6
* Mon Jan 13 2020 RH Container Bot <[email protected]> - 1.14.0-0.17.dev.gitb7e6731
- autobuilt b7e6731
* Mon Jan 13 2020 RH Container Bot <[email protected]> - 1.14.0-0.16.dev.gitf7731c2
- autobuilt f7731c2
* Mon Jan 13 2020 RH Container Bot <[email protected]> - 1.14.0-0.15.dev.git9def9c0
- autobuilt 9def9c0
* Mon Jan 13 2020 RH Container Bot <[email protected]> - 1.14.0-0.14.dev.git3af1491
- autobuilt 3af1491
* Thu Jan 09 2020 RH Container Bot <[email protected]> - 1.14.0-0.13.dev.git4e23b7a
- autobuilt 4e23b7a
* Thu Jan 09 2020 RH Container Bot <[email protected]> - 1.14.0-0.12.dev.git55fa8f5
- autobuilt 55fa8f5
* Wed Jan 08 2020 RH Container Bot <[email protected]> - 1.14.0-0.11.dev.git47ce18b
- autobuilt 47ce18b
* Wed Jan 08 2020 RH Container Bot <[email protected]> - 1.14.0-0.10.dev.gita3dec02
- autobuilt a3dec02
* Wed Jan 08 2020 RH Container Bot <[email protected]> - 1.14.0-0.9.dev.gitb555b7d
- autobuilt b555b7d
* Wed Jan 08 2020 RH Container Bot <[email protected]> - 1.14.0-0.8.dev.gite7be041
- autobuilt e7be041
* Tue Jan 07 2020 RH Container Bot <[email protected]> - 1.14.0-0.7.dev.gitdbec497
- autobuilt dbec497
* Tue Jan 07 2020 RH Container Bot <[email protected]> - 1.14.0-0.6.dev.git45543bf
- autobuilt 45543bf
* Mon Jan 06 2020 RH Container Bot <[email protected]> - 1.14.0-0.5.dev.gitd792c70
- autobuilt d792c70
* Mon Jan 06 2020 RH Container Bot <[email protected]> - 1.14.0-0.4.dev.git20c2a54
- autobuilt 20c2a54
* Sat Jan 04 2020 RH Container Bot <[email protected]> - 1.14.0-0.3.dev.gitc42f440
- autobuilt c42f440
* Fri Jan 03 2020 RH Container Bot <[email protected]> - 1.14.0-0.2.dev.git8d41b83
- autobuilt 8d41b83
* Tue Dec 31 2019 RH Container Bot <[email protected]> - 1.14.0-0.1.dev.git726e24d
- bump to 1.14.0
- autobuilt 726e24d
* Sun Dec 22 2019 RH Container Bot <[email protected]> - 1.13.0-0.10.dev.git6941254
- autobuilt 6941254
* Sun Dec 22 2019 RH Container Bot <[email protected]> - 1.13.0-0.9.dev.git41b7852
- autobuilt 41b7852
* Fri Dec 20 2019 RH Container Bot <[email protected]> - 1.13.0-0.8.dev.git9588a82
- autobuilt 9588a82
* Thu Dec 19 2019 RH Container Bot <[email protected]> - 1.13.0-0.7.dev.gite6815a1
- autobuilt e6815a1
* Thu Dec 19 2019 RH Container Bot <[email protected]> - 1.13.0-0.6.dev.git2959a6b
- autobuilt 2959a6b
* Wed Dec 18 2019 RH Container Bot <[email protected]> - 1.13.0-0.5.dev.git188269a
- autobuilt 188269a
* Wed Dec 18 2019 RH Container Bot <[email protected]> - 1.13.0-0.4.dev.git0662a4e
- autobuilt 0662a4e
* Tue Dec 17 2019 RH Container Bot <[email protected]> - 1.13.0-0.3.dev.gitacc7c35
- autobuilt acc7c35
* Mon Dec 16 2019 RH Container Bot <[email protected]> - 1.13.0-0.2.dev.git068b6f5
- autobuilt 068b6f5
* Fri Dec 13 2019 RH Container Bot <[email protected]> - 1.13.0-0.1.dev.gite28c43d
- bump to 1.13.0
- autobuilt e28c43d
* Fri Dec 13 2019 RH Container Bot <[email protected]> - 1.12.0-0.88.dev.gitdb59421
- autobuilt db59421
* Wed Dec 11 2019 RH Container Bot <[email protected]> - 1.12.0-0.87.dev.git70b101f
- autobuilt 70b101f
* Wed Dec 11 2019 RH Container Bot <[email protected]> - 1.12.0-0.86.dev.gitbc8feee
- autobuilt bc8feee
* Fri Dec 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.85.dev.git8d6869b
- autobuilt 8d6869b
* Fri Dec 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.84.dev.git8fc5b01
- autobuilt 8fc5b01
* Fri Dec 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.83.dev.gitc038827
- autobuilt c038827
* Fri Dec 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.82.dev.gite47145c
- autobuilt e47145c
* Thu Dec 05 2019 RH Container Bot <[email protected]> - 1.12.0-0.81.dev.git2a82d07
- autobuilt 2a82d07
* Wed Dec 04 2019 RH Container Bot <[email protected]> - 1.12.0-0.80.dev.git357d4ae
- autobuilt 357d4ae
* Wed Dec 04 2019 RH Container Bot <[email protected]> - 1.12.0-0.79.dev.gitd55a9f8
- autobuilt d55a9f8
* Tue Dec 03 2019 RH Container Bot <[email protected]> - 1.12.0-0.78.dev.gited0a329
- autobuilt ed0a329
* Mon Nov 25 2019 RH Container Bot <[email protected]> - 1.12.0-0.77.dev.git4cf37c2
- autobuilt 4cf37c2
* Sat Nov 23 2019 RH Container Bot <[email protected]> - 1.12.0-0.76.dev.git8fd3148
- autobuilt 8fd3148
* Thu Nov 21 2019 RH Container Bot <[email protected]> - 1.12.0-0.75.dev.git92ff215
- autobuilt 92ff215
* Wed Nov 20 2019 RH Container Bot <[email protected]> - 1.12.0-0.74.dev.gitcd88667
- autobuilt cd88667
* Wed Nov 20 2019 RH Container Bot <[email protected]> - 1.12.0-0.73.dev.git1e6a70c
- autobuilt 1e6a70c
* Tue Nov 19 2019 RH Container Bot <[email protected]> - 1.12.0-0.72.dev.git6a555a0
- autobuilt 6a555a0
* Sat Nov 16 2019 RH Container Bot <[email protected]> - 1.12.0-0.71.dev.git9ff68b3
- autobuilt 9ff68b3
* Wed Nov 13 2019 RH Container Bot <[email protected]> - 1.12.0-0.70.dev.gitc5244fe
- autobuilt c5244fe
* Tue Nov 12 2019 RH Container Bot <[email protected]> - 1.12.0-0.69.dev.git985e8dc
- autobuilt 985e8dc
* Tue Nov 12 2019 RH Container Bot <[email protected]> - 1.12.0-0.68.dev.git85ab067
- autobuilt 85ab067
* Tue Nov 12 2019 RH Container Bot <[email protected]> - 1.12.0-0.67.dev.git7535655
- autobuilt 7535655
* Fri Nov 08 2019 RH Container Bot <[email protected]> - 1.12.0-0.66.dev.gite3bb278
- autobuilt e3bb278
* Thu Nov 07 2019 RH Container Bot <[email protected]> - 1.12.0-0.65.dev.gita880001
- autobuilt a880001
* Thu Nov 07 2019 RH Container Bot <[email protected]> - 1.12.0-0.64.dev.gitf995696
- autobuilt f995696
* Thu Nov 07 2019 RH Container Bot <[email protected]> - 1.12.0-0.63.dev.git147d106
- autobuilt 147d106
* Wed Nov 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.62.dev.git89bc2a6
- autobuilt 89bc2a6
* Wed Nov 06 2019 RH Container Bot <[email protected]> - 1.12.0-0.61.dev.gitec970d5
- autobuilt ec970d5
* Tue Nov 05 2019 RH Container Bot <[email protected]> - 1.12.0-0.60.dev.gitfba62fd
- autobuilt fba62fd
* Fri Nov 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.59.dev.git1967973
- autobuilt 1967973
* Thu Oct 31 2019 RH Container Bot <[email protected]> - 1.12.0-0.58.dev.git20e92ff
- autobuilt 20e92ff
* Thu Oct 31 2019 RH Container Bot <[email protected]> - 1.12.0-0.57.dev.git141b5a1
- autobuilt 141b5a1
* Thu Oct 31 2019 RH Container Bot <[email protected]> - 1.12.0-0.56.dev.git332a889
- autobuilt 332a889
* Thu Oct 31 2019 RH Container Bot <[email protected]> - 1.12.0-0.55.dev.git8e26456
- autobuilt 8e26456
* Wed Oct 30 2019 RH Container Bot <[email protected]> - 1.12.0-0.54.dev.git1ff7043
- autobuilt 1ff7043
* Wed Oct 30 2019 RH Container Bot <[email protected]> - 1.12.0-0.53.dev.giteaad6b4
- autobuilt eaad6b4
* Tue Oct 29 2019 RH Container Bot <[email protected]> - 1.12.0-0.52.dev.git999fa43
- autobuilt 999fa43
* Tue Oct 29 2019 RH Container Bot <[email protected]> - 1.12.0-0.51.dev.git751f92e
- autobuilt 751f92e
* Tue Oct 29 2019 RH Container Bot <[email protected]> - 1.12.0-0.50.dev.gitb023cde
- autobuilt b023cde
* Tue Oct 29 2019 RH Container Bot <[email protected]> - 1.12.0-0.49.dev.git66701d4
- autobuilt 66701d4
* Mon Oct 28 2019 RH Container Bot <[email protected]> - 1.12.0-0.48.dev.gitc2dc46a
- autobuilt c2dc46a
* Mon Oct 28 2019 RH Container Bot <[email protected]> - 1.12.0-0.47.dev.git691c394
- autobuilt 691c394
* Fri Oct 25 2019 RH Container Bot <[email protected]> - 1.12.0-0.46.dev.gitcddb66e
- autobuilt cddb66e
* Wed Oct 23 2019 RH Container Bot <[email protected]> - 1.12.0-0.45.dev.gitfa4eec7
- autobuilt fa4eec7
* Mon Oct 21 2019 RH Container Bot <[email protected]> - 1.12.0-0.44.dev.git049fdf4
- autobuilt 049fdf4
* Mon Oct 21 2019 RH Container Bot <[email protected]> - 1.12.0-0.43.dev.git1d3db17
- autobuilt 1d3db17
* Sun Oct 20 2019 RH Container Bot <[email protected]> - 1.12.0-0.42.dev.git120c37f
- autobuilt 120c37f
* Wed Oct 16 2019 RH Container Bot <[email protected]> - 1.12.0-0.41.dev.git0f7148b
- autobuilt 0f7148b
* Wed Oct 16 2019 Lokesh Mandvekar <[email protected]> - 1.12.0-0.40.dev.git389d49b
- install imgtype binary
* Tue Oct 15 2019 RH Container Bot <[email protected]> - 1.12.0-0.39.dev.git389d49b
- autobuilt 389d49b
* Fri Oct 11 2019 RH Container Bot <[email protected]> - 1.12.0-0.38.dev.gitd6f11ba
- autobuilt d6f11ba
* Fri Oct 11 2019 RH Container Bot <[email protected]> - 1.12.0-0.37.dev.git68b2aa5
- autobuilt 68b2aa5
* Wed Oct 09 2019 RH Container Bot <[email protected]> - 1.12.0-0.36.dev.git13330a4
- autobuilt 13330a4
* Fri Oct 04 2019 RH Container Bot <[email protected]> - 1.12.0-0.35.dev.git7a7e1f0
- autobuilt 7a7e1f0
* Fri Oct 04 2019 RH Container Bot <[email protected]> - 1.12.0-0.34.dev.git797e618
- autobuilt 797e618
* Thu Oct 03 2019 RH Container Bot <[email protected]> - 1.12.0-0.33.dev.gitb298906
- autobuilt b298906
* Wed Oct 02 2019 RH Container Bot <[email protected]> - 1.12.0-0.32.dev.gitf50b55d
- autobuilt f50b55d
* Wed Oct 02 2019 RH Container Bot <[email protected]> - 1.12.0-0.31.dev.gite400691
- autobuilt e400691
* Wed Oct 02 2019 RH Container Bot <[email protected]> - 1.12.0-0.30.dev.git96f9993
- autobuilt 96f9993
* Wed Oct 02 2019 RH Container Bot <[email protected]> - 1.12.0-0.29.dev.gitc771c56
- autobuilt c771c56
* Tue Oct 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.28.dev.gite2c33f3
- autobuilt e2c33f3
* Tue Oct 01 2019 Debarshi Ray <[email protected]> - 1.12.0-0.27.dev.gitcf933c8
- Require crun >= 0.10-1
* Tue Oct 01 2019 Debarshi Ray <[email protected]> - 1.12.0-0.26.dev.gitcf933c8
- Switch to crun for Cgroups v2 support
* Tue Oct 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.25.dev.gitcf933c8
- autobuilt cf933c8
* Tue Oct 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.24.dev.gitbf04bf1
- autobuilt bf04bf1
* Tue Oct 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.23.dev.gitfc06a4d
- autobuilt fc06a4d
* Tue Oct 01 2019 RH Container Bot <[email protected]> - 1.12.0-0.22.dev.gitd3d9cec
- autobuilt d3d9cec
* Mon Sep 30 2019 RH Container Bot <[email protected]> - 1.12.0-0.21.dev.gita32fc96
- autobuilt a32fc96
* Sat Sep 28 2019 RH Container Bot <[email protected]> - 1.12.0-0.20.dev.git61e32a5
- autobuilt 61e32a5
* Sat Sep 21 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.19.dev.gitc3b1ec6
- autobuilt c3b1ec6
* Wed Sep 18 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.18.dev.git04150e0
- autobuilt 04150e0
* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.17.dev.gitd2c1fd8
- autobuilt d2c1fd8
* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.16.dev.git6abc01c
- autobuilt 6abc01c
* Mon Sep 16 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.15.dev.gite9969bc
- autobuilt e9969bc
* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.14.dev.git10b0e7a
- autobuilt 10b0e7a
* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.13.dev.git4ce6fba
- autobuilt 4ce6fba
* Thu Sep 12 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.12.dev.git9cac447
- autobuilt 9cac447
* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.11.dev.git20a33e0
- autobuilt 20a33e0
* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.10.dev.git9bf6b5e
- autobuilt 9bf6b5e
* Fri Sep 06 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.9.dev.gitf54c965
- autobuilt f54c965
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.8.dev.git3f6ad0f
- autobuilt 3f6ad0f
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.7.dev.git9f2a682
- autobuilt 9f2a682
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.6.dev.git4da1d5d
- autobuilt 4da1d5d
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.5.dev.git34f1ae6
- autobuilt 34f1ae6
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.4.dev.gitcc80ccc
- autobuilt cc80ccc
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.3.dev.gitb643073
- autobuilt b643073
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.2.dev.git15773bd
- autobuilt 15773bd
* Sat Aug 31 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.12.0-0.1.dev.git1a1a728
- bump to 1.12.0
- autobuilt 1a1a728
* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.38.dev.git57db70c
- autobuilt 57db70c
* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.37.dev.gite930951
- autobuilt e930951
* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.36.dev.gitecf5b72
- autobuilt ecf5b72
* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.35.dev.git5671417
- autobuilt 5671417
* Wed Aug 28 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.34.dev.git689f8ed
- autobuilt 689f8ed
* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.33.dev.git6b5f8ba
- autobuilt 6b5f8ba
* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.32.dev.gitff72568
- autobuilt ff72568
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.31.dev.git376e52e
- autobuilt 376e52e
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.30.dev.git5a1c733
- autobuilt 5a1c733
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.29.dev.git3ad937b
- autobuilt 3ad937b
* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.28.dev.gitfa68ed6
- autobuilt fa68ed6
* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.27.dev.gitb288b7a
- autobuilt b288b7a
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.26.dev.gitc1a2d4f
- autobuilt c1a2d4f
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.25.dev.git51415ec
- autobuilt 51415ec
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.24.dev.gitc2c52ba
- autobuilt c2c52ba
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.23.dev.gitebf6f51
- autobuilt ebf6f51
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.22.dev.git36dcedb
- autobuilt 36dcedb
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.21.dev.gitab0286f
- autobuilt ab0286f
* Thu Aug 15 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.20.dev.git1ce1130
- autobuilt 1ce1130
* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.19.dev.gitd88c26b
- autobuilt d88c26b
* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.18.dev.git5c98d3c
- autobuilt 5c98d3c
* Tue Aug 13 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.17.dev.git3f5436f
- autobuilt 3f5436f
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.16.dev.gita99139c
- autobuilt a99139c
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.15.dev.git2df08f0
- autobuilt 2df08f0
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.14.dev.git96a136e
- autobuilt 96a136e
* Sun Aug 11 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.13.dev.git7180312
- autobuilt 7180312
* Sat Aug 10 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.12.dev.git0dfb6f5
- autobuilt 0dfb6f5
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.11.dev.git60d5480
- autobuilt 60d5480
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.10.dev.git60c0088
- autobuilt 60c0088
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.9.dev.gitc953216
- autobuilt c953216
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.8.dev.gitf892eb6
- autobuilt f892eb6
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.7.dev.git95cb061
- autobuilt 95cb061
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.6.dev.gitf4cfe9c
- autobuilt f4cfe9c
* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.5.dev.git03aa807
- autobuilt 03aa807
* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.4.dev.gitbafcf88
- autobuilt bafcf88
* Tue Aug 06 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.3.dev.git232f7c6
- autobuilt 232f7c6
* Mon Aug 05 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.2.dev.git1de958d
- autobuilt 1de958d
* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.11.0-0.1.dev.gitac5031d
- bump to 1.11.0
- autobuilt ac5031d
* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.68.dev.git3117f5e
- autobuilt 3117f5e
* Thu Aug 01 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.67.dev.git4d017d6
- autobuilt 4d017d6
* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.66.dev.gitc00f548
- autobuilt c00f548
* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.65.dev.git677b771
- autobuilt 677b771
* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.64.dev.gitb7a0ed0
- autobuilt b7a0ed0
* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.63.dev.git5bab9b0
- autobuilt 5bab9b0
* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.62.dev.git4ccb343
- autobuilt 4ccb343
* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.61.dev.gita74bdd3
- autobuilt a74bdd3
* Sat Jul 27 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.60.dev.git6b214d2
- autobuilt 6b214d2
* Fri Jul 26 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.59.dev.git73401a4
- autobuilt 73401a4
* Wed Jul 24 2019 Fedora Release Engineering <[email protected]> - 1.9.3-0.58.dev.git6bd0551
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Tue Jul 23 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.57.dev.git6bd0551
- autobuilt 6bd0551
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.56.dev.git555b5a5
- autobuilt 555b5a5
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.3-0.55.dev.git2110f05
- bump to 1.9.3
- autobuilt 2110f05
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.54.dev.gitd7dec37
- autobuilt d7dec37
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.53.dev.git5da3c8c
- autobuilt 5da3c8c
* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.52.dev.git4ae0e14
- autobuilt 4ae0e14
* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.51.dev.git8da4cb4
- autobuilt 8da4cb4
* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.50.dev.gitbe51b9b
- autobuilt be51b9b
* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <[email protected]> - 1.9.2-0.49.dev.gitb33b87b
- autobuilt b33b87b