[yum-commits] 5 commits - docs/yum-utils.1 plugins/aliases plugins/security

James Antill james at osuosl.org
Wed Aug 3 19:00:09 UTC 2011


 docs/yum-utils.1             |   13 +++++++++++--
 plugins/aliases/aliases      |    5 ++++-
 plugins/security/security.py |    2 +-
 3 files changed, 16 insertions(+), 4 deletions(-)

New commits:
commit 0963d2b54ec68b4cb14ed472ee4cf226545cff57
Author: Shawn Starr <shawn.starr at rogers.com>
Date:   Wed Aug 3 14:59:59 2011 -0400

    Update yum-utils man page, to add new utils.

diff --git a/docs/yum-utils.1 b/docs/yum-utils.1
index 422b9fb..fa830b6 100644
--- a/docs/yum-utils.1
+++ b/docs/yum-utils.1
@@ -1,9 +1,11 @@
-.TH "yum-utils" "1" "18 March 2008" "yum-utils" ""
+.TH "yum-utils" "1" "August 2011" "yum-utils" ""
 .SH "NAME"
 yum\-utils \- tools for manipulating repositories and extended package management
 .SH "SYNOPSIS"
 .nf 
 \fBdebuginfo\-install\fR \- install debuginfo packages and their dependencies
+\fBfind-repos-of-install\fR \- report which repository the package was installed from
+\fBneeds-restarting\fR \- report process ids that started running before they or some component they use were updated
 \fBpackage\-cleanup\fR \- manage package cleanup, duplicates, orphaned packages and outstanding dependency problems
 \fBrepo\-graph\fR \- outputs a full package dependency list in dot format 
 \fBrepo\-rss\fR \- generates an RSS feed from one or more repositories
@@ -13,9 +15,16 @@ yum\-utils \- tools for manipulating repositories and extended package managemen
 \fBrepoquery\fR \- query yum repositories and get additional information on the them
 \fBreposync\fR \- synchronize a remote yum repository to a local directory using yum to retrieve packages
 \fBrepotrack\fR \- track packages and its dependencies and downloads them
+\fBshow-installed\fR \- gives a compact description of packages installed and makes use of comps groups in repositories
+\fBverifytree\fR - verify that a local yum repository is consistent
 \fByum\-builddep\fR \- installs missing dependencies to build a specified package
 \fByum\-complete\-transaction\fR \- finds incomplete or aborted yum transactions and attempts to complete them
+\fByum\-config\-manager\fR \- toggle yum repositories, add new repositories and set main yum configuration options
+\fByum\-debug\-dump\fR \- creates gzipped file containing information for debugging problems
+\fByum\-debug\-restore\fR \- replays any transactions captured in gzipped file in yum shell
+\fByum\-groups\-manager\fR \- create and edit yum's group metadata
 \fByum\-installed\fR \- print a compact package list making use of comps groups 
+\fByumdb\fR \- query or alter the yum database
 \fByumdownloader\fR \- downloads packages from yum repositories including source RPMs
 .SH "DESCRIPTION"
 .B yum\-utils
@@ -23,6 +32,6 @@ is a collection of tools and programs for managing yum repositories, installing
 .SH "NOTES"
 See respective tools for additional help for commands without a manual page
 .SH "SEE ALSO"
-package\-cleanup(1), repo\-rss(1), repoquery(1), reposync(1), yum\-builddep(1), yum\-complete\-transaction(8), yumdownloader(1)
+debuginfo\-install(1), package\-cleanup(1), repodiff(1), repoquery(1), reposync(1), repo\-rss(1), yumdownloader(1), yum\-builddep(1), yum\-debug\-dump(1), yum\-groups\-manager(1), yumdb(8), yum\-complete\-transaction(8)
 .SH "AUTHOR"
 Shawn Starr <shawn.starr at rogers.com>
commit d085d56d8b26c1540e7dd33cc995363eb1c1fa55
Merge: fb3d4e0 2aac1b1
Author: James Antill <james at and.org>
Date:   Mon Jul 25 11:24:38 2011 -0400

    Merge branch 'master' of ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils
    
    * 'master' of ssh://yum.baseurl.org/srv/projects/yum/git/yum-utils: (3 commits)
      typo leaving .conf in ybc.conf.yumvar should just be ybc.yumvar
      ...

commit fb3d4e047a2beac509345a320b56f47b55cf5264
Author: James Antill <james at and.org>
Date:   Mon Jul 25 11:24:27 2011 -0400

    Add some new aliases, fix chkD.

diff --git a/plugins/aliases/aliases b/plugins/aliases/aliases
index ff2809a..e2dc2a3 100644
--- a/plugins/aliases/aliases
+++ b/plugins/aliases/aliases
@@ -60,9 +60,12 @@ hp history package-list
 
 rl repolist
 
+g group
 gi groupinfo
 gl grouplist
 
+u updateinfo
+
 dbg-install DBG install
 dbg-inst    DBG inst
 
@@ -72,7 +75,7 @@ dbg-inst    DBG inst
 # lsT UPT ls
 # lsD DEV ls
 # chkT UPT chk
-# chkD UPT chk
+# chkD DEV chk
 # 
 # lsuT lsT updates
 # lsuD lsD updates
commit 14a42eb66366581f0f8da4d211158729b63c61eb
Author: James Antill <james at and.org>
Date:   Tue Jul 12 15:59:05 2011 -0400

    Also auto-apply --security when given --sec-severity for other commands.

diff --git a/plugins/security/security.py b/plugins/security/security.py
index 6b6a92c..a60cf9b 100755
--- a/plugins/security/security.py
+++ b/plugins/security/security.py
@@ -679,7 +679,7 @@ def ysp_check_func_enter(conduit):
     opts, args = conduit.getCmdLine()
 
     ndata = not (opts.security or opts.bugfixes or
-                 opts.advisory or opts.bz or opts.cve)
+                 opts.advisory or opts.bz or opts.cve or opts.severity)
     
     ret = None
     if len(args) >= 2:
commit 18d4ffdc4081907a2bc40af51f5ca5844ead5c31
Author: James Antill <james at and.org>
Date:   Wed Jul 6 15:09:05 2011 -0400

    Fix typo

diff --git a/repoquery.py b/repoquery.py
index 2be0971..a3bb111 100755
--- a/repoquery.py
+++ b/repoquery.py
@@ -918,7 +918,7 @@ class YumBaseQuery(yum.YumBase):
                     nitems.extend(grp.group.packages)
                 # Give warning when no matches?
                 continue
-            nitmes.append(item)
+            nitems.append(item)
         return nitems
 
     def runQuery(self, items):


More information about the Yum-commits mailing list