mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
update license, version
This commit is contained in:
parent
8b4aa3a033
commit
15a958a188
7 changed files with 15 additions and 18 deletions
|
@ -2,7 +2,9 @@ Version 1.7.7
|
|||
26-08-2014
|
||||
|
||||
[Updated] - Fix install noarch packages from SBo repository
|
||||
Fix avoid '%README%' as dependency
|
||||
Fix arguments
|
||||
Fix messages
|
||||
|
||||
Version 1.7.6
|
||||
25-08-2014
|
||||
|
|
2
PKG-INFO
2
PKG-INFO
|
@ -1,6 +1,6 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: slpkg
|
||||
Version: 1.7.6
|
||||
Version: 1.7.7
|
||||
Author: dslackw
|
||||
Author-email: d zlatanidis at gmail com
|
||||
Maintainer: dslackw
|
||||
|
|
|
@ -263,8 +263,7 @@ Find packages from slackbuilds.org:
|
|||
| Package bitfighter --> http://slackbuilds.org/repository/14.1/games/bitfighter/
|
||||
+===============================================================================
|
||||
| SlackBuild : bitfighter.tar.gz
|
||||
| Source : bitfighter-019c.tar.gz
|
||||
| Extra : classic_level_pack.zip
|
||||
| Sources : bitfighter-019c.tar.gz
|
||||
| Requirements : OpenAL, SDL2, speex, libmodplug
|
||||
+===============================================================================
|
||||
README View the README file
|
||||
|
|
4
setup.py
4
setup.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# setup.py
|
||||
# setup.py file is part of slpkg.
|
||||
|
||||
# Copyright 2014 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
||||
# All rights reserved.
|
||||
|
@ -10,7 +10,7 @@
|
|||
|
||||
# https://github.com/dslackw/slpkg
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# 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.
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
slpkg: slpkg (Slackware tool in Python)
|
||||
slpkg:
|
||||
slpkg: Slpkg is a terminal multitool in order to easy use Slackware
|
||||
slpkg: packages. It's a quick and easy way to manage your packages in
|
||||
slpkg: slackware to a command
|
||||
slpkg:
|
||||
slpkg: Slpkg is a terminal multitool in order to easy use Slackware
|
||||
slpkg: packages. It's a quick and easy way to manage your packages in
|
||||
slpkg: Slackware to a command. Slpkg uses Slackware commands to upgrade,
|
||||
slpkg: install or remove packages.
|
||||
slpkg:
|
||||
slpkg: Homepage: https://github.com/dslackw/slpkg
|
||||
slpkg:
|
||||
slpkg:
|
||||
slpkg:
|
||||
slpkg:
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=slpkg
|
||||
VERSION=${VERSION:-1.7.6}
|
||||
VERSION=${VERSION:-1.7.7}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_dsw}
|
||||
|
||||
|
@ -35,7 +35,6 @@ if [ -z "$ARCH" ]; then
|
|||
esac
|
||||
fi
|
||||
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -70,9 +69,6 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# ignore pip install man page
|
||||
#sed -i 's/'install'//' setup.py
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
@ -83,7 +79,7 @@ gzip -9 man/$PRGNAM.8
|
|||
install -D -m0644 man/$PRGNAM.8.gz $PKG/usr/man/man8/$PRGNAM.8.gz
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README.rst CHANGELOG LICENSE $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README.rst CHANGELOG LICENSE CONTRIBUTING ISSUES $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PRGNAM="slpkg"
|
||||
VERSION="1.7.6"
|
||||
VERSION="1.7.7"
|
||||
HOMEPAGE="https://github.com/dslackw/slpkg"
|
||||
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.7.6.tar.gz"
|
||||
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.7.7.tar.gz"
|
||||
MD5SUM=""
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
|
|
Loading…
Reference in a new issue