require dnf-plugins-core instead of yum-utils

This commit is contained in:
Jens Petersen 2015-02-24 16:15:07 +09:00
parent f444a15ea3
commit fe22eb7b35
1 changed files with 7 additions and 4 deletions

View File

@ -2,7 +2,7 @@
Name: cabal-rpm Name: cabal-rpm
Version: 0.9.4 Version: 0.9.4
Release: 1%{?dist} Release: 2%{?dist}
Summary: RPM packaging tool for Haskell Cabal-based packages Summary: RPM packaging tool for Haskell Cabal-based packages
License: GPLv3+ License: GPLv3+
@ -25,18 +25,18 @@ Provides: cblrpm = %{version}-%{release}
Requires: cabal-install Requires: cabal-install
Requires: rpm-build Requires: rpm-build
# for repoquery # for repoquery
Requires: yum-utils Requires: dnf-plugins-core
# for rpmdev-bumpspec # for rpmdev-bumpspec
Requires: rpmdevtools Requires: rpmdevtools
%description %description
Cabal-rpm is a tool for RPM packaging of Haskell Cabal-based packages. Cabal-rpm is a tool for RPM packaging of Haskell Cabal-based packages.
It interacts with yum to install build dependencies and can also act as It interacts with dnf to install build dependencies and can also act as
a cabal-install wrapper installing dependencies packaged in Fedora before a cabal-install wrapper installing dependencies packaged in Fedora before
running "cabal install". running "cabal install".
cblrpm has commands to generate a RPM spec file and srpm for a package. cblrpm has commands to generate a RPM spec file and srpm for a package.
It can rpmbuild packages, yum install their dependencies, prep packages, and It can rpmbuild packages, dnf install their dependencies, prep packages, and
install them. There are commands to list package dependencies and missing install them. There are commands to list package dependencies and missing
dependencies. The diff command compares the current spec file with a freshly dependencies. The diff command compares the current spec file with a freshly
generated one and the update command updates the spec file to latest version generated one and the update command updates the spec file to latest version
@ -71,6 +71,9 @@ ln -s cblrpm %{buildroot}%{_bindir}/%{name}
%changelog %changelog
* Tue Feb 24 2015 Jens Petersen <petersen@redhat.com> - 0.9.4-2
- require dnf-plugins-core instead of yum-utils
* Tue Feb 17 2015 Jens Petersen <petersen@fedoraproject.org> - 0.9.4-1 * Tue Feb 17 2015 Jens Petersen <petersen@fedoraproject.org> - 0.9.4-1
- use dnf if installed instead of yum for install and repoquery (#1156553) - use dnf if installed instead of yum for install and repoquery (#1156553)
- update now only commits changes and adds new source if git origin is ssh - update now only commits changes and adds new source if git origin is ssh