mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/distcc to 3.4-11
This commit is contained in:
parent
8bdd7a9251
commit
3c72be6a7d
3 changed files with 14 additions and 6 deletions
|
@ -1,10 +1,10 @@
|
|||
pkgbase = distcc
|
||||
pkgdesc = Distributed compilation service for C, C++ and Objective-C
|
||||
pkgver = 3.4
|
||||
pkgrel = 10
|
||||
pkgrel = 11
|
||||
url = https://github.com/distcc/distcc
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
license = GPL-2.0-only
|
||||
makedepends = git
|
||||
makedepends = gtk3
|
||||
makedepends = python-setuptools
|
||||
|
@ -20,7 +20,7 @@ pkgbase = distcc
|
|||
source = sysusers.conf
|
||||
source = meson_triple.patch::https://github.com/distcc/distcc/pull/427/commits/850db9eec0d5dd7f47ade8ffca91b679081f6d85.patch
|
||||
validpgpkeys = 30782E2BE4EB9FD5B293D3DA6D100BF096B8A005
|
||||
b2sums = SKIP
|
||||
b2sums = 8843f1d2ad3cb8d761644ffd19fa2868843c2f0c6b3dc5471c88ed34de0425b78193a3f01539c5c581eaf7c947a39e87f2bace80571cc54e7e0201ad5004e3cc
|
||||
b2sums = c48a6daea2cae5e5865c488e612c819e6f9bf4a1b205e2cd264b795de3450d40b0fe05264fbd8a3fe861f03e38d91e7e791ad67e22da5b5d0b43bcb380b8b4c9
|
||||
b2sums = 9b6ffc02e9360fd92f7595e96ef2d69b5f6d72acf343009375fa081f86b26f51960b139c4f6e0e3c8befa37eba4894d61351bbfab6386389c262db0cc01a8b8e
|
||||
b2sums = d1b057ce49994ac61e9d5a861c1c770452102300d47a9c396b3272d7f5afbd3fe3e865e6db11c046e73ae3b6886bc8970a10624650731d55132362436904f989
|
||||
|
|
4
extra/distcc/.nvchecker.toml
Normal file
4
extra/distcc/.nvchecker.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[distcc]
|
||||
source = "git"
|
||||
git = "https://github.com/distcc/distcc.git"
|
||||
prefix = "v"
|
|
@ -4,6 +4,7 @@
|
|||
# Contributor: Judd Vinet <jvinet@zeroflux.org>
|
||||
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
||||
# Contributor: Reza Jahanbakhshi <reza.jahanbakhshi@gmail.com>
|
||||
# Contributor: Vladislav Nepogodin <nepogodin.vlad@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - added --without-avahi to configure
|
||||
|
@ -12,11 +13,11 @@
|
|||
|
||||
pkgname=distcc
|
||||
pkgver=3.4
|
||||
pkgrel=10
|
||||
pkgrel=11
|
||||
pkgdesc='Distributed compilation service for C, C++ and Objective-C'
|
||||
arch=(x86_64)
|
||||
url='https://github.com/distcc/distcc'
|
||||
license=(GPL)
|
||||
license=(GPL-2.0-only)
|
||||
depends=(popt)
|
||||
makedepends=(git gtk3 python-setuptools)
|
||||
optdepends=("python: for python bindings"
|
||||
|
@ -29,7 +30,7 @@ source=("git+$url?signed#tag=v$pkgver"
|
|||
sysusers.conf
|
||||
meson_triple.patch::https://github.com/distcc/distcc/pull/427/commits/850db9eec0d5dd7f47ade8ffca91b679081f6d85.patch
|
||||
allow-zero-timeout.patch)
|
||||
b2sums=('SKIP'
|
||||
b2sums=('8843f1d2ad3cb8d761644ffd19fa2868843c2f0c6b3dc5471c88ed34de0425b78193a3f01539c5c581eaf7c947a39e87f2bace80571cc54e7e0201ad5004e3cc'
|
||||
'c48a6daea2cae5e5865c488e612c819e6f9bf4a1b205e2cd264b795de3450d40b0fe05264fbd8a3fe861f03e38d91e7e791ad67e22da5b5d0b43bcb380b8b4c9'
|
||||
'9b6ffc02e9360fd92f7595e96ef2d69b5f6d72acf343009375fa081f86b26f51960b139c4f6e0e3c8befa37eba4894d61351bbfab6386389c262db0cc01a8b8e'
|
||||
'd1b057ce49994ac61e9d5a861c1c770452102300d47a9c396b3272d7f5afbd3fe3e865e6db11c046e73ae3b6886bc8970a10624650731d55132362436904f989'
|
||||
|
@ -55,6 +56,9 @@ build() {
|
|||
# ref https://github.com/distcc/distcc/issues/454#issuecomment-1087865811
|
||||
export CFLAGS+=' -DPY_SSIZE_T_CLEAN -fcommon'
|
||||
|
||||
# causes buffer overflow check to occur
|
||||
export CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
|
||||
|
||||
./configure \
|
||||
--enable-rfc2553 \
|
||||
--mandir=/usr/share/man \
|
||||
|
|
Loading…
Reference in a new issue