[yum-cvs] /yum-utils/docs yum-changelog.1, NONE, 1.1 yum-changelog.conf.5, NONE, 1.1 Makefile, 1.3, 1.4
Tim Lauridsen
timlau at linux.duke.edu
Thu Feb 8 13:13:28 UTC 2007
Update of /home/groups/yum/cvs//yum-utils/docs
In directory login1.linux.duke.edu:/tmp/cvs-serv21318/docs
Modified Files:
Makefile
Added Files:
yum-changelog.1 yum-changelog.conf.5
Log Message:
Added yum-changelog man pages by Chitlesh GOORAH and changed the docs Makefile to install them.
--- NEW FILE yum-changelog.1 ---
.\" PROCESS THIS FILE WITH
.\" groff -man -Tascii yum-changelog.1
.\"
.TH YUM-CHANGELOG 1 "08 FEBRUARY 2007" "" "User Manuals"
.SH NAME
.B yum-changelog
.SH SYNOPSIS
The
.B yum-changelog
package
.SH DESCRIPTION
.BR yum-changelog(1)
is a Yum plugin for viewing package changelogs before/after updating.
yum will invoke
.BR yum-changelog(1)
plugin if the
.B --changelog
option is used with yum.
.SH OPTIONS
.IP --changelog
Show changelog delta of updated packages
.SH FILES
.I /etc/yum/pluginconf.d/changelog.conf
.RS
The system wide configuration file. See
.BR yum-changelog.conf(5)
for more information.
.RE
.SH EXAMPLES
# yum update ktechlab
.B --changelog
.br
Loading "changelog" plugin
.br
Setting up Update Process
.br
Setting up repositories
.br
[..]
.br
Resolving Dependencies
.br
--> Populating transaction set with selected packages. Please wait.
.br
---> Package ktechlab.i386 0:0.3-6 set to be updated
.br
--> Running transaction check
Changes in packages about to be updated:
ktechlab - 0.3-6.i386
.br
* Wed Nov 22 23:00:00 2006 Chitlesh Goorah - 0.3-6
.br
- Rebuilt due to new gpsim-devel release
.br
.SH "FILES"
As yumdownloader uses YUM libraries for retrieving all the information, it
relies on YUM configuration for its default values like which repositories
to use. Consult YUM documentation for details:
.PP
.nf
/etc/yum.conf
/etc/yum/repos.d/
/var/cache/yum/
.fi
.SH BUGS
If you happen to run across a bug, you can report it via yum at lists.linux.duke.edu or filed in bugzilla.
.SH AVAILABILITY
yum-changelog is available via:
.nf
# yum install yum-changelog
.fi
.SH AUTHOR
.RS
Chitlesh Goorah <chitlesh at fedoraproject.org>
.SH "SEE ALSO"
.BR yum(1)
--- NEW FILE yum-changelog.conf.5 ---
.\" PROCESS THIS FILE WITH
.\" groff -man -Tascii yum-changelog.conf.5
.\"
.TH YUM-CHANGELOG.CONF 5 "08 FEBRUARY 2007" "" "File Formats"
.SH NAME
.B yum-changelog.conf(5)
.SH SYNOPSIS
.B yum-changelog.conf(5)
is the configuration file for
.B yum-changelog(1)
Yum plugin for viewing package changelogs before/after updating.
By default, this plugin will show the changelogs before the updates.
.SH FILES
.I /etc/yum/pluginconf.d/changelog.conf
.SH FILE FORMAT
.B yum-changelog.conf(5)
utilizes configuration options in the form of
.IP OPTION=VALUE
.SH OPTION
.IP WHEN
This option reflects when
.B yum-changelog(1)
will allow changelog viewing during yum updates.
.SH VALUE
.IP PRE
To make
.B yum-changelog(5)
show the changelog
.B before
the yum updates
.IP POST
To make
.B yum-changelog(5)
show the changelog
.B after
the yum updates.
.SH AUTHOR
.RS
Chitlesh Goorah <chitlesh at fedoraproject.org>
.RS
.SH SEE ALSO
.BR yum-changelog(1)
Index: Makefile
===================================================================
RCS file: /home/groups/yum/cvs//yum-utils/docs/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Makefile 12 Jan 2006 16:16:12 -0000 1.3
+++ Makefile 8 Feb 2007 13:13:25 -0000 1.4
@@ -1,4 +1,5 @@
-DOCS = repoquery package-cleanup repo-rss yumdownloader yum-builddep
+DOCS = repoquery package-cleanup repo-rss yumdownloader yum-builddep yum-changelog
+DOCS5 = yum-changelog.conf
all:
echo "Nothing to do"
@@ -8,6 +9,11 @@
install:
mkdir -p $(DESTDIR)/usr/share/man/man1
+ mkdir -p $(DESTDIR)/usr/share/man/man5
for doc in $(DOCS); do \
install -m 644 $$doc.1 $(DESTDIR)/usr/share/man/man1/; \
done
+ for doc in $(DOCS5); do \
+ install -m 644 $$doc.5 $(DESTDIR)/usr/share/man/man5/; \
+ done
+
\ No newline at end of file
More information about the Yum-cvs-commits
mailing list