mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
update version
This commit is contained in:
parent
9efa62e0f5
commit
1f0fd9a031
4 changed files with 7 additions and 7 deletions
|
@ -1,10 +1,10 @@
|
||||||
Version 2.2.1
|
Version 2.2.1
|
||||||
16-1-2015
|
27-1-2015
|
||||||
|
|
||||||
[Feature] - Added support multipackages.
|
[Feature] - Added support multipackages.
|
||||||
|
|
||||||
[Updated] - Fix [key error] when you enter wrong repository as default.
|
[Updated] - Fix [key error] when you enter wrong repository as default.
|
||||||
|
- Rename BUILD variable to BUILD_PATH in configuration file slpkg.conf.
|
||||||
|
|
||||||
Version 2.2.0
|
Version 2.2.0
|
||||||
08-1-2015
|
08-1-2015
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=slpkg
|
PRGNAM=slpkg
|
||||||
VERSION=${VERSION:-2.1.x-dev}
|
VERSION=${VERSION:-2.2.1}
|
||||||
TAG=${TAG:-_dsw}
|
TAG=${TAG:-_dsw}
|
||||||
|
|
||||||
# Installation script.
|
# Installation script.
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=slpkg
|
PRGNAM=slpkg
|
||||||
VERSION=${VERSION:-2.1.x-dev}
|
VERSION=${VERSION:-2.1.1}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_dsw}
|
TAG=${TAG:-_dsw}
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ class MetaData(object):
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (2, 2, 0)
|
__version_info__ = (2, 2, 1)
|
||||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||||
__email__ = "d.zlatanidis@gmail.com"
|
__email__ = "d.zlatanidis@gmail.com"
|
||||||
|
@ -139,8 +139,8 @@ class MetaData(object):
|
||||||
slack_rel = "stable"
|
slack_rel = "stable"
|
||||||
if line.startswith("REPOSITORIES"):
|
if line.startswith("REPOSITORIES"):
|
||||||
repositories = line[13:].strip().split(",")
|
repositories = line[13:].strip().split(",")
|
||||||
if line.startswith("BUILD"):
|
if line.startswith("BUILD_PATH"):
|
||||||
build_path = line[6:].strip()
|
build_path = line[11:].strip()
|
||||||
if line.startswith("PACKAGES"):
|
if line.startswith("PACKAGES"):
|
||||||
slpkg_tmp_packages = line[9:].strip()
|
slpkg_tmp_packages = line[9:].strip()
|
||||||
if line.startswith("PATCHES"):
|
if line.startswith("PATCHES"):
|
||||||
|
|
Loading…
Reference in a new issue