Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: mspds-3.15.1
@ 2023-06-16 13:57 benjcal
  2023-06-16 14:08 ` [PR PATCH] [Updated] " benjcal
                   ` (35 more replies)
  0 siblings, 36 replies; 37+ messages in thread
From: benjcal @ 2023-06-16 13:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 2140 bytes --]

From dee83c7a4b8526b35bce0bb2c7aaad8f1a103056 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 20 ++++++++++++++++++++
 srcpkgs/mspds/template               | 22 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..61d904a95747
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,20 @@
+--- a/Makefile
++++ b/Makefile
+@@ -32,7 +32,7 @@
+ STATIC_LIBS :=
+ 
+ ifdef STATIC
+-STATIC_LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread
++STATIC_LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread -lhidapi-libusb
+ else
+ LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread
+ endif
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ :=
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..305991adf574
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,22 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="i686 x86_64"
+makedepends="boost-devel hidapi-devel"
+short_desc="TI MSP Debug Stack tilib libmsp430"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
@ 2023-06-16 14:08 ` benjcal
  2023-06-16 14:13 ` benjcal
                   ` (34 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-16 14:08 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 2140 bytes --]

From a13d3b13b6a47659690e902d67dcbaf0ea702e3a Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 20 ++++++++++++++++++++
 srcpkgs/mspds/template               | 22 ++++++++++++++++++++++
 2 files changed, 42 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..61d904a95747
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,20 @@
+--- a/Makefile
++++ b/Makefile
+@@ -32,7 +32,7 @@
+ STATIC_LIBS :=
+ 
+ ifdef STATIC
+-STATIC_LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread
++STATIC_LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread -lhidapi-libusb
+ else
+ LIBS += -lboost_filesystem -lboost_system -lbsl430 -lboost_date_time -lboost_chrono -lboost_thread
+ endif
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ :=
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..305991adf574
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,22 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="i686 x86_64"
+makedepends="boost-devel hidapi-devel"
+short_desc="TI MSP Debug Stack tilib libmsp430"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
  2023-06-16 14:08 ` [PR PATCH] [Updated] " benjcal
@ 2023-06-16 14:13 ` benjcal
  2023-06-16 14:15 ` benjcal
                   ` (33 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-16 14:13 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1788 bytes --]

From 7b825fd5f6cbcd722801e9f5acbb2057f4da5e4e Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 24 ++++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..7744931d037b
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,24 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="i686 x86_64"
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${Smakejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
  2023-06-16 14:08 ` [PR PATCH] [Updated] " benjcal
  2023-06-16 14:13 ` benjcal
@ 2023-06-16 14:15 ` benjcal
  2023-06-17 20:12 ` benjcal
                   ` (32 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-16 14:15 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1787 bytes --]

From 50cab8b66da815b4d9454ba8ae711bfacf1924fe Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 24 ++++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..3bf250c9ffff
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,24 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="i686 x86_64"
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (2 preceding siblings ...)
  2023-06-16 14:15 ` benjcal
@ 2023-06-17 20:12 ` benjcal
  2023-06-19 16:41 ` [PR REVIEW] " ahesford
                   ` (31 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-17 20:12 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1787 bytes --]

