| Bug #65113 | build missing man pages | ||
|---|---|---|---|
| Submitted: | 26 Apr 2012 10:51 | Modified: | 25 Sep 2012 14:18 |
| Reporter: | Dmitry Smirnov | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Utilities | Severity: | S3 (Non-critical) |
| Version: | 1.0.5 | OS: | Any |
| Assigned to: | CPU Architecture: | Any | |
| Tags: | Contribution | ||
[26 Apr 2012 10:52]
Dmitry Smirnov
patch to build missing MAN pages
Attachment: man_pages.patch (text/x-patch), 740 bytes.
[26 Apr 2012 18:26]
Sveta Smirnova
Thank you for the report. Verified as described.
[9 Jul 2012 19:16]
Chuck Bell
Will be fixed in release 1.0.6.
[25 Sep 2012 14:18]
Chuck Bell
fixed in 1.0.6

Description: Not all MAN pages are built in recent mysql-utilties release. The attached patch addresses the problem. Thanks. How to repeat: build mysql-utilitied from source; note the absence of man pages for mysqlfailover and mysqlrpladmin Suggested fix: Last-Update: 2012-04-11 Author: Dmitry Smirnov <onlyjob@member.fsf.org> Forwarded: 2012-04-26 Description: build missing man pages --- a/doc/conf.py +++ b/doc/conf.py @@ -213,6 +213,12 @@ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ + ('man/mysqlfailover', 'mysqlfailover', + u'Automatic replication health monitoring and failover', + [u'MySQL Utilities Team'], 1), + ('man/mysqlrpladmin', 'mysqlrpladmin', + u'Administration utility for MySQL replication', + [u'MySQL Utilities Team'], 1), ('man/mysqldbcompare', 'mysqldbcompare', u'check two databases and identify any differences', [u'MySQL Utilities Team'], 1),