commit 2fe025612c1baae07f6ec828e4e8f40eb6151716 Author: CentOS Sources Date: Tue Jun 9 19:55:42 2020 +0000 import microdnf-3.4.0-1.el8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57c8351 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/microdnf-3.4.0.tar.gz diff --git a/.microdnf.metadata b/.microdnf.metadata new file mode 100644 index 0000000..39c4f11 --- /dev/null +++ b/.microdnf.metadata @@ -0,0 +1 @@ +aff8076a31c3d7a7e7b204f03d8a522415a657a1 SOURCES/microdnf-3.4.0.tar.gz diff --git a/SPECS/microdnf.spec b/SPECS/microdnf.spec new file mode 100644 index 0000000..fde7f12 --- /dev/null +++ b/SPECS/microdnf.spec @@ -0,0 +1,125 @@ +%global libdnf_version 0.43.1 + +Name: microdnf +Version: 3.4.0 +Release: 1%{?dist} +Summary: Minimal C implementation of DNF + +License: GPLv3+ +URL: https://github.com/rpm-software-management/microdnf +Source0: %{url}/archive/v%{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} +BuildRequires: pkgconfig(smartcols) +BuildRequires: help2man + +Requires: libdnf%{?_isa} >= %{libdnf_version} + +%description +Micro DNF is a very minimal C implementation of DNF's install, upgrade, +remove, repolist, and clean commands, designed to be used for doing simple +packaging actions in containers when you don't need full-blown DNF and +you want the tiniest useful containers 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. + +This is not a substitute for DNF for real systems, and many of DNF's +capabilities are intentionally not implemented in Micro DNF. + + +%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 +* Mon Apr 06 2020 Ales Matej - 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=" and "--setopt=varsdir=,,..." support +- Add "--config=" support +- Add "--disableplugin", "--enableplugin" support (RhBug:1781126) +- Add "--noplugins" support +- Add "--setopt=cachedir=" support +- Add "--installroot=" 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 - 3.0.1-8 +- Fix: Don't print lines with (null) in transaction report (RhBug:1691353) + +* Tue Dec 17 2019 Pavla Kratochvilova - 3.0.1-7 +- Add dependency on libdnf + +* Tue Dec 17 2019 Pavla Kratochvilova - 3.0.1-6 +- Allow downgrade for all transactions microdnf does (RhBug:1725863) + +* Tue Nov 26 2019 Ales Matej - 3.0.1-5 +- Add repolist command (RhBug:1584952) +- Add repoquery command (RhBug:1769245) + +* Wed Nov 13 2019 Ales Matej - 3.0.1-4 +- Add support of best behavior (RhBug:1679476) +- Add support for --releasever (RhBug:1591627) + +* Fri Aug 30 2019 Pavla Kratochvilova - 3.0.1-3 +- Fix microdnf --help coredump (RhBug:1744979) + +* Thu Aug 01 2019 Pavla Kratochvilova - 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 - 3.0.1-1 +- Update to 3.0.1 + +* Thu Feb 08 2018 Fedora Release Engineering - 3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Jul 22 2017 Igor Gnatenko - 3-2 +- No CMake, only meson + +* Thu Jun 01 2017 Igor Gnatenko - 3-1 +- Update to 3 + +* Fri May 12 2017 Igor Gnatenko - 2-3 +- Apply few patches from upstream + +* Fri Feb 10 2017 Fedora Release Engineering - 2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Feb 02 2017 Igor Gnatenko - 2-1 +- Update to 2 + +* Mon Dec 12 2016 Igor Gnatenko - 1-1 +- Initial package