File: expected-output.1

package info (click to toggle)
argparse-manpage 4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: python: 2,755; makefile: 47; sh: 18
file content (1009 lines) | stat: -rw-r--r-- 26,531 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
.TH COPR "1" "2023\-04\-09" "example setup\-py\-overriden" "Generated Python Manual"
.SH NAME
copr
.SH SYNOPSIS
.B copr
[-h] [--debug] [--config CONFIG] [--version] {hidden,whoami,list,mock-config,create,modify,delete,fork,build,buildpypi,buildgem,buildfedpkg,buildtito,buildmock,status,download-build,cancel,watch-build,delete-build,edit-chroot,get-chroot,add-package-tito,edit-package-tito,add-package-pypi,edit-package-pypi,add-package-mockscm,edit-package-mockscm,add-package-rubygems,edit-package-rubygems,list-packages,list-package-names,get-package,delete-package,reset-package,build-package,build-module} ...

.SH OPTIONS
.TP
\fB\-\-debug\fR
Enable debug output

.TP
\fB\-\-config\fR \fI\,CONFIG\/\fR
Path to an alternative configuration file

.TP
\fB\-\-version\fR
show program's version number and exit

.SH
ACTIONS
.TP
\fBcopr\fR \fI\,whoami\/\fR
Print username that the client authenticates with against copr\-frontend
.TP
\fBcopr\fR \fI\,list\/\fR
List all the copr of the provided 
.TP
\fBcopr\fR \fI\,mock\-config\/\fR
Get the mock profile (similar to koji mock\-config)
.TP
\fBcopr\fR \fI\,create\/\fR
Create a new copr
.TP
\fBcopr\fR \fI\,modify\/\fR
Modify existing copr
.TP
\fBcopr\fR \fI\,delete\/\fR
Deletes the entire project
.TP
\fBcopr\fR \fI\,fork\/\fR
Fork the project and builds in it
.TP
\fBcopr\fR \fI\,build\/\fR
Build packages to a specified copr
.TP
\fBcopr\fR \fI\,buildpypi\/\fR
Build PyPI package to a specified copr
.TP
\fBcopr\fR \fI\,buildgem\/\fR
Build gem from rubygems.org to a specified copr
.TP
\fBcopr\fR \fI\,buildfedpkg\/\fR
Build package from pkgs.fedoraproject.org
.TP
\fBcopr\fR \fI\,buildtito\/\fR
submit a build from Git repository via Tito to a specified copr
.TP
\fBcopr\fR \fI\,buildmock\/\fR
submit a build from SCM repository via Mock to a specified copr
.TP
\fBcopr\fR \fI\,status\/\fR
Get build status of build specified by its ID
.TP
\fBcopr\fR \fI\,download\-build\/\fR
Fetches built packages
.TP
\fBcopr\fR \fI\,cancel\/\fR
Cancel build specified by its ID
.TP
\fBcopr\fR \fI\,watch\-build\/\fR
Watch status and progress of build(s) specified by their ID
.TP
\fBcopr\fR \fI\,delete\-build\/\fR
Delete build specified by its ID
.TP
\fBcopr\fR \fI\,edit\-chroot\/\fR
Edit chroot of a project
.TP
\fBcopr\fR \fI\,get\-chroot\/\fR
Get chroot of a project
.TP
\fBcopr\fR \fI\,add\-package\-tito\/\fR
Creates a new Tito package
.TP
\fBcopr\fR \fI\,edit\-package\-tito\/\fR
Edits an existing Tito package
.TP
\fBcopr\fR \fI\,add\-package\-pypi\/\fR
Creates a new PyPI package
.TP
\fBcopr\fR \fI\,edit\-package\-pypi\/\fR
Edits an existing PyPI package
.TP
\fBcopr\fR \fI\,add\-package\-mockscm\/\fR
Creates a new Mock\-SCM package
.TP
\fBcopr\fR \fI\,edit\-package\-mockscm\/\fR
Edits an existing Mock\-SCM package
.TP
\fBcopr\fR \fI\,add\-package\-rubygems\/\fR
Creates a new RubyGems package
.TP
\fBcopr\fR \fI\,edit\-package\-rubygems\/\fR
Edits a new RubyGems package
.TP
\fBcopr\fR \fI\,list\-packages\/\fR
Returns list of packages in the given copr
.TP
\fBcopr\fR \fI\,list\-package\-names\/\fR
Returns list of package names in the given copr
.TP
\fBcopr\fR \fI\,get\-package\/\fR
Returns package of the given name in the given copr
.TP
\fBcopr\fR \fI\,delete\-package\/\fR
Deletes the specified package
.TP
\fBcopr\fR \fI\,reset\-package\/\fR
Resets (clears) default source of the specified package
.TP
\fBcopr\fR \fI\,build\-package\/\fR
Builds the package from its default source
.TP
\fBcopr\fR \fI\,build\-module\/\fR
Builds a given module in Copr

