aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijay Marcel <vijaymarcel@outlook.com>2025-04-17 13:41:51 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-04-19 22:33:25 +0700
commitb9a9fe2061c818da924bb03c6a56632b697dda7d (patch)
treefe799edddd764ccd8dd0bee02bb09526f832f200
parent0141b244b34662b36ed04bffe781fd2564fe2850 (diff)
system/pmdk: Updated for version 2.1.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/pmdk/changelog24
-rw-r--r--system/pmdk/pmdk.SlackBuild22
-rw-r--r--system/pmdk/pmdk.info6
3 files changed, 20 insertions, 32 deletions
diff --git a/system/pmdk/changelog b/system/pmdk/changelog
deleted file mode 100644
index fe42574610..0000000000
--- a/system/pmdk/changelog
+++ /dev/null
@@ -1,24 +0,0 @@
-Changelog for pmdk SlackBuild Script
---------------------------------------------------------------------
-
-03/09/2022:
-
-Added to slackbuilds.org
-
-18/02/2023:
-
-pmdk slackbuild script fixed by B.Watson
-
-15/05/2023:
-
-Updated to version 1.13.0
-From this build onwards it will only build
-on x86_64 platform only.
-
-19/02/2024:
-
-Updated to version 1.13.1
-
-14/08/2024
-
-Updated to version 2.1.0
diff --git a/system/pmdk/pmdk.SlackBuild b/system/pmdk/pmdk.SlackBuild
index 211d11d0bd..ec6d86bad6 100644
--- a/system/pmdk/pmdk.SlackBuild
+++ b/system/pmdk/pmdk.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for pmdk
-# Copyright 2022-2024 Vijay Marcel
+# Copyright 2022-2025 Vijay Marcel
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -22,10 +22,22 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# Changelog for pmdk SlackBuild Script
+# --------------------------------------------------------------------------------
+
+# 03/09/2022: Added to slackbuilds.org
+# 18/02/2023: pmdk slackbuild script fixed by B.Watson
+# 15/05/2023: Updated to version 1.13.0 From this build onwards
+# it will only build on x86_64 platform only.
+# 19/02/2024: Updated to version 1.13.1
+# 14/08/2024: Updated to version 2.1.0
+# 16/04/2025: updated to version 2.1.1
+# ---------------------------------------------------------------------------------
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=pmdk
-VERSION=${VERSION:-2.1.0}
+VERSION=${VERSION:-2.1.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -80,11 +92,11 @@ make -C doc all
make -C doc install DESTDIR=$PKG/usr/man/
# Don't ship .la files:
-rm -rvf $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
+rm -rvf $PKG/usr/lib${LIBDIRSUFFIX}/*.la
# Remove static libs
-rm -rvf $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.a
+rm -rvf $PKG/usr/lib${LIBDIRSUFFIX}/*.a
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true
@@ -97,7 +109,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog LICENSE README.md VERSION CODING_STYLE.md $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a ChangeLog LICENSE.txt README.md CONTRIBUTING.md $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/system/pmdk/pmdk.info b/system/pmdk/pmdk.info
index 0427f7c70d..18a28c9cf5 100644
--- a/system/pmdk/pmdk.info
+++ b/system/pmdk/pmdk.info
@@ -1,10 +1,10 @@
PRGNAM="pmdk"
-VERSION="2.1.0"
+VERSION="2.1.1"
HOMEPAGE="https://pmem.io/"
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
-DOWNLOAD_x86_64="https://github.com/pmem/pmdk/archive/2.1.0/pmdk-2.1.0.tar.gz"
-MD5SUM_x86_64="35cdb2621a7873aade062d59aa256989"
+DOWNLOAD_x86_64="https://github.com/pmem/pmdk/archive/2.1.1/pmdk-2.1.1.tar.gz"
+MD5SUM_x86_64="fea0e264a2eed2e2525aac154e8601d8"
REQUIRES="pandoc-bin"
MAINTAINER="Vijay Marcel"
EMAIL="vijaymarcel@outlook.com"