pax_global_header00006660000000000000000000000064147640770620014527gustar00rootroot0000000000000052 comment=5ddfce55e6405f90dedcfee9d5919582cfa6fb1c dnf-plugins-core-4.10.1/000077500000000000000000000000001476407706200147665ustar00rootroot00000000000000dnf-plugins-core-4.10.1/.git-commit-template000066400000000000000000000006521476407706200206540ustar00rootroot00000000000000 # In addition to regular commit message, you can uncomment and fill in the # following to include this change in the released RPM package changelog: # = changelog = # msg: # type: # resolves: # related: # msg = message to be included in the changelog # type = one of: bugfix/enhancement/security # resolves = URLs to bugs or issues resolved by this commit # related = URLs to any related bugs or issues dnf-plugins-core-4.10.1/.github/000077500000000000000000000000001476407706200163265ustar00rootroot00000000000000dnf-plugins-core-4.10.1/.github/CODEOWNERS000066400000000000000000000001231476407706200177150ustar00rootroot00000000000000# Assign everything by default to the dnf-team * @rpm-software-management/dnf-team dnf-plugins-core-4.10.1/.github/workflows/000077500000000000000000000000001476407706200203635ustar00rootroot00000000000000dnf-plugins-core-4.10.1/.github/workflows/ci.yml000066400000000000000000000041261476407706200215040ustar00rootroot00000000000000--- name: DNF CI on: pull_request_target jobs: copr-build: name: Copr Build runs-on: ubuntu-latest container: image: ghcr.io/rpm-software-management/dnf-ci-host outputs: package-urls: ${{steps.copr-build.outputs.package-urls}} steps: - name: Check out ci-dnf-stack uses: actions/checkout@v2 with: repository: rpm-software-management/ci-dnf-stack ref: dnf-4-stack - name: Setup CI id: setup-ci uses: ./.github/actions/setup-ci with: copr-user: ${{secrets.COPR_USER}} copr-api-token: ${{secrets.COPR_API_TOKEN}} - name: Check out sources uses: actions/checkout@v2 with: path: gits/${{github.event.repository.name}} ref: ${{github.event.pull_request.head.sha}} # check out the PR HEAD fetch-depth: 0 - name: Run Copr Build id: copr-build uses: ./.github/actions/copr-build with: copr-user: ${{steps.setup-ci.outputs.copr-user}} integration-tests: name: DNF Integration Tests needs: copr-build runs-on: ubuntu-latest container: image: ghcr.io/rpm-software-management/dnf-ci-host options: --privileged steps: - name: Check out ci-dnf-stack uses: actions/checkout@v2 with: repository: rpm-software-management/ci-dnf-stack ref: dnf-4-stack - name: Run Integration Tests uses: ./.github/actions/integration-tests with: package-urls: ${{needs.copr-build.outputs.package-urls}} ansible-tests: name: Ansible Tests needs: copr-build runs-on: ubuntu-latest container: image: ghcr.io/rpm-software-management/dnf-ci-host options: --privileged steps: - name: Check out ci-dnf-stack uses: actions/checkout@v2 with: repository: rpm-software-management/ci-dnf-stack ref: dnf-4-stack - name: Run Ansible Tests uses: ./.github/actions/ansible-tests with: package-urls: ${{needs.copr-build.outputs.package-urls}} dnf-plugins-core-4.10.1/.gitignore000066400000000000000000000000751476407706200167600ustar00rootroot00000000000000*.pyc *.pyo TAGS .emacs.desktop* *~ build/ libexec/dnf-utils dnf-plugins-core-4.10.1/.tito/000077500000000000000000000000001476407706200160235ustar00rootroot00000000000000dnf-plugins-core-4.10.1/.tito/packages/000077500000000000000000000000001476407706200176015ustar00rootroot00000000000000dnf-plugins-core-4.10.1/.tito/packages/.readme000066400000000000000000000002371476407706200210410ustar00rootroot00000000000000the .tito/packages directory contains metadata files named after their packages. Each file has the latest tagged version and the project's relative directory. dnf-plugins-core-4.10.1/.tito/tito.props000066400000000000000000000002231476407706200200640ustar00rootroot00000000000000[buildconfig] builder = tito.builder.Builder tagger = tito.tagger.VersionTagger changelog_do_not_remove_cherrypick = 0 changelog_format = %s (%ae) dnf-plugins-core-4.10.1/AUTHORS000066400000000000000000000031501476407706200160350ustar00rootroot00000000000000------------------------ DNF-PLUGINS-CORE AUTHORS ------------------------ Ales Kozumplik Emil Renner Berthing Igor Gnatenko Jan Silhan Marek Blaha Michael Mraka Michal Luscon Miroslav Suchý Parag Nemade Petr Špaček Radek Holy Tim Lauridsen ----------------------------- DNF-PLUGINS-CORE CONTRIBUTORS ----------------------------- Adam Salih Alex Willmer Alexander Todorov Anders Blomdell Cameron Rodriguez Cyril Jouve David Michael François Rigault Hedayat Vatankhah Jeff Smith Lubomir Rintel Luigi Toscano Michal Domonkos Michal Novotny Neal Gompa Paul Howarth Rickard Dybeck Tarcísio Ladeia de Oliveira Tomas Babej Vladan Kudlac Wieland Hoffmann Otto Urpelainen Matija Skrgulja Xiao Liang dnf-plugins-core-4.10.1/CMakeLists.txt000066400000000000000000000031511476407706200175260ustar00rootroot00000000000000PROJECT (dnf-plugins-core NONE) CMAKE_MINIMUM_REQUIRED (VERSION 2.4) if (NOT WITHOUT_DEBUG) set (WITHOUT_DEBUG "0") endif() if (NOT WITHOUT_LOCAL) set (WITHOUT_LOCAL "0") endif() IF (NOT PYTHON_DESIRED) FIND_PACKAGE (PythonInterp REQUIRED) ELSEIF (${PYTHON_DESIRED} STREQUAL "2") FIND_PACKAGE (PythonInterp 2 EXACT REQUIRED) ELSEIF (${PYTHON_DESIRED} STREQUAL "3") FIND_PACKAGE (PythonInterp 3 EXACT REQUIRED) ELSEIF (EXISTS ${PYTHON_DESIRED}) SET (PYTHON_EXECUTABLE ${PYTHON_DESIRED}) FIND_PACKAGE (PythonInterp REQUIRED) ELSE () MESSAGE (FATAL_ERROR "Invalid PYTHON_DESIRED value: " ${PYTHON_DESIRED}) ENDIF() IF (NOT PYTHON_INSTALL_DIR) EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c "from sys import stdout; from sysconfig import get_path; stdout.write(get_path('purelib'))" OUTPUT_VARIABLE PYTHON_INSTALL_DIR) ENDIF() MESSAGE(STATUS "Python install dir is ${PYTHON_INSTALL_DIR}") SET (SYSCONFDIR /etc) find_package (PkgConfig) if (PKG_CONFIG_FOUND) pkg_search_module (SYSTEMD systemd) if (SYSTEMD_FOUND) execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=systemdsystemunitdir systemd OUTPUT_VARIABLE SYSTEMD_DIR OUTPUT_STRIP_TRAILING_WHITESPACE) endif () endif() if (NOT SYSTEMD_DIR) set (SYSTEMD_DIR /usr/lib/systemd/system) endif () ADD_SUBDIRECTORY (libexec) ADD_SUBDIRECTORY (doc) ADD_SUBDIRECTORY (etc) ADD_SUBDIRECTORY (plugins) ADD_SUBDIRECTORY (po) ENABLE_TESTING() ADD_SUBDIRECTORY (tests) CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/libexec/dnf-utils.in ${CMAKE_SOURCE_DIR}/libexec/dnf-utils-${PYTHON_VERSION_MAJOR} @ONLY) dnf-plugins-core-4.10.1/COPYING000066400000000000000000000432541476407706200160310ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. dnf-plugins-core-4.10.1/README.rst000066400000000000000000000066711476407706200164670ustar00rootroot00000000000000################## Core DNF Plugins ################## Core plugins to use with `DNF package manager `_. ============== Installation ============== RPM packages are available in official Fedora repositories:: dnf install dnf-plugins-core Nigthly builds can be installed from `copr repository `_. ====================== Building from source ====================== From the DNF git checkout directory:: mkdir build; pushd build; cmake .. && make; popd; CMake optional switches:: -DWITHOUT_LOCAL:str=1 Different string value than "0" disables installing a local plugin. -DWITHOUT_DEBUG:str=1 Different string value than "0" disables installing a debug plugin. Then to run DNF:: PYTHONPATH=`readlink -f .` bin/dnf =============== Running tests =============== From the DNF git checkout directory:: mkdir build; pushd build; cmake .. && make ARGS="-V" test; popd; ============== Contribution ============== Here's the most direct way to get your work merged into the project. 1. Fork the project #. Clone down your fork #. Implement your feature or bug fix and commit changes #. If the change fixes a bug at `Red Hat bugzilla `_, or if it is important to the end user, add the following block to the commit message:: = changelog = msg: message to be included in the changelog type: one of: bugfix/enhancement/security (this field is required when message is present) resolves: URLs to bugs or issues resolved by this commit (can be specified multiple times) related: URLs to any related bugs or issues (can be specified multiple times) * For example:: = changelog = msg: [download] Respect repo priority type: bugfix resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1800342 * For your convenience, you can also use git commit template by running the following command in the top-level directory of this project:: git config commit.template ./.git-commit-template #. In a separate commit, add your name and email under ``DNF-PLUGINS-CORE CONTRIBUTORS`` section in the `authors file `_ as a reward for your generosity #. Push the branch up to your fork #. Send a pull request for your branch Please do not create pull requests with translation (.po) file improvements. Fix the translation on `Fedora Weblate `_ instead. =============== Documentation =============== The DNF-PLUGINS-CORE package distribution contains man pages ``dnf.plugin.*(8)``. It is also possible to read the `DNF-PLUGINS-CORE documentation `_ online. ==================== Bug reporting etc. ==================== Please report discovered bugs to the `Red Hat bugzilla `_ following this `guide `_. If you planned to propose the patch in the report, consider `contribution`_ instead. Freenode's irc channel ``#yum`` is meant for discussions related to both Yum and DNF. Questions should be asked there, issues discussed. Remember: ``#yum`` is not a support channel and prior research is expected from the questioner. dnf-plugins-core-4.10.1/dnf-plugins-core.spec000066400000000000000000002315731476407706200210310ustar00rootroot00000000000000%{?!dnf_lowest_compatible: %global dnf_lowest_compatible 4.19.0} %global dnf_plugins_extra 2.0.0 %global hawkey_version 0.73.0 %global yum_utils_subpackage_name dnf-utils %if 0%{?rhel} > 7 %global yum_utils_subpackage_name yum-utils %endif %define __cmake_in_source_build 1 %bcond dnf5_obsoletes_dnf %[0%{?fedora} > 40 || 0%{?rhel} > 10] %if (0%{?fedora} && 0%{?fedora} >= 41) || (0%{?rhel} && 0%{?rhel} >= 10) %bcond_with debug_plugin %else %bcond_without debug_plugin %endif %if 0%{?rhel} && 0%{?rhel} <= 7 %bcond_with python3 %else %bcond_without python3 %endif %if 0%{?rhel} > 7 || 0%{?fedora} > 29 %bcond_with python2 %else %bcond_without python2 %endif %if 0%{?rhel} > 7 || 0%{?fedora} > 30 %bcond_without yumcompatibility %else %bcond_with yumcompatibility %endif %if 0%{?rhel} && 0%{?rhel} <= 7 %bcond_with yumutils %else %bcond_without yumutils %endif Name: dnf-plugins-core Version: 4.10.1 Release: 1%{?dist} Summary: Core Plugins for DNF License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/dnf-plugins-core Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz BuildArch: noarch BuildRequires: cmake BuildRequires: gettext # Documentation %if %{with python3} BuildRequires: %{_bindir}/sphinx-build-3 Requires: python3-%{name} = %{version}-%{release} %else BuildRequires: %{_bindir}/sphinx-build Requires: python2-%{name} = %{version}-%{release} %endif Provides: dnf-command(builddep) Provides: dnf-command(changelog) Provides: dnf-command(config-manager) Provides: dnf-command(copr) %if %{with debug_plugin} Provides: dnf-command(debug-dump) Provides: dnf-command(debug-restore) %endif Provides: dnf-command(debuginfo-install) Provides: dnf-command(download) Provides: dnf-command(groups-manager) Provides: dnf-command(repoclosure) Provides: dnf-command(repograph) Provides: dnf-command(repomanage) Provides: dnf-command(reposync) Provides: dnf-command(repodiff) Provides: dnf-command(system-upgrade) Provides: dnf-command(offline-upgrade) Provides: dnf-command(offline-distrosync) %if %{with debug_plugin} Provides: dnf-plugins-extras-debug = %{version}-%{release} %endif Provides: dnf-plugins-extras-repoclosure = %{version}-%{release} Provides: dnf-plugins-extras-repograph = %{version}-%{release} Provides: dnf-plugins-extras-repomanage = %{version}-%{release} Provides: dnf-plugin-builddep = %{version}-%{release} Provides: dnf-plugin-config-manager = %{version}-%{release} Provides: dnf-plugin-debuginfo-install = %{version}-%{release} Provides: dnf-plugin-download = %{version}-%{release} Provides: dnf-plugin-generate_completion_cache = %{version}-%{release} Provides: dnf-plugin-needs_restarting = %{version}-%{release} Provides: dnf-plugin-groups-manager = %{version}-%{release} Provides: dnf-plugin-repoclosure = %{version}-%{release} Provides: dnf-plugin-repodiff = %{version}-%{release} Provides: dnf-plugin-repograph = %{version}-%{release} Provides: dnf-plugin-repomanage = %{version}-%{release} Provides: dnf-plugin-reposync = %{version}-%{release} Provides: dnf-plugin-system-upgrade = %{version}-%{release} %if %{with yumcompatibility} Provides: yum-plugin-copr = %{version}-%{release} Provides: yum-plugin-changelog = %{version}-%{release} Provides: yum-plugin-auto-update-debug-info = %{version}-%{release} %endif Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} %description Core Plugins for DNF. This package enhances DNF with builddep, config-manager, copr, %{?with_debug_plugin:debug, }debuginfo-install, download, needs-restarting, groups-manager, repoclosure, repograph, repomanage, reposync, changelog and repodiff commands. Additionally provides generate_completion_cache passive plugin. %if %{with python2} %package -n python2-%{name} Summary: Core Plugins for DNF %{?python_provide:%python_provide python2-%{name}} BuildRequires: python2-dnf >= %{dnf_lowest_compatible} %if 0%{?rhel} && 0%{?rhel} <= 7 BuildRequires: dbus-python %else BuildRequires: python2-dbus %endif BuildRequires: python2-devel %if 0%{?fedora} Requires: python2-distro %endif Requires: python2-dnf >= %{dnf_lowest_compatible} Requires: python2-hawkey >= %{hawkey_version} %if 0%{?rhel} && 0%{?rhel} <= 7 Requires: dbus-python Requires: python-dateutil %else Requires: python2-dbus Requires: python2-dateutil %endif %if %{with debug_plugin} Provides: python2-dnf-plugins-extras-debug = %{version}-%{release} %endif Provides: python2-dnf-plugins-extras-repoclosure = %{version}-%{release} Provides: python2-dnf-plugins-extras-repograph = %{version}-%{release} Provides: python2-dnf-plugins-extras-repomanage = %{version}-%{release} %if %{with debug_plugin} Obsoletes: python2-dnf-plugins-extras-debug < %{dnf_plugins_extra} %endif Obsoletes: python2-dnf-plugins-extras-repoclosure < %{dnf_plugins_extra} Obsoletes: python2-dnf-plugins-extras-repograph < %{dnf_plugins_extra} Obsoletes: python2-dnf-plugins-extras-repomanage < %{dnf_plugins_extra} Conflicts: %{name} <= 0.1.5 # let the both python plugin versions be updated simultaneously Conflicts: python3-%{name} < %{version}-%{release} Conflicts: python-%{name} < %{version}-%{release} %description -n python2-%{name} Core Plugins for DNF, Python 2 interface. This package enhances DNF with builddep, config-manager, copr, %{?with_debug_plugin:debug, }debuginfo-install, download, needs-restarting, groups-manager, repoclosure, repograph, repomanage, reposync, changelog, repodiff, system-upgrade, offline-upgrade and offline-distrosync commands. Additionally provides generate_completion_cache passive plugin. %endif %if %{with python3} %package -n python3-%{name} Summary: Core Plugins for DNF %{?python_provide:%python_provide python3-%{name}} BuildRequires: python3-dbus BuildRequires: python3-devel BuildRequires: python3-dnf >= %{dnf_lowest_compatible} BuildRequires: python3-systemd BuildRequires: pkgconfig(systemd) BuildRequires: systemd %{?systemd_ordering} %if 0%{?fedora} Requires: python3-distro %endif Requires: python3-dbus Requires: python3-dnf >= %{dnf_lowest_compatible} Requires: python3-hawkey >= %{hawkey_version} Requires: python3-dateutil Requires: python3-systemd %if %{with debug_plugin} Provides: python3-dnf-plugins-extras-debug = %{version}-%{release} %endif Provides: python3-dnf-plugins-extras-repoclosure = %{version}-%{release} Provides: python3-dnf-plugins-extras-repograph = %{version}-%{release} Provides: python3-dnf-plugins-extras-repomanage = %{version}-%{release} Provides: python3-dnf-plugin-system-upgrade = %{version}-%{release} %if %{with debug_plugin} Obsoletes: python3-dnf-plugins-extras-debug < %{dnf_plugins_extra} %endif Obsoletes: python3-dnf-plugins-extras-repoclosure < %{dnf_plugins_extra} Obsoletes: python3-dnf-plugins-extras-repograph < %{dnf_plugins_extra} Obsoletes: python3-dnf-plugins-extras-repomanage < %{dnf_plugins_extra} Obsoletes: python3-dnf-plugin-system-upgrade < %{version}-%{release} Conflicts: %{name} <= 0.1.5 # let the both python plugin versions be updated simultaneously Conflicts: python2-%{name} < %{version}-%{release} Conflicts: python-%{name} < %{version}-%{release} %description -n python3-%{name} Core Plugins for DNF, Python 3 interface. This package enhances DNF with builddep, config-manager, copr, %{?with_debug_plugin:debug, }debuginfo-install, download, needs-restarting, groups-manager, repoclosure, repograph, repomanage, reposync, changelog, repodiff, system-upgrade, offline-upgrade and offline-distrosync commands. Additionally provides generate_completion_cache passive plugin. %endif %if %{with yumutils} %package -n %{yum_utils_subpackage_name} %if "%{yum_utils_subpackage_name}" == "dnf-utils" Conflicts: yum-utils < 1.1.31-520 %if 0%{?rhel} != 7 Provides: yum-utils = %{version}-%{release} %endif %else Provides: dnf-utils = %{version}-%{release} Obsoletes: dnf-utils < %{version}-%{release} %endif Requires: %{name} = %{version}-%{release} %if %{with python3} Requires: python3-dnf >= %{dnf_lowest_compatible} %else Requires: python2-dnf >= %{dnf_lowest_compatible} %endif Summary: Yum-utils CLI compatibility layer %description -n %{yum_utils_subpackage_name} As a Yum-utils CLI compatibility layer, supplies in CLI shims for debuginfo-install, repograph, package-cleanup, repoclosure, repomanage, repoquery, reposync, repotrack, repodiff, builddep, config-manager,%{?with_debug_plugin: debug,} download and yum-groups-manager that use new implementations using DNF. %endif %if %{with python2} %package -n python2-dnf-plugin-leaves Summary: Leaves Plugin for DNF Requires: python2-%{name} = %{version}-%{release} Provides: python2-dnf-plugins-extras-leaves = %{version}-%{release} %if !%{with python3} Provides: dnf-command(leaves) Provides: dnf-plugin-leaves = %{version}-%{release} Provides: dnf-plugins-extras-leaves = %{version}-%{release} %endif Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python3-dnf-plugin-leaves < %{version}-%{release} Obsoletes: python2-dnf-plugins-extras-leaves < %{dnf_plugins_extra} %description -n python2-dnf-plugin-leaves Leaves Plugin for DNF, Python 2 version. List all installed packages not required by any other installed package. %endif %if %{with python3} %package -n python3-dnf-plugin-leaves Summary: Leaves Plugin for DNF Requires: python3-%{name} = %{version}-%{release} Provides: python3-dnf-plugins-extras-leaves = %{version}-%{release} Provides: dnf-command(leaves) Provides: dnf-plugin-leaves = %{version}-%{release} Provides: dnf-plugins-extras-leaves = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python2-dnf-plugin-leaves < %{version}-%{release} Obsoletes: python3-dnf-plugins-extras-leaves < %{dnf_plugins_extra} %description -n python3-dnf-plugin-leaves Leaves Plugin for DNF, Python 3 version. List all installed packages not required by any other installed package. %endif %if 0%{?rhel} == 0 && %{with python2} %package -n python2-dnf-plugin-local Summary: Local Plugin for DNF Requires: %{_bindir}/createrepo_c Requires: python2-%{name} = %{version}-%{release} %if !%{with python3} Provides: dnf-plugin-local = %{version}-%{release} Provides: dnf-plugins-extras-local = %{version}-%{release} %endif Provides: python2-dnf-plugins-extras-local = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python3-dnf-plugin-local < %{version}-%{release} Obsoletes: python2-dnf-plugins-extras-local < %{dnf_plugins_extra} %description -n python2-dnf-plugin-local Local Plugin for DNF, Python 2 version. Automatically copy all downloaded packages to a repository on the local filesystem and generating repo metadata. %endif %if %{with python3} && 0%{?rhel} == 0 %package -n python3-dnf-plugin-local Summary: Local Plugin for DNF Requires: %{_bindir}/createrepo_c Requires: python3-%{name} = %{version}-%{release} Provides: dnf-plugin-local = %{version}-%{release} Provides: python3-dnf-plugins-extras-local = %{version}-%{release} Provides: dnf-plugins-extras-local = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python2-dnf-plugin-local < %{version}-%{release} Obsoletes: python3-dnf-plugins-extras-local < %{dnf_plugins_extra} %description -n python3-dnf-plugin-local Local Plugin for DNF, Python 3 version. Automatically copy all downloaded packages to a repository on the local filesystem and generating repo metadata. %endif %if %{with python2} %package -n python2-dnf-plugin-migrate Summary: Migrate Plugin for DNF Requires: python2-%{name} = %{version}-%{release} Requires: yum Provides: dnf-plugin-migrate = %{version}-%{release} Provides: python2-dnf-plugins-extras-migrate = %{version}-%{release} Provides: dnf-command(migrate) Provides: dnf-plugins-extras-migrate = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Obsoletes: python2-dnf-plugins-extras-migrate < %{dnf_plugins_extra} Obsoletes: python-dnf-plugins-extras-migrate < %{dnf_plugins_extra} %description -n python2-dnf-plugin-migrate Migrate Plugin for DNF, Python 2 version. Migrates history, group and yumdb data from yum to dnf. %endif %if %{with python2} %package -n python2-dnf-plugin-post-transaction-actions Summary: Post transaction actions Plugin for DNF Requires: python2-%{name} = %{version}-%{release} %if !%{with python3} Provides: dnf-plugin-post-transaction-actions = %{version}-%{release} %endif Conflicts: python3-dnf-plugin-post-transaction-actions < %{version}-%{release} %description -n python2-dnf-plugin-post-transaction-actions Post transaction actions Plugin for DNF, Python 2 version. Plugin runs actions (shell commands) after transaction is completed. Actions are defined in action files. %endif %if %{with python3} %package -n python3-dnf-plugin-post-transaction-actions Summary: Post transaction actions Plugin for DNF Requires: python3-%{name} = %{version}-%{release} Provides: dnf-plugin-post-transaction-actions = %{version}-%{release} Conflicts: python2-dnf-plugin-post-transaction-actions < %{version}-%{release} %description -n python3-dnf-plugin-post-transaction-actions Post transaction actions Plugin for DNF, Python 3 version. Plugin runs actions (shell commands) after transaction is completed. Actions are defined in action files. %endif %if %{with python2} %package -n python2-dnf-plugin-pre-transaction-actions Summary: Pre transaction actions Plugin for DNF Requires: python2-%{name} = %{version}-%{release} %if !%{with python3} Provides: dnf-plugin-pre-transaction-actions = %{version}-%{release} %endif Conflicts: python3-dnf-plugin-pre-transaction-actions < %{version}-%{release} %description -n python2-dnf-plugin-pre-transaction-actions Pre transaction actions Plugin for DNF, Python 2 version. Plugin runs actions (shell commands) before transaction is completed. Actions are defined in action files. %endif %if %{with python3} %package -n python3-dnf-plugin-pre-transaction-actions Summary: Pre transaction actions Plugin for DNF Requires: python3-%{name} = %{version}-%{release} Provides: dnf-plugin-pre-transaction-actions = %{version}-%{release} Conflicts: python2-dnf-plugin-pre-transaction-actions < %{version}-%{release} %description -n python3-dnf-plugin-pre-transaction-actions Pre transaction actions Plugin for DNF, Python 3 version. Plugin runs actions (shell commands) before transaction is completed. Actions are defined in action files. %endif %if %{with python2} %package -n python2-dnf-plugin-show-leaves Summary: Leaves Plugin for DNF Requires: python2-%{name} = %{version}-%{release} Requires: python2-dnf-plugin-leaves = %{version}-%{release} %if !%{with python3} Provides: dnf-plugin-show-leaves = %{version}-%{release} Provides: dnf-command(show-leaves) Provides: dnf-plugins-extras-show-leaves = %{version}-%{release} %endif Provides: python2-dnf-plugins-extras-show-leaves = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python3-dnf-plugin-show-leaves < %{version}-%{release} Obsoletes: python2-dnf-plugins-extras-show-leaves < %{dnf_plugins_extra} %description -n python2-dnf-plugin-show-leaves Show-leaves Plugin for DNF, Python 2 version. List all installed packages that are no longer required by any other installed package after a transaction. %endif %if %{with python3} %package -n python3-dnf-plugin-show-leaves Summary: Show-leaves Plugin for DNF Requires: python3-%{name} = %{version}-%{release} Requires: python3-dnf-plugin-leaves = %{version}-%{release} Provides: dnf-plugin-show-leaves = %{version}-%{release} Provides: python3-dnf-plugins-extras-show-leaves = %{version}-%{release} Provides: dnf-command(show-leaves) Provides: dnf-plugins-extras-show-leaves = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python2-dnf-plugin-show-leaves < %{version}-%{release} Obsoletes: python3-dnf-plugins-extras-show-leaves < %{dnf_plugins_extra} %description -n python3-dnf-plugin-show-leaves Show-leaves Plugin for DNF, Python 3 version. List all installed packages that are no longer required by any other installed package after a transaction. %endif %if %{with python2} %package -n python2-dnf-plugin-versionlock Summary: Version Lock Plugin for DNF Requires: python2-%{name} = %{version}-%{release} %if !%{with python3} Provides: dnf-plugin-versionlock = %{version}-%{release} Provides: dnf-command(versionlock) Provides: dnf-plugins-extras-versionlock = %{version}-%{release} %if %{with yumcompatibility} Provides: yum-plugin-versionlock = %{version}-%{release} %endif %endif Provides: python2-dnf-plugins-extras-versionlock = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python3-dnf-plugin-versionlock < %{version}-%{release} Obsoletes: python2-dnf-plugins-extras-versionlock < %{dnf_plugins_extra} %description -n python2-dnf-plugin-versionlock Version lock plugin takes a set of name/versions for packages and excludes all other versions of those packages. This allows you to e.g. protect packages from being updated by newer versions. %endif %if %{with python3} %package -n python3-dnf-plugin-versionlock Summary: Version Lock Plugin for DNF Requires: python3-%{name} = %{version}-%{release} Provides: dnf-plugin-versionlock = %{version}-%{release} Provides: python3-dnf-plugins-extras-versionlock = %{version}-%{release} Provides: dnf-command(versionlock) %if %{with yumcompatibility} Provides: yum-plugin-versionlock = %{version}-%{release} %endif Provides: dnf-plugins-extras-versionlock = %{version}-%{release} Conflicts: dnf-plugins-extras-common-data < %{dnf_plugins_extra} Conflicts: python2-dnf-plugin-versionlock < %{version}-%{release} Obsoletes: python3-dnf-plugins-extras-versionlock < %{dnf_plugins_extra} %description -n python3-dnf-plugin-versionlock Version lock plugin takes a set of name/versions for packages and excludes all other versions of those packages. This allows you to e.g. protect packages from being updated by newer versions. %endif %if %{with python3} %package -n python3-dnf-plugin-modulesync Summary: Download module metadata and packages and create repository Requires: python3-%{name} = %{version}-%{release} Requires: createrepo_c >= 0.17.4 Provides: dnf-plugin-modulesync = %{version}-%{release} Provides: dnf-command(modulesync) %description -n python3-dnf-plugin-modulesync Download module metadata from all enabled repositories, module artifacts and profiles of matching modules and create repository. %endif %prep %autosetup %if %{with python2} mkdir build-py2 %endif %if %{with python3} mkdir build-py3 %endif %build %if %{with python2} pushd build-py2 %cmake ../ -DPYTHON_DESIRED:FILEPATH=%{__python2} \ -DWITHOUT_DEBUG:str=0%{!?with_debug_plugin:1} \ -DWITHOUT_LOCAL:str=0%{?rhel} %make_build make doc-man popd %endif %if %{with python3} pushd build-py3 %cmake ../ -DPYTHON_DESIRED:FILEPATH=%{__python3} \ -DWITHOUT_DEBUG:str=0%{!?with_debug_plugin:1} \ -DWITHOUT_LOCAL:str=0%{?rhel} %make_build make doc-man popd %endif %install %if %{with python2} pushd build-py2 %make_install popd %endif %if %{with python3} pushd build-py3 %make_install popd %endif %if %{with python3} mkdir -p %{buildroot}%{_unitdir}/system-update.target.wants/ pushd %{buildroot}%{_unitdir}/system-update.target.wants/ ln -sr ../dnf-system-upgrade.service popd ln -sf dnf4-system-upgrade.8.gz %{buildroot}%{_mandir}/man8/dnf4-offline-upgrade.8.gz ln -sf dnf4-system-upgrade.8.gz %{buildroot}%{_mandir}/man8/dnf4-offline-distrosync.8.gz %endif %if %{without dnf5_obsoletes_dnf} for file in %{buildroot}%{_mandir}/man8/dnf4[-.]*; do dir=$(dirname $file) filename=$(basename $file) ln -sf $filename $dir/${filename/dnf4/dnf} done %endif %find_lang %{name} %if %{with yumutils} %if %{with python3} mv %{buildroot}%{_libexecdir}/dnf-utils-3 %{buildroot}%{_libexecdir}/dnf-utils %else mv %{buildroot}%{_libexecdir}/dnf-utils-2 %{buildroot}%{_libexecdir}/dnf-utils %endif %endif rm -vf %{buildroot}%{_libexecdir}/dnf-utils-* %if %{with yumutils} mkdir -p %{buildroot}%{_bindir} ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/debuginfo-install ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/needs-restarting ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/find-repos-of-install ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repo-graph ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/package-cleanup ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repoclosure ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repodiff ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repomanage ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repoquery ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/reposync ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/repotrack ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yum-builddep ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yum-config-manager %if %{with debug_plugin} ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yum-debug-dump ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yum-debug-restore %endif ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yum-groups-manager ln -srf %{buildroot}%{_libexecdir}/dnf-utils %{buildroot}%{_bindir}/yumdownloader # These commands don't have a dedicated man page, so let's just point them # to the utils page which contains their descriptions. ln -sf %{yum_utils_subpackage_name}.1.gz %{buildroot}%{_mandir}/man1/find-repos-of-install.1.gz ln -sf %{yum_utils_subpackage_name}.1.gz %{buildroot}%{_mandir}/man1/repoquery.1.gz ln -sf %{yum_utils_subpackage_name}.1.gz %{buildroot}%{_mandir}/man1/repotrack.1.gz %endif %check %if %{with python2} pushd build-py2 ctest -VV popd %endif %if %{with python3} pushd build-py3 ctest -VV popd %endif %files %{_mandir}/man8/dnf*-builddep.* %{_mandir}/man8/dnf*-changelog.* %{_mandir}/man8/dnf*-config-manager.* %{_mandir}/man8/dnf*-copr.* %if %{with debug_plugin} %{_mandir}/man8/dnf*-debug.* %endif %{_mandir}/man8/dnf*-debuginfo-install.* %{_mandir}/man8/dnf*-download.* %{_mandir}/man8/dnf*-expired-pgp-keys.* %{_mandir}/man8/dnf*-generate_completion_cache.* %{_mandir}/man8/dnf*-groups-manager.* %{_mandir}/man8/dnf*-needs-restarting.* %{_mandir}/man8/dnf*-repoclosure.* %{_mandir}/man8/dnf*-repodiff.* %{_mandir}/man8/dnf*-repograph.* %{_mandir}/man8/dnf*-repomanage.* %{_mandir}/man8/dnf*-reposync.* %{_mandir}/man8/dnf*-system-upgrade.* %{_mandir}/man8/dnf*-offline-upgrade.* %{_mandir}/man8/dnf*-offline-distrosync.* %if %{with yumcompatibility} %{_mandir}/man1/yum-changelog.* %{_mandir}/man8/yum-copr.* %else %exclude %{_mandir}/man1/yum-changelog.* %exclude %{_mandir}/man8/yum-copr.* %endif %if %{with python2} %files -n python2-%{name} -f %{name}.lang %license COPYING %doc AUTHORS README.rst %ghost %attr(644,-,-) %{_var}/cache/dnf/packages.db %config(noreplace) %{_sysconfdir}/dnf/plugins/copr.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/copr.d %config(noreplace) %{_sysconfdir}/dnf/plugins/debuginfo-install.conf %{python2_sitelib}/dnf-plugins/builddep.* %{python2_sitelib}/dnf-plugins/changelog.* %{python2_sitelib}/dnf-plugins/config_manager.* %{python2_sitelib}/dnf-plugins/copr.* %if %{with debug_plugin} %{python2_sitelib}/dnf-plugins/debug.* %endif %{python2_sitelib}/dnf-plugins/debuginfo-install.* %{python2_sitelib}/dnf-plugins/download.* %{python2_sitelib}/dnf-plugins/generate_completion_cache.* %{python2_sitelib}/dnf-plugins/groups_manager.* %{python2_sitelib}/dnf-plugins/needs_restarting.* %{python2_sitelib}/dnf-plugins/repoclosure.* %{python2_sitelib}/dnf-plugins/repodiff.* %{python2_sitelib}/dnf-plugins/repograph.* %{python2_sitelib}/dnf-plugins/repomanage.* %{python2_sitelib}/dnf-plugins/reposync.* %{python2_sitelib}/dnfpluginscore/ %endif %if %{with python3} %files -n python3-%{name} -f %{name}.lang %license COPYING %doc AUTHORS README.rst %ghost %attr(644,-,-) %{_var}/cache/dnf/packages.db %config(noreplace) %{_sysconfdir}/dnf/plugins/copr.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/copr.d %config(noreplace) %{_sysconfdir}/dnf/plugins/debuginfo-install.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/expired-pgp-keys.conf %{python3_sitelib}/dnf-plugins/builddep.py %{python3_sitelib}/dnf-plugins/changelog.py %{python3_sitelib}/dnf-plugins/config_manager.py %{python3_sitelib}/dnf-plugins/copr.py %if %{with debug_plugin} %{python3_sitelib}/dnf-plugins/debug.py %endif %{python3_sitelib}/dnf-plugins/debuginfo-install.py %{python3_sitelib}/dnf-plugins/download.py %{python3_sitelib}/dnf-plugins/expired-pgp-keys.py %{python3_sitelib}/dnf-plugins/generate_completion_cache.py %{python3_sitelib}/dnf-plugins/groups_manager.py %{python3_sitelib}/dnf-plugins/needs_restarting.py %{python3_sitelib}/dnf-plugins/repoclosure.py %{python3_sitelib}/dnf-plugins/repodiff.py %{python3_sitelib}/dnf-plugins/repograph.py %{python3_sitelib}/dnf-plugins/repomanage.py %{python3_sitelib}/dnf-plugins/reposync.py %{python3_sitelib}/dnf-plugins/system_upgrade.py %{python3_sitelib}/dnf-plugins/__pycache__/builddep.* %{python3_sitelib}/dnf-plugins/__pycache__/changelog.* %{python3_sitelib}/dnf-plugins/__pycache__/config_manager.* %{python3_sitelib}/dnf-plugins/__pycache__/copr.* %if %{with debug_plugin} %{python3_sitelib}/dnf-plugins/__pycache__/debug.* %endif %{python3_sitelib}/dnf-plugins/__pycache__/debuginfo-install.* %{python3_sitelib}/dnf-plugins/__pycache__/download.* %{python3_sitelib}/dnf-plugins/__pycache__/expired-pgp-keys.* %{python3_sitelib}/dnf-plugins/__pycache__/generate_completion_cache.* %{python3_sitelib}/dnf-plugins/__pycache__/groups_manager.* %{python3_sitelib}/dnf-plugins/__pycache__/needs_restarting.* %{python3_sitelib}/dnf-plugins/__pycache__/repoclosure.* %{python3_sitelib}/dnf-plugins/__pycache__/repodiff.* %{python3_sitelib}/dnf-plugins/__pycache__/repograph.* %{python3_sitelib}/dnf-plugins/__pycache__/repomanage.* %{python3_sitelib}/dnf-plugins/__pycache__/reposync.* %{python3_sitelib}/dnf-plugins/__pycache__/system_upgrade.* %{python3_sitelib}/dnfpluginscore/ %{_unitdir}/dnf-system-upgrade.service %{_unitdir}/dnf-system-upgrade-cleanup.service %{_unitdir}/system-update.target.wants/dnf-system-upgrade.service %endif %if %{with yumutils} %files -n %{yum_utils_subpackage_name} %{_libexecdir}/dnf-utils %{_bindir}/debuginfo-install %{_bindir}/needs-restarting %{_bindir}/find-repos-of-install %{_bindir}/package-cleanup %{_bindir}/repo-graph %{_bindir}/repoclosure %{_bindir}/repodiff %{_bindir}/repomanage %{_bindir}/repoquery %{_bindir}/reposync %{_bindir}/repotrack %{_bindir}/yum-builddep %{_bindir}/yum-config-manager %if %{with debug_plugin} %{_bindir}/yum-debug-dump %{_bindir}/yum-debug-restore %endif %{_bindir}/yum-groups-manager %{_bindir}/yumdownloader %{_mandir}/man1/debuginfo-install.* %{_mandir}/man1/needs-restarting.* %{_mandir}/man1/repo-graph.* %{_mandir}/man1/repoclosure.* %{_mandir}/man1/repodiff.* %{_mandir}/man1/repomanage.* %{_mandir}/man1/reposync.* %{_mandir}/man1/yum-builddep.* %{_mandir}/man1/yum-config-manager.* %if %{with debug_plugin} %{_mandir}/man1/yum-debug-dump.* %{_mandir}/man1/yum-debug-restore.* %endif %{_mandir}/man1/yum-groups-manager.* %{_mandir}/man1/yumdownloader.* %{_mandir}/man1/package-cleanup.* %{_mandir}/man1/dnf-utils.* %{_mandir}/man1/yum-utils.* # These are only built with yumutils bcond. %{_mandir}/man1/find-repos-of-install.* %{_mandir}/man1/repoquery.* %{_mandir}/man1/repotrack.* %else # These are built regardless of yumutils bcond so we need to exclude them. %exclude %{_mandir}/man1/debuginfo-install.* %exclude %{_mandir}/man1/needs-restarting.* %exclude %{_mandir}/man1/repo-graph.* %exclude %{_mandir}/man1/repoclosure.* %exclude %{_mandir}/man1/repodiff.* %exclude %{_mandir}/man1/repomanage.* %exclude %{_mandir}/man1/reposync.* %exclude %{_mandir}/man1/yum-builddep.* %exclude %{_mandir}/man1/yum-config-manager.* %if %{with debug_plugin} %exclude %{_mandir}/man1/yum-debug-dump.* %exclude %{_mandir}/man1/yum-debug-restore.* %endif %exclude %{_mandir}/man1/yum-groups-manager.* %exclude %{_mandir}/man1/yumdownloader.* %exclude %{_mandir}/man1/package-cleanup.* %exclude %{_mandir}/man1/dnf-utils.* %exclude %{_mandir}/man1/yum-utils.* %endif %if %{with python2} %files -n python2-dnf-plugin-leaves %{python2_sitelib}/dnf-plugins/leaves.* %{_mandir}/man8/dnf*-leaves.* %endif %if %{with python3} %files -n python3-dnf-plugin-leaves %{python3_sitelib}/dnf-plugins/leaves.* %{python3_sitelib}/dnf-plugins/__pycache__/leaves.* %{_mandir}/man8/dnf*-leaves.* %endif %if 0%{?rhel} == 0 && %{with python2} %files -n python2-dnf-plugin-local %config(noreplace) %{_sysconfdir}/dnf/plugins/local.conf %{python2_sitelib}/dnf-plugins/local.* %{_mandir}/man8/dnf*-local.* %endif %if %{with python3} && 0%{?rhel} == 0 %files -n python3-dnf-plugin-local %config(noreplace) %{_sysconfdir}/dnf/plugins/local.conf %{python3_sitelib}/dnf-plugins/local.* %{python3_sitelib}/dnf-plugins/__pycache__/local.* %{_mandir}/man8/dnf*-local.* %endif %if %{with python2} %files -n python2-dnf-plugin-migrate %{python2_sitelib}/dnf-plugins/migrate.* %{_mandir}/man8/dnf-migrate.* %else %exclude %{_mandir}/man8/dnf-migrate.* %endif %if %{with python2} %files -n python2-dnf-plugin-post-transaction-actions %config(noreplace) %{_sysconfdir}/dnf/plugins/post-transaction-actions.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/post-transaction-actions.d %{python2_sitelib}/dnf-plugins/post-transaction-actions.* %{_mandir}/man8/dnf*-post-transaction-actions.* %endif %if %{with python3} %files -n python3-dnf-plugin-post-transaction-actions %config(noreplace) %{_sysconfdir}/dnf/plugins/post-transaction-actions.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/post-transaction-actions.d %{python3_sitelib}/dnf-plugins/post-transaction-actions.* %{python3_sitelib}/dnf-plugins/__pycache__/post-transaction-actions.* %{_mandir}/man8/dnf*-post-transaction-actions.* %endif %if %{with python2} %files -n python2-dnf-plugin-pre-transaction-actions %config(noreplace) %{_sysconfdir}/dnf/plugins/pre-transaction-actions.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/pre-transaction-actions.d %{python2_sitelib}/dnf-plugins/pre-transaction-actions.* %{_mandir}/man8/dnf*-pre-transaction-actions.* %endif %if %{with python3} %files -n python3-dnf-plugin-pre-transaction-actions %config(noreplace) %{_sysconfdir}/dnf/plugins/pre-transaction-actions.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/pre-transaction-actions.d %{python3_sitelib}/dnf-plugins/pre-transaction-actions.* %{python3_sitelib}/dnf-plugins/__pycache__/pre-transaction-actions.* %{_mandir}/man8/dnf*-pre-transaction-actions.* %endif %if %{with python2} %files -n python2-dnf-plugin-show-leaves %{python2_sitelib}/dnf-plugins/show_leaves.* %{_mandir}/man8/dnf*-show-leaves.* %endif %if %{with python3} %files -n python3-dnf-plugin-show-leaves %{python3_sitelib}/dnf-plugins/show_leaves.* %{python3_sitelib}/dnf-plugins/__pycache__/show_leaves.* %{_mandir}/man8/dnf*-show-leaves.* %endif %if %{with python2} %files -n python2-dnf-plugin-versionlock %config(noreplace) %{_sysconfdir}/dnf/plugins/versionlock.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/versionlock.list %{python2_sitelib}/dnf-plugins/versionlock.* %{_mandir}/man8/dnf*-versionlock.* %if %{with yumcompatibility} %{_mandir}/man8/yum-versionlock.* %{_mandir}/man5/yum-versionlock.* %else %exclude %{_mandir}/man8/yum-versionlock.* %exclude %{_mandir}/man5/yum-versionlock.* %endif %endif %if %{with python3} %files -n python3-dnf-plugin-versionlock %config(noreplace) %{_sysconfdir}/dnf/plugins/versionlock.conf %config(noreplace) %{_sysconfdir}/dnf/plugins/versionlock.list %{python3_sitelib}/dnf-plugins/versionlock.* %{python3_sitelib}/dnf-plugins/__pycache__/versionlock.* %{_mandir}/man8/dnf*-versionlock.* %if %{with yumcompatibility} %{_mandir}/man8/yum-versionlock.* %{_mandir}/man5/yum-versionlock.* %else %exclude %{_mandir}/man8/yum-versionlock.* %exclude %{_mandir}/man5/yum-versionlock.* %endif %endif %if %{with python3} %files -n python3-dnf-plugin-modulesync %{python3_sitelib}/dnf-plugins/modulesync.* %{python3_sitelib}/dnf-plugins/__pycache__/modulesync.* %{_mandir}/man8/dnf*-modulesync.* %endif %changelog * Tue Mar 11 2025 Evan Goode - 4.10.1-1 - spec: toggle dnf5_obsoletes_dnf for RHEL 11 - reposync: Avoid multiple downloads of duplicate packages - doc: needs-restarting uses UnitsLoadStartTimestamp boot time - debuginfo-install: Fix missing dnf.cli import - copr Fix missing dnf.cli import - tests: Fix missing dnf.cli imports * Tue Nov 12 2024 Evan Goode - 4.10.0-1 - CMakeLists.txt: Allow overriding PYTHON_INSTALL_DIR - Add Amazon Linux to copr chroots - needs-restarting: Add --exclude-services - needs-restarting: Add --exclude-services to man page - needs-restarting: Get boot time from systemd UnitsLoadStartTimestamp - needs-restarting: "Regular files" are often on 00:xx devices - needs-restarting tests: Can't discriminate block devices any more * Thu Aug 15 2024 Evan Goode - 4.9.0-1 - Enable leaves and show-leaves plugins for RHEL - expired-pgp-keys: New plugin for detecting expired PGP keys - reposync: Respect --norepopath with --metadata-path - doc: copr plugin does not respect IP family preference - expired-pgp-keys: Fix calling the hook at resolved time * Tue Jun 18 2024 Evan Goode - 4.8.0-1 - needs-restarting: Revert using systemd start time - spec: Fix symbolic links to packaged files - needs-restarting: detect packages providing NEED_REBOOT. - build: Disable debug plugin on Fedora > 40 and RHEL > 9 - download plugin now resolves dependencies for debuginfo and debugsource packages * Wed Apr 24 2024 Jan Kolarik - 4.7.0-1 - docs: Documentation of needs-restarting boot time - man: Prepare pages for dnf5 switch - spec: Prepare for switch of dnf5 in Rawhide * Tue Mar 26 2024 Evan Goode - 4.6.0-1 - Updated AUTHORS file - needs-restarting: get systemd boot time from UnitsLoadStartTimestamp - Add new plugin pre-transaction-actions * Thu Feb 08 2024 Jan Kolarik - 4.5.0-1 - Request filelists metadata for plugins needing that * Fri Dec 08 2023 Jan Kolarik - 4.4.4-1 - needs-restarting: Add microcode_ctl to a reboot list * Fri Oct 06 2023 Jan Kolarik - 4.4.3-1 - needs-restarting: Avoid issue with garbage smaps chars (RhBug:2212953) - needs-restarting: Add kernel-core to reboot list - Update translations * Thu Jul 27 2023 Nicola Sella - 4.4.2-1 - Fixed copr.vendor.conf not loading - "dnf copr enable" on "Asahi Fedora Linux Remix" guesses epel..x86_64 - system-upgrade: change http to https in unit file - Fix systemd dependencies when using --poweroff option in system-upgrade plugin (RhBug:2211844) * Mon May 15 2023 Jan Kolarik - 4.4.1-1 - reposync: Implement --safe-write-path option (RhBug:1898089) - needs-restarting: Catch exception when no systemd unit exists for pid (RhBug:2122587) - post-transaction-actions: Fix ConfigParser.substitute call - builddep: Avoid using obsolete RPM API - yum-utils: Only depend on python3-dnf, not dnf * Wed Apr 05 2023 Jan Kolarik - 4.4.0-1 - system-upgrade: Move from extras to core (RhBug:2054235) - system-upgrade: Add support for security filters in offline-upgrade (RhBug:1939975) - needs-restarting: Fix boot time derivation for systems with no rtc (RhBug:2137935) - system-upgrade: Add --poweroff option to reboot - download: Skip downloading weak deps when install_weak_deps=False - copr: Switch to reading a copr.vendor.conf file to determine a vendor ID - config-manager: Allow to specify the "main" section - reposync: Documentation update (RhBug:2132383, 2182004) * Fri Sep 23 2022 Jaroslav Rohel - 4.3.1-1 - Update translations (fix RhBug:2127011) * Fri Sep 09 2022 Jaroslav Rohel - 4.3.0-1 - [repomanage] Modules are used only when they belong to target repo (RhBug:2072441) - copr: Guess EPEL chroots for CentOS Stream (RhBug:2058471) - builddep: Warning when using macros with source rpms (RhBug:2077820) - Update documentation for config-manager used with subscription-manager (RhBug:2075366) - Update translations * Fri May 27 2022 Jaroslav Rohel - 4.2.1-1 - Skip all non rpm tsi for transaction_action plugins (rhbug:2023652) * Wed May 04 2022 Jaroslav Rohel - 4.2.0-1 - repomanage: Add new option --oldonly (RhBug:2034736,2058676) * Tue Mar 08 2022 Pavla Kratochvilova - 4.1.0-1 - Add a new subpackage with modulesync command. The command downloads packages from modules and/or creates a repository with modular data. (RhBug:1868047) - [groups-manager] Use full NEVRA (not only name) for matching packages (RhBug:2013633) - [repoclosure] Print counts of missing dependencies - [reposync] Do not stop downloading packages on the first error (RhBug:2009894) - [versionlock] Fix: Multiple package-name-spec arguments don't lock correctly (RhBug:2001039) (RhBug:2013324) - [versionlock] Update documentation for adding specifi version (RhBug:2013332) * Thu Oct 21 2021 Pavla Kratochvilova - 4.0.24-1 - [copr] on CentOS Stream, enable centos stream chroot instead of not epel 8 (RhBug:1994154) - [copr] Avoid using deprecated function distro.linux_distribution() (RhBug:2011550) - [copr] don't traceback on empty lines in /etc/os-release * Thu Sep 16 2021 Pavla Kratochvilova - 4.0.23-1 - [leaves] Show strongly connected components - [needs-restarting] Fix wrong boot time (RhBug:1960437) - [playground] Disable playground command, since it doesn't work * Mon Jun 14 2021 Pavla Kratochvilova - 4.0.22-1 - [repomanage] Allow running only with metadata - [repomanage] Enhance documentation (RhBug:1898293) - [versionlock] Locking obsoleted package does not make the obsoleter unavailable (RhBug:1957280) - [versionlock] Work correctly with packages with minorbump part of release (RhBug:1961217) * Mon Apr 12 2021 Nicola Sella - 4.0.21-1 - Add missing command line option to documentation - doc: add packages to needs-restarting conf - Set blacklist subcommand as deprecated - Bugs fixed (RhBug:1914827,1916782) * Thu Mar 18 2021 Matthew Almond - 4.0.20-1 - Removed dependency on dnf.yum.misc.Checksum class (RhBug:1935465) * Thu Jan 28 2021 Nicola Sella - 4.0.19-1 - copr: allow only 2 arguments with copr enable command - [needs-restarting] fix -r in nspawn containers (RhBug:1913962,1914251) - Add --gpgcheck option to reposync (RhBug:1856818) (RhBug:1856818) - Re-introduce yum-groups-manager functionality (RhBug:1826016) - [repomanage] Don't use cached metadata (RhBug:1899852) - [needs-restarting] add -s to list services (RhBug:1772939) (RhBug:1772939) * Tue Oct 06 2020 Nicola Sella - 4.0.18-1 - [needs-restarting] Fix plugin fail if needs-restarting.d does not exist - [needs-restarting] add kernel-rt to reboot list - Fix debug-restore command - [config-manager] enable/disable comma separated pkgs (RhBug:1830530) - [debug] Use standard demands.resolving for transaction handling - [debug] Do not remove install-only packages (RhBug:1844533) - return error when dnf download failed - README: Reference Fedora Weblate instead of Zanata - [reposync] Add latest NEVRAs per stream to download (RhBug: 1833074) - copr: don't try to list runtime dependencies * Wed Jun 10 2020 Nicola Sella - 4.0.17-1 - [repomanage] Add modular support (RhBug:1804720) - [needs-restarting] add options using .conf file (RhBug:1810123) * Tue Jun 02 2020 Nicola Sella - 4.0.16-1 - [versionlock] Take obsoletes into account (RhBug:1627124) - Move args "--set-enabled", "--set-disabled" from DNF (RhBug:1727882) - Add missing arguments --set-enabled/--set-diabled into error message - Warn when --enablerepo/--disablerepo args were passed (RhBug:1727882) - [copr] add support for enabling/disabling runtime dependencies - [copr] no-liability text to be always printed * Tue Mar 31 2020 Aleš Matěj - 4.0.15-1 - Support remote files in dnf builddep - [download] Respect repo priority (RhBug:1800342) * Mon Feb 24 2020 Aleš Matěj - 4.0.14-1 - Fix conflict for dnf download --resolve (RhBug:1787908) - config-manager calls parser error when without options (RhBug:1782822) - Update reposync.py with --norepopath option - Fix: don't open stdin if versionlock is missing (RhBug:1785563) * Wed Jan 15 2020 Aleš Matěj - 4.0.13-1 - Fix: config_manager respect config file location during save - Redesign reposync --latest for modular system (RhBug:1775434) - [reposync] Fix --delete with multiple repos (RhBug:1774103) - [doc] Skip creating and installing migrate documentation for Python 3+ - [config-manager] Allow use of --set-enabled without arguments (RhBug:1679213) - [versionlock] Prevent conflicting/duplicate entries (RhBug:1782052) * Mon Nov 25 2019 Aleš Matěj - 4.0.12-1 - [reposync] Add --urls option (RhBug:1686602) - [versionlock] Add --raw option (RhBug:1645564) - [doc] move manpages for plugins to "dnf-PLUGIN" (RhBug:1706386) - Add new plugin post-transaction-actions (RhBug:967264) - [builddep] Add --skip-unavailable switch (RhBug:1628634) - [versionlock] Don't apply excludes on @System (RhBug:1726712) - [reposync] Ignore only modular excludes (RhBug:1750273) * Tue Nov 05 2019 Pavla Kratochvilova - 4.0.11-1 - [spec] Specify attributes for ghost file (RhBug: 1754463) - download: add the --debugsource option (RhBug:1637008) - Fix incorrect handling richdeps in buildep (RhBug:1756902) * Thu Sep 19 2019 Pavla Kratochvilova - 4.0.10-1 - debuginfo-install: Update both debuginfo and debugsource for updated package (RhBug:1586084) - copr: Support multilib repofiles (RhBug:1393664) - copr: Fix disable if copr instance has non-default port - copr: Fix repoid when using subdirectories in copr project * Tue Aug 06 2019 Pavla Kratochvilova - 4.0.9-1 - [spec] Rename dnf-utils to yum-utils - [builddep] Report all rpm errors (RhBug:1663619,1658292,1724668) - [config-manager] --setopt: Fix crash with "--save --dump" - [config-manager] --setopt: Add globs support to repoid - [config-manager] --setopt=key=value is applied only to the main config - [config-manager] --setopt and empty list of repositories (RhBug:1702678) - [config-manager] --setopt: Add check for existence of input repositories * Tue Jun 11 2019 Pavla Kratochvilova - 4.0.8-1 - [reposync] Enable timestamp preserving for downloaded data (RhBug:1688537) - [reposync] Download packages from all streams (RhBug:1714788) - Make yum-copr manpage available (RhBug:1673902) - [needs-restarting] Add --reboothint option (RhBug:1192946) (RhBug:1639468) - Set the cost of ``_dnf_local`` repo to 500, to make it preferred to normal repos * Tue May 07 2019 Pavla Kratochvilova - 4.0.7-1 - Fix: copr disable command traceback (RhBug:1693551) - [doc] state repoid as repo identifier of config-manager (RhBug:1686779) - Fix download of src when not the latest requested (RhBug:1649627) * Mon Mar 11 2019 Pavla Kratochvilova - 4.0.6-1 - Use improved config parser that preserves order of data - [leaves] Show multiply satisfied dependencies as leaves - [download] Fix downloading an rpm from a URL (RhBug:1678582) - [download] Fix problem with downloading src pkgs (RhBug:1649627) * Tue Feb 12 2019 Pavla Kratochvilova - 4.0.4-1 - [download] Do not download src without ``--source`` (RhBug:1666648) * Wed Dec 12 2018 Jaroslav Mracek - 4.0.3-1 - Add ``changelog`` plugin that is used for viewing package changelogs - New option ``--metadata-path`` option for reposync plugin * Thu Nov 22 2018 Jaroslav Mracek - 4.0.2-1 - Added repodif command - copr: fix enabling Rawhide repository - Add needs-restarting CLI shim - [reposync] Fix traceback with --quiet option - [versionlock] Accept more pkgspec forms * Mon Oct 15 2018 Jaroslav Mracek - 4.0.0-1 - Update to 4.0.0 - Enhance documentation - [repoclosure] check every --pkg attribute separately - [repoclosure] Now accepts nevra as a argument of --pkg option - [reposync] enhancements (RhBug:1550063,1582152,1550064,1405789,1598068) - package-cleanup: remove --oldkernels - Download only packages with unique NEVRAs (RhBug:1612874) * Tue Sep 25 2018 Jaroslav Mracek - 3.0.4-1 - [copr] Huge upgrade of copr plugin - [spec] Disable building python2 modules on Fedora 30+ - Add characters into repo URL sanitization (RhBug:1615416) - copr: add support for multiple copr instances (RhBug:1478208) - Redirect repo progress to std error (RhBug:1626011) * Fri Sep 07 2018 Jaroslav Mracek - 3.0.3-1 - Resolves: rhbz#1582152 - Resolves: rhbz#1581117 - Resolves: rhbz#1579737 * Mon Jul 23 2018 Marek Blaha 3.0.2-1 - Resolves: rhbz#1603805 - Resolves: rhbz#1571251 * Tue Jun 26 2018 Jaroslav Mracek 3.0.1-1 - Enhanced documentation - Resolves: rhbz#1576594 - Resolves: rhbz#1530081 - Resolves: rhbz#1547897 - Resolves: rhbz#1550006 - Resolves: rhbz#1431491 - Resolves: rhbz#1516857 - Resolves: rhbz#1499623 - Resolves: rhbz#1489724 * Fri Oct 06 2017 Igor Gnatenko - 2.1.5-1 - Fix download command (RHBZ #1498426) * Mon Oct 02 2017 Jaroslav Mracek 2.1.4-1 - Added four new options for ``list`` subcommand of ``copr`` plugin - Resolves: rhbz#1476834 - [abrt] dnf: arch(): config.py:908:arch:TypeError: unhashable type: 'list' * Mon Jul 24 2017 Jaroslav Mracek 2.1.3-1 - Solve conflict with migrate plugin (RhBug:1470843) (Jaroslav Mracek) - Move copying to dnf (RhBug:1279001) (Ondřej Sojka) - Return 1 if dnf config-manager --add-repo fails (RhBug:1439514) (Jaroslav Mracek) - bump minimal dnf version to 2.6.0 (Igor Gnatenko) - trivial: remove whitespace at end of line (Igor Gnatenko) * Sat Jul 01 2017 Igor Gnatenko - 2.1.2-1 - debuginfo-install: install only requested packages - Unify user confirmation in copr with dnf itself * Mon Jun 12 2017 Jaroslav Mracek 2.1.1-1 - bump version to 2.1.1 + update release notes (Jaroslav Mracek) - Enhance versionlock documentation (Jaroslav Mracek) - Fix typos in args.ingex to args.index (RhBug:1458446) (Jaroslav Mracek) - dont run versionlock on non-transactional operations (Jan Silhan) * Mon May 22 2017 Jaroslav Mracek 2.1.0-1 - bump version to 2.1.0 + update release notes (Jaroslav Mracek) - Adjust the dnf-utils subpackage to be more accurate (Neal Gompa) - Add new sub-package dnf-utils (RhBug:1381917) (Jaroslav Mracek) - Fix two renamed functions by dnf privatization (Jaroslav Mracek) * Tue May 02 2017 Jaroslav Mracek 2.0.0-1 - update release notes (Jaroslav Mracek) - po: Update translations (Igor Gnatenko) - Fix incorrect exclude of locked version in versionlock (Jaroslav Mracek) - po: Update translations (Igor Gnatenko) - Setup selectively provides for python2 packages (Jaroslav Mracek) - Build python3 packages only if with_python3 (Jaroslav Mracek) - Search only according nevra in versionlock (Jaroslav Mracek) - Solve a problem in performance of versionlock (RhBug:1431493) (Jaroslav Mracek) - Repoclosure exit with 1 if unsatisfied dependencies (RhBug:1416782) (Jaroslav Rohel) - Not raise an Error if strict=False and --url for download command (Jaroslav Mracek) - Check argument if it is a file ending with .rpm (RhBug:1436570) (Jaroslav Mracek) - update link to "What I can build in Copr? documentation page (clime) - po: Update translations (Igor Gnatenko) - Create dir for local plugin if path not exist (Jaroslav Mracek) - Correct some PEP8 violations after plugin import (Jaroslav Mracek) - Add debug into dnf-plugins-core (Jaroslav Mracek) - Added latest doc changes from plugins-extras upstream (Jaroslav Mracek) - bump version to 2.0.0 (Jaroslav Mracek) - Add migrate plugin into dnf-plugins-core (Jaroslav Mracek) - Add man pages for transfered plugins (Jaroslav Mracek) - Add provide dnf-plugin-* for each plugin (Jaroslav Mracek) - Correct some PEP8 violations (Jaroslav Mracek) - Add local into dnf-plugins-core (Jaroslav Mracek) - Add leaves and show-leaves into dnf-plugins-core (Jaroslav Mracek) - Add versionlock into dnf-plugins-core (Jaroslav Mracek) - Add repograph into dnf-plugins-core (Jaroslav Mracek) - Add repoclosure into dnf-plugins-core (Jaroslav Mracek) - Add repomanage into dnf-plugins-core (Jaroslav Mracek) - Add --archlist option for dnf download command (Jaroslav Mracek) - Change code that provides package location for download command (Jaroslav Mracek) - po: update translations (Igor Gnatenko) - po: add sv translations (Igor Gnatenko) * Tue Mar 21 2017 Igor Gnatenko 1.1.0-1 - dnf dowload --resolve should download everytime requested packages (RhBug:1276611) (stepasm) - builddep: install requirements by provides (RhBug:1332830) (Igor Gnatenko) - builddep: do not check GPG key of SRPM (RhBug:1431486) (Igor Gnatenko) - builddep: properly check for nosrc.rpm (Igor Gnatenko) - po: Update translations (RhBug:1429087) (Igor Gnatenko) - Remove noroot plugin that was move into dnf itself (Jaroslav Mracek) * Mon Feb 20 2017 Jaroslav Mracek 1.0.2-1 - bump version to 1.0.2 + update release notes (Jaroslav Mracek) - download: add --urlprotocols option (Dusty Mabe) - download: add --url cli option (RhBug:1250115) (Dusty Mabe) - download: refactor download code (Dusty Mabe) - copr: Tweak wording to be more generic (Neal Gompa) - Automatic commit of package [dnf-plugins-core] release [1.0.1-1]. (Jaroslav Mracek) - bump version to 1.0.1 + update release notes (Jaroslav Mracek) * Thu Feb 09 2017 Jaroslav Mracek 1.0.1-1 - bump version to 1.0.1 + update release notes (Jaroslav Mracek) - setup SideCI to ignore some PEP8 violations (Jaroslav Mracek) - spec: define all configs as (noreplace) (Igor Gnatenko) - spec: include __pycache__ files (Igor Gnatenko) - builddep: print errors from RPM SPEC parser (Petr Spacek) * Thu Sep 29 2016 Michal Luscon 1.0.0-0.rc1.1 - doc: open rpmspec in utf-8 mode (Igor Gnatenko) - cls.chroot_config inside _guess_chroot returns None (RhBug: 1361003) (Michael Goodwin) - builddep: adjust to new config (dnf-2.0) (Michal Luscon) - Change minimal required version (Jaroslav Mracek) - introduced config-manager --dump-variables (RhBug:1360752) (Michael Mraka) - Fix string puzzle in translatable message (Luigi Toscano) - Added alias to 'builddep'->'build-dep' (RhBug:1350604) (stepasm) - reposync should keep packages (RhBug:1325350) (Michael Mraka) - Change usage of add_remote_rpm according to new API (Jaroslav Mracek) - Remove lib.py from plugins-core (Jaroslav Mracek) - Delete repoquery from dnf-plugins-core (Jaroslav Mracek) - removed protected_packages plugin (Jan Silhan) - repoquery: add --requires-pre switch (RhBug:1303117) (Michal Luscon) - spec: bump version to 1.0.0 (Igor Gnatenko) - Automatic commit of package [dnf-plugins-core] release [0.1.21-2]. (Igor Gnatenko) - Automatic commit of package [dnf-plugins-core] release [0.1.21-1]. (Igor Gnatenko) - spec: explicitly conflict with python-%%{name} with different version (Igor Gnatenko) - updated plugin to read_config() change (RhBug:1193823) (Michael Mraka) - repoquery: sourcerpm does not contain epoch (RhBug:1335959) (Michael Mraka) - enforce-api: use api method transaction (Michal Luscon) - enforce-api: apply changes from Base class (Michal Luscon) - copr: Read the %%distro_arch macro to determine Mageia chroot arch (Neal Gompa (ニール・ゴンパ)) - copr: Remove unnecessary function calls/options and simplify conditional (Neal Gompa (ニール・ゴンパ)) - copr: Add Mageia chroot selection support (Neal Gompa (ニール・ゴンパ)) - copr: Simplify and fix up reading copr chroot config override (Neal Gompa (ニール・ゴンパ)) - autoglob feature has been moved to filter() (RhBug:1279538) (Michael Mraka) * Fri May 27 2016 Igor Gnatenko 0.1.21-2 - spec: explicitly conflict with python-%%{name} with different version (Igor Gnatenko) * Thu May 19 2016 Igor Gnatenko 0.1.21-1 - doc: release notes 0.1.21 (Igor Gnatenko) - spec: correctly set up requirements for python subpkg (Igor Gnatenko) - spec: improve python packaging according to new guidelines & compat with EL7 (Igor Gnatenko) - tests/support: set priority and cost in RepoStub (Igor Gnatenko) - repoquery: sourcerpm does not contain epoch (RhBug:1335959) (Michael Mraka) - enforce-api: use api method transaction (Michal Luscon) - enforce-api: apply changes from Base class (Michal Luscon) - copr: Read the %%distro_arch macro to determine Mageia chroot arch (Neal Gompa (ニール・ゴンパ)) - copr: Remove unnecessary function calls/options and simplify conditional (Neal Gompa (ニール・ゴンパ)) - copr: Add Mageia chroot selection support (Neal Gompa (ニール・ゴンパ)) - copr: Simplify and fix up reading copr chroot config override (Neal Gompa (ニール・ゴンパ)) - zanata update (Jan Silhan) - Add link for other project documentation pages (Jaroslav Mracek) - autoglob feature has been moved to filter() (RhBug:1279538) (Michael Mraka) - support globs in --what (RhBug:1303311) (Michael Mraka) - repoquery: fix typo (there -> that, and plural form) (Luigi Toscano) - copr: fix string - singular is required (Luigi Toscano) - doc: release notes updated to vallid plugins version (Jan Šilhan) * Tue Apr 05 2016 Michal Luscon 0.1.20-1 - doc: release notes 0.1.20 (Igor Gnatenko) - copr: Properly detect reposdir and add chroot override capability (Neal Gompa (ニール・ゴンパ)) - config_manager: Use new API in dnfpluginscore.lib for determining reposdir (Neal Gompa (ニール・ゴンパ)) - dnfpluginscore.lib: Add get_reposdir() API function (Neal Gompa (ニール・ゴンパ)) - Fix typo (Eduardo Mayorga Téllez) * Tue Mar 22 2016 Miroslav Suchý 0.1.19-1 - spec: correct requires on F22 + EPEL (Miroslav Suchý) * Tue Mar 22 2016 Miroslav Suchý 0.1.18-1 - Add myself as contributor in AUTHORS (Neal Gompa (ニール・ゴンパ)) - copr: copr.fedoraproject.org -> copr.fedorainfracloud.org (Neal Gompa (ニール・ゴンパ)) - copr: fix traceback when trying to enable non-existing project (RhBug: 1304615) (Jakub Kadlčík) - README: mention translation fixes should be made on Zanata (Jan Šilhan) * Thu Feb 25 2016 Michal Luscon 0.1.17-1 - enable debuginfo repos if autoupdate is on (RhBug:1024701) (Michael Mraka) - fixed string suffix removal (Michael Mraka) - install latest debuginfo by default (Michael Mraka) - Enable strings for translation (RhBug:1302214) (Parag Nemade) * Mon Jan 25 2016 Jan Silhan 0.1.16-1 - zanata update (Jan Silhan) - AUTHORS: updated (Jan Silhan) - run noroot in non cli mode (RhBug:1297511) (Jan Silhan) - Sanitize repos containing a tilde in the URL (François RIGAULT) - contributor added (clime) - latest-limit option moved to base set of options making it compatible with --queryformat and other output formatters (RhBug: 1292475) (clime) - builddep: do not download source package (Jeff Smith) - repoquery: keep --autoremove as secret option (Jan Silhan) - cosmetic: repoquery: remove unused imports (Jan Silhan) - doc: repoquery: --recent (Jan Silhan) - doc: renamed autoremove to unneeded and extended docs (Jan Silhan) * Fri Dec 18 2015 Michal Luscon 0.1.15-1 - Make it possible to specify the source package name as parameter in stub constructor. (Alexander Todorov) - Add --debuginfo to download (Alexander Todorov) - resolve local RPMs when downloading. useful with --source (Alexander Todorov) - spec: ensure python*-dnf-plugins-core versions are the same (RhBug:1283448) (Jan Silhan) - reimplemented config file writing (RhBug:1253237) (Michael Mraka) * Mon Nov 16 2015 Michal Luscon 0.1.14-1 - zanata update (Jan Silhan) - repoquery: do not require loading metadata when we want to query system only (Jan Silhan) - repoquery: fix unicode tracebacks (Michal Luscon) - repoquery: use new methods recent, extras, unneeded (Michal Luscon) - repoquery: use new api methods duplicated and latest (RhBug:1231572) (Michal Luscon) - Exit with non-zero status if strict and package not found (alde) - Fix cmdline conversion to unicode (RhBug:1265210) (Michal Domonkos) - Remove extra 'l' in test class name (Alexander Todorov) - copr: PEP formating (Miroslav Suchý) - copr: allow to use staging instance of Copr for testing (Miroslav Suchý) - do not use @ in repoid (RhBug:1280416) (Miroslav Suchý) - reverts unintentional releaser from e035152 (Jan Silhan) - don't look for builddeps on source packages (RhBug:1272936) (Michael Mraka) - Fix hawkey version constraint (Neal Gompa (ニール・ゴンパ)) * Wed Oct 14 2015 Jan Silhan 0.1.13-1 - updated: release notes for 0.1.13 (Jan Silhan) - Remove kickstart plugin from core plugins (Neal Gompa (ニール・ゴンパ)) - read file as utf-8 in Py3 (RhBug:1267808) (Miroslav Suchý) - playground: check if repo actually exists for our version of OS (Miroslav Suchý) - add Catalan (Robert Antoni Buj Gelonch) - repoquery: Fix UnicodeEncodeError with --info (RhBug:1264125) (Jaroslav Mracek) - lookup builddeps in source package for given package name (RhBug:1265622) (Michael Mraka) - functions moved to library (Michael Mraka) - functions to return name of source and debuginfo package (Michael Mraka) - try -debuginfo first then -debuginfo (RhBug:1159614) (Michael Mraka) - Automatic commit of package [dnf-plugins-core] release [0.1.12-2]. (Michal Luscon) - doc: release notes 0.1.12 (Michal Luscon) * Tue Sep 22 2015 Michal Luscon 0.1.12-2 - add python2-dnf requirements * Tue Sep 22 2015 Michal Luscon 0.1.12-1 - repoquery: add globbing support to whatrequires/whatprovides. (RhBug:1249073) (Valentina Mukhamedzhanova) - needs_restarting: Rewrite a warning message (Wieland Hoffmann) - Remove extra quotation mark in comment (Alexander Todorov) * Tue Sep 01 2015 Michal Luscon 0.1.11-1 - dnf donwload checks for duplicate packages (rhBug:1250114) (Adam Salih) - Extend repoquery --arch option. You can now pass multiple archs separated by commas (RhBug:1186381) (Adam Salih) - download plugin now prints not valid packages (RhBug:1225784) (Adam Salih) - correct typo (Adam Salih) - dnf now accepts more than one key (RhBug:1233728) (Adam Salih) - description should be print unwrapped (Adam Salih) - alternative to pkgnarrow (RhBug:1199601) (Adam Salih) - sort output alphabetically, tree accepts switches --enhances --suggests --provides --suplements --recommends (RhBug:1156778) (Adam Salih) * Mon Aug 10 2015 Jan Silhan 0.1.10-1 - generate_completion_cache: use list for each insert (fixes regression introduced in e020c96) (Igor Gnatenko) - generate_completion_cache: store NEVRA insted of NA (RhBug:1226663) (Igor Gnatenko) - repoquery: weak deps queries (RhBug:1184930) (Michal Luscon) - builddep requires an argument (Michael Mraka) - disable c++ checks in rpmbuild (Michael Mraka) - path may contain unicode (RhBug:1234099) (Michael Mraka) - fail if no package match (RhBug:1241126) (Michael Mraka) - make --spec and --srpm mutually exclusive (Michael Mraka) - handle error message in python3 (RhBug:1218299) (Michael Mraka) - options to recognize spec/srpm files (RhBug:1241135) (Michael Mraka) - copr: set chmod to rw-r--r-- on repo files (Miroslav Suchý) - [copr] refactor duplicated lines (Jakub Kadlčík) - [copr] allow utf-8 user input (RhBug:1244125) (Jakub Kadlčík) - [copr] fix regression with handling `search` and `list` subcommands (Valentin Gologuzov) - [copr] terminate execution when failed to parse project name (Valentin Gologuzov) - [copr] unused import (Valentin Gologuzov) - [copr] subcommand `disable` now only set `enabled=0`, repo file could be deleted by new subcommand `remove` (Valentin Gologuzov) * Wed Jun 24 2015 Michal Luscon 0.1.9-1 - repoquery: add srpm option (RhBug:1186382) (Vladan Kudlac) - create repo files readable by users (RhBug:1228693) (Michael Mraka) - copr: use librepo instead of python-request (Miroslav Suchý) - --tree now works with --conflicts --obsoletes --requires and --whatrequires (RhBug:1128424) (RhBug:1186689) (Adam Salih) - url for copr repos changed (RhBug:1227190) (Miroslav Suchý) - repoquery: fixed conflicts package format (Adam Salih) - document that globs can be used in dnf config-manager (Michael Mraka) * Wed Jun 17 2015 Fedora Release Engineering - 0.1.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Wed May 06 2015 Michal Luscon 0.1.8-1 - spec: fix an upgrade path from dnf-plugins-core <= 0.1.5 (Radek Holy) * Thu Apr 30 2015 Michal Luscon 0.1.7-1 - doc: release notes dnf-plugins-core-0.1.7 (Michal Luscon) - spec: fix Conflicts of the new plugins (Radek Holy) - spec: allow DNF 1.x.x (Radek Holy) - AUTHORS: filled in missing email address (Jan Silhan) - download: enabling source repos when desired only (Jan Silhan) - download: using enable_source_repos from lib (Jan Silhan) - lib: inform user when enabling disabled repo (Jan Silhan) - AUTHORS: made 2 categories (Jan Silhan) - fixed typos and missing demand (Michael Mraka) - changed warning paragraph (Michael Mraka) - AUTHORS: updated (Jan Silhan) - debuginfo-install: don't consider src packages as candidates for installation (RhBug:1215154) (Lubomir Rintel) - documentation warning about build deps in srpm (Michael Mraka) - fixed builddep tests (Michael Mraka) - builddep: enable source repos only when needed (Michael Mraka) - fixed builldep documentation (Michael Mraka) - mark appropriate dnfpluginscore.lib as API (Michael Mraka) - fixed builddep configure test (Michael Mraka) - moved enable_{source|debug}_repos() to dnfpluginscore.lib (Michael Mraka) - builddep: add feature to get builddeps from remote packages (RhBug:1074585) (Igor Gnatenko) - doc: repoquery: doesn't print 'No match for argument:...' garbage (Jan Silhan) - updated repoquery documentation (Michael Mraka) - implemented repoquery --latest-limit (Michael Mraka) - implemented repoquery --unsatisfied (Michael Mraka) - builddep: Support defining macros for parsing spec files (David Michael) - removed redundant argument (Michael Mraka) - doc: update repoquery docs with --resolve (Tim Lauridsen) - repoquery: add --resolve option (RhBug:1156487) (Tim Lauridsen) - spec: dnf version upper boundaries (Jan Silhan) - spec: added plugin command provides (Related:RhBug:1208773) (Jan Silhan) - make --repo cumulative (Michael Mraka) - rename --repoid to --repo (Michael Mraka) - don't delete local repo packages after download (RhBug:1186948) (Michael Mraka) - doc: replaced last references pointing to akozumpl (Jan Silhan) * Wed Apr 08 2015 Michal Luscon 0.1.6-3 - doc: release notes 0.1.6 (Michal Luscon) - initialize to use tito (Michal Luscon) - prepare repo for tito build system (Michal Luscon) - migrate raw_input() to Python3 (RhBug:1208399) (Miroslav Suchý) - require dnf 0.6.5+ which contains duplicated/installonly queries (Michael Mraka) - implemented --duplicated and --installonly (Michael Mraka) - create --destdir if not exist (Michael Mraka) - repoquery: Added -s/--source switch, test case and documentation for querying source rpm name (Parag Nemade) - repoquery: Added documentation and test case for file switch (Parag Nemade) - spec: ship man pages in dnf-plugins-core metapackage (Jan Silhan) - debuginfo-install: support cases where src.rpm name != binary package name (Petr Spacek) - spec: added empty %files directive to generate rpm (Jan Silhan) - spec: adapt to pykickstart f23 package split (Jan Silhan) - spec: requires >= dnf version not = (Jan Silhan) - spec: python3 source code by default in f23+ (RhBug:1194725,1198442) (Jan Silhan) - use dnfpluginscore.lib.urlopen() (RhBug:1193047) (Miroslav Suchý) - implemented functionality of yum-config-manager (Michael Mraka) - repoquery: Added --file switch to show who owns the given file (RhBug:1196952) (Parag Nemade) - debuginfo-install: accept packages names specified as NEVRA (RhBug:1171046) (Petr Spacek) - repoquery: accept package names specified as NEVRA (RhBug:1179366) (Petr Spacek) - download: fix typo in 'No source rpm definded' (Petr Spacek) - download: accept package names ending with .src too (Petr Spacek) - download: Do not disable user-enabled repos (thanks Spacekpe) (Jan Silhan) - Add README to tests/ directory (Petr Spacek) - AUTHORS: updated (Jan Silhan) - download: fix package download on Python 3 (Petr Spacek) * Tue Mar 10 2015 Jan Silhan - 0.1.6-2 - man pages moved into dnf-plugins-core subpackage * Fri Mar 6 2015 Jan Silhan - 0.1.6-1 - fixed python(3)-dnf dependency in f23 * Thu Feb 5 2015 Jan Silhan - 0.1.5-1 - updated package url (Michael Mraka) - also dnf_version could be specified on rpmbuild commandline (Michael Mraka) - simple script to build test package (Michael Mraka) - let gitrev be specified on rpmbuild commandline (Michael Mraka) - assign default GITREV value (Michael Mraka) - standard way to find out latest commit (Michael Mraka) - debuginfo-install: fix handling of subpackages with non-zero epoch (Petr Spacek) - debuginfo-install: Make laywers happier by assigning copyright to Red Hat (Petr Spacek) - debuginfo-install: remove dead code uncovered by variable renaming (Petr Spacek) - debuginfo-install: clearly separate source and debug package names (Petr Spacek) - debuginfo-install: use descriptive parameter name in _is_available() (Petr Spacek) - repoquery: add -l option to list files contained in the package (Petr Spacek) - 1187773 - replace undefined variable (Miroslav Suchý) - download: fixed unicode location error (RhBug:1178239) (Jan Silhan) - builddep recognizes nosrc.rpm pkgs (RhBug:1166126) (Jan Silhan) - builddep: added nosignatures flag to rpm transaction set (Jan Silhan) - builddep: more verbose output of non-matching packages (RhBug:1155211) (Jan Silhan) - package: archive script is the same as in dnf (Jan Silhan) - spec: exclude __pycache__ dir (Igor Gnatenko) * Fri Dec 5 2014 Jan Silhan - 0.1.4-1 - revert of commit 80ae3f4 (Jan Silhan) - transifex update (Jan Silhan) - spec: binded to current dnf version (Jan Silhan) - generate_completion_cache: use sqlite instead of text files (Igor Gnatenko) - logging: renamed log file (Related:RhBug:1074715) (Jan Silhan) - Add reposync. (RhBug:1139738) (Ales Kozumplik) - download: fix traceback if rpm package has no defined sourcerpm (RhBug: 1144003) (Tim Lauridsen) - lint: ignore warnings of a test accessing protected attribute. (Ales Kozumplik) - repoquery lint: logger is not used. (Ales Kozumplik) - repoquery: support querying of weak deps. (Ales Kozumplik) - needs_restarting: fix typo (Miroslav Suchý) - copr: migrate copr plugin form urlgrabber to python-request (Miroslav Suchý) - Add needs-restarting command. (Ales Kozumplik) * Thu Sep 4 2014 Jan Silhan - 0.1.3-1 - repoquery: output times in UTC. (Ales Kozumplik) - repoquery: missing help messages. (Ales Kozumplik) - repoquery: add --info. (RhBug:1135984) (Ales Kozumplik) - add Jan to AUTHORS. (Ales Kozumplik) - spec: extended package description with plugin names and commands (Related:RhBug:1132335) (Jan Silhan) - copr: check for 'ok' in 'output' for json data (RhBug:1134378) (Igor Gnatenko) - README: changed references to new repo location (Jan Silhan) - transifex update (Jan Silhan) - copr: convert key to unicode before guessing lenght (Miroslav Suchý) - Add pnemade to AUTHORS (Ales Kozumplik) - debuginfo-install: Use logger as module level variable and not instance attribute since dnf-0.6.0 release (RhBug:1130559) (Parag Nemade) - copr: Use logger as module level variable and not instance attribute since dnf-0.6.0 release (RhBug:1130559) (Parag Nemade) - copr: implement help command (Igor Gnatenko) - debuginfo-install: fix indenting (Igor Gnatenko) - debuginfo-install: use srpm basename for debuginfo (Igor Gnatenko) * Mon Jul 28 2014 Aleš Kozumplík - 0.1.2-1 - BashCompletionCache: error strings are unicoded (RhBug:1118809) (Jan Silhan) - transifex update (Jan Silhan) - debuginfo-install: remove some pylint warnings (Igor Gnatenko) - debuginfo-install: fix installing when installed version not found in repos, optimize performance (RhBug: 1108321) (Ig - fix: copr plugin message for repo without builds (RhBug:1116389) (Adam Samalik) - logging: remove messages about initialization. (Ales Kozumplik) * Thu Jul 3 2014 Aleš Kozumplík - 0.1.1-2 - packaging: add protected_packages.py to the package. (Ales Kozumplik) * Thu Jul 3 2014 Aleš Kozumplík - 0.1.1-1 - protected_packages: prevent removal of the running kernel. (RhBug:1049310) (Ales Kozumplik) - packaging: create and own /etc/dnf/protected.d. (Ales Kozumplik) - doc: add documentation for protected_packages. (Ales Kozumplik) - doc: rename: generate-completion-cache -> generate_completion_cache. (Ales Kozumplik) - add protected_packages (RhBug:1111855) (Ales Kozumplik) - build: add python-requests to requires (RHBZ: 1104088) (Miroslav Suchý) - doc: typo: fix double 'plugin' in release notes. (Ales Kozumplik) * Wed Jun 4 2014 Aleš Kozumplík - 0.1.0-1 - pylint: fix all pylint builddep problems. (Ales Kozumplik) - builddep: better error reporting on deps that actually don't exist. (Ales Kozumplik) - builddep: load available repos. (RhBug:1103906) (Ales Kozumplik) - tests: stop argparse from printing to stdout when tests run. (Ales Kozumplik) - packaging: all the manual pages with a glob. (Ales Kozumplik) - fix: packaging problem with query.py. (Ales Kozumplik) - doc: add reference documentation for repoquery. (Ales Kozumplik) - repoquery: support --provides, --requires etc. (Ales Kozumplik) - repoquery: make the CLI more compatible with Yum's repoquery. (Ales Kozumplik) - repoquery: some cleanups in the plugin and the tests. (Ales Kozumplik) - rename: query->repoquery. (RhBug:1045078) (Ales Kozumplik) - add pylint script for dnf-core-plugins. (Ales Kozumplik) - tests: repoquery: fix unit tests. (Ales Kozumplik) - add query tool (Tim Lauridsen) * Wed May 28 2014 Aleš Kozumplík - 0.0.8-1 - build: add sphinx to build requires. (Ales Kozumplik) - doc: packaging: add license block to each .rst. (Ales Kozumplik) - tests: stray print() in test_download.py. (Ales Kozumplik) - doc: put each synopsis on new line (Miroslav Suchý) - doc: cosmetic: project name in the documentation. (Ales Kozumplik) - doc: cleanups, form, style. (Ales Kozumplik) - doc: add documentation and man pages (Tim Lauridsen) - copr: remove repofile if failed to enable repo (Igor Gnatenko) - copr: honor -y and --assumeno (Miroslav Suchý) - py3: absolute imports and unicode literals everywhere. (Ales Kozumplik) - debuginfo-install: doesn't install latest pkgs (RhBug: 1096507) (Igor Gnatenko) - debuginfo-install: fix description (Igor Gnatenko) - debuginfo-install: fix logger debug messages (Igor Gnatenko) - build: install the download plugin (Tim Lauridsen) - download: update the download plugin with --source, --destdir & --resolve options (Tim Lauridsen) - Add a special ArgumentParser to parsing plugin cmd arguments and options (Tim Lauridsen) - tests: add __init__.py to make tests a module and use abs imports (Tim Lauridsen) - build: simplify plugins/CMakeLists.txt. (Ales Kozumplik) - dnf.cli.commands.err_mini_usage() changed name. (Ales Kozumplik) - kickstart: do not include kickstart errors into own messages. (Radek Holy) * Wed Apr 23 2014 Aleš Kozumplík - 0.0.7-1 - build: gettext is also needed as a buildreq (Tim Lauridsen) - copr: use usage & summary class attributes, to work with dnf 0.5.0 use shared lib dnfpluginscore for translation wrapp - build: add cmake as buildreq (Tim Lauridsen) - generate-completion-cache: fix shared lib name (Tim Lauridsen) - make .spec use gitrev in the source file add helper script for building source archive (Tim Lauridsen) - Added transifex config (Tim Lauridsen) - tests: use cli logger in kickstart test (Tim Lauridsen) - Added translation .pot file Added da translation files so we have something to build & install (Tim Lauridsen) - Added CMake files Added CMake build to .spec & and added translation files handling (Tim Lauridsen) - make plugins use shared lib added translation wrappers added missing usage & summary PEP8 fixes (Tim Lauridsen) - added shared dnfpluginscore lib (Tim Lauridsen) - copr: C:139, 0: Unnecessary parens after 'print' keyword (superfluous-parens) (Miroslav Suchý) - copr: W: 23, 0: Unused import gettext (unused-import) (Miroslav Suchý) - copr: C: 33, 0: No space allowed before : (Miroslav Suchý) - copr: some python3 migration (Miroslav Suchý) - copr: get rid of dnf i18n imports (Miroslav Suchý) - remove dnf.yum.i18n imports. (Ales Kozumplik) - copr: Fix the playground upgrade command. (Tadej Janež) - copr: implement search function (Igor Gnatenko) - better format output (Miroslav Suchý) - implement playground plugin (Miroslav Suchý) - move removing of repo into method (Miroslav Suchý) - check root only for actions which really need root (Miroslav Suchý) - move repo downloading into separate method (Miroslav Suchý) - define copr url as class attribute (Miroslav Suchý) - better wording of warning (Miroslav Suchý) - move question to function argument (Miroslav Suchý) - move guessing chroot into function (Miroslav Suchý) - copr: use common lib use Command.usage & summary cleanup imports & PEP8 fixes (Tim Lauridsen) - builddep: added usage & summary & fix some PEP8 issues (Tim Lauridsen) - kickstart: use new public Command.usage & Command.summary api (Tim Lauridsen) - fix resource leak in builddep.py. (Ales Kozumplik) - refactor: command plugins use demands mechanism. (Ales Kozumplik) - noroot: move to the new 'demands' mechanism to check the need of root. (Ales Kozumplik) - tests: fix locale independence. (Radek Holy) - [copr] correctly specify chroot when it should be guessed (Miroslav Suchý) * Mon Mar 17 2014 Aleš Kozumplík - 0.0.6-1 - clenaup: remove commented out code (Miroslav Suchý) - copr: list: print description (Igor Gnatenko) - builddep: rpm error messages sink. (Ales Kozumplik) - builddep: improve error handling on an command argument (RhBug:1074436) (Ales Kozumplik) - copr: handling case when no argument is passed on cli (Miroslav Suchý) - copr: delete excess argument (Igor Gnatenko) - add copr plugin (Miroslav Suchý) - debuginfo-install: check for root with dnf api (Igor Gnatenko) - packaging: fix bogus dates. (Ales Kozumplik) * Wed Feb 26 2014 Aleš Kozumplík - 0.0.5-2 - packaging: add debuginfo-install.py (Ales Kozumplik) * Wed Feb 26 2014 Aleš Kozumplík - 0.0.5-1 - packaging: add builddep.py to the RPM. (Ales Kozumplik) * Tue Feb 25 2014 Radek Holý - 0.0.4-1 - refactor: use Base.install instead of installPkgs in kickstart plugin. (Radek Holy) - refactor: move kickstart arguments parsing to standalone method. (Radek Holy) - tests: test effects instead of mock calls. (Radek Holy) - Add debuginfo-install plugin. (RhBug:1045770) (Igor Gnatenko) - builddep: needs to be run under root. (RhBug:1065851) (Ales Kozumplik) * Thu Feb 6 2014 Aleš Kozumplík - 0.0.3-1 - tests: import mock through support so its simpler for the test cases. (Ales Kozumplik) - packaging: fix typos in the spec. (Ales Kozumplik) - [completion_cache] Cache installed packages, update the cache less frequently (Elad Alfassa) - Add bash completion to dnf (Elad Alfassa) - packaging: missing buildrequire (Ales Kozumplik) * Mon Jan 13 2014 Aleš Kozumplík - 0.0.2-1 - First release. * Wed Jan 8 2014 Cristian Ciupitu - 0.0.1-4 - Spec updates. * Tue Jan 7 2014 Aleš Kozumplík - 0.0.1-3 - Spec updates. * Mon Jan 6 2014 Aleš Kozumplík - 0.0.1-2 - Spec updates. * Fri Dec 20 2013 Aleš Kozumplík - 0.0.1-1 - The initial package version. dnf-plugins-core-4.10.1/doc/000077500000000000000000000000001476407706200155335ustar00rootroot00000000000000dnf-plugins-core-4.10.1/doc/CMakeLists.txt000066400000000000000000000065661476407706200203100ustar00rootroot00000000000000# html and man documentation are separate targets, apparently there's no way to # tell sphinx-build to do them both in one go: if (${PYTHON_VERSION_MAJOR} STREQUAL "2") SET(SPHINX_BUILD_NAME "sphinx-build") else() SET(SPHINX_BUILD_NAME "sphinx-build-3") endif() ADD_CUSTOM_TARGET (doc-html PYTHONPATH=${CMAKE_SOURCE_DIR} ${SPHINX_BUILD_NAME} -b html ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Building html documentation") ADD_CUSTOM_TARGET (doc-man PYTHONPATH=${CMAKE_SOURCE_DIR} ${SPHINX_BUILD_NAME} -b man ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Building manpage documentation") ADD_CUSTOM_TARGET (doc) ADD_DEPENDENCIES (doc doc-html doc-man) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/dnf4-builddep.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-changelog.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-config-manager.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-copr.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-debuginfo-install.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-download.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-expired-pgp-keys.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-generate_completion_cache.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-groups-manager.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-leaves.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-modulesync.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-needs-restarting.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-repoclosure.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-repodiff.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-repograph.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-repomanage.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-reposync.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-post-transaction-actions.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-pre-transaction-actions.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-show-leaves.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-system-upgrade.8 ${CMAKE_CURRENT_BINARY_DIR}/dnf4-versionlock.8 ${CMAKE_CURRENT_BINARY_DIR}/yum-copr.8 ${CMAKE_CURRENT_BINARY_DIR}/yum-versionlock.8 DESTINATION share/man/man8) if (${PYTHON_VERSION_MAJOR} STREQUAL "2") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/dnf-migrate.8 DESTINATION share/man/man8) endif() if (${WITHOUT_DEBUG} STREQUAL "0") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/dnf4-debug.8 DESTINATION share/man/man8) endif() if (${WITHOUT_LOCAL} STREQUAL "0") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/dnf4-local.8 DESTINATION share/man/man8) endif() INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/debuginfo-install.1 ${CMAKE_CURRENT_BINARY_DIR}/needs-restarting.1 ${CMAKE_CURRENT_BINARY_DIR}/repo-graph.1 ${CMAKE_CURRENT_BINARY_DIR}/repoclosure.1 ${CMAKE_CURRENT_BINARY_DIR}/repomanage.1 ${CMAKE_CURRENT_BINARY_DIR}/repodiff.1 ${CMAKE_CURRENT_BINARY_DIR}/reposync.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-builddep.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-changelog.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-config-manager.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-groups-manager.1 ${CMAKE_CURRENT_BINARY_DIR}/yumdownloader.1 ${CMAKE_CURRENT_BINARY_DIR}/package-cleanup.1 ${CMAKE_CURRENT_BINARY_DIR}/dnf-utils.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-utils.1 DESTINATION share/man/man1) if (${WITHOUT_DEBUG} STREQUAL "0") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/yum-debug-dump.1 ${CMAKE_CURRENT_BINARY_DIR}/yum-debug-restore.1 DESTINATION share/man/man1) endif() INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/yum-versionlock.conf.5 DESTINATION share/man/man5) dnf-plugins-core-4.10.1/doc/builddep.rst000066400000000000000000000036461476407706200200660ustar00rootroot00000000000000=================== DNF builddep Plugin =================== Install whatever is needed to build the given .src.rpm, .nosrc.rpm or .spec file. .. warning:: Build dependencies in a package (i.e. src.rpm) might be different than you would expect because they were evaluated according macros set on the package build host. -------- Synopsis -------- ``dnf builddep ...`` --------- Arguments --------- ```` Either path to .src.rpm, .nosrc.rpm or .spec file or package available in a repository. ------- Options ------- All general DNF options are accepted, see `Options` in :manpage:`dnf(8)` for details. ``--help-cmd`` Show this help. ``-D , --define `` Define the RPM macro named `macro` to the value `expr` when parsing spec files. Does not apply for source rpm files. ``--spec`` Treat arguments as .spec files. ``--srpm`` Treat arguments as source rpm files. ``--skip-unavailable`` Skip build dependencies not available in repositories. All available build dependencies will be installed. Note that `builddep` command does not honor the `--skip-broken` option, so there is no way to skip uninstallable packages (e.g. with broken dependencies). -------- Examples -------- ``dnf builddep foobar.spec`` Install the needed build requirements, defined in the foobar.spec file. ``dnf builddep --spec foobar.spec.in`` Install the needed build requirements, defined in the spec file when filename ends with something different than ``.spec``. ``dnf builddep foobar-1.0-1.src.rpm`` Install the needed build requirements, defined in the foobar-1.0-1.src.rpm file. ``dnf builddep foobar-1.0-1`` Look up foobar-1.0-1 in enabled repositories and install build requirements for its source rpm. ``dnf builddep -D 'scl python27' python-foobar.spec`` Install the needed build requirements for the python27 SCL version of python-foobar. dnf-plugins-core-4.10.1/doc/changelog.rst000066400000000000000000000037671476407706200202310ustar00rootroot00000000000000.. Copyright (C) 2018 Red Hat, Inc. This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU General Public License v.2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat trademarks that are incorporated in the source code or documentation are not subject to the GNU General Public License and may only be used or replicated with the express permission of Red Hat, Inc. ====================== DNF changelog Plugin ====================== ----------- Description ----------- `changelog` is a plugin for viewing package changelogs. -------- Synopsis -------- ``dnf changelog [] ...`` --------- Arguments --------- ```` Package specification for packages to display changelogs. ------- Options ------- All general DNF options are accepted, see `Options` in :manpage:`dnf(8)` for details. ``--since=`` Show only changelog entries since ````. To avoid ambiguosity using YYYY-MM-DD date format is recommended. ``--count=`` Show maximum of ```` changelog entries per package. ``--upgrades`` Show only new changelog entries for packages, that provide an upgrade for some of already installed packages. -------- Examples -------- Show changelogs for all packages since November 1, 2018:: dnf changelog --since=2018-11-1 Show 3 latest changelogs of package dnf:: dnf changelog --count=3 dnf Show what is new in upgradable packages:: dnf changelog --upgrades dnf-plugins-core-4.10.1/doc/conf.py000066400000000000000000000307161476407706200170410ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # dnf-plugins-core documentation build configuration file, created by # sphinx-quickstart on Mon May 5 18:07:07 2014. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import codecs import sys import os import os.path _dirname = os.path.dirname(__file__) # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, _dirname) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = ['rhbug'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'dnf-plugins-core' copyright = u'2014, Red Hat, Licensed under GPLv2+' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. def version_readout(): fn = os.path.join(_dirname, '../dnf-plugins-core.spec') with codecs.open(fn, "r", "utf-8") as f: for line in f.readlines(): if line.startswith('Version:'): return line.split(':')[1].strip() version = '%s' % version_readout() # The full version, including alpha/beta/rc tags. release = '%s-1' % version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build'] if sys.version_info[0] > 2: exclude_patterns.append('migrate.rst') # The reST default role (used for this markup: `text`) to use for all # documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. #html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. #html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. #html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = 'dnf-plugins-coredoc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). #'pointsize': '10pt', # Additional stuff for the LaTeX preamble. #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'dnf-plugins-core.tex', u'dnf-plugins-core Documentation', u'Tim Lauridsen', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # If true, show page references after internal links. #latex_show_pagerefs = False # If true, show URL addresses after external links. #latex_show_urls = False # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_domain_indices = True # -- Options for manual page output --------------------------------------- AUTHORS=[u'See AUTHORS in your Core DNF Plugins distribution'] # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ ('builddep', 'dnf4-builddep', u'DNF builddep Plugin', AUTHORS, 8), ('changelog', 'dnf4-changelog', u'DNF changelog Plugin', AUTHORS, 8), ('config_manager', 'dnf4-config-manager', u'DNF config-manager Plugin', AUTHORS, 8), ('copr', 'dnf4-copr', u'DNF copr Plugin', AUTHORS, 8), ('debug', 'dnf4-debug', u'DNF debug Plugin', AUTHORS, 8), ('debuginfo-install', 'dnf4-debuginfo-install', u'DNF debuginfo-install Plugin', AUTHORS, 8), ('download', 'dnf4-download', u'DNF download Plugin', AUTHORS, 8), ('expired-pgp-keys', 'dnf4-expired-pgp-keys', u'DNF expired-pgp-keys Plugin', AUTHORS, 8), ('generate_completion_cache', 'dnf4-generate_completion_cache', u'DNF generate_completion_cache Plugin', AUTHORS, 8), ('groups-manager', 'dnf4-groups-manager', u'DNF groups-manager Plugin', AUTHORS, 8), ('leaves', 'dnf4-leaves', u'DNF leaves Plugin', AUTHORS, 8), ('local', 'dnf4-local', u'DNF local Plugin', AUTHORS, 8), ('modulesync', 'dnf4-modulesync', u'DNF modulesync Plugin', AUTHORS, 8), ('needs_restarting', 'dnf4-needs-restarting', u'DNF needs_restarting Plugin', AUTHORS, 8), ('repoclosure', 'dnf4-repoclosure', u'DNF repoclosure Plugin', AUTHORS, 8), ('repodiff', 'dnf4-repodiff', u'DNF repodiff Plugin', AUTHORS, 8), ('repograph', 'dnf4-repograph', u'DNF repograph Plugin', AUTHORS, 8), ('repomanage', 'dnf4-repomanage', u'DNF repomanage Plugin', AUTHORS, 8), ('reposync', 'dnf4-reposync', u'DNF reposync Plugin', AUTHORS, 8), ('post-transaction-actions', 'dnf4-post-transaction-actions', u'DNF post transaction actions Plugin', AUTHORS, 8), ('pre-transaction-actions', 'dnf4-pre-transaction-actions', u'DNF pre transaction actions Plugin', AUTHORS, 8), ('show-leaves', 'dnf4-show-leaves', u'DNF show-leaves Plugin', AUTHORS, 8), ('system-upgrade', 'dnf4-system-upgrade', u'DNF system-upgrade Plugin', AUTHORS, 8), ('versionlock', 'dnf4-versionlock', u'DNF versionlock Plugin', AUTHORS, 8), # yum3 compatible layer for manpages ('copr', 'yum-copr', u'redirecting to DNF copr Plugin', AUTHORS, 8), ('debuginfo-install', 'debuginfo-install', u'redirecting to DNF debuginfo-install Plugin', AUTHORS, 1), ('groups-manager', 'yum-groups-manager', u'redirecting to DNF groups-manager Plugin', AUTHORS, 1), ('needs_restarting', 'needs-restarting', u'redirecting to DNF needs-restarting Plugin', AUTHORS, 1), ('repoclosure', 'repoclosure', u'redirecting to DNF repoclosure Plugin', AUTHORS, 1), ('repodiff', 'repodiff', u'redirecting to DNF repodiff Plugin', AUTHORS, 1), ('repograph', 'repo-graph', u'redirecting to DNF repograph Plugin', AUTHORS, 1), ('repomanage', 'repomanage', u'redirecting to DNF repomanage Plugin', AUTHORS, 1), ('reposync', 'reposync', u'redirecting to DNF reposync Plugin', AUTHORS, 1), ('versionlock', 'yum-versionlock', u'redirecting to DNF versionlock Plugin', AUTHORS, 8), ('versionlock', 'yum-versionlock.conf', u'redirecting to DNF versionlock Plugin', AUTHORS, 5), ('builddep', 'yum-builddep', u'redirecting to DNF builddep Plugin', AUTHORS, 1), ('changelog', 'yum-changelog', u'redirecting to DNF changelog Plugin', AUTHORS, 1), ('config_manager', 'yum-config-manager', u'redirecting to DNF config-manager Plugin', AUTHORS, 1), ('debug', 'yum-debug-dump', u'redirecting to DNF debug Plugin', AUTHORS, 1), ('debug', 'yum-debug-restore', u'redirecting to DNF debug Plugin', AUTHORS, 1), ('download', 'yumdownloader', u'redirecting to DNF download Plugin', AUTHORS, 1), ('package-cleanup', 'package-cleanup', u'clean up locally installed, duplicate, or ' 'orphaned packages.', AUTHORS, 1), ('dnf-utils', 'dnf-utils', u'classic YUM utilities implemented as CLI shims on top of DNF', AUTHORS, 1), ('dnf-utils', 'yum-utils', u'classic YUM utilities implemented as CLI shims on top of DNF', AUTHORS, 1), ] if sys.version_info[0] < 3: man_pages.append(('migrate', 'dnf-migrate', u'DNF migrate Plugin', AUTHORS, 8)) # If true, show URL addresses after external links. #man_show_urls = False # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ('index', 'dnf-plugins-core', u'dnf-plugins-core Documentation', AUTHORS[0], 'dnf-plugins-core', 'One line description of project.', 'Miscellaneous'), ] # Documents to append as an appendix to all manuals. #texinfo_appendices = [] # If false, no module index is generated. #texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False rst_prolog = """ .. default-domain:: py """ dnf-plugins-core-4.10.1/doc/config_manager.rst000066400000000000000000000075531476407706200212360ustar00rootroot00000000000000.. Copyright (C) 2015 Red Hat, Inc. This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU General Public License v.2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat trademarks that are incorporated in the source code or documentation are not subject to the GNU General Public License and may only be used or replicated with the express permission of Red Hat, Inc. ========================== DNF config-manager Plugin ========================== Manage main and repository DNF configuration options, toggle which repositories are enabled or disabled, and add new repositories. -------- Synopsis -------- ``dnf config-manager [options]
...`` --------- Arguments --------- ``
`` This argument can be used to explicitly select the configuration sections to manage. A section can either be ``main`` or a repoid. If not specified, the program will select the ``main`` section and each repoid used within any ``--setopt`` options. A repoid can be specified using globs. ------- Options ------- All general DNF options are accepted, see `Options` in :manpage:`dnf(8)` for details. ``--help-cmd`` Show this help. ``--add-repo=URL`` Add (and enable) the repo from the specified file or url. If it has to be added into installroot, combine it with ``--setopt=reposdir=//etc/yum.repos.d`` command-line option. ``--dump`` Print dump of current configuration values to stdout. ``--set-disabled``, ``--disable`` Disable the specified repos (implies ``--save``). ``--set-enabled``, ``--enable`` Enable the specified repos (implies ``--save``). ``--save`` Save the current options (useful with ``--setopt``). ``--setopt=