Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] bearssl: run tests
@ 2022-07-18 10:29 dkwo
  2022-07-18 14:44 ` [PR REVIEW] " sgn
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: dkwo @ 2022-07-18 10:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages bear
https://github.com/void-linux/void-packages/pull/38126

bearssl: run tests
I added the `do_check` part, which seems to run fine.
Previously it was skipped.

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

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

From 0e5a9430f9a3a671ed9170685d5c0d0cb0e0b043 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 18 Jul 2022 12:26:28 +0200
Subject: [PATCH] bearssl: run tests

---
 srcpkgs/bearssl/template | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/bearssl/template b/srcpkgs/bearssl/template
index ec393735acf9..14654c9c4766 100644
--- a/srcpkgs/bearssl/template
+++ b/srcpkgs/bearssl/template
@@ -1,15 +1,15 @@
 # Template file for 'bearssl'
 pkgname=bearssl
 version=0.6
-revision=2
+revision=3
 build_style=gnu-makefile
 make_build_args="D=.so.${version} LD=\$(CC) LDDLL=\$(CC) LDDLLFLAGS=-shared LDDLLFLAGS+=-Wl,-soname,lib${pkgname}.so.${version%%.*}"
 short_desc="Implementation of the SSL/TLS protocol in C"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="MIT"
 homepage="https://bearssl.org"
-changelog="${homepage}/changelog.html"
-distfiles="${homepage}/${pkgname}-${version}.tar.gz"
+changelog="https://bearssl.org/changelog.html"
+distfiles="https://bearssl.org/${pkgname}-${version}.tar.gz"
 checksum=6705bba1714961b41a728dfc5debbe348d2966c117649392f8c8139efc83ff14
 CFLAGS="-fPIC"
 
@@ -22,6 +22,13 @@ do_install() {
 	vcopy inc usr/include
 	vlicense LICENSE.txt LICENSE
 }
+
+do_check() {
+	cd "${wrksrc}/build"
+	./testx509
+	./testcrypto all
+}
+
 bearssl-devel_package() {
 	short_desc+=" - development files"
 	depends="${sourcepkg}>=${version}_${revision}"

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

* Re: [PR REVIEW] bearssl: run tests
  2022-07-18 10:29 [PR PATCH] bearssl: run tests dkwo
@ 2022-07-18 14:44 ` sgn
  2022-07-18 15:14 ` [PR PATCH] [Updated] " dkwo
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2022-07-18 14:44 UTC (permalink / raw)
  To: ml

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

New review comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/38126#discussion_r923460632

Comment:
I don't think we need to bump revision.

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

* Re: [PR PATCH] [Updated] bearssl: run tests
  2022-07-18 10:29 [PR PATCH] bearssl: run tests dkwo
  2022-07-18 14:44 ` [PR REVIEW] " sgn
@ 2022-07-18 15:14 ` dkwo
  2022-07-18 15:22 ` [PR PATCH] [Merged]: " sgn
  2022-10-11  7:24 ` dkwo
  3 siblings, 0 replies; 5+ messages in thread
From: dkwo @ 2022-07-18 15:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages bear
https://github.com/void-linux/void-packages/pull/38126

bearssl: run tests
I added the `do_check` part, which seems to run fine.
Previously it was skipped.

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

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

From 98019094b593c8032ecf6acd45148a713fb5b589 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 18 Jul 2022 12:26:28 +0200
Subject: [PATCH] bearssl: run tests

---
 srcpkgs/bearssl/template | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/bearssl/template b/srcpkgs/bearssl/template
index ec393735acf9..043d0d9cc54d 100644
--- a/srcpkgs/bearssl/template
+++ b/srcpkgs/bearssl/template
@@ -8,8 +8,8 @@ short_desc="Implementation of the SSL/TLS protocol in C"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="MIT"
 homepage="https://bearssl.org"
-changelog="${homepage}/changelog.html"
-distfiles="${homepage}/${pkgname}-${version}.tar.gz"
+changelog="https://bearssl.org/changelog.html"
+distfiles="https://bearssl.org/${pkgname}-${version}.tar.gz"
 checksum=6705bba1714961b41a728dfc5debbe348d2966c117649392f8c8139efc83ff14
 CFLAGS="-fPIC"
 
@@ -22,6 +22,13 @@ do_install() {
 	vcopy inc usr/include
 	vlicense LICENSE.txt LICENSE
 }
+
+do_check() {
+	cd "${wrksrc}/build"
+	./testx509
+	./testcrypto all
+}
+
 bearssl-devel_package() {
 	short_desc+=" - development files"
 	depends="${sourcepkg}>=${version}_${revision}"

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

* Re: [PR PATCH] [Merged]: bearssl: run tests
  2022-07-18 10:29 [PR PATCH] bearssl: run tests dkwo
  2022-07-18 14:44 ` [PR REVIEW] " sgn
  2022-07-18 15:14 ` [PR PATCH] [Updated] " dkwo
@ 2022-07-18 15:22 ` sgn
  2022-10-11  7:24 ` dkwo
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2022-07-18 15:22 UTC (permalink / raw)
  To: ml

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

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

bearssl: run tests
https://github.com/void-linux/void-packages/pull/38126

Description:
I added the `do_check` part, which seems to run fine.
Previously it was skipped.

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

* Re: bearssl: run tests
  2022-07-18 10:29 [PR PATCH] bearssl: run tests dkwo
                   ` (2 preceding siblings ...)
  2022-07-18 15:22 ` [PR PATCH] [Merged]: " sgn
@ 2022-10-11  7:24 ` dkwo
  3 siblings, 0 replies; 5+ messages in thread
From: dkwo @ 2022-10-11  7:24 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/38126#issuecomment-1274208015

Comment:
Done.


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

end of thread, other threads:[~2022-10-11  7:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-18 10:29 [PR PATCH] bearssl: run tests dkwo
2022-07-18 14:44 ` [PR REVIEW] " sgn
2022-07-18 15:14 ` [PR PATCH] [Updated] " dkwo
2022-07-18 15:22 ` [PR PATCH] [Merged]: " sgn
2022-10-11  7:24 ` dkwo

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