diff options
author | Nikos Giotis <nikos.giotis@gmail.com> | 2021-04-24 06:48:39 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-04-24 22:07:02 +0700 |
commit | a083d2c428779333d475366571423bd5774f21de (patch) | |
tree | a2fe83426a6f0344551b881bc45ca040724bac01 /python/python-pyparted | |
parent | 0a095dd2844f872c6ba54faf13342d398620678d (diff) | |
download | slackbuilds-a083d2c428779333d475366571423bd5774f21de.tar.gz |
python/python-pyparted: Add -fcommon cflag. Fix DOWNLOAD/MD5SUM.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python-pyparted')
-rw-r--r-- | python/python-pyparted/README | 7 | ||||
-rw-r--r-- | python/python-pyparted/python-pyparted.SlackBuild | 12 | ||||
-rw-r--r-- | python/python-pyparted/python-pyparted.info | 4 |
3 files changed, 11 insertions, 12 deletions
diff --git a/python/python-pyparted/README b/python/python-pyparted/README index 0039f3283e..1d73bf1a3c 100644 --- a/python/python-pyparted/README +++ b/python/python-pyparted/README @@ -1,3 +1,4 @@ -pyparted is a set of native Python bindings for libparted. libparted is the -library portion of the GNU parted project. With pyparted, you can write -applications that interact with disk partition tables and filesystems. +pyparted is a set of native Python bindings for libparted. libparted is +the library portion of the GNU parted project. With pyparted, you can +write applications that interact with disk partition tables and +filesystems. diff --git a/python/python-pyparted/python-pyparted.SlackBuild b/python/python-pyparted/python-pyparted.SlackBuild index 2fe52cd323..a406b4b2e6 100644 --- a/python/python-pyparted/python-pyparted.SlackBuild +++ b/python/python-pyparted/python-pyparted.SlackBuild @@ -25,12 +25,12 @@ PRGNAM=python-pyparted SRCNAM=pyparted VERSION=${VERSION:-3.10.5} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -41,8 +41,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -61,9 +61,6 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -if [ -r $CWD/v$VERSION.tar.gz ]; then - mv $CWD/v$VERSION.tar.gz $CWD/$SRCNAM-$VERSION.tar.gz -fi tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $SRCNAM-$VERSION chown -R root:root . @@ -73,6 +70,7 @@ 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 {} \; +CFLAGS="$SLKCFLAGS -fcommon" \ python setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ diff --git a/python/python-pyparted/python-pyparted.info b/python/python-pyparted/python-pyparted.info index c31adbe96c..591b6608c5 100644 --- a/python/python-pyparted/python-pyparted.info +++ b/python/python-pyparted/python-pyparted.info @@ -1,8 +1,8 @@ PRGNAM="python-pyparted" VERSION="3.10.5" HOMEPAGE="https://github.com/rhinstaller/pyparted" -DOWNLOAD="https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz" -MD5SUM="b303caf8e907a2541e71aa492494b5e5" +DOWNLOAD="https://github.com/rhinstaller/pyparted/archive/v3.10.5/pyparted-3.10.5.tar.gz" +MD5SUM="c24119286fc69b63e40b84624bad89f1" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |