Skip to content
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

Fix --skip-unavailable documentation #1154

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion doc/commands/distro-sync.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Options
| Resolve any dependency problems by removing packages that are causing problems from the transaction.

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not possible to synchronize. All remaining packages will be synchronized.


Examples
Expand Down
2 changes: 1 addition & 1 deletion doc/commands/downgrade.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Options
| Resolve any dependency problems by removing packages that are causing problems from the transaction.

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not possible to downgrade. All remaining packages will be downgraded.


Examples
Expand Down
3 changes: 2 additions & 1 deletion doc/commands/group.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ Options
| Used with ``install`` command to resolve any dependency problems by removing packages that are causing problems from the transaction.

``--skip-unavailable``
| Used with ``install`` and ``upgrade`` to allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Used with ``install`` and ``upgrade`` to allow skipping packages that are not possible to install or upgrade.
| All remaining packages will be installed or upgraded.


Examples
Expand Down
2 changes: 1 addition & 1 deletion doc/commands/install.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Options
| Resolve any dependency problems by removing packages that are causing problems from the transaction.

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not available in repositories. All available packages will be installed.

``--advisories=ADVISORY_NAME,...``
| Consider only content contained in advisories with specified name.
Expand Down
2 changes: 1 addition & 1 deletion doc/commands/mark.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Options
=======

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not installed on the system. All remaining installed packages will be marked.


Examples
Expand Down
2 changes: 1 addition & 1 deletion doc/commands/reinstall.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Options
| Resolve any dependency problems by removing packages that are causing problems from the transaction.

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not possible to reinstall. All remaining packages will be reinstalled.


Examples
Expand Down
2 changes: 1 addition & 1 deletion doc/commands/upgrade.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Options
| Allow erasing of installed packages to resolve any potential dependency problems.

``--skip-unavailable``
| Allow skipping build dependencies not available in repositories. All available build dependencies will be installed.
| Allow skipping packages that are not possible to upgrade. All remaining packages will be upgraded.

``--advisories=ADVISORY_NAME,...``
| Consider only content contained in advisories with specified name.
Expand Down
2 changes: 0 additions & 2 deletions include/libdnf5/base/goal_elements.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ along with libdnf. If not, see <https://www.gnu.org/licenses/>.
#include "libdnf5/comps/group/package.hpp"
#include "libdnf5/conf/config_main.hpp"
#include "libdnf5/rpm/nevra.hpp"
#include "libdnf5/transaction/transaction_item_reason.hpp"

#include <cstdint>
#include <optional>


namespace libdnf5 {
Expand Down
Loading