Skip to content

Commit

Permalink
SlackMan v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
giterlizzi committed Aug 19, 2018
1 parent b64469d commit 9e0b7e1
Show file tree
Hide file tree
Showing 26 changed files with 36 additions and 27 deletions.
6 changes: 4 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# SlackMan - Slackware Package Manager ChangeLog

## [Develop]
## [v1.4.0]

This release introduce the automatic detection of Slackware `-current` release using the new `/etc/slackware-version` format (eg. `14.2+`). Added parsing of Slackware Announce in ChangeLog. General optimizations and reduced the `slackman` command startup by ~0.3 second. Improved download information (added speed, ETA, etc).
This release introduce the automatic detection of Slackware `-current` release using the new `/etc/slackware-version` format (eg. `14.2+`). Added parsing of Slackware Announce in ChangeLog. General optimizations and reduced the `slackman` command startup by ~0.3 second. Improved download information (added speed, ETA, etc). Added information of supported arch in all `.repo` config file.

## Added

Expand All @@ -11,6 +11,7 @@ This release introduce the automatic detection of Slackware `-current` release u
* Added new entry for `00-default.renames` file
* Added `--format` option for `slackman list` commands
* Added support for Slint repository (`slint.repo`)
* Added supported arch in `.repo` files
* Accept multiple `--exclude` option for `slackman install` and `slackman upgrade` commands
* #11 - Added automatic detection of Slackware-current (since **14.2+** release)
* #12 - Added `org.LotarProject.SlackMan.Announces` D-Bus method to retrieve ChangeLog announces
Expand Down Expand Up @@ -167,6 +168,7 @@ This release introduce new features, new commands & params and new DBus service
* [v1.0.0]

[Develop]: https://github.com/LotarProject/slackman/compare/master...develop
[v1.4.0]: https://github.com/LotarProject/slackman/compare/v1.3.0...v1.4.0
[v1.3.0]: https://github.com/LotarProject/slackman/compare/v1.2.1...v1.3.0
[v1.2.1]: https://github.com/LotarProject/slackman/compare/v1.2.0...v1.2.1
[v1.2.0]: https://github.com/LotarProject/slackman/compare/v1.1.1...v1.2.0
Expand Down
3 changes: 2 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- [ ] Add option `--append` (or `-A`) for `slackman config` and `slackman repo config` for append a text in config file
- [ ] Notify the user of changed or installed `/etc/rc.d`
- [ ] Follow logger category for logging
- [ ] Plugin system (via hooks / events)


## SlackMan 1.1
Expand Down Expand Up @@ -47,7 +48,7 @@
- [x] Increase SlackMan bootstrap and module loading


## Next SlackMan release
## SlackMan 1.4

- [x] #11 - Use `/etc/slackware-version` to automatically detect Slackware -current (post 14.2)
- [x] #11 - Add `--terse` options for `slackman` command
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3.0
v1.4.0
6 changes: 6 additions & 0 deletions dbus/org.lotarproject.SlackMan.7.pod
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ slackware (out 's')

Return the Slackware version (eg. I<14.2> or I<current>)

=head2 isCurrent

isCurrent (out 'b')

Return I<true> if this is I<Slackware-current>

=head1 SIGNALS

=head2 PackageInstalled
Expand Down
2 changes: 1 addition & 1 deletion dbus/slackman-notifier
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Slackware::SlackMan;
use Slackware::SlackMan::Config qw(:all);
use Slackware::SlackMan::Utils qw(:all);

my $VERSION = "v1.3.0";
my $VERSION = "v1.4.0";
my $options = {};

GetOptions( $options,
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ BEGIN {

@ISA = qw(Exporter);

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@EXPORT_OK = ();
@EXPORT = qw(
$slackman_opts
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw(
run
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Clean.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/List.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Log.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Repo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Command/Update.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw();
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw( get_config );
%EXPORT_TAGS = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/DB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT_OK = qw{
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/DBus.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw{};

Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Logger.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);
@EXPORT_OK = qw{}

Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT_OK = qw{
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Parser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT_OK = qw{
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Pkgtools.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT = qw{
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Repo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT_OK = qw{
Expand Down
2 changes: 1 addition & 1 deletion lib/Slackware/SlackMan/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ BEGIN {

require Exporter;

$VERSION = 'v1.3.0';
$VERSION = 'v1.4.0';
@ISA = qw(Exporter);

@EXPORT_OK = qw(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@


PRGNAM=slackman-libsupport
VERSION=${VERSION:-1.3.0}
BUILD=${BUILD:-2}
VERSION=${VERSION:-1.4.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_lotar}

if [ -z "$ARCH" ]; then
Expand Down
2 changes: 1 addition & 1 deletion slackbuilds/slackman/slackman.SlackBuild
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


PRGNAM=slackman
VERSION=${VERSION:-1.2.1}
VERSION=${VERSION:-1.4.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_lotar}
ARCH=noarch
Expand Down

0 comments on commit 9e0b7e1

Please sign in to comment.