.SH COMMAND \fI\,'copr whoami'\/\fR
usage: copr whoami [\-h]

.SH COMMAND \fI\,'copr list'\/\fR
usage: copr list [\-h] [username|@groupname]

.TP
\fBusername|@groupname\fR
The username or @groupname that you would like to list the coprs of (defaults
to current user)

.SH COMMAND \fI\,'copr mock\-config'\/\fR
usage: copr mock\-config [\-h] project chroot

.TP
\fBproject\fR
Expected format is <user>/<project>, <group>/<project> (including '@') or
<project> (name of project you own).

.TP
\fBchroot\fR
chroot id, e.g. 'fedora\-rawhide\-x86_64'

.SH COMMAND \fI\,'copr create'\/\fR
usage: copr create [\-h] [\-\-chroot CHROOTS] [\-\-repo REPOS]
                   [\-\-initial\-pkgs INITIAL_PKGS] [\-\-description DESCRIPTION]
                   [\-\-instructions INSTRUCTIONS]
                   [\-\-disable_createrepo DISABLE_CREATEREPO]
                   [\-\-enable\-net {on,off}] [\-\-unlisted\-on\-hp {on,off}]
                   [\-\-persistent] [\-\-auto\-prune {on,off}]
                   name

.TP
\fBname\fR
The name of the copr to create

.SH OPTIONS \fI\,'copr create'\/\fR
.TP
\fB\-\-chroot\fR \fI\,CHROOTS\/\fR
Chroot to use for this copr

.TP
\fB\-\-repo\fR \fI\,REPOS\/\fR
Repository to add to this copr

.TP
\fB\-\-initial\-pkgs\fR \fI\,INITIAL_PKGS\/\fR
List of packages URL to build in this new copr

.TP
\fB\-\-description\fR \fI\,DESCRIPTION\/\fR
Description of the copr

.TP
\fB\-\-instructions\fR \fI\,INSTRUCTIONS\/\fR
Instructions for the copr

.TP
\fB\-\-disable_createrepo\fR \fI\,DISABLE_CREATEREPO\/\fR
Disable metadata auto generation

.TP
\fB\-\-enable\-net\fR \fI\,{on,off}\/\fR
If net should be enabled for builds in this project (default is off)

.TP
\fB\-\-unlisted\-on\-hp\fR \fI\,{on,off}\/\fR
The project will not be shown on COPR home page

.TP
\fB\-\-persistent\fR
Project and its builds will be undeletable. This option can only be specified
by a COPR admin.

.TP
\fB\-\-auto\-prune\fR \fI\,{on,off}\/\fR
If auto\-deletion of project's obsoleted builds should be enabled (default is
on). This option can only be specified by a COPR admin.

.SH COMMAND \fI\,'copr modify'\/\fR
usage: copr modify [\-h] [\-\-chroot CHROOTS] [\-\-description DESCRIPTION]
                   [\-\-instructions INSTRUCTIONS] [\-\-repo REPOS]
                   [\-\-disable_createrepo DISABLE_CREATEREPO]
                   [\-\-enable\-net {on,off}] [\-\-unlisted\-on\-hp {on,off}]
                   [\-\-auto\-prune {on,off}]
                   name

.TP
\fBname\fR
The name of the copr to modify

.SH OPTIONS \fI\,'copr modify'\/\fR
.TP
\fB\-\-chroot\fR \fI\,CHROOTS\/\fR
Chroot to use for this copr

.TP
\fB\-\-description\fR \fI\,DESCRIPTION\/\fR
Description of the copr

.TP
\fB\-\-instructions\fR \fI\,INSTRUCTIONS\/\fR
Instructions for the copr

.TP
\fB\-\-repo\fR \fI\,REPOS\/\fR
Repository to add to this copr

