From 65f6f1447c4021ce54c4e8e8e9301661df42187e Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Tue, 31 Oct 2006 14:33:08 +0000 Subject: [PATCH 1/8] 1.0.1 --- .cvsignore | 1 + sources | 1 + yum-utils.spec | 28 +++++++++++++++++++++++++--- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index d23967e..33cdca3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1,2 @@ yum-utils-1.0.tar.gz +yum-utils-1.0.1.tar.gz diff --git a/sources b/sources index f4c721f..ba1ead0 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ e9af7d38f47e5d2cd945790061fa5f8b yum-utils-1.0.tar.gz +53ba387a337b605c5490eac8229da32d yum-utils-1.0.1.tar.gz diff --git a/yum-utils.spec b/yum-utils.spec index dfce1a4..30f6dfb 100644 --- a/yum-utils.spec +++ b/yum-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities based around the yum package manager Name: yum-utils -Version: 1.0 -Release: 2%{?dist} +Version: 1.0.1 +Release: 1%{?dist} License: GPL Group: Development/Tools Source: http://linux.duke.edu/yum/download/yum-utils/%{name}-%{version}.tar.gz @@ -120,6 +120,16 @@ Requires: yum >= 3.0 This plugin adds a --ignore-broken to yum to make it possible to check packages for dependency problems and skip the one with problems. +%package -n yum-priorities +Summary: plugin to give priorities to packages from different repos +Group: System Environment/Base +Requires: yum >= 3.0 + +%description -n yum-priorities +This plugin allows repositories to have different priorities. +Packages in a repository with a lower priority can't be overridden by packages +from a repository with a higher priority even if repo has a later version. + %prep %setup -q @@ -129,7 +139,7 @@ make DESTDIR=$RPM_BUILD_ROOT install make -C updateonboot DESTDIR=$RPM_BUILD_ROOT install # Plugins to install -plugins="changelog fastestmirror fedorakmod protectbase versionlock tsflags kernel-module downloadonly allowdowngrade skip-broken" +plugins="changelog fastestmirror fedorakmod protectbase versionlock tsflags kernel-module downloadonly allowdowngrade skip-broken priorities" mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/yum/pluginconf.d/ $RPM_BUILD_ROOT/usr/lib/yum-plugins/ cd plugins @@ -223,7 +233,19 @@ fi %config(noreplace) %{_sysconfdir}/yum/pluginconf.d/skip-broken.conf /usr/lib/yum-plugins/skip-broken.* +%files -n yum-priorities +%defattr(-, root, root) +%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/priorities.conf +/usr/lib/yum-plugins/priorities.* + + %changelog +* Tue Oct 31 2006 Tim Lauridsen +- mark it as 1.0.1 + +* Fri Oct 27 2006 Tim Lauridsen +- Added priorities plugin written by Daniel de Kok + * Wed Oct 4 2006 Seth Vidal - mark it as 1.0 - change requires for the packages to yum 3.0 From 94fb8044f0da8358da1917b20962ac1395428cc1 Mon Sep 17 00:00:00 2001 From: Tim Lauridsen Date: Tue, 6 Feb 2007 11:06:51 +0000 Subject: [PATCH 2/8] yum-utils release 1.0.2 --- sources | 3 +-- yum-utils.spec | 9 ++++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/sources b/sources index ba1ead0..15949e8 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -e9af7d38f47e5d2cd945790061fa5f8b yum-utils-1.0.tar.gz -53ba387a337b605c5490eac8229da32d yum-utils-1.0.1.tar.gz +3d63ecea2d0472ca2e1d893e7b5bfb78 yum-utils-1.0.2.tar.gz diff --git a/yum-utils.spec b/yum-utils.spec index 30f6dfb..d905f93 100644 --- a/yum-utils.spec +++ b/yum-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities based around the yum package manager Name: yum-utils -Version: 1.0.1 -Release: 1%{?dist} +Version: 1.0.2 +Release: 1 License: GPL Group: Development/Tools Source: http://linux.duke.edu/yum/download/yum-utils/%{name}-%{version}.tar.gz @@ -157,7 +157,7 @@ rm -rf $RPM_BUILD_ROOT %preun -n yum-updateonboot if [ $1 = 0 ]; then /sbin/service yum-updateonboot stop >/dev/null 2>&1 || :; - /sbin/chkconfig --del yum >/dev/null 2>&1 || :; + /sbin/chkconfig --del yum-updateonboot >/dev/null 2>&1 || :; fi %files @@ -240,6 +240,9 @@ fi %changelog +* Sun Dec 31 2006 Tim Lauridsen +- mark it as 1.0.2 + * Tue Oct 31 2006 Tim Lauridsen - mark it as 1.0.1 From 051e0f53030e0ec9afdff0b3e328c756a1cc9467 Mon Sep 17 00:00:00 2001 From: Tim Lauridsen Date: Tue, 6 Feb 2007 11:17:54 +0000 Subject: [PATCH 3/8] Added dist tag and bumped release --- yum-utils.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/yum-utils.spec b/yum-utils.spec index d905f93..a4a54eb 100644 --- a/yum-utils.spec +++ b/yum-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities based around the yum package manager Name: yum-utils Version: 1.0.2 -Release: 1 +Release: 2%{?dist} License: GPL Group: Development/Tools Source: http://linux.duke.edu/yum/download/yum-utils/%{name}-%{version}.tar.gz @@ -240,6 +240,10 @@ fi %changelog + +* Tue Feb 6 2007 Tim Lauridsen +- bumped release and added %%{dist} tag + * Sun Dec 31 2006 Tim Lauridsen - mark it as 1.0.2 From ce0c7a47cda1cf76d1a10344a6259fc7e12f8d39 Mon Sep 17 00:00:00 2001 From: Tim Lauridsen Date: Mon, 19 Feb 2007 10:11:37 +0000 Subject: [PATCH 4/8] yum-utils release 1.0.3 --- .cvsignore | 3 +-- sources | 2 +- yum-utils.spec | 26 ++++++++++++++++++++++---- 3 files changed, 24 insertions(+), 7 deletions(-) diff --git a/.cvsignore b/.cvsignore index 33cdca3..2c7571d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,2 +1 @@ -yum-utils-1.0.tar.gz -yum-utils-1.0.1.tar.gz +yum-utils-1.0.3.tar.gz diff --git a/sources b/sources index 15949e8..5f5bafd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3d63ecea2d0472ca2e1d893e7b5bfb78 yum-utils-1.0.2.tar.gz +045295ff480b9761d04ac5e07896ff77 yum-utils-1.0.3.tar.gz diff --git a/yum-utils.spec b/yum-utils.spec index a4a54eb..9c3c00d 100644 --- a/yum-utils.spec +++ b/yum-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities based around the yum package manager Name: yum-utils -Version: 1.0.2 -Release: 2%{?dist} +Version: 1.0.3 +Release: 1%{?dist} License: GPL Group: Development/Tools Source: http://linux.duke.edu/yum/download/yum-utils/%{name}-%{version}.tar.gz @@ -117,7 +117,7 @@ Group: System Environment/Base Requires: yum >= 3.0 %description -n yum-skip-broken -This plugin adds a --ignore-broken to yum to make it possible to +This plugin adds a --skip-broken to yum to make it possible to check packages for dependency problems and skip the one with problems. %package -n yum-priorities @@ -187,6 +187,8 @@ fi %defattr(-, root, root) %config(noreplace) %{_sysconfdir}/yum/pluginconf.d/changelog.conf /usr/lib/yum-plugins/changelog.* +%{_mandir}/man1/yum-changelog.1.* +%{_mandir}/man5/yum-changelog.conf.5.* %files -n yum-fastestmirror %defattr(-, root, root) @@ -240,9 +242,25 @@ fi %changelog +* Mon Feb 19 2007 Tim Lauridsen +- Added %%{?dist} tag again + +* Mon Feb 19 2007 Tim Lauridsen +- mark it as 1.0.3 +- Removed %%{?dist} tag + +* Thu Feb 15 2007 Tim Lauridsen +- removed versionlock.list installation. + +* Wed Feb 14 2007 Tim Lauridsen +- Added versionlock.list installation. +- fixed skip-broken description (--ignore-broken -> --skip-broken) + +* Thu Feb 8 2007 Tim Lauridsen +- Added man dirs to yum-changelog files section * Tue Feb 6 2007 Tim Lauridsen -- bumped release and added %%{dist} tag +- Added %%{?dist} tag * Sun Dec 31 2006 Tim Lauridsen - mark it as 1.0.2 From 651e02cbb63190c4e67580aa1c25ba929f1d22f0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 29 Jun 2007 21:33:19 +0000 Subject: [PATCH 5/8] Initialize branch EL-5 for yum-utils --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From 05f9062adc66d86a027f8cc3fb104fc2dd7bdb5c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:12:44 +0000 Subject: [PATCH 6/8] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3564d2f..fb4e6f8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := yum-utils SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 4b47a0c5e17c1ee47662117542d2635533ab2067 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 18:32:20 +0000 Subject: [PATCH 7/8] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index fb4e6f8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: yum-utils -# $Id$ -NAME := yum-utils -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 From a8a149adb7e329f2cfcbe7f84446f82a2068f8c7 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sat, 18 Oct 2014 23:41:13 +0200 Subject: [PATCH 8/8] 2014-10-18: Retired, because it was orphaned and not available in the EPEL5 repo --- .gitignore | 1 - dead.package | 2 + sources | 1 - yum-utils.spec | 338 ------------------------------------------------- 4 files changed, 2 insertions(+), 340 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 yum-utils.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 2c7571d..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -yum-utils-1.0.3.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..d9f2c42 --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +2014-10-18: Retired, because it was orphaned and not available in the EPEL5 repo + diff --git a/sources b/sources deleted file mode 100644 index 5f5bafd..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -045295ff480b9761d04ac5e07896ff77 yum-utils-1.0.3.tar.gz diff --git a/yum-utils.spec b/yum-utils.spec deleted file mode 100644 index 9c3c00d..0000000 --- a/yum-utils.spec +++ /dev/null @@ -1,338 +0,0 @@ -Summary: Utilities based around the yum package manager -Name: yum-utils -Version: 1.0.3 -Release: 1%{?dist} -License: GPL -Group: Development/Tools -Source: http://linux.duke.edu/yum/download/yum-utils/%{name}-%{version}.tar.gz -URL: http://linux.duke.edu/yum/download/yum-utils/ -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -Requires: python >= 2.4 , yum >= 3.0 - -%description -yum-utils is a collection of utilities and examples for the yum package -manager. It includes utilities by different authors that make yum easier and -more powerful to use. - -%package -n yum-updateonboot -Summary: Run yum update on system boot -Group: System Environment/Base -Requires: python, yum >= 2.4 -Requires(pre): chkconfig -Requires(post): chkconfig - -%description -n yum-updateonboot -Runs yum update on system boot. This allows machines that have been turned -off for an extended amount of time to become secure immediately, instead of -waiting until the next early morning cron job. - -%package -n yum-changelog -Summary: Yum plugin for viewing package changelogs before/after updating -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-changelog -This plugin adds a command line option to allow viewing package changelog -deltas before or after updating packages. - -%package -n yum-fastestmirror -Summary: Yum plugin which chooses fastest repository from a mirrorlist -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-fastestmirror -This plugin sorts each repository's mirrorlist by connection speed -prior to downloading packages. - -%package -n yum-fedorakmod -Summary: Yum plugin to handle fedora kernel modules. -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-fedorakmod -Plugin for Yum to handle installation of kmod-foo type of kernel modules, when new kernel versions -are installed. -kmod-foo kernel modules is described by the Fedora Extras packaging standards. - -%package -n yum-protectbase -Summary: Yum plugin to protect packages from certain repositories. -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-protectbase -This plugin allows certain repositories to be protected. Packages in the -protected repositories can't be overridden by packages in non-protected -repositories even if the non-protected repo has a later version. - -%package -n yum-versionlock -Summary: Yum plugin to lock specified packages from being updated -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-versionlock -This plugin allows certain packages specified in a file to be protected from being updated by -newer versions. - -%package -n yum-tsflags -Summary: Yum plugin to add tsflags by a commandline option -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-tsflags -This plugin allows you to specify optional transaction flags on the yum -command line - -%package -n yum-kernel-module -Summary: Yum plugin to handle kernel-module-foo type of kernel module -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-kernel-module -This plugin handle installation of kernel-module-foo type of kernel modules when new version of -kernels are installed. - - -%package -n yum-downloadonly -Summary: Yum plugin to add downloadonly command option -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-downloadonly -This plugin adds a --downloadonly flag to yum so that yum will only download -the packages and not install/update them. - -%package -n yum-allowdowngrade -Summary: Yum plugin to enable manual downgrading of packages -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-allowdowngrade -This plugin adds a --allow-downgrade flag to yum to make it possible to -manually downgrade packages to specific versions. - -%package -n yum-skip-broken -Summary: Yum plugin to handle skiping packages with dependency problems -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-skip-broken -This plugin adds a --skip-broken to yum to make it possible to -check packages for dependency problems and skip the one with problems. - -%package -n yum-priorities -Summary: plugin to give priorities to packages from different repos -Group: System Environment/Base -Requires: yum >= 3.0 - -%description -n yum-priorities -This plugin allows repositories to have different priorities. -Packages in a repository with a lower priority can't be overridden by packages -from a repository with a higher priority even if repo has a later version. - -%prep -%setup -q - -%install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install -make -C updateonboot DESTDIR=$RPM_BUILD_ROOT install - -# Plugins to install -plugins="changelog fastestmirror fedorakmod protectbase versionlock tsflags kernel-module downloadonly allowdowngrade skip-broken priorities" -mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/yum/pluginconf.d/ $RPM_BUILD_ROOT/usr/lib/yum-plugins/ - -cd plugins -for plug in $plugins; do - install -m 644 $plug/*.conf $RPM_BUILD_ROOT/%{_sysconfdir}/yum/pluginconf.d/ - install -m 644 $plug/*.py $RPM_BUILD_ROOT/usr/lib/yum-plugins/ -done - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -n yum-updateonboot -/sbin/chkconfig --add yum-updateonboot >/dev/null 2>&1 || :; - -%preun -n yum-updateonboot -if [ $1 = 0 ]; then - /sbin/service yum-updateonboot stop >/dev/null 2>&1 || :; - /sbin/chkconfig --del yum-updateonboot >/dev/null 2>&1 || :; -fi - -%files -%defattr(-, root, root) -%doc README -%doc COPYING -%doc plugins/README -%{_bindir}/package-cleanup -%{_bindir}/repoclosure -%{_bindir}/repomanage -%{_bindir}/repoquery -%{_bindir}/repotrack -%{_bindir}/reposync -%{_bindir}/repo-graph -%{_bindir}/repo-rss -%{_bindir}/yumdownloader -%{_bindir}/yum-builddep -%{_mandir}/man1/* - -%files -n yum-updateonboot -%defattr(-, root, root) -%doc updateonboot/README -%config(noreplace) %{_sysconfdir}/sysconfig/yum-updateonboot -%{_initrddir}/yum-updateonboot - -%files -n yum-changelog -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/changelog.conf -/usr/lib/yum-plugins/changelog.* -%{_mandir}/man1/yum-changelog.1.* -%{_mandir}/man5/yum-changelog.conf.5.* - -%files -n yum-fastestmirror -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/fastestmirror.conf -/usr/lib/yum-plugins/fastestmirror.* - -%files -n yum-fedorakmod -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/fedorakmod.conf -/usr/lib/yum-plugins/fedorakmod.* - -%files -n yum-protectbase -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/protectbase.conf -/usr/lib/yum-plugins/protectbase.* - -%files -n yum-versionlock -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/versionlock.conf -/usr/lib/yum-plugins/versionlock.* - -%files -n yum-tsflags -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/tsflags.conf -/usr/lib/yum-plugins/tsflags.* - -%files -n yum-kernel-module -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/kernel-module.conf -/usr/lib/yum-plugins/kernel-module.* - -%files -n yum-downloadonly -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/downloadonly.conf -/usr/lib/yum-plugins/downloadonly.* - -%files -n yum-allowdowngrade -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/allowdowngrade.conf -/usr/lib/yum-plugins/allowdowngrade.* - -%files -n yum-skip-broken -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/skip-broken.conf -/usr/lib/yum-plugins/skip-broken.* - -%files -n yum-priorities -%defattr(-, root, root) -%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/priorities.conf -/usr/lib/yum-plugins/priorities.* - - -%changelog -* Mon Feb 19 2007 Tim Lauridsen -- Added %%{?dist} tag again - -* Mon Feb 19 2007 Tim Lauridsen -- mark it as 1.0.3 -- Removed %%{?dist} tag - -* Thu Feb 15 2007 Tim Lauridsen -- removed versionlock.list installation. - -* Wed Feb 14 2007 Tim Lauridsen -- Added versionlock.list installation. -- fixed skip-broken description (--ignore-broken -> --skip-broken) - -* Thu Feb 8 2007 Tim Lauridsen -- Added man dirs to yum-changelog files section - -* Tue Feb 6 2007 Tim Lauridsen -- Added %%{?dist} tag - -* Sun Dec 31 2006 Tim Lauridsen -- mark it as 1.0.2 - -* Tue Oct 31 2006 Tim Lauridsen -- mark it as 1.0.1 - -* Fri Oct 27 2006 Tim Lauridsen -- Added priorities plugin written by Daniel de Kok - -* Wed Oct 4 2006 Seth Vidal -- mark it as 1.0 -- change requires for the packages to yum 3.0 - -* Wed Sep 27 2006 Tim Lauridsen -- added skip-broken plugin - -* Tue Sep 05 2006 Panu Matilainen -- added allowdowngrade plugin - -* Sun Aug 13 2006 Seth Vidal -- fix the plugins/ doc issue - -* Sat May 6 2006 Seth Vidal -- bump version number -- added yum-downloadonly plugin -- fix minor item in tsflags description - -* Sat Apr 29 2006 Seth Vidal -- add reposync - -* Fri Apr 28 2006 Tim Lauridsen -- added yum-fedorakmod plugin subpackage -- added yum-protectbase plugin subpackage. -- added yum-versionlock plugin subpackage. -- added yum-tsflags plugin subpackage. -- added yum-kernel-module plugin subpackage -- changed .py to .* in files sections for plugin subpackages to build rpms without error. - -* Thu Feb 23 2006 Seth Vidal -- changed some of the yum version dependencies - -* Fri Feb 10 2006 Seth Vidal -- added repotrack to utils -- bumped version for 2.5.X-compatible release - -* Tue Jan 10 2006 Brian Long -- bump version to 0.4 -- add yum-fastestmirror subpackage - -* Mon Oct 17 2005 Panu Matilainen -- add repoquery man page - -* Sat Sep 17 2005 Panu Matilainen -- version 0.3.1 -- various enhancements and fixes to repoquery -- avoid tracebacks in yumex and pup when changelog plugin is enabled - -* Mon Jul 25 2005 Panu Matilainen -- bump version to 0.3 -- add yum-changelog subpackage -- add plugins as documentation to the main package -- require yum >= 2.3.4 (for getCacheDir) - -* Tue Jun 21 2005 Gijs Hollestelle -- Added missing GPL COPYING file - -* Wed Jun 1 2005 Seth Vidal -- 0.2 - -* Mon May 23 2005 Panu Matilainen -- add yum-updateboot subpackage - -* Mon May 16 2005 Gijs Hollestelle -- first version based on the mock spec file