mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Update for version 3.2.5
This commit is contained in:
parent
d670f8eb7c
commit
661ccef048
4 changed files with 35 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
|||
3.2.5 - 11/02/2017
|
||||
3.2.5 - 17/02/2017
|
||||
Updated:
|
||||
- Url for mles/mled repository (Thanks Kiki Novak for the report)
|
||||
- Switch to arch i586 for sbo repository
|
||||
|
||||
3.2.4 - 10/02/2017
|
||||
Updated:
|
||||
|
|
12
README.rst
12
README.rst
|
@ -4,7 +4,7 @@
|
|||
:target: https://travis-ci.org/dslackw/slpkg
|
||||
.. image:: https://landscape.io/github/dslackw/slpkg/master/landscape.png
|
||||
:target: https://landscape.io/github/dslackw/slpkg/master
|
||||
.. image:: https://img.shields.io/codacy/6464ba0bd1e3.2.48388c71a34b3a5e8.svg
|
||||
.. image:: https://img.shields.io/codacy/6464ba0bd1e3.2.58388c71a34b3a5e8.svg
|
||||
:target: https://www.codacy.com/public/dzlatanidis/slpkg/dashboard
|
||||
.. image:: https://img.shields.io/pypi/dm/slpkg.svg
|
||||
:target: https://pypi.python.org/pypi/slpkg
|
||||
|
@ -20,7 +20,7 @@
|
|||
:target: https://github.com/dslackw/slpkg/issues
|
||||
|
||||
|
||||
Slpkg v3.2.4
|
||||
Slpkg v3.2.5
|
||||
============
|
||||
|
||||
|
|
||||
|
@ -79,8 +79,8 @@ Download latest release:
|
|||
|
||||
Required root privileges
|
||||
|
||||
$ tar xvf slpkg-3.2.4.tar.gz
|
||||
$ cd slpkg-3.2.4
|
||||
$ tar xvf slpkg-3.2.5.tar.gz
|
||||
$ cd slpkg-3.2.5
|
||||
$ ./install.sh
|
||||
|
||||
If you want to build slpkg for use with Python 3.x (needs the
|
||||
|
@ -116,9 +116,9 @@ Using pip:
|
|||
|
||||
Binary packages:
|
||||
|
||||
Slackware: `slpkg-3.2.4-i586-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.4/slpkg-3.2.4-i586-1_dsw.txz>`_
|
||||
Slackware: `slpkg-3.2.5-i586-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.5/slpkg-3.2.5-i586-1_dsw.txz>`_
|
||||
|
||||
Slackware64: `slpkg-3.2.4-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.4/slpkg-3.2.4-x86_64-1_dsw.txz>`_
|
||||
Slackware64: `slpkg-3.2.5-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.5/slpkg-3.2.5-x86_64-1_dsw.txz>`_
|
||||
|
||||
|
||||
Optional dependencies
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
|
||||
import os
|
||||
from version_info import __version_info__
|
||||
|
||||
|
||||
def remove_repositories(repositories, default_repositories):
|
||||
|
@ -78,7 +79,6 @@ class MetaData(object):
|
|||
|
||||
__all__ = "slpkg"
|
||||
__author__ = "dslackw"
|
||||
__version_info__ = (3, 2, 4)
|
||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
|
26
slpkg/version_info.py
Normal file
26
slpkg/version_info.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# version_info.py file is part of slpkg.
|
||||
|
||||
# Copyright 2014-2017 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
||||
# All rights reserved.
|
||||
|
||||
# Slpkg is a user-friendly package manager for Slackware installations
|
||||
|
||||
# https://github.com/dslackw/slpkg
|
||||
|
||||
# Slpkg is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
# Include version info
|
||||
__version_info__ = (3, 2, 5)
|
Loading…
Reference in a new issue