Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: whdd-3.0
@ 2020-11-13  0:45 Logarithmus
  2020-11-13  1:08 ` [PR REVIEW] " ndowens
                   ` (54 more replies)
  0 siblings, 55 replies; 56+ messages in thread
From: Logarithmus @ 2020-11-13  0:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 472 bytes --]

There is a new pull request by Logarithmus against master on the void-packages repository

https://github.com/Logarithmus/void-packages whdd
https://github.com/void-linux/void-packages/pull/26339

New package: whdd-3.0
HDD diagnostics and data recovery tool for Linux\nThis PR also fixes `dialog` package, which is needed for `whdd`. Also it adds `libdialog` into `common/shlibs`.

A patch file from https://github.com/void-linux/void-packages/pull/26339.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-whdd-26339.patch --]
[-- Type: text/x-diff, Size: 3469 bytes --]

From 297a94553a891d383fde1b2253b821d59057503a Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Thu, 12 Nov 2020 06:38:58 +0300
Subject: [PATCH 1/3] dialog: add *-devel package

---
 srcpkgs/dialog-devel    |  1 +
 srcpkgs/dialog/template | 20 ++++++++++++++------
 2 files changed, 15 insertions(+), 6 deletions(-)
 create mode 120000 srcpkgs/dialog-devel

diff --git a/srcpkgs/dialog-devel b/srcpkgs/dialog-devel
new file mode 120000
index 00000000000..3c8c6c89456
--- /dev/null
+++ b/srcpkgs/dialog-devel
@@ -0,0 +1 @@
+dialog
\ No newline at end of file
diff --git a/srcpkgs/dialog/template b/srcpkgs/dialog/template
index 30a5ec2c02e..01aa9f0d527 100644
--- a/srcpkgs/dialog/template
+++ b/srcpkgs/dialog/template
@@ -3,18 +3,26 @@ pkgname=dialog
 _distver=1.3
 _date=20200327
 version="${_distver}.${_date}"
-revision=1
+revision=2
 wrksrc="${pkgname}-${_distver}-${_date}"
 build_style=gnu-configure
-configure_args="--with-ncursesw --disable-nls"
-makedepends="ncurses-devel"
+configure_args="--with-ncursesw --with-libtool --disable-nls"
+make_install_target="install-full"
+hostmakedepends="libtool"
+makedepends="ncurses-devel" 
 short_desc="Tool to display dialog boxes from shell scripts"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
 license="LGPL-2.1-only"
 homepage="https://invisible-island.net/dialog/"
 distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_distver}-${_date}.tgz"
 checksum=466163e8b97c2b7709d00389199add3156bd813f60ccb0335d0a30f2d4a17f99
 
