summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-08-29 02:43:41 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-08-29 02:44:08 +0200
commita4dc42a459fc2f2ecf185b54ddeba53d999034ab (patch)
tree8342a21e9e0025bb6ba1406f2cd31b0d4d54727d /net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch
parentapp-admin/sudo: Stabilize 1.9.2 arm64, #738336 (diff)
downloadgentoo-a4dc42a459fc2f2ecf185b54ddeba53d999034ab.tar.gz
gentoo-a4dc42a459fc2f2ecf185b54ddeba53d999034ab.tar.bz2
gentoo-a4dc42a459fc2f2ecf185b54ddeba53d999034ab.zip
net-irc/znc-palaver: new package
Palaver ZNC module provides push notifications to Palaver while Palaver is disconnected from IRC. Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch')
-rw-r--r--net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch b/net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch
new file mode 100644
index 000000000000..ffbb2ad4543b
--- /dev/null
+++ b/net-irc/znc-palaver/files/znc-palaver-1.2.1-xunit2.patch
@@ -0,0 +1,23 @@
+From 3be5f33d76d4e34b1bc2671f7dbbc6c5fc3ccadd Mon Sep 17 00:00:00 2001
+From: Conrad Kostecki <conrad@kostecki.com>
+Date: Sat, 29 Aug 2020 00:06:53 +0200
+Subject: [PATCH] Makefile: use xunit2 as default for pytest
+
+PytestDeprecationWarning: The 'junit_family' default
+value will change to 'xunit2' in pytest 6.0.
+
+Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index d5d4866..e88277e 100644
+--- a/Makefile
++++ b/Makefile
+@@ -30,4 +30,4 @@ test/fixtures/modules/palaver.so: palaver.so
+ .PHONY: test-integration
+ test-integration: test/fixtures/modules/palaver.so
+ @mkdir -p test-reports
+- pytest --junitxml=test-reports/junit.xml
++ pytest -o junit_family=xunit2 --junitxml=test-reports/junit.xml