Skip to content

doc: Fixup external manual references #777

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

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkg/rpm_pfg.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -913,23 +913,23 @@ pkg_rpm = rule(

Corresponds to the "Conflicts" preamble tag.

See also: https://rpm.org/user_doc/dependencies.html
See also: https://rpm-software-management.github.io/rpm/manual/dependencies.html
""",
),
"provides": attr.string_list(
doc = """List of rpm capabilities that this package provides.

Corresponds to the "Provides" preamble tag.

See also: https://rpm.org/user_doc/dependencies.html
See also: https://rpm-software-management.github.io/rpm/manual/dependencies.html
""",
),
"requires": attr.string_list(
doc = """List of rpm capability expressions that this package requires.

Corresponds to the "Requires" preamble tag.

See also: https://rpm.org/user_doc/dependencies.html
See also: https://rpm-software-management.github.io/rpm/manual/dependencies.html
""",
),
"requires_contextual": attr.string_list_dict(
Expand Down Expand Up @@ -964,7 +964,7 @@ pkg_rpm = rule(
For capabilities that are always required by packages at runtime,
use the `requires` attribute instead.

See also: https://rpm.org/user_doc/more_dependencies.html
See also: https://rpm-software-management.github.io/rpm/manual/more_dependencies.html

NOTE: `pkg_rpm` does not check if the keys of this dictionary are
acceptable to `rpm(8)`.
Expand Down