Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61b8b2102c |
2 changed files with 471 additions and 85 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -10,7 +10,7 @@
|
|||
Summary: Utilities based around the yum package manager
|
||||
Name: yum-utils
|
||||
Version: 1.1.31
|
||||
Release: 27%{?dist}
|
||||
Release: 28%{?dist}
|
||||
License: GPLv2+
|
||||
Group: Development/Tools
|
||||
Source: http://yum.baseurl.org/download/yum-utils/%{name}-%{version}.tar.gz
|
||||
|
|
@ -373,6 +373,15 @@ Requires: python-requests
|
|||
%description -n yum-plugin-copr
|
||||
This plugin adds the command copr, for adding/listing/searching copr repos.
|
||||
|
||||
%package -n yum-plugin-ovl
|
||||
Summary: Yum plugin to work around overlayfs issues
|
||||
Group: System Environment/Base
|
||||
Provides: yum-ovl = %{version}-%{release}
|
||||
Requires: yum >= 3.4.3
|
||||
|
||||
%description -n yum-plugin-ovl
|
||||
This plugin touches rpmdb files to work around overlayfs issues.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch1 -p1
|
||||
|
|
@ -410,6 +419,7 @@ plugins="\
|
|||
ps \
|
||||
puppetverify \
|
||||
copr \
|
||||
ovl \
|
||||
"
|
||||
|
||||
%if %{package_yum_updatesd}
|
||||
|
|
@ -434,6 +444,11 @@ mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/yum.repos.d
|
|||
touch $RPM_BUILD_ROOT%{_sysconfdir}/yum.repos.d/_local.repo
|
||||
|
||||
|
||||
%check
|
||||
# To execute: ./test/test-all
|
||||
# Tests are not suitable for running at build time
|
||||
# because they require networking and a populated /var/cache/yum
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
|
@ -681,7 +696,22 @@ fi
|
|||
%{pluginhome}/copr.*
|
||||
%{_mandir}/man8/yum-copr.8.*
|
||||
|
||||
%files -n yum-plugin-ovl
|
||||
%defattr(-, root, root)
|
||||
%doc COPYING
|
||||
%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/ovl.conf
|
||||
%{pluginhome}/ovl.*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 10 2015 James Antill <james@fedoraproject.org> - 1.1.31-28
|
||||
- Update to latest HEAD
|
||||
- Add support for weak deps. to repoquery.
|
||||
- yum-builddep: respect --tolerant to ignore missing dependencies
|
||||
- Add plugin for overlayfs issue workaround. Patch by Pavel Odvody. BZ#1213602
|
||||
- yum-config-manager: require \* syntax to disable all repos. BZ#1151154
|
||||
- yum-config-manager: update config file specified using -c option. BZ#1075708
|
||||
- Deal with gpgdir and gpgcadir keys, in keys plugin.
|
||||
|
||||
* Thu Nov 13 2014 Valentina Mukhamedzhanova <vmukhame@redhat.com> - 1.1.31-27
|
||||
- Add python-requests to Requires of copr plugin. BZ 1158395
|
||||
|
||||
|
|
@ -840,10 +870,10 @@ fi
|
|||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.31-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Aug 13 2011 Tim Lauridsen <timlau@fedoraproject.org>
|
||||
* Sat Aug 13 2011 Tim Lauridsen <timlau@fedoraproject.org>
|
||||
- fix traceback in auto-update-debuginfo plugin (rhbz #729982)
|
||||
|
||||
* Thu Aug 10 2011 Tim Lauridsen <timlau@fedoraproject.org>
|
||||
* Wed Aug 10 2011 Tim Lauridsen <timlau@fedoraproject.org>
|
||||
- mark as 1.1.31
|
||||
- remove patches
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue