Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] barrier: version update to 2.4.0
@ 2021-11-08 13:18 jinithin
  2021-11-08 13:19 ` jinithin
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: jinithin @ 2021-11-08 13:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jinithin/void-packages barrier
https://github.com/void-linux/void-packages/pull/33960

barrier: version update to 2.4.0
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/33960.patch is attached

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

From 5ba569d54b477c563c87dc9fb3999ae710ff1162 Mon Sep 17 00:00:00 2001
From: Jonathan Larsson <jonathan.larsson@dom.se>
Date: Mon, 8 Nov 2021 14:16:03 +0100
Subject: [PATCH] barrier: version update to 2.4.0

---
 srcpkgs/barrier/template | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/barrier/template b/srcpkgs/barrier/template
index f36a9914585c..ae4df560fae4 100644
--- a/srcpkgs/barrier/template
+++ b/srcpkgs/barrier/template
@@ -1,7 +1,7 @@
 # Template file for 'barrier'
 pkgname=barrier
-version=2.3.3
-revision=2
+version=2.4.0
+revision=1
 build_style=cmake
 configure_args="-DBARRIER_REVISION=00000000 -DBARRIER_VERSION_STAGE=RELEASE"
 hostmakedepends="pkg-config qt5-qmake qt5-host-tools"
@@ -11,22 +11,24 @@ short_desc="Open-source KVM software based on Synergy"
 maintainer="John <me@johnnynator.dev>"
 license="GPL-2.0-only"
 homepage="https://github.com/debauchee/barrier"
-_gmock_commit=7d33fee11ec480beae4c28ad09ca56d974140a72
-_gtest_commit=800f5422ac9d9e0ad59cd860a2ef3a679588acb4
-distfiles="https://github.com/debauchee/barrier/archive/v${version}.tar.gz
- https://github.com/google/googlemock/archive/${_gmock_commit}.tar.gz
- https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz"
-checksum="259e75c150ca16d9db51870b026dc7aad56c410fa3d2f5fdccc19d4b6024bdc5
- f4191fd64e8a961c06b7cc90a2bbf3774bd315254884675a900f8f34fc2c4c81
- 57bc26ac31e1bc47a12e4ae99a0f6e17506ba10f0f82ae16aa52cc7cc215a3b0"
+_gtest_commit=bf0701daa9f5b30e5882e2f8f9a5280bcba87e77
+_ghc_commit=a07ddedeae722c09e819895e1c31ae500e9abad6
+distfiles="https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz
+ https://github.com/gulrak/filesystem/archive/${_ghc_commit}.tar.gz
+ https://github.com/debauchee/barrier/archive/v${version}.tar.gz"
+checksum="b44b5d37b62e7e54887f07f9862e7dce537aa9922e80995007bcffe6ab9058d4
+ a0311bf91e6b4a7dbeb40be076d4b8e28f54f5034c9b9c5ce3ccd55c9b7a8819
+ 20046cae7a831d9bb3740b6f04feb9bded4c794c11586a70089080e94ae2fe77"
 
 pre_configure() {
 	# move submodule to proper location
 	rmdir ext/gmock
 	rmdir ext/gtest
+	rmdir ext/gulrak-filesystem
 
-	mv -v ../googlemock-${_gmock_commit} ext/gmock
-	mv -v ../googletest-${_gtest_commit} ext/gtest
+	cp -rv ../googletest-${_gtest_commit}/googlemock ext/gmock
+	mv -v ../googletest-${_gtest_commit}/googletest ext/gtest
+	mv -v ../filesystem-${_ghc_commit}/include/ghc src/lib/ghc
 }
 
 do_install() {

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

* Re: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
@ 2021-11-08 13:19 ` jinithin
  2021-11-08 13:21 ` [PR PATCH] [Updated] " jinithin
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jinithin @ 2021-11-08 13:19 UTC (permalink / raw)
  To: ml

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

New comment by jinithin on void-packages repository

https://github.com/void-linux/void-packages/pull/33960#issuecomment-963142816

Comment:
cc @Johnnynator

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

* Re: [PR PATCH] [Updated] barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
  2021-11-08 13:19 ` jinithin
@ 2021-11-08 13:21 ` jinithin
  2021-11-08 22:04 ` Johnnynator
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jinithin @ 2021-11-08 13:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jinithin/void-packages barrier
https://github.com/void-linux/void-packages/pull/33960

barrier: version update to 2.4.0
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/33960.patch is attached

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

From b44c22985e79d49d0291b4a3c0f3bd24ab6922dc Mon Sep 17 00:00:00 2001
From: Jonathan Larsson <jonathan.larsson@dom.se>
Date: Mon, 8 Nov 2021 14:16:03 +0100
Subject: [PATCH] barrier: version update to 2.4.0

---
 srcpkgs/barrier/template | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/barrier/template b/srcpkgs/barrier/template
index f36a9914585c..64c55dac907e 100644
--- a/srcpkgs/barrier/template
+++ b/srcpkgs/barrier/template
@@ -1,7 +1,7 @@
 # Template file for 'barrier'
 pkgname=barrier
-version=2.3.3
-revision=2
+version=2.4.0
+revision=1
 build_style=cmake
 configure_args="-DBARRIER_REVISION=00000000 -DBARRIER_VERSION_STAGE=RELEASE"
 hostmakedepends="pkg-config qt5-qmake qt5-host-tools"
@@ -11,22 +11,24 @@ short_desc="Open-source KVM software based on Synergy"
 maintainer="John <me@johnnynator.dev>"
 license="GPL-2.0-only"
 homepage="https://github.com/debauchee/barrier"
-_gmock_commit=7d33fee11ec480beae4c28ad09ca56d974140a72
-_gtest_commit=800f5422ac9d9e0ad59cd860a2ef3a679588acb4
-distfiles="https://github.com/debauchee/barrier/archive/v${version}.tar.gz
- https://github.com/google/googlemock/archive/${_gmock_commit}.tar.gz
- https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz"
-checksum="259e75c150ca16d9db51870b026dc7aad56c410fa3d2f5fdccc19d4b6024bdc5
- f4191fd64e8a961c06b7cc90a2bbf3774bd315254884675a900f8f34fc2c4c81
- 57bc26ac31e1bc47a12e4ae99a0f6e17506ba10f0f82ae16aa52cc7cc215a3b0"
+_gtest_commit=bf0701daa9f5b30e5882e2f8f9a5280bcba87e77
+_ghc_commit=a07ddedeae722c09e819895e1c31ae500e9abad6
+distfiles="https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz
+ https://github.com/gulrak/filesystem/archive/${_ghc_commit}.tar.gz
+ https://github.com/debauchee/barrier/archive/v${version}.tar.gz"
+checksum="b44b5d37b62e7e54887f07f9862e7dce537aa9922e80995007bcffe6ab9058d4
+ a0311bf91e6b4a7dbeb40be076d4b8e28f54f5034c9b9c5ce3ccd55c9b7a8819
+ 20046cae7a831d9bb3740b6f04feb9bded4c794c11586a70089080e94ae2fe77"
 
 pre_configure() {
 	# move submodule to proper location
 	rmdir ext/gmock
 	rmdir ext/gtest
+	rmdir ext/gulrak-filesystem
 
-	mv -v ../googlemock-${_gmock_commit} ext/gmock
-	mv -v ../googletest-${_gtest_commit} ext/gtest
+	mv -v ../googletest-${_gtest_commit}/googlemock ext/gmock
+	mv -v ../googletest-${_gtest_commit}/googletest ext/gtest
+	mv -v ../filesystem-${_ghc_commit}/include/ghc src/lib/ghc
 }
 
 do_install() {

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

* Re: [PR PATCH] [Updated] barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
  2021-11-08 13:19 ` jinithin
  2021-11-08 13:21 ` [PR PATCH] [Updated] " jinithin
@ 2021-11-08 22:04 ` Johnnynator
  2021-11-08 22:04 ` [PR PATCH] [Merged]: " Johnnynator
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Johnnynator @ 2021-11-08 22:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jinithin/void-packages barrier
https://github.com/void-linux/void-packages/pull/33960

barrier: version update to 2.4.0
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/33960.patch is attached

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

From 3f068e12c374de9da43e82054dfde5a207ad647c Mon Sep 17 00:00:00 2001
From: Jonathan Larsson <jonathan.larsson@dom.se>
Date: Mon, 8 Nov 2021 14:16:03 +0100
Subject: [PATCH] barrier: version update to 2.4.0

---
 srcpkgs/barrier/template | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/barrier/template b/srcpkgs/barrier/template
index f36a9914585c..79a4351077d4 100644
--- a/srcpkgs/barrier/template
+++ b/srcpkgs/barrier/template
@@ -1,7 +1,7 @@
 # Template file for 'barrier'
 pkgname=barrier
-version=2.3.3
-revision=2
+version=2.4.0
+revision=1
 build_style=cmake
 configure_args="-DBARRIER_REVISION=00000000 -DBARRIER_VERSION_STAGE=RELEASE"
 hostmakedepends="pkg-config qt5-qmake qt5-host-tools"
@@ -11,22 +11,28 @@ short_desc="Open-source KVM software based on Synergy"
 maintainer="John <me@johnnynator.dev>"
 license="GPL-2.0-only"
 homepage="https://github.com/debauchee/barrier"
-_gmock_commit=7d33fee11ec480beae4c28ad09ca56d974140a72
-_gtest_commit=800f5422ac9d9e0ad59cd860a2ef3a679588acb4
-distfiles="https://github.com/debauchee/barrier/archive/v${version}.tar.gz
- https://github.com/google/googlemock/archive/${_gmock_commit}.tar.gz
- https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz"
-checksum="259e75c150ca16d9db51870b026dc7aad56c410fa3d2f5fdccc19d4b6024bdc5
- f4191fd64e8a961c06b7cc90a2bbf3774bd315254884675a900f8f34fc2c4c81
- 57bc26ac31e1bc47a12e4ae99a0f6e17506ba10f0f82ae16aa52cc7cc215a3b0"
+_gtest_commit=bf0701daa9f5b30e5882e2f8f9a5280bcba87e77
+_ghc_commit=a07ddedeae722c09e819895e1c31ae500e9abad6
+distfiles="https://github.com/google/googletest/archive/${_gtest_commit}.tar.gz
+ https://github.com/gulrak/filesystem/archive/${_ghc_commit}.tar.gz
+ https://github.com/debauchee/barrier/archive/v${version}.tar.gz"
+checksum="b44b5d37b62e7e54887f07f9862e7dce537aa9922e80995007bcffe6ab9058d4
+ a0311bf91e6b4a7dbeb40be076d4b8e28f54f5034c9b9c5ce3ccd55c9b7a8819
+ 20046cae7a831d9bb3740b6f04feb9bded4c794c11586a70089080e94ae2fe77"
 
 pre_configure() {
 	# move submodule to proper location
 	rmdir ext/gmock
 	rmdir ext/gtest
+	rmdir ext/gulrak-filesystem
 
-	mv -v ../googlemock-${_gmock_commit} ext/gmock
-	mv -v ../googletest-${_gtest_commit} ext/gtest
+	mv -v ../googletest-${_gtest_commit}/googlemock ext/gmock
+	mv -v ../googletest-${_gtest_commit}/googletest ext/gtest
+	mv -v ../filesystem-${_ghc_commit}/include/ghc src/lib/ghc
+}
+
+do_check() {
+	: # CTest is wrongly configured, can't find the test binaries
 }
 
 do_install() {

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

* Re: [PR PATCH] [Merged]: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
                   ` (2 preceding siblings ...)
  2021-11-08 22:04 ` Johnnynator
@ 2021-11-08 22:04 ` Johnnynator
  2021-11-08 22:06 ` Johnnynator
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Johnnynator @ 2021-11-08 22:04 UTC (permalink / raw)
  To: ml

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

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

barrier: version update to 2.4.0
https://github.com/void-linux/void-packages/pull/33960

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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] 9+ messages in thread

* Re: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
                   ` (3 preceding siblings ...)
  2021-11-08 22:04 ` [PR PATCH] [Merged]: " Johnnynator
@ 2021-11-08 22:06 ` Johnnynator
  2021-11-09  7:33 ` jinithin
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Johnnynator @ 2021-11-08 22:06 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/33960#issuecomment-963617259

Comment:
Thx for updating and testing.

I made a quick change to your commit and also disabled `do_check` since they broke the configuration for running tests somewhere in their cmake (or cmake is the broken one :shrug: )

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

* Re: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
                   ` (4 preceding siblings ...)
  2021-11-08 22:06 ` Johnnynator
@ 2021-11-09  7:33 ` jinithin
  2021-11-09  7:34 ` jinithin
  2021-11-09  8:50 ` Johnnynator
  7 siblings, 0 replies; 9+ messages in thread
From: jinithin @ 2021-11-09  7:33 UTC (permalink / raw)
  To: ml

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

New comment by jinithin on void-packages repository

https://github.com/void-linux/void-packages/pull/33960#issuecomment-963885349

Comment:
great! didn't notice it when building locally, but i now see the pipeline failed :)

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

* Re: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
                   ` (5 preceding siblings ...)
  2021-11-09  7:33 ` jinithin
@ 2021-11-09  7:34 ` jinithin
  2021-11-09  8:50 ` Johnnynator
  7 siblings, 0 replies; 9+ messages in thread
From: jinithin @ 2021-11-09  7:34 UTC (permalink / raw)
  To: ml

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

New comment by jinithin on void-packages repository

https://github.com/void-linux/void-packages/pull/33960#issuecomment-963885851

Comment:
seems to be related to this.
https://github.com/debauchee/barrier/issues/1086

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

* Re: barrier: version update to 2.4.0
  2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
                   ` (6 preceding siblings ...)
  2021-11-09  7:34 ` jinithin
@ 2021-11-09  8:50 ` Johnnynator
  7 siblings, 0 replies; 9+ messages in thread
From: Johnnynator @ 2021-11-09  8:50 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/33960#issuecomment-963936980

Comment:
> great! didn't notice it when building locally, but i now see the pipeline failed :)

Checks aren't enabled by default in xbps-src. You can run them with `-Q` or setting `XBPS_CHECK_PKGS=yes` in `etc/conf`.

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

end of thread, other threads:[~2021-11-09  8:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-08 13:18 [PR PATCH] barrier: version update to 2.4.0 jinithin
2021-11-08 13:19 ` jinithin
2021-11-08 13:21 ` [PR PATCH] [Updated] " jinithin
2021-11-08 22:04 ` Johnnynator
2021-11-08 22:04 ` [PR PATCH] [Merged]: " Johnnynator
2021-11-08 22:06 ` Johnnynator
2021-11-09  7:33 ` jinithin
2021-11-09  7:34 ` jinithin
2021-11-09  8:50 ` Johnnynator

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