Compare commits
No commits in common. "c10s" and "c8" have entirely different histories.
@ -1 +0,0 @@
|
||||
1
|
||||
17
.gitignore
vendored
17
.gitignore
vendored
@ -1,16 +1 @@
|
||||
/microdnf-1.tar.gz
|
||||
/microdnf-2.tar.gz
|
||||
/microdnf-3.tar.gz
|
||||
/microdnf-3.0.1.tar.gz
|
||||
/microdnf-3.0.2.tar.gz
|
||||
/microdnf-3.3.0.tar.gz
|
||||
/microdnf-3.4.0.tar.gz
|
||||
/microdnf-3.5.0.tar.gz
|
||||
/microdnf-3.5.1.tar.gz
|
||||
/microdnf-3.6.0.tar.gz
|
||||
/microdnf-3.7.1.tar.gz
|
||||
/microdnf-3.8.0.tar.gz
|
||||
/microdnf-3.8.1.tar.gz
|
||||
/microdnf-3.9.0.tar.gz
|
||||
/microdnf-3.10.0.tar.gz
|
||||
/microdnf-3.10.1.tar.gz
|
||||
SOURCES/microdnf-3.8.0.tar.gz
|
||||
|
||||
1
.microdnf.metadata
Normal file
1
.microdnf.metadata
Normal file
@ -0,0 +1 @@
|
||||
c59c103e4cf88420e13dfd5ab9cc1558f0723227 SOURCES/microdnf-3.8.0.tar.gz
|
||||
@ -0,0 +1,41 @@
|
||||
From f60d1b6930b4602a24ae2ce4078795268384c87d Mon Sep 17 00:00:00 2001
|
||||
From: Pavla Kratochvilova <pkratoch@redhat.com>
|
||||
Date: Thu, 20 May 2021 11:06:27 +0200
|
||||
Subject: [PATCH] Revert "Don't set default value of "assumeyes" to TRUE"
|
||||
|
||||
This reverts commit 9e028a51fea6eceee0de6e155374a0bd81289e14.
|
||||
---
|
||||
dnf/dnf-main.c | 10 ++++++++++
|
||||
1 file changed, 10 insertions(+)
|
||||
|
||||
diff --git a/dnf/dnf-main.c b/dnf/dnf-main.c
|
||||
index 661dfee..cfaf714 100644
|
||||
--- a/dnf/dnf-main.c
|
||||
+++ b/dnf/dnf-main.c
|
||||
@@ -595,6 +595,14 @@ main (int argc,
|
||||
{
|
||||
dnf_conf_main_set_option ("assumeyes", DNF_CONF_COMMANDLINE, "1", NULL);
|
||||
}
|
||||
+ else
|
||||
+ {
|
||||
+ enum DnfConfPriority priority;
|
||||
+ dnf_utils_conf_main_get_bool_opt ("assumeyes", &priority);
|
||||
+ /* microdnf has a default value for "assumeyes" equal to TRUE, backward compatibility */
|
||||
+ if (priority == DNF_CONF_DEFAULT)
|
||||
+ dnf_conf_main_set_option ("assumeyes", DNF_CONF_COMMANDLINE, "1", NULL);
|
||||
+ }
|
||||
}
|
||||
|
||||
const gchar *cmd_name = get_command (&argc, argv);
|
||||
@@ -609,6 +617,8 @@ main (int argc,
|
||||
g_set_prgname (prg_name);
|
||||
g_autofree gchar *help = g_option_context_get_help (opt_ctx, TRUE, NULL);
|
||||
g_print ("%s", help);
|
||||
+ g_print ("Notes:\n");
|
||||
+ g_print (" The \"--assumeyes\" option is turned on by default. To switch it to an interactive prompt, specify \"assumeyes=0\" in the configuration file.\n\n");
|
||||
goto out;
|
||||
}
|
||||
|
||||
--
|
||||
libgit2 1.0.1
|
||||
|
||||
154
SPECS/microdnf.spec
Normal file
154
SPECS/microdnf.spec
Normal file
@ -0,0 +1,154 @@
|
||||
%global libdnf_version 0.62.0
|
||||
|
||||
Name: microdnf
|
||||
Version: 3.8.0
|
||||
Release: 2%{?dist}
|
||||
Summary: Lightweight implementation of DNF in C
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://github.com/rpm-software-management/microdnf
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
Patch1: 0001-Revert-Dont-set-default-value-of-assumeyes-to-TRUE.patch
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: meson >= 0.36.0
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.44.0
|
||||
BuildRequires: pkgconfig(gobject-2.0) >= 2.44.0
|
||||
BuildRequires: pkgconfig(libpeas-1.0) >= 1.20.0
|
||||
BuildRequires: pkgconfig(libdnf) >= %{libdnf_version}
|
||||
BuildRequires: pkgconfig(smartcols)
|
||||
BuildRequires: help2man
|
||||
|
||||
Requires: libdnf%{?_isa} >= %{libdnf_version}
|
||||
%if 0%{?rhel} > 8 || 0%{?fedora}
|
||||
# Ensure DNF package manager configuration skeleton is installed
|
||||
Requires: dnf-data
|
||||
%endif
|
||||
|
||||
%description
|
||||
Micro DNF is a lightweight C implementation of DNF, designed to be used
|
||||
for doing simple packaging actions when you don't need full-blown DNF and
|
||||
you want the tiniest useful environments possible.
|
||||
|
||||
That is, you don't want any interpreter stack and you want the most
|
||||
minimal environment possible so you can build up to exactly what you need.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%check
|
||||
%meson_test
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc README.md
|
||||
%{_mandir}/man8/microdnf.8*
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Thu May 20 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 3.8.0-2
|
||||
- Revert: Don't set default value of "assumeyes" to TRUE
|
||||
|
||||
* Wed May 19 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 3.8.0-1
|
||||
- Update to 3.8.0
|
||||
- Don't set default value of "assumeyes" to TRUE
|
||||
- Support for user confirmation and assumeyes, assumeno, defaultyes
|
||||
- Add commands: distro-sync, makecache
|
||||
- Add subcommands support
|
||||
- Add support for command aliases
|
||||
- Added alias "update" to "upgrade" command
|
||||
- Relicense to GPLv2+
|
||||
- Add support for setting allow_vendor_change
|
||||
- [download] Support for "--resolve", "--alldeps" and "--archlist=" arguments
|
||||
- [download] several optimizations
|
||||
- Support "--setopt=keepcache=0/1"
|
||||
- Extend "--setopt" to support repository options
|
||||
|
||||
* Mon Feb 08 2021 Nicola Sella <nsella@redhat.com> - 3.4.0-4
|
||||
- Print info about obsoleted packages before transaction (RhBug:1855542)
|
||||
|
||||
* Fri Jan 29 2021 Nicola Sella <nsella@redhat.com> - 3.4.0-3
|
||||
- Patch: Add support for setting a platform module ID
|
||||
- Rename "update" command to "upgrade", "update" remain as compatibility alias
|
||||
|
||||
* Fri Jan 15 2021 Nicola Sella <nsella@redhat.com> - 3.4.0-2
|
||||
- Patch: Add module enable/disable/reset command
|
||||
|
||||
* Mon Apr 06 2020 Ales Matej <amatej@redhat.com> - 3.4.0-1
|
||||
- Update to 3.4.0
|
||||
- Fix: do not download metadata in remove command
|
||||
- Add reinstall command
|
||||
- Add "--setopt=tsflags=test" support
|
||||
- Add "--setopt=reposdir=<path>" and "--setopt=varsdir=<path1>,<path2>,..." support
|
||||
- Add "--config=<path_to_config_file>" support
|
||||
- Add "--disableplugin", "--enableplugin" support (RhBug:1781126)
|
||||
- Add "--noplugins" support
|
||||
- Add "--setopt=cachedir=<path_to_cache_directory>" support
|
||||
- Add "--installroot=<path_to_installroot_directory>" support
|
||||
- Add "--refresh" support
|
||||
- Support "install_weak_deps" conf option and "--setopt=install_weak_deps=0/1"
|
||||
- Respect reposdir from conf file
|
||||
- Respect "metadata_expire" conf file opton (RhBug:1771147)
|
||||
- [repolist] Print padding spaces only if output is terminal
|
||||
|
||||
* Mon Jan 13 2020 Ales Matej <amatej@redhat.com> - 3.0.1-8
|
||||
- Fix: Don't print lines with (null) in transaction report (RhBug:1691353)
|
||||
|
||||
* Tue Dec 17 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 3.0.1-7
|
||||
- Add dependency on libdnf
|
||||
|
||||
* Tue Dec 17 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 3.0.1-6
|
||||
- Allow downgrade for all transactions microdnf does (RhBug:1725863)
|
||||
|
||||
* Tue Nov 26 2019 Ales Matej <amatej@redhat.com> - 3.0.1-5
|
||||
- Add repolist command (RhBug:1584952)
|
||||
- Add repoquery command (RhBug:1769245)
|
||||
|
||||
* Wed Nov 13 2019 Ales Matej <amatej@redhat.com> - 3.0.1-4
|
||||
- Add support of best behavior (RhBug:1679476)
|
||||
- Add support for --releasever (RhBug:1591627)
|
||||
|
||||
* Fri Aug 30 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 3.0.1-3
|
||||
- Fix microdnf --help coredump (RhBug:1744979)
|
||||
|
||||
* Thu Aug 01 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 3.0.1-2
|
||||
- Fix minor memory leaks (RhBug:1702283)
|
||||
- Use help2man to generate a man page (RhBug:1612520)
|
||||
|
||||
* Wed Jun 27 2018 Jaroslav Mracek <jmracek@redhat.com> - 3.0.1-1
|
||||
- Update to 3.0.1
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3-2
|
||||
- No CMake, only meson
|
||||
|
||||
* Thu Jun 01 2017 Igor Gnatenko <ignatenko@redhat.com> - 3-1
|
||||
- Update to 3
|
||||
|
||||
* Fri May 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 2-3
|
||||
- Apply few patches from upstream
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 02 2017 Igor Gnatenko <ignatenko@redhat.com> - 2-1
|
||||
- Update to 2
|
||||
|
||||
* Mon Dec 12 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1-1
|
||||
- Initial package
|
||||
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build./plans/internal/CI-Tier-1.functional}
|
||||
229
microdnf.spec
229
microdnf.spec
@ -1,229 +0,0 @@
|
||||
%global libdnf_version 0.62.0
|
||||
|
||||
Name: microdnf
|
||||
Version: 3.10.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Lightweight implementation of DNF in C
|
||||
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/rpm-software-management/microdnf
|
||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: meson >= 0.36.0
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.44.0
|
||||
BuildRequires: pkgconfig(gobject-2.0) >= 2.44.0
|
||||
BuildRequires: pkgconfig(libpeas-1.0) >= 1.20.0
|
||||
BuildRequires: (pkgconfig(libdnf) >= %{libdnf_version} with pkgconfig(libdnf) < 5)
|
||||
BuildRequires: pkgconfig(smartcols)
|
||||
BuildRequires: help2man
|
||||
|
||||
Requires: libdnf%{?_isa} >= %{libdnf_version}
|
||||
%if 0%{?rhel} > 8 || 0%{?fedora}
|
||||
# Ensure DNF package manager configuration skeleton is installed
|
||||
Requires: /etc/dnf/dnf.conf
|
||||
%endif
|
||||
|
||||
%description
|
||||
Micro DNF is a lightweight C implementation of DNF, designed to be used
|
||||
for doing simple packaging actions when you don't need full-blown DNF and
|
||||
you want the tiniest useful environments possible.
|
||||
|
||||
That is, you don't want any interpreter stack and you want the most
|
||||
minimal environment possible so you can build up to exactly what you need.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%check
|
||||
%meson_test
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc README.md
|
||||
%{_mandir}/man8/microdnf.8*
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Wed Dec 11 2024 Evan Goode <egoode@redhat.com> - 3.10.1-1
|
||||
- Update to 3.10.1
|
||||
- Correct spelling of summary
|
||||
- Print more helpful error message when reinstalling non-installed pkg
|
||||
Resolves: RHEL-53430
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.10.0-7
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.10.0-6
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jun 14 2023 Jan Kolarik <jkolarik@redhat.com> - 3.10.0-2
|
||||
- Don't use libdnf5 as a dependency
|
||||
|
||||
* Tue Jun 06 2023 Jan Kolarik <jkolarik@redhat.com> - 3.10.0-1
|
||||
- Update to 3.10.0
|
||||
- Add swap command
|
||||
- Prepare for dnf5 transition in Fedora 39
|
||||
|
||||
* Fri May 19 2023 Petr Pisar <ppisar@redhat.com> - 3.9.0-3
|
||||
- Rebuild against rpm-4.19 (https://fedoraproject.org/wiki/Changes/RPM-4.19)
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Aug 15 2022 Jaroslav Rohel <jrohel@redhat.com> - 3.9.0-1
|
||||
- Update to 3.9.0
|
||||
- Add leaves command - List installed packages not required by other installed packages
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Mar 14 2022 Pavla Kratochvilova <pkratoch@redhat.com> - 3.8.1-1
|
||||
- Remove non-breaking space from "Size" column (RhBug:2010676)
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Apr 19 2021 Nicola Sella <nsella@redhat.com> - 3.8.0-1
|
||||
- Update to 3.8.0
|
||||
- distrosync: Fix style issues and plugin build with Meson
|
||||
- Add distro-sync subcommand
|
||||
- Add "makecache" command
|
||||
|
||||
* Tue Mar 02 2021 Nicola Sella <nsella@redhat.com> - 3.7.1-1
|
||||
- Update to 3.7.1
|
||||
- [download] fix: unwanted dependency on newer glib
|
||||
- [download] Support for "--resolve" and "--alldeps" arguments
|
||||
- [download] New get_packages_query function
|
||||
- Support "--setopt=keepcache=0/1"
|
||||
- [download] Support "--archlist=" argument
|
||||
- [download] Move package download code to "download_packages" function
|
||||
- [download] several optimizations
|
||||
- Don't set default value of "assumeyes" to TRUE
|
||||
- Support for user confirmation and assumeyes, assumeno, defaultyes
|
||||
- Extend "--setopt" to support repository options
|
||||
- Added alias "update" to "upgrade" command
|
||||
- Command "update" renamed to "upgrade"
|
||||
- Add support for command aliases
|
||||
- dnf-data requirement only for Fedora and future RHEL
|
||||
- Relicense to GPLv2+ [errata corrige: not in 3.5.1-1]
|
||||
- Sync summary and description from openSUSE [errata corrige: not in 3.6.0-1]
|
||||
|
||||
* Thu Jan 28 2021 Nicola Sella <nsella@redhat.com> - 3.6.0-1
|
||||
- Update to 3.6.0
|
||||
- spec: Sync summary and description from openSUSE
|
||||
- Add support for setting a platform module ID
|
||||
- Add dependency for DNF configurations skeleton
|
||||
- Add support for setting allow_vendor_change
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Nov 26 2020 Nicola Sella <nsella@redhat.com> - 3.5.1-1
|
||||
- Update to 3.5.1
|
||||
- Relicense to GPLv2+
|
||||
- Bump minimum version of libdnf in CMake and Meson
|
||||
|
||||
* Fri Nov 13 2020 Nicola Sella <nsella@redhat.com> - 3.5.0-1
|
||||
- Update to 3.5.0
|
||||
- Add module enable and disable commands
|
||||
- Add reports of module changes
|
||||
- Add "module enable" command
|
||||
- Add subcommands support
|
||||
- Print info about obsoleted packages before transaction (RhBug:1855542)
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jan 15 2020 Ales Matej <amatej@redhat.com> - 3.4.0-1
|
||||
- Add reinstall command
|
||||
- Add "--setopt=tsflags=test" support
|
||||
- Add "--setopt=reposdir=<path>" and "--setopt=varsdir=<path1>,<path2>,..." support
|
||||
- Add "--config=<path_to_config_file>" support
|
||||
- Add "--disableplugin", "--enableplugin" support (RhBug:1781126)
|
||||
- Add "--noplugins" support
|
||||
- Add "--setopt=cachedir=<path_to_cache_directory>" support
|
||||
- Add "--installroot=<path_to_installroot_directory>" support
|
||||
- Add "--refresh" support
|
||||
- Support "install_weak_deps" conf option and "--setopt=install_weak_deps=0/1"
|
||||
- Respect reposdir from conf file
|
||||
- Respect "metadata_expire" conf file opton (RhBug:1771147)
|
||||
- Fix: Don't print lines with (null) in transaction report (RhBug:1691353)
|
||||
- [repolist] Print padding spaces only if output is terminal
|
||||
|
||||
* Fri Nov 29 2019 Ales Matej <amatej@redhat.com> - 3.3.0-1
|
||||
- Update to 3.3.0
|
||||
- Fix: do not download metadata in remove command
|
||||
- Add repolist command (RhBug:1584952)
|
||||
- Add repoquery command (RhBug:1769245)
|
||||
|
||||
* Wed Nov 06 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 3.0.2-1
|
||||
- Update to 3.0.2
|
||||
- Add support for --releasever (RhBug:1591627)
|
||||
- Fix minor memory leaks (RhBug:1702283)
|
||||
- Use help2man to generate a man page (RhBug:1612520)
|
||||
- Allow downgrade for all transactions microdnf does (RhBug:1725863)
|
||||
- Add options --best and --nobest for transactions (RhBug:1679476)
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 27 2018 Jaroslav Mracek <jmracek@redhat.com> - 3.0.1-1
|
||||
- Update to 3.0.1
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3-2
|
||||
- No CMake, only meson
|
||||
|
||||
* Thu Jun 01 2017 Igor Gnatenko <ignatenko@redhat.com> - 3-1
|
||||
- Update to 3
|
||||
|
||||
* Fri May 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 2-3
|
||||
- Apply few patches from upstream
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 02 2017 Igor Gnatenko <ignatenko@redhat.com> - 2-1
|
||||
- Update to 2
|
||||
|
||||
* Mon Dec 12 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1-1
|
||||
- Initial package
|
||||
@ -1,21 +0,0 @@
|
||||
summary: Internal CI-Tier-1 tests plan
|
||||
discover:
|
||||
- name: microdnf
|
||||
how: fmf
|
||||
filter: 'tag: CI-Tier-1'
|
||||
url: https://pkgs.devel.redhat.com/git/tests/microdnf
|
||||
- name: dnf-upstream-test-suite
|
||||
how: fmf
|
||||
url: https://pkgs.devel.redhat.com/git/tests/dnf
|
||||
test:
|
||||
- /Sanity/run-upstream-tests-on-rhel/TC#0570162
|
||||
- name: integration-with-modularity-unaware-tools
|
||||
how: fmf
|
||||
url: https://pkgs.devel.redhat.com/git/tests/dnf
|
||||
test:
|
||||
- /Sanity/integration-with-modularity-unaware-tools
|
||||
execute:
|
||||
how: tmt
|
||||
adjust:
|
||||
enabled: false
|
||||
when: distro == centos-stream or distro == fedora
|
||||
Loading…
Reference in New Issue
Block a user