From 50cab8b66da815b4d9454ba8ae711bfacf1924fe Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 24 ++++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..3bf250c9ffff
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,24 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="i686 x86_64"
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (4 preceding siblings ...)
  2023-06-19 16:41 ` [PR REVIEW] " ahesford
@ 2023-06-19 16:41 ` ahesford
  2023-06-19 16:58 ` benjcal
                   ` (29 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahesford @ 2023-06-19 16:41 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1233950339

Comment:
Is this a limitation imposed by upstream?

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (3 preceding siblings ...)
  2023-06-17 20:12 ` benjcal
@ 2023-06-19 16:41 ` ahesford
  2023-06-19 16:41 ` ahesford
                   ` (30 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahesford @ 2023-06-19 16:41 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1233953081

Comment:
What about something like

    CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/hidapi"

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (5 preceding siblings ...)
  2023-06-19 16:41 ` ahesford
@ 2023-06-19 16:58 ` benjcal
  2023-06-19 17:16 ` benjcal
                   ` (28 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 16:58 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234285474

Comment:
No, I just haven’t tested it 🤷‍♂️

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (6 preceding siblings ...)
  2023-06-19 16:58 ` benjcal
@ 2023-06-19 17:16 ` benjcal
  2023-06-19 18:58 ` benjcal
                   ` (27 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 17:16 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234297812

Comment:
I will test this.

The reason why I did it that way is because upstream build instructions required that file to be copied to the ThirdParty/include folder

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (7 preceding siblings ...)
  2023-06-19 17:16 ` benjcal
@ 2023-06-19 18:58 ` benjcal
  2023-06-19 19:02 ` [PR PATCH] [Updated] " benjcal
                   ` (26 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 18:58 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234373135

Comment:
@ahesford adding the CFLAGS variable doesn't work because the makefiles (multiple) are expecting that header to be inside `ThirdParty/include/`

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (8 preceding siblings ...)
  2023-06-19 18:58 ` benjcal
@ 2023-06-19 19:02 ` benjcal
  2023-06-19 19:22 ` [PR REVIEW] " ahesford
                   ` (25 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 19:02 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1765 bytes --]

From 0b26cdb7ddb3634345e52b2a28a7d4e8e088094f Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 23 +++++++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..bd1a62a3d245
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,23 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s /usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (9 preceding siblings ...)
  2023-06-19 19:02 ` [PR PATCH] [Updated] " benjcal
@ 2023-06-19 19:22 ` ahesford
  2023-06-19 20:13 ` [PR PATCH] [Updated] " benjcal
                   ` (24 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahesford @ 2023-06-19 19:22 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234391416

Comment:
In that case, the link should actually be to `${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h`, which will be different for cross-compilation.

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (10 preceding siblings ...)
  2023-06-19 19:22 ` [PR REVIEW] " ahesford
@ 2023-06-19 20:13 ` benjcal
  2023-06-19 20:15 ` [PR REVIEW] " benjcal
                   ` (23 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 20:13 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1783 bytes --]

From ae7803a6d2877d61aa5f787ea5b641d456ee9f47 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 23 +++++++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..a3dff2f86d6b
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,23 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (11 preceding siblings ...)
  2023-06-19 20:13 ` [PR PATCH] [Updated] " benjcal
@ 2023-06-19 20:15 ` benjcal
  2023-06-19 21:16 ` [PR PATCH] [Updated] " benjcal
                   ` (22 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 20:15 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234442799

Comment:
perfect! updated the template file, linted, tested build, it all looks good.
Should be ready for CI now :)  

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (12 preceding siblings ...)
  2023-06-19 20:15 ` [PR REVIEW] " benjcal
@ 2023-06-19 21:16 ` benjcal
  2023-06-19 21:16 ` [PR REVIEW] " benjcal
                   ` (21 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 21:16 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1805 bytes --]

From ae035f21e38f9b2d03843de4f80e31cf839abf07 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 24 ++++++++++++++++++++++++
 2 files changed, 35 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..ad18f62931c0
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..d5dc73643b4a
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,24 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="x86_64 i686"
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_3_15_1_1.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+tags="tilib libmsp430"
+
+do_build() {
+	ln -s ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
+
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (13 preceding siblings ...)
  2023-06-19 21:16 ` [PR PATCH] [Updated] " benjcal
@ 2023-06-19 21:16 ` benjcal
  2023-06-19 21:30 ` benjcal
                   ` (20 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 21:16 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234482460

Comment:
@ahesford seems like this actually needed after all :man_shrugging: 

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (14 preceding siblings ...)
  2023-06-19 21:16 ` [PR REVIEW] " benjcal
@ 2023-06-19 21:30 ` benjcal
  2023-06-20  3:28 ` ahesford
                   ` (19 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-19 21:30 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234482460

Comment:
@ahesford seems `archs` is actually needed after all :man_shrugging: 

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (15 preceding siblings ...)
  2023-06-19 21:30 ` benjcal
@ 2023-06-20  3:28 ` ahesford
  2023-06-20 15:05 ` benjcal
                   ` (18 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahesford @ 2023-06-20  3:28 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1234691382

Comment:
I can't seem to see the results of the last CI run after your latest push, but `archs` exists to honor upstream functional restrictions, not as a workaround for avoiding cross-compilation challenges.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (16 preceding siblings ...)
  2023-06-20  3:28 ` ahesford
@ 2023-06-20 15:05 ` benjcal
  2023-06-28 18:28 ` Duncaen
                   ` (17 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-06-20 15:05 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1235409921

Comment:
fair, let me look up how to do cross compilation in void and work on that

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (19 preceding siblings ...)
  2023-06-28 18:28 ` Duncaen
@ 2023-06-28 18:28 ` Duncaen
  2023-06-28 18:28 ` Duncaen
                   ` (14 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: Duncaen @ 2023-06-28 18:28 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1245603556

Comment:
```suggestion
distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/${version}/MSPDebugStack_OS_Package_${version//./_}.zip"
```

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (17 preceding siblings ...)
  2023-06-20 15:05 ` benjcal
@ 2023-06-28 18:28 ` Duncaen
  2023-06-28 18:28 ` Duncaen
                   ` (16 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: Duncaen @ 2023-06-28 18:28 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1245604570

Comment:
This should use the `build_style=gnu-makefile` to include all our build flags/variables set correctly on the command line.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (20 preceding siblings ...)
  2023-06-28 18:28 ` Duncaen
@ 2023-06-28 18:28 ` Duncaen
  2023-07-06  2:36 ` [PR PATCH] [Updated] " benjcal
                   ` (13 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: Duncaen @ 2023-06-28 18:28 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1245601940

Comment:
I don't see any reference to GPL or GNU in the source.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (18 preceding siblings ...)
  2023-06-28 18:28 ` Duncaen
@ 2023-06-28 18:28 ` Duncaen
  2023-06-28 18:28 ` Duncaen
                   ` (15 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: Duncaen @ 2023-06-28 18:28 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1245600420

Comment:
We currently don't use tags, they should be removed. If we start using them, they will be a set of standardized tags since random tags would just become a second "short_desc" with free text.

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (21 preceding siblings ...)
  2023-06-28 18:28 ` Duncaen
@ 2023-07-06  2:36 ` benjcal
  2023-07-06  2:38 ` [PR REVIEW] " benjcal
                   ` (12 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-06  2:36 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1911 bytes --]

From 60db2c826c0fdde7a4f6268b05c9c800b1d8aac9 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 26 ++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..133db9b3a1a6
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb -I/usr/include
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..2255361c046a
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,26 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="x86_64 i686"
+makedepends="boost-devel hidapi-devel"
+depends="hidapi"
+short_desc="Texas Instrumets MSP Debug Stack, provider of libmsp430.so"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_${version//./_}.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+
+pre_build() {
+	ln -s ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
+}
+
+do_build() {
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy ${wrksrc}/libmsp430.so /usr/lib
+	vlicense ${wrksrc}/MSPDebugStackOpenSourcePackage_manifest.html
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (22 preceding siblings ...)
  2023-07-06  2:36 ` [PR PATCH] [Updated] " benjcal
@ 2023-07-06  2:38 ` benjcal
  2023-07-06  2:39 ` benjcal
                   ` (11 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-06  2:38 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1253852908

Comment:
Adding this adds a bunch of variables that I'd need to unset to make this package work. Take a look at this other [package template](https://github.com/void-linux/void-packages/blob/master/srcpkgs/msp430-toolchain/template) that also builds code from TI


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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (23 preceding siblings ...)
  2023-07-06  2:38 ` [PR REVIEW] " benjcal
@ 2023-07-06  2:39 ` benjcal
  2023-07-06  2:40 ` benjcal
                   ` (10 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-06  2:39 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1253853374

Comment:
I tried doing cross compilation but I wasn't able to manage it. Take a look at this other package that also builds source from Texas Instruments and also limits to i686, x86_64
https://github.com/void-linux/void-packages/blob/master/srcpkgs/msp430-toolchain/template

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (24 preceding siblings ...)
  2023-07-06  2:39 ` benjcal
@ 2023-07-06  2:40 ` benjcal
  2023-07-08  0:48 ` ahesford
                   ` (9 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-06  2:40 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1253852908

Comment:
Adding this adds a bunch of variables that I'd need to unset to make this package work. Take a look at this other package that also builds code from Texas Instruments
https://github.com/void-linux/void-packages/blob/master/srcpkgs/msp430-toolchain/template

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (25 preceding siblings ...)
  2023-07-06  2:40 ` benjcal
@ 2023-07-08  0:48 ` ahesford
  2023-07-08  0:56 ` abenson
                   ` (8 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahesford @ 2023-07-08  0:48 UTC (permalink / raw)
  To: ml

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

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256680845

Comment:
The template you reference specifies `x86_64* i686*`, which includes musl variants; your spec restricts the package to glibc only. Is there some reason this package can't build on musl?

I don't know why the other template doesn't support the cross-built archs; it would be nice to understand if that was a fundamental restriction or a CBA cop-out.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (26 preceding siblings ...)
  2023-07-08  0:48 ` ahesford
@ 2023-07-08  0:56 ` abenson
  2023-07-08  0:59 ` abenson
                   ` (7 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: abenson @ 2023-07-08  0:56 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256689292

Comment:
```suggestion
	ln -sf ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
```

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (27 preceding siblings ...)
  2023-07-08  0:56 ` abenson
@ 2023-07-08  0:59 ` abenson
  2023-07-08  1:00 ` abenson
                   ` (6 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: abenson @ 2023-07-08  0:59 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256692988

Comment:
`nocross=yes` would be more appropriate here, I think.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (28 preceding siblings ...)
  2023-07-08  0:59 ` abenson
@ 2023-07-08  1:00 ` abenson
  2023-07-08  1:00 ` abenson
                   ` (5 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: abenson @ 2023-07-08  1:00 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256693401

Comment:
This is automatically detected.

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (29 preceding siblings ...)
  2023-07-08  1:00 ` abenson
@ 2023-07-08  1:00 ` abenson
  2023-07-08  1:02 ` abenson
                   ` (4 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: abenson @ 2023-07-08  1:00 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256693784

Comment:
```suggestion
short_desc="Texas Instrumets MSP Debug Stack"
```

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (30 preceding siblings ...)
  2023-07-08  1:00 ` abenson
@ 2023-07-08  1:02 ` abenson
  2023-07-12 14:09 ` [PR PATCH] [Updated] " benjcal
                   ` (3 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: abenson @ 2023-07-08  1:02 UTC (permalink / raw)
  To: ml

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

New review comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1256695639

Comment:
You don't need to specify `${wrksrc}` here, you're already in that directory in this stage.

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (31 preceding siblings ...)
  2023-07-08  1:02 ` abenson
@ 2023-07-12 14:09 ` benjcal
  2023-07-12 14:12 ` [PR REVIEW] " benjcal
                   ` (2 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-12 14:09 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1872 bytes --]

From c4c12de1237a75cd056ddc1e22ca96981b564603 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 26 ++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..133db9b3a1a6
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb -I/usr/include
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..9abb6f21a2cd
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,26 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+archs="x86_64* i686* aarch64*"
+nocross=yes
+makedepends="boost-devel hidapi-devel"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_${version//./_}.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+
+pre_build() {
+	ln -sf ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
+}
+
+do_build() {
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy libmsp430.so /usr/lib
+	vlicense MSPDebugStackOpenSourcePackage_manifest.html
+}

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

* Re: [PR REVIEW] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (32 preceding siblings ...)
  2023-07-12 14:09 ` [PR PATCH] [Updated] " benjcal
@ 2023-07-12 14:12 ` benjcal
  2023-07-12 14:22 ` [PR PATCH] [Updated] " benjcal
  2023-07-26 13:59 ` [PR PATCH] [Closed]: " benjcal
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-12 14:12 UTC (permalink / raw)
  To: ml

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

New review comment by benjcal on void-packages repository

https://github.com/void-linux/void-packages/pull/44465#discussion_r1261243978

Comment:
:+1: 

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

* Re: [PR PATCH] [Updated] New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (33 preceding siblings ...)
  2023-07-12 14:12 ` [PR REVIEW] " benjcal
@ 2023-07-12 14:22 ` benjcal
  2023-07-26 13:59 ` [PR PATCH] [Closed]: " benjcal
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-12 14:22 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by benjcal against master on the void-packages repository

https://github.com/benjcal/void-packages mspds-new-package
https://github.com/void-linux/void-packages/pull/44465

New package: mspds-3.15.1
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mspds-new-package-44465.patch --]
[-- Type: text/x-diff, Size: 1839 bytes --]

From 5aa246c7de2bdd4bf11adebe9708bdc78efb60e1 Mon Sep 17 00:00:00 2001
From: Benjamin Calderon <benj.calderon@gmail.com>
Date: Fri, 16 Jun 2023 09:52:19 -0400
Subject: [PATCH] New package: mspds-3.15.1

---
 srcpkgs/mspds/patches/Makefile.patch | 11 +++++++++++
 srcpkgs/mspds/template               | 25 +++++++++++++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 srcpkgs/mspds/patches/Makefile.patch
 create mode 100644 srcpkgs/mspds/template

diff --git a/srcpkgs/mspds/patches/Makefile.patch b/srcpkgs/mspds/patches/Makefile.patch
new file mode 100644
index 000000000000..133db9b3a1a6
--- /dev/null
+++ b/srcpkgs/mspds/patches/Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -66,7 +66,7 @@
+ 	BSTATIC := -Wl,-Bstatic
+ 	BDYNAMIC := -Wl,-Bdynamic
+ 
+-	HIDOBJ := $(LIBTHIRD)/hid-libusb.o
++	HIDOBJ := -lhidapi-libusb -I/usr/include
+ else
+ 	CXX:= clang++
+ 
diff --git a/srcpkgs/mspds/template b/srcpkgs/mspds/template
new file mode 100644
index 000000000000..124a0baeb2fd
--- /dev/null
+++ b/srcpkgs/mspds/template
@@ -0,0 +1,25 @@
+# Template file for 'mspds'
+pkgname=mspds
+version=3.15.1.1
+revision=1
+nocross=yes
+makedepends="boost-devel hidapi-devel"
+short_desc="Texas Instrumets MSP Debug Stack"
+maintainer="Benjamin Calderon <benj.calderon@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://www.ti.com/tool/MSPDS"
+distfiles="https://dr-download.ti.com/software-development/driver-or-library/MD-4vnqcP1Wk4/3.15.1.1/MSPDebugStack_OS_Package_${version//./_}.zip"
+checksum=e3a59a98c43de7a92e5814d8c3304026165e6d2551e60acaca1f08c6b1a4bac8
+
+pre_build() {
+	ln -sf ${XBPS_CROSS_BASE}/usr/include/hidapi/hidapi.h ThirdParty/include/
+}
+
+do_build() {
+	make ${makejobs}
+}
+
+do_install() {
+	vcopy libmsp430.so /usr/lib
+	vlicense MSPDebugStackOpenSourcePackage_manifest.html
+}

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

* Re: [PR PATCH] [Closed]: New package: mspds-3.15.1
  2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
                   ` (34 preceding siblings ...)
  2023-07-12 14:22 ` [PR PATCH] [Updated] " benjcal
@ 2023-07-26 13:59 ` benjcal
  35 siblings, 0 replies; 37+ messages in thread
From: benjcal @ 2023-07-26 13:59 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

New package: mspds-3.15.1
https://github.com/void-linux/void-packages/pull/44465

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-07-26 13:59 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-16 13:57 [PR PATCH] New package: mspds-3.15.1 benjcal
2023-06-16 14:08 ` [PR PATCH] [Updated] " benjcal
2023-06-16 14:13 ` benjcal
2023-06-16 14:15 ` benjcal
2023-06-17 20:12 ` benjcal
2023-06-19 16:41 ` [PR REVIEW] " ahesford
2023-06-19 16:41 ` ahesford
2023-06-19 16:58 ` benjcal
2023-06-19 17:16 ` benjcal
2023-06-19 18:58 ` benjcal
2023-06-19 19:02 ` [PR PATCH] [Updated] " benjcal
2023-06-19 19:22 ` [PR REVIEW] " ahesford
2023-06-19 20:13 ` [PR PATCH] [Updated] " benjcal
2023-06-19 20:15 ` [PR REVIEW] " benjcal
2023-06-19 21:16 ` [PR PATCH] [Updated] " benjcal
2023-06-19 21:16 ` [PR REVIEW] " benjcal
2023-06-19 21:30 ` benjcal
2023-06-20  3:28 ` ahesford
2023-06-20 15:05 ` benjcal
2023-06-28 18:28 ` Duncaen
2023-06-28 18:28 ` Duncaen
2023-06-28 18:28 ` Duncaen
2023-06-28 18:28 ` Duncaen
2023-07-06  2:36 ` [PR PATCH] [Updated] " benjcal
2023-07-06  2:38 ` [PR REVIEW] " benjcal
2023-07-06  2:39 ` benjcal
2023-07-06  2:40 ` benjcal
2023-07-08  0:48 ` ahesford
2023-07-08  0:56 ` abenson
2023-07-08  0:59 ` abenson
2023-07-08  1:00 ` abenson
2023-07-08  1:00 ` abenson
2023-07-08  1:02 ` abenson
2023-07-12 14:09 ` [PR PATCH] [Updated] " benjcal
2023-07-12 14:12 ` [PR REVIEW] " benjcal
2023-07-12 14:22 ` [PR PATCH] [Updated] " benjcal
2023-07-26 13:59 ` [PR PATCH] [Closed]: " benjcal

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).