Skip to content

Commit

Permalink
🚸 PKG-INFO required arguments to ozi-new no longer required
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 18, 2024
1 parent 7874500 commit 0a20811
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ozi/new/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,12 @@
'--name',
type=str,
help='Name (Single Use)',
required=True,
)
)
required.add_argument(
'-a',
'--author',
type=str,
help='Author (Multiple Use, Single output)',
required=True,
action='append',
default=[],
metavar='AUTHOR_NAMES',
Expand All @@ -71,7 +69,6 @@
'--author-email',
type=str,
help='Author-email (Multiple Use, Single output)',
required=True,
default=[],
metavar='AUTHOR_EMAILS',
nargs='?',
Expand All @@ -82,28 +79,24 @@
'--summary',
type=str,
help='Summary (Single Use)',
required=True,
)
required.add_argument(
'-p',
'--home-page',
type=str,
help='Home-page (Single Use)',
required=True,
)
required.add_argument(
'--license-expression',
type=str,
help='Classifier: License Expression (Single Use, SPDX Expression)',
required=True,
)
required.add_argument(
'-l',
'--license',
type=str,
help='Classifier: License (Single Use)',
action=CloseMatch,
required=True,
)
ozi_required.add_argument(
'target',
Expand Down

0 comments on commit 0a20811

Please sign in to comment.