Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rsyslog: restore logrotate file
@ 2022-08-25  2:19 Goorzhel
  2022-08-26  1:59 ` [PR PATCH] [Updated] " Goorzhel
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Goorzhel @ 2022-08-25  2:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Goorzhel/void-packages rsyslog
https://github.com/void-linux/void-packages/pull/38899

rsyslog: restore logrotate file
Mysteriously deleted in a908103f241.

This will likely affect a lot of machines. Worth an announcement (or a different way to do this)?

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


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

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

From 680ee165ddd40f7f12f308361259df82055209e6 Mon Sep 17 00:00:00 2001
From: Antonio Gurgel <antonio@goorzhel.com>
Date: Mon, 22 Aug 2022 16:49:18 -0700
Subject: [PATCH] rsyslog: restore logrotate file

Mysteriously deleted in a908103f241.
---
 srcpkgs/rsyslog/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/rsyslog/template b/srcpkgs/rsyslog/template
index 62684029acb3..cceb1b7e3a7b 100644
--- a/srcpkgs/rsyslog/template
+++ b/srcpkgs/rsyslog/template
@@ -1,7 +1,7 @@
 # Template file for 'rsyslog'
 pkgname=rsyslog
 version=8.2204.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --enable-gnutls --enable-mysql
  --enable-pgsql --enable-imdiag --enable-imfile --enable-mail --enable-imptcp
@@ -41,6 +41,7 @@ pre_configure() {
 post_install() {
 	vsv rsyslogd
 	vconf ${FILESDIR}/rsyslog.conf
+	vinstall ${FILESDIR}/rsyslog.logrotate 644 etc/logrotate.d rsyslog
 }
 
 rsyslog-gssapi_package() {

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

* Re: [PR PATCH] [Updated] rsyslog: restore logrotate file
  2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
@ 2022-08-26  1:59 ` Goorzhel
  2022-10-19  2:18 ` [PR REVIEW] " classabbyamp
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Goorzhel @ 2022-08-26  1:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Goorzhel/void-packages rsyslog
https://github.com/void-linux/void-packages/pull/38899

rsyslog: restore logrotate file
Mysteriously deleted in a908103f241.

This will likely affect a lot of machines. Worth an announcement (or a different way to do this)?

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


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

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

From 680ee165ddd40f7f12f308361259df82055209e6 Mon Sep 17 00:00:00 2001
From: Antonio Gurgel <antonio@goorzhel.com>
Date: Mon, 22 Aug 2022 16:49:18 -0700
Subject: [PATCH 1/2] rsyslog: restore logrotate file

Mysteriously deleted in a908103f241.
---
 srcpkgs/rsyslog/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/rsyslog/template b/srcpkgs/rsyslog/template
index 62684029acb3..cceb1b7e3a7b 100644
--- a/srcpkgs/rsyslog/template
+++ b/srcpkgs/rsyslog/template
@@ -1,7 +1,7 @@
 # Template file for 'rsyslog'
 pkgname=rsyslog
 version=8.2204.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --enable-gnutls --enable-mysql
  --enable-pgsql --enable-imdiag --enable-imfile --enable-mail --enable-imptcp
@@ -41,6 +41,7 @@ pre_configure() {
 post_install() {
 	vsv rsyslogd
 	vconf ${FILESDIR}/rsyslog.conf
+	vinstall ${FILESDIR}/rsyslog.logrotate 644 etc/logrotate.d rsyslog
 }
 
 rsyslog-gssapi_package() {

From 0cf0e3a576075dbb295226642ae2127145a17220 Mon Sep 17 00:00:00 2001
From: Antonio Gurgel <antonio@goorzhel.com>
Date: Thu, 25 Aug 2022 18:42:43 -0700
Subject: [PATCH 2/2] rsyslog: no checks on musl

---
 srcpkgs/rsyslog/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/rsyslog/template b/srcpkgs/rsyslog/template
index cceb1b7e3a7b..bfca335d0da4 100644
--- a/srcpkgs/rsyslog/template
+++ b/srcpkgs/rsyslog/template
@@ -29,6 +29,7 @@ disable_parallel_build=yes
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" musl-legacy-compat"
+	make_check=no  # some tests sporadically SIGSEGV
 fi
 
 pre_configure() {

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

* Re: [PR REVIEW] rsyslog: restore logrotate file
  2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
  2022-08-26  1:59 ` [PR PATCH] [Updated] " Goorzhel
