Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Bcc fix
@ 2021-08-02 11:08 chexum
  2021-08-02 11:09 ` [PR PATCH] [Updated] " chexum
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: chexum @ 2021-08-02 11:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chexum/void-packages bcc-fix
https://github.com/void-linux/void-packages/pull/32296

Bcc fix
<!-- 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-glibc
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From ffde6a5a7eb256f699e8ae89b73a3683c8d6859d Mon Sep 17 00:00:00 2001
From: J Farkas <chexum+git@gmail.com>
Date: Wed, 21 Jul 2021 18:16:42 +0000
Subject: [PATCH 1/2] custom: linux5.13

---
 ...Fix-regression-on-guarding-ASSR-with.patch | 36 +++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 srcpkgs/linux5.13/patches/0001-drm-amd-display-Fix-regression-on-guarding-ASSR-with.patch

diff --git a/srcpkgs/linux5.13/patches/0001-drm-amd-display-Fix-regression-on-guarding-ASSR-with.patch b/srcpkgs/linux5.13/patches/0001-drm-amd-display-Fix-regression-on-guarding-ASSR-with.patch
new file mode 100644
index 000000000000..3571eab1bfae
--- /dev/null
+++ b/srcpkgs/linux5.13/patches/0001-drm-amd-display-Fix-regression-on-guarding-ASSR-with.patch
@@ -0,0 +1,36 @@
+From d67c2beb9b06f88838a82268a814609fa6b5de1c Mon Sep 17 00:00:00 2001
+From: Stylon Wang <stylon.wang@amd.com>
+Date: Wed, 23 Jun 2021 15:24:53 +0800
+Subject: [PATCH] drm/amd/display: Fix regression on guarding ASSR with
+ internal flag
+
+[Why]
+Patch guarding ASSR with internal flag regresses on some embedded
+panels.
+
+[How]
+Restore part of code flow to adhere to prior work-arounds for
+certain panels.
+
+Signed-off-by: Stylon Wang <stylon.wang@amd.com>
+---
+ drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
+index 3ff3d9e90983..3b072de9550d 100644
+--- a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
++++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
+@@ -1675,9 +1675,6 @@ static enum dp_panel_mode try_enable_assr(struct dc_stream_state *stream)
+ 	} else
+ 		panel_mode = DP_PANEL_MODE_DEFAULT;
+ 
+-#else
+-	/* turn off ASSR if the implementation is not compiled in */
+-	panel_mode = DP_PANEL_MODE_DEFAULT;
+ #endif
+ 	return panel_mode;
+ }
+-- 
+2.25.1
+

From a97b8600b87066d9a281bbd47a858313965fff05 Mon Sep 17 00:00:00 2001
From: J Farkas <chexum+git@gmail.com>
Date: Mon, 2 Aug 2021 10:54:22 +0000
Subject: [PATCH 2/2] bcc: fix checksum

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index 5fdf8be098b3..9284b5e45978 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -13,7 +13,7 @@ maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Apache-2.0"
 homepage="https://github.com/iovisor/bcc"
 distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz"
-checksum=93edc925675262aa509f5eaf146f2fc7dfa3e01d1b0336a5de01ee6d72fa493b
+checksum=5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215
 python_version="3"
 
 if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then

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

* Re: [PR PATCH] [Updated] Bcc fix
  2021-08-02 11:08 [PR PATCH] Bcc fix chexum
@ 2021-08-02 11:09 ` chexum
  2021-08-02 11:24 ` sgn
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: chexum @ 2021-08-02 11:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chexum/void-packages bcc-fix
https://github.com/void-linux/void-packages/pull/32296

Bcc fix
<!-- 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-glibc
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From fd472b9f150ee087a55deba6342197d513991f60 Mon Sep 17 00:00:00 2001
From: J Farkas <chexum+git@gmail.com>
Date: Mon, 2 Aug 2021 10:54:22 +0000
Subject: [PATCH] bcc: fix checksum

---
 srcpkgs/bcc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index 5fdf8be098b3..9284b5e45978 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -13,7 +13,7 @@ maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Apache-2.0"
 homepage="https://github.com/iovisor/bcc"
 distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz"
-checksum=93edc925675262aa509f5eaf146f2fc7dfa3e01d1b0336a5de01ee6d72fa493b
+checksum=5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215
 python_version="3"
 
 if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then

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

* Re: [PR PATCH] [Updated] Bcc fix
  2021-08-02 11:08 [PR PATCH] Bcc fix chexum
  2021-08-02 11:09 ` [PR PATCH] [Updated] " chexum
@ 2021-08-02 11:24 ` sgn
  2021-08-02 20:25 ` ericonr
  2021-08-02 20:25 ` [PR PATCH] [Closed]: " ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: sgn @ 2021-08-02 11:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chexum/void-packages bcc-fix
https://github.com/void-linux/void-packages/pull/32296

Bcc fix
<!-- 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-glibc
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

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

From 99a7b555e7bc849885a5d817322e7ded3b6c8ba8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Sat, 31 Jul 2021 12:12:41 +0700
Subject: [PATCH] bcc: (really) update to 0.21.0.

Versioning downloaded files to avoid forgetting update checksum.
See: 13d27981fc, (bcc: update to 0.21.0., 2021-07-29)
---
 srcpkgs/bcc/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template
index 5fdf8be098b3..5a3e66c86c5d 100644
--- a/srcpkgs/bcc/template
+++ b/srcpkgs/bcc/template
@@ -1,7 +1,7 @@
 # Template file for 'bcc'
 pkgname=bcc
 version=0.21.0
-revision=1
+revision=2
 wrksrc="bcc"
 build_style=cmake
 configure_args="-DREVISION=${version}"
@@ -12,8 +12,8 @@ short_desc="BPF-based Linux IO analysis, networking, monitoring, and more"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Apache-2.0"
 homepage="https://github.com/iovisor/bcc"
-distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz"
-checksum=93edc925675262aa509f5eaf146f2fc7dfa3e01d1b0336a5de01ee6d72fa493b
+distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz>bcc-${version}.tar.gz"
+checksum=5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215
 python_version="3"
 
 if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then

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

* Re: Bcc fix
  2021-08-02 11:08 [PR PATCH] Bcc fix chexum
  2021-08-02 11:09 ` [PR PATCH] [Updated] " chexum
  2021-08-02 11:24 ` sgn
@ 2021-08-02 20:25 ` ericonr
  2021-08-02 20:25 ` [PR PATCH] [Closed]: " ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-08-02 20:25 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/32296#issuecomment-891309926

Comment:
Sorry, missed the PR. c25ab93f5b539171c5d525bc582feeda25f07851

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

* Re: [PR PATCH] [Closed]: Bcc fix
  2021-08-02 11:08 [PR PATCH] Bcc fix chexum
                   ` (2 preceding siblings ...)
  2021-08-02 20:25 ` ericonr
@ 2021-08-02 20:25 ` ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-08-02 20:25 UTC (permalink / raw)
  To: ml

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

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

Bcc fix
https://github.com/void-linux/void-packages/pull/32296

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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-glibc
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2021-08-02 20:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02 11:08 [PR PATCH] Bcc fix chexum
2021-08-02 11:09 ` [PR PATCH] [Updated] " chexum
2021-08-02 11:24 ` sgn
2021-08-02 20:25 ` ericonr
2021-08-02 20:25 ` [PR PATCH] [Closed]: " ericonr

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