diff --git a/ChangeLog.txt b/ChangeLog.txt index 75b0008f..45bf9de5 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +3.4.1 - 23/01/2019 +Fixed: +- Fix manpage + 3.4.0 - 21/01/2019 Updated: - Updated manpage diff --git a/README.md b/README.md index e39f7062..17cf48c0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# slpkg 3.4.0 +# slpkg 3.4.1 Slpkg is a powerful software package manager that installs, updates, and removes packages on [Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and diff --git a/man/slpkg.8 b/man/slpkg.8 index c2ffb1b3..56723275 100644 --- a/man/slpkg.8 +++ b/man/slpkg.8 @@ -15,48 +15,7 @@ .SH NAME Slpkg is a user-friendly package manager for Slackware installations .SH SYNOPSIS -Usage: slpkg [COMMANDS|OPTIONS] {repository|package...} - - Commands: - [update, --repositories=[...]] - [upgrade, --repositories=[...]] - [repo-add [repository name] [URL]] - [repo-remove [repository]] - [repo-enable] - [repo-list] - [repo-info [repository]] - [update [slpkg]] - [health, --silent] - [deps-status, --tree, --graph=[type]] - [new-config] - [clean] - - Optional arguments: - [-h] [-v] - [-a [script] [sources...]] - [-b [package...] --add, --remove, - [list]] - [-q [package...] --add, --remove, - [list, build, install, build-install]] - [-g [print, edit, reset]] - [-l [repository], --index, --installed, --name] - [-c [repository], --upgrade, --rebuild, --skip=[...], - --resolve-off, --checklist] - [-s [repository] [package...], --rebuild, --reinstall, - --resolve-off, --download-only, - --directory-prefix=[dir], - --case-ins, --patches] - [-t [repository] [package], --check-deps, --graph=[type], - --case-ins] - [-p [repository] [package], --color=[]] - [-n [SBo package], --checklist, --case-ins] - [-F [package...], --case-ins] - [-f [package...], --case-ins, --third-party] - [-i [options] [package...]] - [-u [options] [package...]] - [-r [options] [package...], --deps, --check-deps, --tag, - --checklist] - [-d [package...]] +slpkg [COMMANDS|OPTIONS] {repository|package...} .SH DESCRIPTION Slpkg is a powerful software package manager that installs, updates, and @@ -153,7 +112,7 @@ Additional options: This command searches for .new configuration files in /etc/ path and ask the user what todo with those files. -.SS clean-tmp, the tmp/ directory +.SS clean-tmp, clean the tmp/ directory \fBslpkg\fP \fBclean-tmp\fP .PP Clean the /tmp/slpkg/ directory from downloaded packages and sources. diff --git a/slpkg/__metadata__.py b/slpkg/__metadata__.py index a961fd65..d3ea9f30 100644 --- a/slpkg/__metadata__.py +++ b/slpkg/__metadata__.py @@ -78,7 +78,7 @@ class MetaData(object): __all__ = "slpkg" __author__ = "dslackw" - __version_info__ = (3, 4, 0) + __version_info__ = (3, 4, 1) __version__ = "{0}.{1}.{2}".format(*__version_info__) __license__ = "GNU General Public License v3 (GPLv3)" __email__ = "d.zlatanidis@gmail.com"