-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document ways to declare sources and patches #3405
Open
oturpe
wants to merge
1
commit into
rpm-software-management:master
Choose a base branch
from
oturpe:source-and-patch-numbering-doc
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,17 +170,26 @@ Short (< 70 characters) summary of the package. | |
|
||
Used to declare source(s) used to build the package. All sources will | ||
will be packaged into source rpms. | ||
Arbitrary number of sources may be declared, for example: | ||
Arbitrary number of sources may be declared. A numbered source is | ||
indexed by the given integer, while an unnumbered source is indexed by | ||
the next available integer. | ||
For example, these sources: | ||
|
||
``` | ||
Source0: mysoft-1.0.tar.gz | ||
Source1: mysoft-data-1.0.zip | ||
Source: mysoft-1.0.tar.gz | ||
Source02: mysoft-data-1.0.zip | ||
Source: next.txt | ||
Source05: five.txt | ||
``` | ||
|
||
get indices 0, 2, 3, and 5. For clarity, mixing numbered and unnumbered | ||
sources in one specfile is not recommended. | ||
|
||
#### Patch | ||
|
||
Used to declare patches applied on top of sources. All patches declared | ||
will be packaged into source rpms. | ||
will be packaged into source rpms. Just like sources, patches can be | ||
numbered or unnumbered and are indexed in the same way. | ||
|
||
#### Icon | ||
|
||
|
@@ -472,6 +481,18 @@ software). | |
|
||
### Sub-sections | ||
|
||
#### `%sourcelist` | ||
|
||
List of sources, one per row. Handled like unnumbered Source tags. For | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd use "line" instead of "row" here, just to be consistent with the rest of the file. |
||
clarity, mixing Source tags and `%sourcelist` in one specfile is not | ||
recommended. | ||
|
||
#### `%patchlist` | ||
|
||
List of patches, one per row. Handled like unnumbered Patch tags. For | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||
clarity, mixing Patch tags and `%patchlist` in one specfile is not | ||
recommended. | ||
|
||
#### `%package [-n]<name>` | ||
|
||
`%package <name>` starts a preamble section for a new sub-package. | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should keep the numbered syntax as the recommended, happy-path style here, and only mention the fact that unnumbered declarations are also possible in a separate paragraph below the examples.
I also don't like mixing the numbered and unnumbered styles in the examples. It makes the syntax look more complicated than it really is.