.TP
\fB\-\-disable_createrepo\fR \fI\,DISABLE_CREATEREPO\/\fR
Disable metadata auto generation

.TP
\fB\-\-enable\-net\fR \fI\,{on,off}\/\fR
If net should be enabled for builds in this project (default is "don't
change")

.TP
\fB\-\-unlisted\-on\-hp\fR \fI\,{on,off}\/\fR
The project will not be shown on COPR home page

.TP
\fB\-\-auto\-prune\fR \fI\,{on,off}\/\fR
If auto\-deletion of project's obsoleted builds should be enabled. This option
can only be specified by a COPR admin.

.SH COMMAND \fI\,'copr delete'\/\fR
usage: copr delete [\-h] copr

.TP
\fBcopr\fR
Name of your project to be deleted.

.SH COMMAND \fI\,'copr fork'\/\fR
usage: copr fork [\-h] [\-\-confirm] src dst

.TP
\fBsrc\fR
Which project should be forked

.TP
\fBdst\fR
Name of the new project

.SH OPTIONS \fI\,'copr fork'\/\fR
.TP
\fB\-\-confirm\fR
Confirm forking into existing project

.SH COMMAND \fI\,'copr build'\/\fR
usage: copr build [\-h] [\-\-memory MEMORY] [\-\-timeout TIMEOUT] [\-\-nowait]
                  [\-r CHROOTS] [\-\-background]
                  copr pkgs [pkgs ...]

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.TP
\fBpkgs\fR
filename of SRPM or URL of packages to build

.SH OPTIONS \fI\,'copr build'\/\fR
.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr buildpypi'\/\fR
usage: copr buildpypi [\-h] [\-\-pythonversions [VERSION ...]]
                      [\-\-packageversion PYPIVERSION] \-\-packagename PYPINAME
                      [\-\-memory MEMORY] [\-\-timeout TIMEOUT] [\-\-nowait]
                      [\-r CHROOTS] [\-\-background]
                      copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr buildpypi'\/\fR
.TP
\fB\-\-pythonversions\fR \fI\,[VERSION ...]\/\fR
For what Python versions to build (by default: 3 2)

.TP
\fB\-\-packageversion\fR \fI\,PYPIVERSION\/\fR
Version of the PyPI package to be built (by default latest)

.TP
\fB\-\-packagename\fR \fI\,PYPINAME\/\fR
Name of the PyPI package to be built, required.

.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr buildgem'\/\fR
usage: copr buildgem [\-h] [\-\-gem GEM] [\-\-memory MEMORY] [\-\-timeout TIMEOUT]
                     [\-\-nowait] [\-r CHROOTS] [\-\-background]
                     copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr buildgem'\/\fR
.TP
\fB\-\-gem\fR \fI\,GEM\/\fR
Specify gem name

.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr buildfedpkg'\/\fR
usage: copr buildfedpkg [\-h] \-\-clone\-url URL [\-\-branch BRANCH]
                        [\-\-memory MEMORY] [\-\-timeout TIMEOUT] [\-\-nowait]
                        [\-r CHROOTS] [\-\-background]
                        copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr buildfedpkg'\/\fR
.TP
\fB\-\-clone\-url\fR \fI\,URL\/\fR
Specify clone url for the distgit repository

.TP
\fB\-\-branch\fR \fI\,BRANCH\/\fR
Specify branch to be used

.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr buildtito'\/\fR
usage: copr buildtito [\-h] \-\-git\-url URL [\-\-git\-dir DIRECTORY]
                      [\-\-git\-branch BRANCH] [\-\-test {on,off}]
                      [\-\-memory MEMORY] [\-\-timeout TIMEOUT] [\-\-nowait]
                      [\-r CHROOTS] [\-\-background]
                      copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr buildtito'\/\fR
.TP
\fB\-\-git\-url\fR \fI\,URL\/\fR
URL to a project managed by Tito

.TP
\fB\-\-git\-dir\fR \fI\,DIRECTORY\/\fR
Relative path from Git root to directory containing .spec file

.TP
\fB\-\-git\-branch\fR \fI\,BRANCH\/\fR
Git branch that you want to build from

.TP
\fB\-\-test\fR \fI\,{on,off}\/\fR
Build the last commit instead of the last release tag

.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr buildmock'\/\fR
usage: copr buildmock [\-h] [\-\-scm\-type TYPE] [\-\-scm\-url URL]
                      [\-\-scm\-branch BRANCH] [\-\-spec FILE] [\-\-memory MEMORY]
                      [\-\-timeout TIMEOUT] [\-\-nowait] [\-r CHROOTS]
                      [\-\-background]
                      copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr buildmock'\/\fR
.TP
\fB\-\-scm\-type\fR \fI\,TYPE\/\fR
specify versioning tool, default is 'git'

.TP
\fB\-\-scm\-url\fR \fI\,URL\/\fR
url to a project versioned by Git or SVN, required

.TP
\fB\-\-scm\-branch\fR \fI\,BRANCH\/\fR

.TP
\fB\-\-spec\fR \fI\,FILE\/\fR
relative path from SCM root to .spec file, required

.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.SH COMMAND \fI\,'copr status'\/\fR
usage: copr status [\-h] build_id

.TP
\fBbuild_id\fR
Build ID

.SH COMMAND \fI\,'copr download\-build'\/\fR
usage: copr download\-build [\-h] [\-r CHROOTS] [\-\-dest DEST] build_id

.TP
\fBbuild_id\fR
Build ID

.SH OPTIONS \fI\,'copr download\-build'\/\fR
.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
Select chroots to fetch

.TP
\fB\-\-dest\fR \fI\,DEST\/\fR, \fB\-d\fR \fI\,DEST\/\fR
Base directory to store packages

.SH COMMAND \fI\,'copr cancel'\/\fR
usage: copr cancel [\-h] build_id

.TP
\fBbuild_id\fR
Build ID

.SH COMMAND \fI\,'copr watch\-build'\/\fR
usage: copr watch\-build [\-h] build_id [build_id ...]

.TP
\fBbuild_id\fR
Build ID

.SH COMMAND \fI\,'copr delete\-build'\/\fR
usage: copr delete\-build [\-h] build_id

.TP
\fBbuild_id\fR
Build ID

.SH COMMAND \fI\,'copr edit\-chroot'\/\fR
usage: copr edit\-chroot [\-h] [\-\-upload\-comps FILEPATH | \-\-delete\-comps]
                        [\-\-packages PACKAGES] [\-\-repos REPOS]
                        coprchroot

.TP
\fBcoprchroot\fR
Path to a project chroot as owner/project/chroot or project/chroot

.SH OPTIONS \fI\,'copr edit\-chroot'\/\fR
.TP
\fB\-\-upload\-comps\fR \fI\,FILEPATH\/\fR
filepath to the comps.xml file to be uploaded

.TP
\fB\-\-delete\-comps\fR
deletes already existing comps.xml for the chroot

.TP
\fB\-\-packages\fR \fI\,PACKAGES\/\fR
space separated string of package names to be added to buildroot

.TP
\fB\-\-repos\fR \fI\,REPOS\/\fR
space separated string of additional repo urls for chroot

.SH COMMAND \fI\,'copr get\-chroot'\/\fR
usage: copr get\-chroot [\-h] coprchroot

.TP
\fBcoprchroot\fR
Path to a project chroot as owner/project/chroot or project/chroot

.SH COMMAND \fI\,'copr add\-package\-tito'\/\fR
usage: copr add\-package\-tito [\-h] \-\-git\-url URL [\-\-git\-dir DIRECTORY]
                             [\-\-git\-branch BRANCH] [\-\-test {on,off}] \-\-name
                             PKGNAME [\-\-webhook\-rebuild {on,off}]
                             copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr add\-package\-tito'\/\fR
.TP
\fB\-\-git\-url\fR \fI\,URL\/\fR
URL to a project managed by Tito

.TP
\fB\-\-git\-dir\fR \fI\,DIRECTORY\/\fR
Relative path from Git root to directory containing .spec file

.TP
\fB\-\-git\-branch\fR \fI\,BRANCH\/\fR
Git branch that you want to build from

.TP
\fB\-\-test\fR \fI\,{on,off}\/\fR
Build the last commit instead of the last release tag

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr edit\-package\-tito'\/\fR
usage: copr edit\-package\-tito [\-h] \-\-git\-url URL [\-\-git\-dir DIRECTORY]
                              [\-\-git\-branch BRANCH] [\-\-test {on,off}] \-\-name
                              PKGNAME [\-\-webhook\-rebuild {on,off}]
                              copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr edit\-package\-tito'\/\fR
.TP
\fB\-\-git\-url\fR \fI\,URL\/\fR
URL to a project managed by Tito

.TP
\fB\-\-git\-dir\fR \fI\,DIRECTORY\/\fR
Relative path from Git root to directory containing .spec file

.TP
\fB\-\-git\-branch\fR \fI\,BRANCH\/\fR
Git branch that you want to build from

.TP
\fB\-\-test\fR \fI\,{on,off}\/\fR
Build the last commit instead of the last release tag

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr add\-package\-pypi'\/\fR
usage: copr add\-package\-pypi [\-h] [\-\-pythonversions [VERSION ...]]
                             [\-\-packageversion PYPIVERSION] \-\-packagename
                             PYPINAME \-\-name PKGNAME
                             [\-\-webhook\-rebuild {on,off}]
                             copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr add\-package\-pypi'\/\fR
.TP
\fB\-\-pythonversions\fR \fI\,[VERSION ...]\/\fR
For what Python versions to build (by default: 3 2)

.TP
\fB\-\-packageversion\fR \fI\,PYPIVERSION\/\fR
Version of the PyPI package to be built (by default latest)

.TP
\fB\-\-packagename\fR \fI\,PYPINAME\/\fR
Name of the PyPI package to be built, required.

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr edit\-package\-pypi'\/\fR
usage: copr edit\-package\-pypi [\-h] [\-\-pythonversions [VERSION ...]]
                              [\-\-packageversion PYPIVERSION] \-\-packagename
                              PYPINAME \-\-name PKGNAME
                              [\-\-webhook\-rebuild {on,off}]
                              copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr edit\-package\-pypi'\/\fR
.TP
\fB\-\-pythonversions\fR \fI\,[VERSION ...]\/\fR
For what Python versions to build (by default: 3 2)

.TP
\fB\-\-packageversion\fR \fI\,PYPIVERSION\/\fR
Version of the PyPI package to be built (by default latest)

.TP
\fB\-\-packagename\fR \fI\,PYPINAME\/\fR
Name of the PyPI package to be built, required.

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr add\-package\-mockscm'\/\fR
usage: copr add\-package\-mockscm [\-h] [\-\-scm\-type TYPE] [\-\-scm\-url URL]
                                [\-\-scm\-branch BRANCH] [\-\-spec FILE] \-\-name
                                PKGNAME [\-\-webhook\-rebuild {on,off}]
                                copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr add\-package\-mockscm'\/\fR
.TP
\fB\-\-scm\-type\fR \fI\,TYPE\/\fR
specify versioning tool, default is 'git'

.TP
\fB\-\-scm\-url\fR \fI\,URL\/\fR
url to a project versioned by Git or SVN, required

.TP
\fB\-\-scm\-branch\fR \fI\,BRANCH\/\fR

.TP
\fB\-\-spec\fR \fI\,FILE\/\fR
relative path from SCM root to .spec file, required

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr edit\-package\-mockscm'\/\fR
usage: copr edit\-package\-mockscm [\-h] [\-\-scm\-type TYPE] [\-\-scm\-url URL]
                                 [\-\-scm\-branch BRANCH] [\-\-spec FILE] \-\-name
                                 PKGNAME [\-\-webhook\-rebuild {on,off}]
                                 copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr edit\-package\-mockscm'\/\fR
.TP
\fB\-\-scm\-type\fR \fI\,TYPE\/\fR
specify versioning tool, default is 'git'

.TP
\fB\-\-scm\-url\fR \fI\,URL\/\fR
url to a project versioned by Git or SVN, required

.TP
\fB\-\-scm\-branch\fR \fI\,BRANCH\/\fR

.TP
\fB\-\-spec\fR \fI\,FILE\/\fR
relative path from SCM root to .spec file, required

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr add\-package\-rubygems'\/\fR
usage: copr add\-package\-rubygems [\-h] [\-\-gem GEM] \-\-name PKGNAME
                                 [\-\-webhook\-rebuild {on,off}]
                                 copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr add\-package\-rubygems'\/\fR
.TP
\fB\-\-gem\fR \fI\,GEM\/\fR
Specify gem name

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr edit\-package\-rubygems'\/\fR
usage: copr edit\-package\-rubygems [\-h] [\-\-gem GEM] \-\-name PKGNAME
                                  [\-\-webhook\-rebuild {on,off}]
                                  copr

.TP
\fBcopr\fR
The copr repo for the package. Can be just name of project or even in format
username/project or @groupname/project.

.SH OPTIONS \fI\,'copr edit\-package\-rubygems'\/\fR
.TP
\fB\-\-gem\fR \fI\,GEM\/\fR
Specify gem name

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of the package to be edited or created

.TP
\fB\-\-webhook\-rebuild\fR \fI\,{on,off}\/\fR
Enable auto\-rebuilding.

.SH COMMAND \fI\,'copr list\-packages'\/\fR
usage: copr list\-packages [\-h] [\-\-with\-latest\-build]
                          [\-\-with\-latest\-succeeded\-build] [\-\-with\-all\-builds]
                          copr

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH OPTIONS \fI\,'copr list\-packages'\/\fR
.TP
\fB\-\-with\-latest\-build\fR
Also display data related to the latest build for the package.

.TP
\fB\-\-with\-latest\-succeeded\-build\fR
Also display data related to the latest succeeded build for the package.

.TP
\fB\-\-with\-all\-builds\fR
Also display data related to the builds for the package.

.SH COMMAND \fI\,'copr list\-package\-names'\/\fR
usage: copr list\-package\-names [\-h] copr

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH COMMAND \fI\,'copr get\-package'\/\fR
usage: copr get\-package [\-h] \-\-name PKGNAME [\-\-with\-latest\-build]
                        [\-\-with\-latest\-succeeded\-build] [\-\-with\-all\-builds]
                        copr

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH OPTIONS \fI\,'copr get\-package'\/\fR
.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of a single package to be displayed

.TP
\fB\-\-with\-latest\-build\fR
Also display data related to the latest build for each package.

.TP
\fB\-\-with\-latest\-succeeded\-build\fR
Also display data related to the latest succeeded build for each package.

.TP
\fB\-\-with\-all\-builds\fR
Also display data related to the builds for each package.

.SH COMMAND \fI\,'copr delete\-package'\/\fR
usage: copr delete\-package [\-h] \-\-name PKGNAME copr

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH OPTIONS \fI\,'copr delete\-package'\/\fR
.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of a package to be deleted

.SH COMMAND \fI\,'copr reset\-package'\/\fR
usage: copr reset\-package [\-h] \-\-name PKGNAME copr

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH OPTIONS \fI\,'copr reset\-package'\/\fR
.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of a package to be reset

.SH COMMAND \fI\,'copr build\-package'\/\fR
usage: copr build\-package [\-h] [\-\-memory MEMORY] [\-\-timeout TIMEOUT]
                          [\-\-nowait] [\-r CHROOTS] [\-\-background] \-\-name
                          PKGNAME
                          copr

.TP
\fBcopr\fR
The copr repo to build the package in. Can be just name of project or even in
format username/project or @groupname/project.

.SH OPTIONS \fI\,'copr build\-package'\/\fR
.TP
\fB\-\-memory\fR \fI\,MEMORY\/\fR

.TP
\fB\-\-timeout\fR \fI\,TIMEOUT\/\fR

.TP
\fB\-\-nowait\fR
Don't wait for build

.TP
\fB\-r\fR \fI\,CHROOTS\/\fR, \fB\-\-chroot\fR \fI\,CHROOTS\/\fR
If you don't need this build for all the project's chroots. You can use it
several times for each chroot you need.

.TP
\fB\-\-background\fR
Mark the build as a background job. It will have lesser priority than regular
builds.

.TP
\fB\-\-name\fR \fI\,PKGNAME\/\fR
Name of a package to be built

.SH COMMAND \fI\,'copr build\-module'\/\fR
usage: copr build\-module [\-h] (\-\-url URL | \-\-yaml YAML) [copr]

.TP
\fBcopr\fR
The copr repo to list the packages of. Can be just name of project or even in
format owner/project.

.SH OPTIONS \fI\,'copr build\-module'\/\fR
.TP
\fB\-\-url\fR \fI\,URL\/\fR
SCM with modulemd file in yaml format

.TP
\fB\-\-yaml\fR \fI\,YAML\/\fR
Path to modulemd file in yaml format

.SH COMMENTS
dummy text

.SH AUTHOR
.nf
John Doe <jd@example.com>
.fi

.SH DISTRIBUTION
The latest version of example may be downloaded from
.UR http://example.com
.UE