* [gentoo-commits] proj/eselect:master commit in: man/, /
@ 2013-08-05 7:43 Ulrich Mueller
0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller @ 2013-08-05 7:43 UTC (permalink / raw
To: gentoo-commits
commit: de9c960a88751416fdd60b560a3fc2d7fa151c7f
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 5 06:43:51 2013 +0000
Commit: Ulrich Mueller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 5 06:43:51 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=de9c960a
Remove stale man page for bashcomp module.
* man/bashcomp.eselect.5: Remove stale man page.
* man/Makefile.am (man_MANS): Remove bashcomp.eselect.5 from list.
---
ChangeLog | 5 ++++
man/Makefile.am | 1 -
man/bashcomp.eselect.5 | 66 --------------------------------------------------
3 files changed, 5 insertions(+), 67 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 411b9b9..8f1bfff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-05 Ulrich Müller <ulm@gentoo.org>
+
+ * man/bashcomp.eselect.5: Remove stale man page.
+ * man/Makefile.am (man_MANS): Remove bashcomp.eselect.5 from list.
+
2013-07-16 Ulrich Müller <ulm@gentoo.org>
* configure.ac: Update version to 1.3.7.
diff --git a/man/Makefile.am b/man/Makefile.am
index f4c5e88..fa9964c 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,6 +1,5 @@
man_MANS = \
eselect.1 \
- bashcomp.eselect.5 \
binutils.eselect.5 \
editor.eselect.5 \
env.eselect.5 \
diff --git a/man/bashcomp.eselect.5 b/man/bashcomp.eselect.5
deleted file mode 100644
index eb87dcd..0000000
--- a/man/bashcomp.eselect.5
+++ /dev/null
@@ -1,66 +0,0 @@
-.\" Copyright 2005-2013 Gentoo Foundation
-.\" Distributed under the terms of the GNU GPL version 2 or later
-.\"
-.TH bashcomp.eselect 5 "April 2009" "Gentoo Linux" eselect
-.SH NAME
-bashcomp.eselect \- Manage contributed bash-completion scripts
-.SH SYNOPSIS
-.B eselect bashcomp
-.RB [ help | usage | version ]
-.br
-.B eselect bashcomp list
-.RB [ \-\-global ]
-.br
-.B eselect bashcomp enable
-.RB [ \-\-global ]
-.RI [ bashcomp ...]
-.br
-.B eselect bashcomp disable
-.RB [ \-\-global ]
-.RI [ bashcomp ...]
-.SH DESCRIPTION
-.B eselect
-is Gentoo's configuration and management tool. It features modules
-that care for individual administrative tasks.
-.SH ACTION: LIST
-.B eselect bashcomp list
-.RB [ \-\-global ]
-.br
-Display a list of available contributed bash-completion scripts.
-Enabled bash-completions are marked with a '*'. If the
-.B \-\-global
-option is specified, list globally enabled completions.
-
-$ eselect bashcomp list
-.br
-Available completions:
- [1] bitkeeper
- [2] cowsay *
-.SH ACTION: ENABLE
-.B eselect bashcomp enable
-.RB [ \-\-global ]
-.RI [ bashcomp ...]
-.br
-Enable the specified completion(s). Arguments may be a completion
-name or a corresponding number produced by
-.B eselect bashcomp
-.BR list .
-If the
-.B \-\-global
-option is specified, enable globally (for all users).
-.SH ACTION: DISABLE
-.B eselect bashcomp disable
-.RB [ \-\-global ]
-.RI [ bashcomp ...]
-.br
-Disable the specified completion(s). Arguments may be a completion
-name or a corresponding number produced by
-.B eselect bashcomp
-.BR list .
-If the
-.B \-\-global
-option is specified, disable globally (for all users).
-.SH AUTHOR
-Aaron Walker <ka0ttic@gentoo.org>
-.SH SEE ALSO
-.BR eselect (1)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/eselect:master commit in: man/, /
@ 2013-08-24 22:03 Ulrich Mueller
0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller @ 2013-08-24 22:03 UTC (permalink / raw
To: gentoo-commits
commit: ce2087d6d77a76e23d38b6e6f5c7941a94687943
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 22:02:37 2013 +0000
Commit: Ulrich Mueller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 22:04:34 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=ce2087d6
Use relative symlinks for man pages.
* man/Makefile.am (install-symlink-%): Use relative symlinks.
---
ChangeLog | 2 ++
man/Makefile.am | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 0192116..e7b835e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2013-08-24 Ulrich Müller <ulm@gentoo.org>
+ * man/Makefile.am (install-symlink-%): Use relative symlinks.
+
* modules/rc.eselect (source_rc_functions): Drop baselayout-1
compatibility code.
diff --git a/man/Makefile.am b/man/Makefile.am
index fa9964c..f93b85b 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -20,5 +20,5 @@ install-data-local : $(foreach f, $(symlinks), install-symlink-$(f))
install-symlink-% : install-man
ln -snf \
- $(mandir)/man5/$(shell echo $* | $(dosed)) \
+ ../man5/$(shell echo $* | $(dosed)) \
$(DESTDIR)$(mandir)/man1/$*.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/eselect:master commit in: man/, /
@ 2014-02-18 22:18 Ulrich Müller
0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Müller @ 2014-02-18 22:18 UTC (permalink / raw
To: gentoo-commits
commit: fa6cd18849f67800e9da3e96b966bdfd7f919c9f
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 18 22:12:10 2014 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Feb 18 22:12:10 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=fa6cd188
Update URI of GLEP 42.
* man/news.eselect.5: Update URI of GLEP 42.
---
ChangeLog | 4 ++++
man/news.eselect.5 | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3c618bd..0c7a8cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-02-18 Ulrich Müller <ulm@gentoo.org>
+
+ * man/news.eselect.5: Update URI of GLEP 42.
+
2014-02-15 Ulrich Müller <ulm@gentoo.org>
* configure.ac: Update version to 1.4.1.
diff --git a/man/news.eselect.5 b/man/news.eselect.5
index 187bdbd..d4bfa06 100644
--- a/man/news.eselect.5
+++ b/man/news.eselect.5
@@ -2,7 +2,7 @@
.\" Copyright 2009-2014 Gentoo Foundation
.\" Distributed under the terms of the GNU GPL version 2 or later
.\"
-.TH news.eselect 5 "October 2011" "Gentoo Linux" eselect
+.TH news.eselect 5 "February 2014" "Gentoo Linux" eselect
.SH NAME
news.eselect \- The GLEP 42 newsreader module for Gentoo's eselect
.SH SYNOPSIS
@@ -92,4 +92,4 @@ is given.
Ulrich Müller <ulm@gentoo.org>
.SH SEE ALSO
.BR eselect (1),
-http://www.gentoo.org/proj/en/glep/glep-0042.html
+http://wiki.gentoo.org/wiki/GLEP:42
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-02-18 22:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-18 22:18 [gentoo-commits] proj/eselect:master commit in: man/, / Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2013-08-24 22:03 Ulrich Mueller
2013-08-05 7:43 Ulrich Mueller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox