Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] [WIP] libevent: update to 2.1.11.
Date: Mon, 30 Sep 2019 23:55:43 +0200	[thread overview]
Message-ID: <20190930215543.XHGozqpghIoV7mQian8WmkrnYqffCROH57N3eTiK_4o@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-13873@inbox.vuxu.org>

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

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

https://github.com/Piraty/void-packages libevent-2.1.11
https://github.com/void-linux/void-packages/pull/13873

[WIP] libevent: update to 2.1.11.
[ci skip]

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

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

From 5ec6f06935fc85b5933d5398974a0b891b8544c9 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:25:46 +0200
Subject: [PATCH 01/32] libevent: update to 2.1.11.

---
 common/shlibs                                 | 10 +++---
 ...m-the-event-loop-during-event_reinit.patch | 31 +++++++++++++++++++
 srcpkgs/libevent/template                     |  8 ++---
 3 files changed, 40 insertions(+), 9 deletions(-)
 create mode 100644 srcpkgs/libevent/patches/0001-Warn-if-forked-from-the-event-loop-during-event_reinit.patch

diff --git a/common/shlibs b/common/shlibs
index 29c7d52b259..80d4720b201 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -713,9 +713,11 @@ libsasl2.so.3 libsasl-2.1.26_1
 liblber-2.4.so.2 libldap-2.4.21_1
 libldap-2.4.so.2 libldap-2.4.21_1
 libldap_r-2.4.so.2 libldap-2.4.21_1
-libevent-2.1.so.6 libevent-2.1.8_1
-libevent_core-2.1.so.6 libevent-2.1.8_1
-libevent_pthreads-2.1.so.6 libevent-2.1.8_1
+libevent-2.1.so.7 libevent-2.1.11_1
+libevent_core-2.1.so.7 libevent-2.1.11_1
+libevent_pthreads-2.1.so.7 libevent-2.1.11_1
+libevent_extra-2.1.so.7 libevent-2.1.11_3
+libevent_openssl-2.1.so.7 libevent-2.1.11_3
 libSDL_mixer-1.2.so.0 SDL_mixer-1.2.11_1
 libapr-1.so.0 apr-1.4.2_1
 libaprutil-1.so.0 apr-util-1.3.9_1
@@ -2924,8 +2926,6 @@ libmirage.so.11 libmirage-3.1.0_1
 libwkhtmltox.so.0 libwkhtmltopdf-0.12.5_1
 libixml.so.10 libupnp1.8-1.8.2_1
 libupnp.so.13 libupnp1.8-1.8.4_1
-libevent_extra-2.1.so.6 libevent-2.1.8_3
-libevent_openssl-2.1.so.6 libevent-2.1.8_3
 libsysprof-2.so sysprof-3.24.1_1
 libsysprof-ui-2.so sysprof-3.24.1_1
 libmozjs-52.so mozjs52-52.3.0_1
diff --git a/srcpkgs/libevent/patches/0001-Warn-if-forked-from-the-event-loop-during-event_reinit.patch b/srcpkgs/libevent/patches/0001-Warn-if-forked-from-the-event-loop-during-event_reinit.patch
new file mode 100644
index 00000000000..4136c678b89
--- /dev/null
+++ b/srcpkgs/libevent/patches/0001-Warn-if-forked-from-the-event-loop-during-event_reinit.patch
@@ -0,0 +1,31 @@
+From 497ef904d544ac51de43934549dbeccce8e6e8f8 Mon Sep 17 00:00:00 2001
+From: Azat Khuzhin <azat@libevent.org>
+Date: Mon, 1 Jul 2019 23:54:02 +0300
+Subject: [PATCH] Warn if forked from the event loop during event_reinit()
+
+Calling fork() from the event loop is not a great idea, since at least
+it shares some internal pipes (for handling signals) before
+event_reinit() call
+
+Closes: #833
+---
+ event.c | 6 ++++++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/event.c b/event.c
+index fa4f2802e..aa6c6fba3 100644
+--- event.c
++++ event.c
+@@ -1003,6 +1003,12 @@ event_reinit(struct event_base *base)
+ 
+ 	EVBASE_ACQUIRE_LOCK(base, th_base_lock);
+ 
++	if (base->running_loop) {
++		event_warnx("%s: forked from the event_loop.", __func__);
++		res = -1;
++		goto done;
++	}
++
+ 	evsel = base->evsel;
+ 
+ 	/* check if this event mechanism requires reinit on the backend */
diff --git a/srcpkgs/libevent/template b/srcpkgs/libevent/template
index 713369e490c..4a1d62e907f 100644
--- a/srcpkgs/libevent/template
+++ b/srcpkgs/libevent/template
@@ -1,16 +1,16 @@
 # Template file for 'libevent'
 pkgname=libevent
-version=2.1.10
-revision=2
+version=2.1.11
+revision=1
 wrksrc="${pkgname}-${version}-stable"
 build_style=gnu-configure
 makedepends="libressl-devel"
 short_desc="Abstract asynchronous event notification library"
 maintainer="Orphaned <orphan@voidlinux.org>"
+license="BSD-3-Clause"
 homepage="http://libevent.org/"
-license="3-clause-BSD"
 distfiles="https://github.com/libevent/libevent/releases/download/release-${version}-stable/libevent-${version}-stable.tar.gz"
-checksum=e864af41a336bb11dab1a23f32993afe963c1f69618bd9292b89ecf6904845b0
+checksum=a65bac6202ea8c5609fd5c7e480e6d25de467ea1917c08290c521752f147283d
 
 post_install() {
 	vlicense LICENSE

From 59545fa9c9c5a5896c3c8dbfe19b0b65549648fa Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:48 +0200
Subject: [PATCH 02/32] bitcoin: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/bitcoin/template b/srcpkgs/bitcoin/template
index b91af62be02..a1a3c2b242c 100644
--- a/srcpkgs/bitcoin/template
+++ b/srcpkgs/bitcoin/template
@@ -1,7 +1,7 @@
 # Template file for 'bitcoin'
 pkgname=bitcoin
 version=0.18.1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-incompatible-bdb --disable-ccache --disable-static
  --enable-hardening --with-boost=${XBPS_CROSS_BASE}/usr"

From 9749e50c0f65bd53c72c8f51a33f9da5fd86acf7 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:49 +0200
Subject: [PATCH 03/32] chromium: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/chromium/template b/srcpkgs/chromium/template
index 6a35ada420d..e22165a43d5 100644
--- a/srcpkgs/chromium/template
+++ b/srcpkgs/chromium/template
@@ -2,7 +2,7 @@
 pkgname=chromium
 # See http://www.chromium.org/developers/calendar for the latest version
 version=76.0.3809.132
-revision=1
+revision=2
 archs="i686 x86_64*"
 short_desc="Google's attempt at creating a safer, faster, and more stable browser"
 maintainer="Enno Boland <gottox@voidlinux.org>"

From b6f84c5e388b65b01622112bbb18757a48973bb6 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:49 +0200
Subject: [PATCH 04/32] coturn: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/coturn/template b/srcpkgs/coturn/template
index 92de4f60168..540193574ae 100644
--- a/srcpkgs/coturn/template
+++ b/srcpkgs/coturn/template
@@ -1,7 +1,7 @@
 # Template file for 'coturn'
 pkgname=coturn
 version=4.5.1.1
-revision=2
+revision=3
 build_style=gnu-configure
 conf_files="/etc/turnserver.conf"
 makedepends="libressl-devel libevent-devel hiredis-devel sqlite-devel

From 7d90de174f5547da77ba129f72c4f2253e79b41d Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:49 +0200
Subject: [PATCH 05/32] crystal: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/crystal/template b/srcpkgs/crystal/template
index ef02626bc3c..ba0bc9a51eb 100644
--- a/srcpkgs/crystal/template
+++ b/srcpkgs/crystal/template
@@ -1,7 +1,7 @@
 # Template file for 'crystal'
 pkgname=crystal
 version=0.31.0
-revision=1
+revision=2
 archs="x86_64* i686* aarch64* arm*"
 _shardsversion=0.9.0
 _bootstrapversion=0.31.0

From 6c76307778b4fa8036a339b7e69f12ccfe3849f0 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:50 +0200
Subject: [PATCH 06/32] firefox: rebuild for libevent-2.1.11

---
 srcpkgs/firefox-i18n/template | 2 +-
 srcpkgs/firefox/template      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/firefox-i18n/template b/srcpkgs/firefox-i18n/template
index d5aefea056c..76343e42b39 100644
--- a/srcpkgs/firefox-i18n/template
+++ b/srcpkgs/firefox-i18n/template
@@ -3,10 +3,10 @@ pkgname=firefox-i18n
 version=69.0.1
 revision=1
 build_style=meta
-homepage="https://www.mozilla.org/firefox/"
 short_desc="Firefox language packs"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"
 license="MPL-2.0"
+homepage="https://www.mozilla.org/firefox/"
 
 create_wrksrc=yes
 
diff --git a/srcpkgs/firefox/template b/srcpkgs/firefox/template
index 8417caa9798..b2c9b810c83 100644
--- a/srcpkgs/firefox/template
+++ b/srcpkgs/firefox/template
@@ -4,7 +4,7 @@
 #
 pkgname=firefox
 version=69.0.1
-revision=1
+revision=2
 build_helper="rust"
 short_desc="Mozilla Firefox web browser"
 maintainer="Johannes <johannes.brechtmann@gmail.com>"

From 9a7777fecb4c54fb612f4dd933113cd740e4c38d Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:50 +0200
Subject: [PATCH 07/32] firefox-esr: rebuild for libevent-2.1.11

---
 srcpkgs/firefox-esr/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/firefox-esr/template b/srcpkgs/firefox-esr/template
index 829eb017622..35a0ec31f53 100644
--- a/srcpkgs/firefox-esr/template
+++ b/srcpkgs/firefox-esr/template
@@ -4,9 +4,9 @@
 #
 pkgname=firefox-esr
 version=68.1.0
-revision=2
-build_helper="rust"
+revision=3
 wrksrc="firefox-${version}"
+build_helper="rust"
 short_desc="Mozilla Firefox web browser - Extended Support Release (ESR)"
 maintainer="Eivind Uggedal <eivind@uggedal.com>"
 license="MPL-2.0, GPL-2.0-or-later, LGPL-2.1-or-later"
@@ -126,7 +126,7 @@ do_build() {
 
 	export MOZ_MAKE_FLAGS="${makejobs}"
 	export MOZ_NOSPAM=1
-        export MOZBUILD_STATE_PATH="${wrksrc}/mozbuild"
+	export MOZBUILD_STATE_PATH="${wrksrc}/mozbuild"
 
 	export AS=$CC
 

From e1e38d90adcc181cbb4e623006a99e5053bd8fa2 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:50 +0200
Subject: [PATCH 08/32] freshplayerplugin: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/freshplayerplugin/template b/srcpkgs/freshplayerplugin/template
index 068009f3753..00f0168d245 100644
--- a/srcpkgs/freshplayerplugin/template
+++ b/srcpkgs/freshplayerplugin/template
@@ -1,7 +1,7 @@
 # Template file for 'freshplayerplugin'
 pkgname=freshplayerplugin
 version=0.3.9
-revision=3
+revision=4
 build_style=cmake
 hostmakedepends="pkg-config ragel"
 makedepends="libevent-devel libXcursor-devel alsa-lib-devel libXrandr-devel gtk+-devel

From 1f8103f3a2f85c6d789af3bfb3e34f4723ef208c Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:51 +0200
Subject: [PATCH 09/32] fstrm: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/fstrm/template b/srcpkgs/fstrm/template
index e8664894354..a6c21d27a5b 100644
--- a/srcpkgs/fstrm/template
+++ b/srcpkgs/fstrm/template
@@ -1,7 +1,7 @@
 # Template file for 'fstrm'
 pkgname=fstrm
 version=0.5.0
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake libtool pkg-config"
 makedepends="libevent-devel"

From 916e412fddf8e5abc48e82cf94caf61ae4945eaa Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:51 +0200
Subject: [PATCH 10/32] getdns: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/getdns/template b/srcpkgs/getdns/template
index 469348b67ce..16c54edbf87 100644
--- a/srcpkgs/getdns/template
+++ b/srcpkgs/getdns/template
@@ -1,7 +1,7 @@
 # Template file for 'getdns'
 pkgname=getdns
 version=1.5.1
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--with-libev --with-libevent --with-libuv
  --with-ssl=${XBPS_CROSS_BASE}/usr"

From b9b4ad0865a6330851b2e38e751ad24e047a9248 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:52 +0200
Subject: [PATCH 11/32] icecat: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 64a466766d9..1c204bf0959 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -1,7 +1,7 @@
 # Template file for 'icecat'
 pkgname=icecat
 version=60.7.0
-revision=2
+revision=3
 build_helper="rust"
 hostmakedepends="autoconf213 unzip zip pkg-config perl python yasm
  cargo llvm clang rust cbindgen"

From b5188ed3b3ebff5d57e00fd0aca04619cad2340d Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:52 +0200
Subject: [PATCH 12/32] litecoin: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/litecoin/template b/srcpkgs/litecoin/template
index 01ca47ee964..0ef983d1b8b 100644
--- a/srcpkgs/litecoin/template
+++ b/srcpkgs/litecoin/template
@@ -1,7 +1,7 @@
 # Template file for 'litecoin'
 pkgname=litecoin
 version=0.16.3
-revision=6
+revision=7
 build_style=gnu-configure
 configure_args="--with-incompatible-bdb --with-gui=qt5 --disable-static
  --disable-tests --with-libressl"

From 362897b53773c100eb10d0f98bf3f850dd6d11f3 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:52 +0200
Subject: [PATCH 13/32] memcached: rebuild for libevent-2.1.11

---
 srcpkgs/memcached/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/memcached/template b/srcpkgs/memcached/template
index 0d2e3ff9fcf..8dfd0095a83 100644
--- a/srcpkgs/memcached/template
+++ b/srcpkgs/memcached/template
@@ -1,7 +1,7 @@
 # Template file for 'memcached'
 pkgname=memcached
 version=1.5.16
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-seccomp"
 makedepends="libevent-devel libseccomp-devel"
@@ -24,4 +24,3 @@ memcached-devel_package() {
 		vmove usr/include
 	}
 }
-

From f3a0122ef6419c1b5d80dd0c89fac3149a383320 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:53 +0200
Subject: [PATCH 14/32] namecoin: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/namecoin/template b/srcpkgs/namecoin/template
index 4436180804f..b4d282e14a8 100644
--- a/srcpkgs/namecoin/template
+++ b/srcpkgs/namecoin/template
@@ -1,7 +1,7 @@
 # Template file for 'namecoin'
 pkgname=namecoin
 version=0.18.1
-revision=1
+revision=2
 wrksrc="${pkgname}-core-nc${version}"
 build_style=gnu-configure
 configure_args="--with-incompatible-bdb --disable-static

From 1c5a035d161bfe4c97cd63902947aa7c1c186b98 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:53 +0200
Subject: [PATCH 15/32] nfs-utils: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/nfs-utils/template b/srcpkgs/nfs-utils/template
index 894941b882f..83c8f811691 100644
--- a/srcpkgs/nfs-utils/template
+++ b/srcpkgs/nfs-utils/template
@@ -1,7 +1,7 @@
 # Template file for 'nfs-utils'
 pkgname=nfs-utils
 version=2.3.3
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-statduser=nobody --enable-gss --enable-nfsv4
  --with-statedir=/var/lib/nfs --enable-libmount-mount --enable-svcgss

From 668d2af1fca0bd18719e8a185cfd59b3045f0d3f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:53 +0200
Subject: [PATCH 16/32] nsd: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/nsd/template b/srcpkgs/nsd/template
index 241682461ec..a2e4d3c6c01 100644
--- a/srcpkgs/nsd/template
+++ b/srcpkgs/nsd/template
@@ -1,7 +1,7 @@
 # Template file for 'nsd'
 pkgname=nsd
 version=4.2.2
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--enable-ratelimit --enable-ratelimit-default-is-off
  --with-libevent=${XBPS_CROSS_BASE}/usr --with-ssl=${XBPS_CROSS_BASE}/usr"

From 36110fe7df34f215fffbded7504924453ced6b0f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:54 +0200
Subject: [PATCH 17/32] ntp: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index 5e7984ab81f..0dbda877001 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -1,7 +1,7 @@
 # Template file for 'ntp'
 pkgname=ntp
 version=4.2.8p13
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--with-crypto --enable-linuxcap --enable-ipv6 --enable-ntp-signd
  --enable-all-clocks ol_cv_pthread_select_yields=yes"

From 9b7c7625a7f777026917bd3ce8bad2d5f53761af Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:54 +0200
Subject: [PATCH 18/32] opensmtpd: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/opensmtpd/template b/srcpkgs/opensmtpd/template
index c3d02e404d3..be40a5935c4 100644
--- a/srcpkgs/opensmtpd/template
+++ b/srcpkgs/opensmtpd/template
@@ -1,7 +1,7 @@
 # Template file for 'opensmtpd'
 pkgname=opensmtpd
 version=6.4.2p1
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--sysconfdir=/etc/smtpd --sbindir=/usr/bin
  --with-path-socket=/run --with-path-pidfile=/run

From 30e9498ddfacfe0f1ce00c184e2d8deaa76ed604 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:55 +0200
Subject: [PATCH 19/32] pgbouncer: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/pgbouncer/template b/srcpkgs/pgbouncer/template
index 6d12693733f..0b8524693d6 100644
--- a/srcpkgs/pgbouncer/template
+++ b/srcpkgs/pgbouncer/template
@@ -1,7 +1,7 @@
 # Template file for 'pgbouncer'
 pkgname=pgbouncer
 version=1.11.0
-revision=1
+revision=2
 build_style=gnu-configure
 makedepends="libevent-devel"
 short_desc="Lightweight connection pooler for PostgreSQL"

From 7d52c80ae931200101da6366716e40296f6e253f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:55 +0200
Subject: [PATCH 20/32] qt5: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/qt5/template b/srcpkgs/qt5/template
index 0b74add5101..8641832bc7a 100644
--- a/srcpkgs/qt5/template
+++ b/srcpkgs/qt5/template
@@ -1,7 +1,7 @@
 # Template file for 'qt5'
 pkgname=qt5
 version=5.13.1
-revision=1
+revision=2
 wrksrc="qt-everywhere-src-${version}"
 build_style=gnu-configure
 hostmakedepends="cmake clang flex git glib-devel gperf ninja pkg-config

From 62940c67606b306c8e35a11bbfc40f0112fccdaa Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:55 +0200
Subject: [PATCH 21/32] redsocks: rebuild for libevent-2.1.11

---
 srcpkgs/redsocks/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/redsocks/template b/srcpkgs/redsocks/template
index 062cd568bd6..59d356064da 100644
--- a/srcpkgs/redsocks/template
+++ b/srcpkgs/redsocks/template
@@ -1,9 +1,9 @@
 # Template file for 'redsocks'
 pkgname=redsocks
 version=0.5
-revision=3
-build_style=gnu-makefile
+revision=4
 wrksrc="${pkgname}-release-${version}"
+build_style=gnu-makefile
 makedepends="libevent-devel"
 short_desc="Transparent redirector of any TCP connection to a SOCKS or HTTP proxy"
 maintainer="cipr3s <cipr3s@gmx.com>"

From 80a0887469ea7308c284e372a92e0ca97449c53f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:56 +0200
Subject: [PATCH 22/32] rspamd: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/rspamd/template b/srcpkgs/rspamd/template
index 4f197e382ae..9dcc659183a 100644
--- a/srcpkgs/rspamd/template
+++ b/srcpkgs/rspamd/template
@@ -1,7 +1,7 @@
 # Template file for 'rspamd'
 pkgname=rspamd
 version=1.9.4
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DRSPAMD_USER=rspamd -DCONFDIR=/etc/rspamd
  -DDBDIR=/var/lib/rspamd"

From ba1aa1506d1037f42680dd4a8c6d01d433080276 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:56 +0200
Subject: [PATCH 23/32] saldl: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/saldl/template b/srcpkgs/saldl/template
index 88751071d05..d60266117ce 100644
--- a/srcpkgs/saldl/template
+++ b/srcpkgs/saldl/template
@@ -1,7 +1,7 @@
 # Template file for 'saldl'
 pkgname=saldl
 version=40
-revision=1
+revision=2
 build_style=waf
 configure_args="--saldl-version v${version}"
 hostmakedepends="pkg-config asciidoc"

From 74190e4abe5980c6085df272cf768dd39d00b8f3 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:57 +0200
Subject: [PATCH 24/32] seafile-libclient: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index fa9cd7b7d3f..0e638514b03 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -1,7 +1,7 @@
 # Template file for 'seafile-libclient'
 pkgname=seafile-libclient
 version=6.2.11
-revision=2
+revision=3
 _distname="${pkgname/-libclient/}"
 wrksrc="${_distname}-${version}"
 build_style=gnu-configure

From 421f49b2c796a317f19ecee8081e4dfbf3570c02 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:57 +0200
Subject: [PATCH 25/32] thunderbird: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/thunderbird/template b/srcpkgs/thunderbird/template
index 6f39d39830c..061ca64a038 100644
--- a/srcpkgs/thunderbird/template
+++ b/srcpkgs/thunderbird/template
@@ -4,7 +4,7 @@
 #
 pkgname=thunderbird
 version=68.1.0
-revision=1
+revision=2
 build_helper="rust"
 short_desc="Standalone Mail/News reader"
 maintainer="Enno Boland <gottox@voidlinux.org>"

From 875d73321ecab33f686d201d183e172b0054e18f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:57 +0200
Subject: [PATCH 26/32] tlsdate: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/tlsdate/template b/srcpkgs/tlsdate/template
index b8ba170e146..217d4e6604f 100644
--- a/srcpkgs/tlsdate/template
+++ b/srcpkgs/tlsdate/template
@@ -1,7 +1,7 @@
 # Template file for 'tlsdate'
 pkgname=tlsdate
 version=0.0.13
-revision=13
+revision=14
 wrksrc="${pkgname}-${pkgname}-${version}"
 build_style=gnu-configure
 configure_args="--with-polarssl=no ac_cv_func_clock_gettime=yes"

From 51654cef3e03a7c0edac6e917414bf64c22547d1 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:58 +0200
Subject: [PATCH 27/32] tmate: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/tmate/template b/srcpkgs/tmate/template
index 3b5b25843b1..f1bf9a93adf 100644
--- a/srcpkgs/tmate/template
+++ b/srcpkgs/tmate/template
@@ -1,7 +1,7 @@
 # Template file for 'tmate'
 pkgname=tmate
 version=2.2.1
-revision=1
+revision=2
 build_style=gnu-configure
 hostmakedepends="automake pkg-config"
 makedepends="libevent-devel libssh-devel msgpack-devel ncurses-devel"

From 5fcef8843d099d1d2c961140f7fbe8af17dd45f6 Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:58 +0200
Subject: [PATCH 28/32] tmux: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/tmux/template b/srcpkgs/tmux/template
index 0050e3f5a22..3eaadddc943 100644
--- a/srcpkgs/tmux/template
+++ b/srcpkgs/tmux/template
@@ -1,7 +1,7 @@
 # Template file for 'tmux'
 pkgname=tmux
 version=2.9a
-revision=1
+revision=2
 build_style=gnu-configure
 makedepends="libevent-devel ncurses-devel"
 short_desc="Terminal Multiplexer"

From 65d3a9421a843746e7065565f35be003e294d92b Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:58 +0200
Subject: [PATCH 29/32] tor: rebuild for libevent-2.1.11

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

diff --git a/srcpkgs/tor/template b/srcpkgs/tor/template
index f7f6fba4dfd..cb991fbaa35 100644
--- a/srcpkgs/tor/template
+++ b/srcpkgs/tor/template
@@ -1,7 +1,7 @@
 # Template file for 'tor'
 pkgname=tor
 version=0.4.1.6
-revision=1
+revision=2
 build_style=gnu-configure
 makedepends="libevent-devel libseccomp-devel zlib-devel"
 depends="ca-certificates torsocks"

From 8d2bd3e298b8079b60d32994a8ea441b00f7e06a Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:59 +0200
Subject: [PATCH 30/32] transmission: rebuild for libevent-2.1.11

---
 srcpkgs/transmission/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/transmission/template b/srcpkgs/transmission/template
index 52500345934..552bcd87352 100644
--- a/srcpkgs/transmission/template
+++ b/srcpkgs/transmission/template
@@ -1,14 +1,14 @@
 # Template file for 'transmission'
 pkgname=transmission
 version=2.94
-revision=3
+revision=4
 build_style=gnu-configure
 configure_args="--enable-nls --enable-cli --enable-daemon --enable-utp
  --without-systemd-daemon"
 hostmakedepends="intltool pkg-config"
 makedepends="dbus-glib-devel gtk+3-devel libcurl-devel libevent-devel
  qt5-tools-devel"
-short_desc="A fast, easy, and free BitTorrent client"
+short_desc="Fast, easy and free BitTorrent client"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later"
 homepage="https://www.transmissionbt.com"

From 0c541d8fea05df0902f9f804ab70affb8d1f5daa Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:42:59 +0200
Subject: [PATCH 31/32] unbound: rebuild for libevent-2.1.11

---
 srcpkgs/unbound/template | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/srcpkgs/unbound/template b/srcpkgs/unbound/template
index 8f951d66fa1..d84a94978ce 100644
--- a/srcpkgs/unbound/template
+++ b/srcpkgs/unbound/template
@@ -1,7 +1,7 @@
 # Template file for 'unbound'
 pkgname=unbound
 version=1.9.3
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--with-libevent --with-conf-file=/etc/unbound/unbound.conf
  --with-pidfile=/run/unbound.pid --with-ssl=${XBPS_CROSS_BASE}/usr
@@ -37,4 +37,3 @@ unbound-devel_package() {
 		vmove usr/share/man/man3
 	}
 }