@ 2022-10-19  2:18 ` classabbyamp
  2022-10-19  2:21 ` [PR PATCH] [Updated] " Goorzhel
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2022-10-19  2:18 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38899#discussion_r998876215

Comment:
```suggestion
	make_check=extended  # some tests sporadically SIGSEGV
```

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

* Re: [PR PATCH] [Updated] rsyslog: restore logrotate file
  2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
  2022-08-26  1:59 ` [PR PATCH] [Updated] " Goorzhel
  2022-10-19  2:18 ` [PR REVIEW] " classabbyamp
@ 2022-10-19  2:21 ` Goorzhel
  2023-01-18  2:00 ` rsyslog: restore logrotate file; relax musl checks github-actions
  2023-01-18  2:59 ` [PR PATCH] [Closed]: " ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: Goorzhel @ 2022-10-19  2:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Goorzhel/void-packages rsyslog
https://github.com/void-linux/void-packages/pull/38899

rsyslog: restore logrotate file
Mysteriously deleted in a908103f241.

This will likely affect a lot of machines. Worth an announcement (or a different way to do this)?

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


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

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

From 643417d5754b3737de0fb60ca2612e059ac22ebc Mon Sep 17 00:00:00 2001
From: Antonio Gurgel <antonio@goorzhel.com>
Date: Mon, 22 Aug 2022 16:49:18 -0700
Subject: [PATCH] rsyslog: restore logrotate file; relax musl checks

File mysteriously deleted in a908103f241.
Checks on musl throw difficult-to-reproduce segfaults.
---
 srcpkgs/rsyslog/template | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/rsyslog/template b/srcpkgs/rsyslog/template
index 62684029acb3..8d35c2618bc8 100644
--- a/srcpkgs/rsyslog/template
+++ b/srcpkgs/rsyslog/template
@@ -1,7 +1,7 @@
 # Template file for 'rsyslog'
 pkgname=rsyslog
 version=8.2204.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--sbindir=/usr/bin --enable-gnutls --enable-mysql
  --enable-pgsql --enable-imdiag --enable-imfile --enable-mail --enable-imptcp
@@ -29,6 +29,7 @@ disable_parallel_build=yes
 
 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
 	makedepends+=" musl-legacy-compat"
+	make_check=extended  # some tests sporadically SIGSEGV
 fi
 
 pre_configure() {
@@ -41,6 +42,7 @@ pre_configure() {
 post_install() {
 	vsv rsyslogd
 	vconf ${FILESDIR}/rsyslog.conf
+	vinstall ${FILESDIR}/rsyslog.logrotate 644 etc/logrotate.d rsyslog
 }
 
 rsyslog-gssapi_package() {

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

* Re: rsyslog: restore logrotate file; relax musl checks
  2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
                   ` (2 preceding siblings ...)
  2022-10-19  2:21 ` [PR PATCH] [Updated] " Goorzhel
@ 2023-01-18  2:00 ` github-actions
  2023-01-18  2:59 ` [PR PATCH] [Closed]: " ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-01-18  2:00 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/38899#issuecomment-1386357070

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: rsyslog: restore logrotate file; relax musl checks
  2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
                   ` (3 preceding siblings ...)
  2023-01-18  2:00 ` rsyslog: restore logrotate file; relax musl checks github-actions
@ 2023-01-18  2:59 ` ahesford
  4 siblings, 0 replies; 6+ messages in thread
From: ahesford @ 2023-01-18  2:59 UTC (permalink / raw)
  To: ml

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

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

rsyslog: restore logrotate file; relax musl checks
https://github.com/void-linux/void-packages/pull/38899

Description:
Mysteriously deleted in a908103f241.

This will likely affect a lot of machines. Worth an announcement (or a different way to do this)?

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


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

end of thread, other threads:[~2023-01-18  2:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-25  2:19 [PR PATCH] rsyslog: restore logrotate file Goorzhel
2022-08-26  1:59 ` [PR PATCH] [Updated] " Goorzhel
2022-10-19  2:18 ` [PR REVIEW] " classabbyamp
2022-10-19  2:21 ` [PR PATCH] [Updated] " Goorzhel
2023-01-18  2:00 ` rsyslog: restore logrotate file; relax musl checks github-actions
2023-01-18  2:59 ` [PR PATCH] [Closed]: " ahesford

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