Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] gatling: update to 0.16, fix lint
@ 2021-04-05 18:32 heliocat
  2021-04-06 12:54 ` [PR PATCH] [Merged]: " ericonr
  0 siblings, 1 reply; 2+ messages in thread
From: heliocat @ 2021-04-05 18:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/heliocat/void-packages gatling
https://github.com/void-linux/void-packages/pull/30021

gatling: update to 0.16, fix lint
Gatling 0.16 grew a header dependency on capability.h. However, it
doesn't appear to actually use anything from libcap so until that
changes, patch gatling.c to use linux/capability.h (from
kernel-libc-headers) instead of sys/capability.h (from libcap-devel).

<!-- 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)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

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

From e1c6d4f540c4687429b78bde720496b411273645 Mon Sep 17 00:00:00 2001
From: Colin Booth <colin@heliocat.net>
Date: Sun, 4 Apr 2021 14:37:48 -0700
Subject: [PATCH] gatling: update to 0.16, fix lint

Gatling 0.16 grew a header dependency on capability.h. However, it
doesn't appear to actually use anything from libcap so until that
changes, patch gatling.c to use linux/capability.h (from
kernel-libc-headers) instead of sys/capability.h (from libcap-devel).
---
 srcpkgs/gatling/patches/gatling.c.patch | 12 ++++++++++++
 srcpkgs/gatling/template                | 15 +++++++--------
 2 files changed, 19 insertions(+), 8 deletions(-)
 create mode 100644 srcpkgs/gatling/patches/gatling.c.patch

diff --git a/srcpkgs/gatling/patches/gatling.c.patch b/srcpkgs/gatling/patches/gatling.c.patch
new file mode 100644
index 000000000000..ab2a0bb6c68a
--- /dev/null
+++ b/srcpkgs/gatling/patches/gatling.c.patch
@@ -0,0 +1,12 @@
+# patch gatling.c to use capability headers from the kernel instead of libcap
+--- gatling.c.orig	2021-04-04 21:51:17.641001871 +0000
++++ gatling.c	2021-04-04 21:51:49.798095616 +0000
+@@ -62,7 +62,7 @@
+ 
+ #ifdef __linux__
+ #include <sys/auxv.h>
+-#include <sys/capability.h>
++#include <linux/capability.h>
+ #endif
+ 
+ char serverroot[1024];
diff --git a/srcpkgs/gatling/template b/srcpkgs/gatling/template
index d1d83c202269..9993c3a0cd69 100644
--- a/srcpkgs/gatling/template
+++ b/srcpkgs/gatling/template
@@ -1,17 +1,17 @@
 # Template file for 'gatling'
 pkgname=gatling
-version=0.15
-revision=10
+version=0.16
+revision=1
 build_style=gnu-makefile
+make_build_target="gatling dl getlinks"
+make_install_args="prefix=/usr MANDIR=/usr/share/man"
 makedepends="libowfat openssl-devel zlib-devel"
 short_desc="High performance web server"
 maintainer="Enno Boland <gottox@voidlinux.org>"
-license="GPL-2"
-homepage="http://www.fefe.de/$pkgname/"
+license="GPL-2.0-only"
+homepage="http://www.fefe.de/gatling"
 distfiles="https://www.fefe.de/gatling/$pkgname-$version.tar.xz"
-checksum=6fa329d0ced0c80deb8dde5460e9d9e984bee94f265043d7fdec0e253dce9aa4
-make_build_target="gatling dl getlinks"
-make_install_args="prefix=/usr MANDIR=/usr/share/man"
+checksum=5f96438ee201d7f1f6c2e0849ff273b196bdc7493f29a719ce8ed08c8be6365b
 
 CFLAGS="-std=c99 -I${XBPS_CROSS_BASE}/usr/include/libowfat -fcommon"
 
@@ -24,4 +24,3 @@ pre_build() {
 pre_install() {
 	vmkdir usr/share/man/man1
 }
-

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

* Re: [PR PATCH] [Merged]: gatling: update to 0.16, fix lint
  2021-04-05 18:32 [PR PATCH] gatling: update to 0.16, fix lint heliocat
@ 2021-04-06 12:54 ` ericonr
  0 siblings, 0 replies; 2+ messages in thread
From: ericonr @ 2021-04-06 12:54 UTC (permalink / raw)
  To: ml

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

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

gatling: update to 0.16, fix lint
https://github.com/void-linux/void-packages/pull/30021

Description:
Gatling 0.16 grew a header dependency on capability.h. However, it
doesn't appear to actually use anything from libcap so until that
changes, patch gatling.c to use linux/capability.h (from
kernel-libc-headers) instead of sys/capability.h (from libcap-devel).

<!-- 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)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl



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

end of thread, other threads:[~2021-04-06 12:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 18:32 [PR PATCH] gatling: update to 0.16, fix lint heliocat
2021-04-06 12:54 ` [PR PATCH] [Merged]: " 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).