-post_install() {
-	rm -r ${DESTDIR}/usr/lib
+dialog-devel_package() {
+	depends="${sourcepkg}-${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/*.a
+		vmove usr/lib/*.so
+	}
 }

From cfbf6d0be2a0666758576e4c1afb17ac6ef1bd8c Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Thu, 12 Nov 2020 07:08:36 +0300
Subject: [PATCH 2/3] common/shlibs: add dialog-devel

---
 common/shlibs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/shlibs b/common/shlibs
index 5dea7af6b68..8762dfcb169 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3995,3 +3995,4 @@ libSeExpr2.so.3 seexpr-krita-3.4.4.0_1
 liburing.so.1 liburing-0.7_1
 libbson-1.0.so.0 libbson-1.17.0_1
 libsonic.so.0 libsonic-0.2.0_1
+libdialog.so.15 dialog-devel-1.3.20200327_2

From 5454a8b1f7a913aa72c5a7929ba056686981971a Mon Sep 17 00:00:00 2001
From: Artur Sinila <opensource@logarithmus.dev>
Date: Thu, 12 Nov 2020 05:39:30 +0300
Subject: [PATCH 3/3] New package: whdd-3.0

---
 srcpkgs/whdd/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/whdd/template

diff --git a/srcpkgs/whdd/template b/srcpkgs/whdd/template
new file mode 100644
index 00000000000..b9ed6171699
--- /dev/null
+++ b/srcpkgs/whdd/template
@@ -0,0 +1,17 @@
+# Template file for 'whdd'
+pkgname=whdd
+version=3.0
+revision=1
+build_style=cmake
+configure_args="-DCLI=ON"
+makedepends="dialog-devel ncurses-devel"
+short_desc="HDD diagnostics and data recovery tool for Linux"
+maintainer="Artur Sinila <opensource@logarithmus.dev>"
+license="GPL-3.0-only"
+homepage="https://github.com/whdd/whdd"
+distfiles="https://github.com/whdd/whdd/archive/${version}.tar.gz"
+checksum=b0877375a54e0c915dfe418f5330b0e1d409629d1f298539f6a0556df2c8335a
+
+post_install() {
+	mv ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin
+}

^ permalink raw reply	[flat|nested] 56+ messages in thread

end of thread, other threads:[~2022-05-13  2:15 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13  0:45 [PR PATCH] New package: whdd-3.0 Logarithmus
2020-11-13  1:08 ` [PR REVIEW] " ndowens
2020-11-13  1:08 ` ndowens
2020-11-13  2:07 ` [PR PATCH] [Updated] " Logarithmus
2020-11-18 22:26 ` Logarithmus
2020-11-20  0:04 ` Logarithmus
2020-11-20  0:06 ` [PR REVIEW] " ndowens
2020-11-20  0:06 ` ndowens
2020-11-20  0:23 ` Logarithmus
2020-11-20  0:40 ` [PR PATCH] [Updated] " Logarithmus
2020-11-20  0:44 ` Logarithmus
2020-11-20  0:45 ` [PR PATCH] [Updated] " Logarithmus
2020-11-20  0:51 ` Logarithmus
2020-11-20  0:55 ` Logarithmus
2020-11-20 17:32 ` Logarithmus
2020-12-26 19:28 ` [PR PATCH] [Updated] " Logarithmus
2021-02-19  2:24 ` Logarithmus
2021-02-19  3:09 ` Logarithmus
2021-02-19  3:16 ` Logarithmus
2021-02-19  3:16 ` Logarithmus
2021-02-19  3:18 ` Logarithmus
2021-02-19  3:57 ` [PR PATCH] [Updated] " Logarithmus
2021-02-19  4:23 ` [PR PATCH] [Updated] New package: whdd-3.0.1 Logarithmus
2021-02-21  2:56 ` Logarithmus
2021-02-21  3:14 ` Logarithmus
2021-02-21  4:49 ` [PR REVIEW] " ericonr
2021-02-21  4:49 ` ericonr
2021-02-21  4:49 ` ericonr
2021-02-21  4:49 ` ericonr
2021-02-21  5:14 ` Logarithmus
2021-02-21  5:24 ` [PR PATCH] [Updated] " Logarithmus
2021-02-21  5:25 ` [PR REVIEW] " Logarithmus
2021-02-21  5:26 ` Logarithmus
2021-02-21  5:28 ` Logarithmus
2021-02-21  5:36 ` [PR PATCH] [Updated] " Logarithmus
2021-02-21  5:40 ` [PR REVIEW] " Logarithmus
2021-02-21  5:40 ` Logarithmus
2021-02-21  5:40 ` Logarithmus
2021-02-21  5:41 ` Logarithmus
2021-02-21  5:48 ` [PR REVIEW] " ericonr
2021-02-21  5:58 ` Logarithmus
2021-02-21  5:58 ` Logarithmus
2021-02-21  5:59 ` Logarithmus
2021-02-21  5:59 ` ericonr
2021-03-26 18:27 ` [PR PATCH] [Updated] " Logarithmus
2021-03-26 18:27 ` Logarithmus
2021-03-26 18:34 ` Logarithmus
2021-03-26 18:48 ` [PR REVIEW] " ericonr
2021-03-26 18:59 ` [PR PATCH] [Updated] " Logarithmus
2021-03-26 19:01 ` [PR REVIEW] " Logarithmus
2021-07-27  2:13 ` [PR PATCH] [Updated] " Logarithmus
2021-08-14 11:54 ` Logarithmus
2021-08-14 12:06 ` Logarithmus
2021-08-14 12:18 ` Logarithmus
2022-04-28  2:16 ` github-actions
2022-05-13  2:15 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).