-

From 0a35492643644073ce60e9787a8d55d8be463d1f Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Wed, 21 Aug 2019 23:43:00 +0200
Subject: [PATCH 32/32] zabbix: rebuild for libevent-2.1.11

[ci skip]
---
 srcpkgs/zabbix/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index 02b90b235a2..b4d0978a537 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -1,7 +1,7 @@
 # Template file for 'zabbix'
 pkgname=zabbix
 version=4.2.1
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--with-libxml2 --with-gnutls --with-libcurl --with-net-snmp
  --with-mysql --enable-server --enable-ipv6 --with-ssh2 --enable-agent

  parent reply	other threads:[~2019-09-30 21:55 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-13873@inbox.vuxu.org>
2019-09-22 20:23 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-23  8:36 ` voidlinux-github
2019-09-23  8:36 ` voidlinux-github
2019-09-23 11:25 ` voidlinux-github
2019-09-23 11:25 ` voidlinux-github
2019-09-30 21:55 ` voidlinux-github [this message]
2019-09-30 21:55 ` [PR PATCH] [Updated] [WIP] " voidlinux-github
2019-09-30 22:11 ` voidlinux-github
2019-09-30 22:11 ` voidlinux-github
2019-09-30 22:13 ` voidlinux-github
2019-09-30 22:13 ` voidlinux-github
2019-10-07 21:02 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-07 21:02 ` voidlinux-github
2019-10-13 18:49 ` voidlinux-github
2019-10-13 18:49 ` voidlinux-github
2019-10-15 11:13 ` voidlinux-github
2019-10-15 11:13 ` voidlinux-github
2019-10-15 11:26 ` voidlinux-github
2019-10-15 11:26 ` voidlinux-github
2019-10-21  7:29 ` voidlinux-github
2019-10-21  7:29 ` voidlinux-github
2019-10-21 16:51 ` [PR PATCH] [Closed]: " voidlinux-github

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190930215543.XHGozqpghIoV7mQian8WmkrnYqffCROH57N3eTiK_4o@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).