aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2017-02-05 14:36:17 +0100
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2017-02-05 14:36:17 +0100
commitdc0ec389e66b45217fc9d331120112b339db525a (patch)
treefbff4c1df7d3f220c47e045c48757a2555acf2c8
parent9d63b253be04113a55c7f6efe070887127927812 (diff)
downloadsbotools-dc0ec389e66b45217fc9d331120112b339db525a.tar.xz
Bump version to 2.4
-rw-r--r--README.md2
-rw-r--r--SBO-Lib/Changes2
-rw-r--r--SBO-Lib/README2
-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--slackbuild/sbotools/sbotools.SlackBuild2
-rw-r--r--slackbuild/sbotools/sbotools.info2
14 files changed, 16 insertions, 12 deletions
diff --git a/README.md b/README.md
index 1fe4d29..dd150a4 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,8 @@
**[sbotools](https://pink-mist.github.io/sbotools/)** provides a ports-like interface to [slackbuilds.org](http://www.slackbuilds.org/).
## Changes
+* 2.4 - Unreleased
+
* 2.3 - 2017-01-21
* Bugfix for parsing .info files with \ among the separators #55
diff --git a/SBO-Lib/Changes b/SBO-Lib/Changes
index 7425fb5..88a033a 100644
--- a/SBO-Lib/Changes
+++ b/SBO-Lib/Changes
@@ -1,3 +1,5 @@
+2.4 - Unreleased
+
2.3 - 2017-01-21
* Bugfix for parsing .info files with \ among the separators
(https://github.com/pink-mist/sbotools/issues/55)
diff --git a/SBO-Lib/README b/SBO-Lib/README
index a1c6cb6..7e7264b 100644
--- a/SBO-Lib/README
+++ b/SBO-Lib/README
@@ -1,4 +1,4 @@
-SBO-Lib version 2.3
+SBO-Lib version 2.4
===================
SBO::Lib is a library for the sbotools scripts.
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index e736623..c28a2cb 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.3';
+our $VERSION = '2.4';
=pod
diff --git a/SBO-Lib/lib/SBO/Lib/Build.pm b/SBO-Lib/lib/SBO/Lib/Build.pm
index 90e35ea..78cf127 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.3';
+our $VERSION = '2.4';
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 8005200..e797222 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.3';
+our $VERSION = '2.4';
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 03e740a..1cc0224 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.3';
+our $VERSION = '2.4';
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 dff3d27..b4458f3 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.3';
+our $VERSION = '2.4';
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 2d630cd..cb27ec0 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.3';
+our $VERSION = '2.4';
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 f9e1a3d..fb4ffda 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.3';
+our $VERSION = '2.4';
use SBO::Lib::Util qw/ %config prompt usage_error get_slack_version script_error open_fh open_read in /;
diff --git a/SBO-Lib/lib/SBO/Lib/Tree.pm b/SBO-Lib/lib/SBO/Lib/Tree.pm
index 32ade6b..49997f6 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.3';
+our $VERSION = '2.4';
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 7f62c51..ba2d372 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.3';
+our $VERSION = '2.4';
use Exporter 'import';
use Sort::Versions;
diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild
index af908b8..d9cdffa 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.3}
+VERSION=${VERSION:-2.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
diff --git a/slackbuild/sbotools/sbotools.info b/slackbuild/sbotools/sbotools.info
index 9e1999a..206f012 100644
--- a/slackbuild/sbotools/sbotools.info
+++ b/slackbuild/sbotools/sbotools.info
@@ -1,5 +1,5 @@
PRGNAM="sbotools"
-VERSION="2.3"
+VERSION="2.4"
HOMEPAGE="http://pink-mist.github.io/sbotools/"
DOWNLOAD="http://pink-mist.github.io/sbotools/downloads/@FILENAME@"
MD5SUM="@MD5@"