aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--SBO-Lib/Changes4
-rw-r--r--SBO-Lib/README2
-rw-r--r--SBO-Lib/lib/SBO/App.pm2
-rw-r--r--SBO-Lib/lib/SBO/App/Remove.pm2
-rw-r--r--SBO-Lib/lib/SBO/App/Snap.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Build.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Download.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Info.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Pkgs.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Readme.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Repo.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Tree.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Util.pm2
-rw-r--r--man1/sbocheck.12
-rw-r--r--man1/sboclean.12
-rw-r--r--man1/sboconfig.12
-rw-r--r--man1/sbofind.12
-rw-r--r--man1/sboinstall.12
-rw-r--r--man1/sboremove.12
-rw-r--r--man1/sbosnap.12
-rw-r--r--man1/sboupgrade.12
-rw-r--r--man5/sbotools.conf.52
-rw-r--r--slackbuild/sbotools/sbotools.SlackBuild2
-rw-r--r--slackbuild/sbotools/sbotools.info2
26 files changed, 31 insertions, 24 deletions
diff --git a/README.md b/README.md
index 30b9588..fe9276f 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,9 @@
**[sbotools](https://pink-mist.github.io/sbotools/)** provides a ports-like interface to [slackbuilds.org](http://www.slackbuilds.org/).
## Changes
+* 2.7 - 2019-04-28
+ * Actually fix the sbofind -e bug #71
+
* 2.6 - 2019-04-27
* Compatibility with new perl versions where you need to escape { in regexp
#75 #77 #78
diff --git a/SBO-Lib/Changes b/SBO-Lib/Changes
index eb2d4c1..9d3f3dc 100644
--- a/SBO-Lib/Changes
+++ b/SBO-Lib/Changes
@@ -1,3 +1,7 @@
+2.7 - 2019-04-28
+ * Actually fix the sbofind -e bug
+ (https://github.com/pink-mist/sbotools/issues/71)
+
2.6 - 2019-04-27
* Fix change in new perl versions where you need to escape { in regexp
(https://github.com/pink-mist/sbotools/issues/75)
diff --git a/SBO-Lib/README b/SBO-Lib/README
index 5f49805..206a439 100644
--- a/SBO-Lib/README
+++ b/SBO-Lib/README
@@ -1,4 +1,4 @@
-SBO-Lib version 2.6
+SBO-Lib version 2.7
===================
SBO::Lib is a library for the sbotools scripts.
diff --git a/SBO-Lib/lib/SBO/App.pm b/SBO-Lib/lib/SBO/App.pm
index b48fd1d..f2d22ad 100644
--- a/SBO-Lib/lib/SBO/App.pm
+++ b/SBO-Lib/lib/SBO/App.pm
@@ -12,7 +12,7 @@ use strict;
use warnings FATAL => 'all';
use File::Basename;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
sub new {
my $class = shift;
diff --git a/SBO-Lib/lib/SBO/App/Remove.pm b/SBO-Lib/lib/SBO/App/Remove.pm
index 9d97ef1..e97846d 100644
--- a/SBO-Lib/lib/SBO/App/Remove.pm
+++ b/SBO-Lib/lib/SBO/App/Remove.pm
@@ -15,7 +15,7 @@ use Getopt::Long qw(GetOptionsFromArray :config bundling);
use parent 'SBO::App';
-our $VERSION = '2.6';
+our $VERSION = '2.7';
sub _parse_opts {
my $class = shift;
diff --git a/SBO-Lib/lib/SBO/App/Snap.pm b/SBO-Lib/lib/SBO/App/Snap.pm
index d807ff9..422174f 100644
--- a/SBO-Lib/lib/SBO/App/Snap.pm
+++ b/SBO-Lib/lib/SBO/App/Snap.pm
@@ -18,7 +18,7 @@ use Getopt::Long qw/ GetOptionsFromArray /;
use parent 'SBO::App';
-our $VERSION = '2.6';
+our $VERSION = '2.7';
sub _parse_opts {
my $class = shift;
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index a30e09b..aa367ba 100644
--- a/SBO-Lib/lib/SBO/Lib.pm
+++ b/SBO-Lib/lib/SBO/Lib.pm
@@ -15,7 +15,7 @@ use strict;
use warnings FATAL => 'all';
package SBO::Lib;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
=pod
diff --git a/SBO-Lib/lib/SBO/Lib/Build.pm b/SBO-Lib/lib/SBO/Lib/Build.pm
index eacab0a..bc52c98 100644
--- a/SBO-Lib/lib/SBO/Lib/Build.pm
+++ b/SBO-Lib/lib/SBO/Lib/Build.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ :const prompt script_error get_sbo_from_loc get_arch check_multilib uniq %config in /;
use SBO::Lib::Tree qw/ get_sbo_location /;
diff --git a/SBO-Lib/lib/SBO/Lib/Download.pm b/SBO-Lib/lib/SBO/Lib/Download.pm
index b47f00a..8e0a896 100644
--- a/SBO-Lib/lib/SBO/Lib/Download.pm
+++ b/SBO-Lib/lib/SBO/Lib/Download.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ :const script_error get_sbo_from_loc open_read get_arch /;
use SBO::Lib::Repo qw/ $distfiles /;
diff --git a/SBO-Lib/lib/SBO/Lib/Info.pm b/SBO-Lib/lib/SBO/Lib/Info.pm
index 7a042c1..968dd7a 100644
--- a/SBO-Lib/lib/SBO/Lib/Info.pm
+++ b/SBO-Lib/lib/SBO/Lib/Info.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ get_arch get_sbo_from_loc open_read script_error slurp usage_error /;
use SBO::Lib::Tree qw/ get_orig_location get_sbo_location is_local /;
diff --git a/SBO-Lib/lib/SBO/Lib/Pkgs.pm b/SBO-Lib/lib/SBO/Lib/Pkgs.pm
index cc66468..52fd261 100644
--- a/SBO-Lib/lib/SBO/Lib/Pkgs.pm
+++ b/SBO-Lib/lib/SBO/Lib/Pkgs.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ %config script_error open_read version_cmp /;
use SBO::Lib::Tree qw/ get_sbo_location get_sbo_locations is_local /;
diff --git a/SBO-Lib/lib/SBO/Lib/Readme.pm b/SBO-Lib/lib/SBO/Lib/Readme.pm
index 74361d4..af3a7dc 100644
--- a/SBO-Lib/lib/SBO/Lib/Readme.pm
+++ b/SBO-Lib/lib/SBO/Lib/Readme.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ prompt script_error slurp open_read _ERR_OPENFH usage_error /;
use SBO::Lib::Tree qw/ is_local /;
diff --git a/SBO-Lib/lib/SBO/Lib/Repo.pm b/SBO-Lib/lib/SBO/Lib/Repo.pm
index bcbe33c..90182ac 100644
--- a/SBO-Lib/lib/SBO/Lib/Repo.pm
+++ b/SBO-Lib/lib/SBO/Lib/Repo.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ %config prompt usage_error get_slack_version get_slack_version_url script_error open_fh open_read in _ERR_DOWNLOAD /;
diff --git a/SBO-Lib/lib/SBO/Lib/Tree.pm b/SBO-Lib/lib/SBO/Lib/Tree.pm
index 478ceee..0478e00 100644
--- a/SBO-Lib/lib/SBO/Lib/Tree.pm
+++ b/SBO-Lib/lib/SBO/Lib/Tree.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use SBO::Lib::Util qw/ script_error open_read idx %config /;
use SBO::Lib::Repo qw/ $repo_path $slackbuilds_txt /;
diff --git a/SBO-Lib/lib/SBO/Lib/Util.pm b/SBO-Lib/lib/SBO/Lib/Util.pm
index 94ccb5e..4fc08b7 100644
--- a/SBO-Lib/lib/SBO/Lib/Util.pm
+++ b/SBO-Lib/lib/SBO/Lib/Util.pm
@@ -4,7 +4,7 @@ use 5.016;
use strict;
use warnings;
-our $VERSION = '2.6';
+our $VERSION = '2.7';
use Exporter 'import';
use Sort::Versions;
diff --git a/man1/sbocheck.1 b/man1/sbocheck.1
index e15ea26..1ff273b 100644
--- a/man1/sbocheck.1
+++ b/man1/sbocheck.1
@@ -1,4 +1,4 @@
-.TH sbocheck 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sbocheck 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sbocheck - update a local slackbuilds.org tree and check for updates.
diff --git a/man1/sboclean.1 b/man1/sboclean.1
index 0eb05a2..b424f97 100644
--- a/man1/sboclean.1
+++ b/man1/sboclean.1
@@ -1,4 +1,4 @@
-.TH sboclean 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sboclean 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sboclean - clean files left around by sbotools.
diff --git a/man1/sboconfig.1 b/man1/sboconfig.1
index d4da5db..1853b1c 100644
--- a/man1/sboconfig.1
+++ b/man1/sboconfig.1
@@ -1,4 +1,4 @@
-.TH sboconfig 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sboconfig 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sboconfig - set sbotools configuration options.
diff --git a/man1/sbofind.1 b/man1/sbofind.1
index 16ce53e..069a516 100644
--- a/man1/sbofind.1
+++ b/man1/sbofind.1
@@ -1,4 +1,4 @@
-.TH sbofind 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sbofind 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sbofind - search slackbuilds.org tree for a given name
diff --git a/man1/sboinstall.1 b/man1/sboinstall.1
index 082a5cf..f1274e8 100644
--- a/man1/sboinstall.1
+++ b/man1/sboinstall.1
@@ -1,4 +1,4 @@
-.TH sboinstall 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sboinstall 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sboinstall - install slackbuilds
diff --git a/man1/sboremove.1 b/man1/sboremove.1
index 4bb26e8..2af7b67 100644
--- a/man1/sboremove.1
+++ b/man1/sboremove.1
@@ -1,4 +1,4 @@
-.TH sboremove 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sboremove 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sboremove - remove packages installed from slackbuilds
diff --git a/man1/sbosnap.1 b/man1/sbosnap.1
index 67f7595..73568a8 100644
--- a/man1/sbosnap.1
+++ b/man1/sbosnap.1
@@ -1,4 +1,4 @@
-.TH sbosnap 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sbosnap 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sbosnap - slackbuilds.org tree fetch and update command.
diff --git a/man1/sboupgrade.1 b/man1/sboupgrade.1
index 2c7baef..bb8e148 100644
--- a/man1/sboupgrade.1
+++ b/man1/sboupgrade.1
@@ -1,4 +1,4 @@
-.TH sboupgrade 1 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sboupgrade 1 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sboupgrade - install or upgrade slackbuilds
diff --git a/man5/sbotools.conf.5 b/man5/sbotools.conf.5
index 4c305e4..01de7ea 100644
--- a/man5/sbotools.conf.5
+++ b/man5/sbotools.conf.5
@@ -1,4 +1,4 @@
-.TH sbotools.conf 5 "Boomtime, Discord 44, 3185 YOLD" "sbotools 2.6" dawnrazor.net
+.TH sbotools.conf 5 "Pungenday, Discord 45, 3185 YOLD" "sbotools 2.7" dawnrazor.net
.SH NAME
.P
sbotools.conf - configuration file for sbotools commands.
diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild
index 1f25e00..e09fd42 100644
--- a/slackbuild/sbotools/sbotools.SlackBuild
+++ b/slackbuild/sbotools/sbotools.SlackBuild
@@ -5,7 +5,7 @@
# Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING>
PRGNAM=sbotools
-VERSION=${VERSION:-2.6}
+VERSION=${VERSION:-2.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
diff --git a/slackbuild/sbotools/sbotools.info b/slackbuild/sbotools/sbotools.info
index 23c20eb..53b236b 100644
--- a/slackbuild/sbotools/sbotools.info
+++ b/slackbuild/sbotools/sbotools.info
@@ -1,5 +1,5 @@
PRGNAM="sbotools"
-VERSION="2.6"
+VERSION="2.7"
HOMEPAGE="https://pink-mist.github.io/sbotools/"
DOWNLOAD="https://pink-mist.github.io/sbotools/downloads/@FILENAME@"
MD5SUM="@MD5@"