From patchwork Thu Sep 2 14:13:08 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4661 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZb70xjz3wy6 for ; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jZb4pnbz5Q3; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jZb49hDz2yXv; Thu, 2 Sep 2021 14:13:27 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZZ2lV5z2xd7 for ; Thu, 2 Sep 2021 14:13:26 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jZY4pCtz136; Thu, 2 Sep 2021 14:13:25 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592005; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QOFCSubg0XffnVIMVPlhPGOwsciroxzHYwUPWStbr14=; b=Uw35P72lQsoSuxN2lQgf7Ch6ozU8f/mz4u3wfGdDofkXcyK2y0gS5AlZjPg70V19joUNpy 6yNLGtBM+UM44tBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592005; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=QOFCSubg0XffnVIMVPlhPGOwsciroxzHYwUPWStbr14=; b=p2CkUdV5auEiYsIdnENcSH0WWmv6WFYGOQa39XLlS1tD1CiKjTMAvNyiFKsNctWX0VZ4c/ wKCCWRiaiY+MudmfeECcoAvW2B+QgHdimbNoFLB1GmromctkcBI/kj+QSeJTafN3JhERNw 8CaUmDSmnrbTdeB/3GuzZPa2LRJAFYgJGjkatc3qaGeooJkwB2/UChKxrRxd4fR2Sa41OK 4VoKJVKrxrCu55zC2L8BwJ7ZJOHCVJlI0EvD+7qsgqgzQJVnGwct21Tp3AX2G5P3qF5sHe EGAmM5Cgv1miPiXGXfQoG7MQFREjlJGmpGUaStIZOUAalcOLu9pN8gwVdP1n9A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 1/6] glib: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:08 +0200 Message-Id: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/glib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/glib b/lfs/glib index cbf666f70..58c45415a 100644 --- a/lfs/glib +++ b/lfs/glib @@ -75,7 +75,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --sysconfdir=/etc \ -D internal_pcre=false \ builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD) From patchwork Thu Sep 2 14:13:09 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4662 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZp1GYdz3wy6 for ; Thu, 2 Sep 2021 14:13:38 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jZn5gJfz6XN; Thu, 2 Sep 2021 14:13:37 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jZn51mxz2xgw; Thu, 2 Sep 2021 14:13:37 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZm04P1z2xZM for ; Thu, 2 Sep 2021 14:13:36 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jZl5fyhz5Lt; Thu, 2 Sep 2021 14:13:35 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592015; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RcKSzo7aKot8jNx0jpuEd1PabAvpzbtHja4/e0vO+vo=; b=BU9OXbEWet8DiwD+WmCz0q2+dHfuFJEcNA5/+P3D+6GFB0GP2M2XXU/18IerQZF/cGe/Wm EeLbloJvMrUWyvDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592015; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RcKSzo7aKot8jNx0jpuEd1PabAvpzbtHja4/e0vO+vo=; b=vXI/Uwo+tUe8/kdh3eM/mxq0HCMAoPQTnK8m1X2Pra8GSnzr0sCWYMshI56L8ogEcrbhef J2Pe/dvGfkdYeun4Yqb3HgLkTK1eXPmi8NCcIsxHJTeYW78W36oLyIV/4r7Kw+J1Jqz2tz ySskuy6utNDH8/nKOTY0LEEXeuGUSZ+vec1impPFGXHJgzxCjQUVXbnIz15WCfT3fxUb7p BQScClK19fAMK2qpf51a/RAW5IqZodNCZyURBKS+GMf06x9zWeH2Lum8CvC3Jq/h/amQlj bOOwClEb0MHM3GD3WGfAe9LC/kr55C5Ep99zFVimAewkPSxLF87oLyFm+4fzJQ== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 2/6] libinih: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:09 +0200 Message-Id: <20210902141313.2737982-2-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> References: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/libinih | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/libinih b/lfs/libinih index bfecc35de..3c25bdbfa 100644 --- a/lfs/libinih +++ b/lfs/libinih @@ -77,7 +77,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) cd $(DIR_APP) && meson --prefix=/usr builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD) From patchwork Thu Sep 2 14:13:10 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4663 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZz2JwPz3wy6 for ; Thu, 2 Sep 2021 14:13:47 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jZy6NSdz6ZS; Thu, 2 Sep 2021 14:13:46 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jZy5mhSz2yXv; Thu, 2 Sep 2021 14:13:46 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jZy0Wwqz2xZM for ; Thu, 2 Sep 2021 14:13:46 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jZx5MlHzBF; Thu, 2 Sep 2021 14:13:45 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592025; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=36ofNuC3kdS1t5tSvs+CUnWHUpizCWEaZtonTzPdt7k=; b=5CTann6nYva7Ln6aJNFJjV85EPKxWEtV3yi4gfeKYhura1FdcpbAHTPHulNHOxQJzhJQun 3W+rW3Wwb+LS9JAQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592025; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=36ofNuC3kdS1t5tSvs+CUnWHUpizCWEaZtonTzPdt7k=; b=YD0BESzaiRET2kvI/WA01RE7wETJtIclxBFimu3RsKKxfbPwFNvwz6wNiSShBoegEcyrl/ z0HMWCDM5iUpMoG3M01vpyq+lWdqNVHm5b0BDKNf0wXL0rSJeC7euEz/AwSqE86kSBScDO 2r6z+CkIiJ1O2XzNWW5zb029SPpWLd4brMACVuV50whnZTq0IE7ELln1dAO5G++OHODqVO 5Ic2OA98MDD1wovtSoTIa0pTOoDiBgBlXtCEAPale9Cx3wy3s0CwYg8TysoSPqLDWxSdxb 0ZUHUZiBNmZ0xtgCX5K8Nu9Aw/RGjCYbkfkXZceWM6c0B3ckjhvaYSJS7rK4Zw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 3/6] libmpdclient: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:10 +0200 Message-Id: <20210902141313.2737982-3-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> References: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/libmpdclient | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/libmpdclient b/lfs/libmpdclient index 24f516d01..ee18a37a6 100644 --- a/lfs/libmpdclient +++ b/lfs/libmpdclient @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libmpdclient -PAK_VER = 4 +PAK_VER = 5 DEPS = @@ -79,7 +79,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) cd $(DIR_APP) && meson --prefix=/usr builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD) From patchwork Thu Sep 2 14:13:11 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4664 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbG2N6wz3wy6 for ; Thu, 2 Sep 2021 14:14:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jbG088Qz6cG; Thu, 2 Sep 2021 14:14:02 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jbF6Z5Bz2y4C; Thu, 2 Sep 2021 14:14:01 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbF08p0z2xZM for ; Thu, 2 Sep 2021 14:14:01 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jbD5wQsz1f2; Thu, 2 Sep 2021 14:14:00 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592040; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5ec+mGkP+lWg3xgZ2hFwG6qnPL79FFiMx9E4GKxI33k=; b=dZX8ZNuM3303yytCvnzPUQQ+sMInuJ7cEXKWQ3i+LXCugA0aY6k4i7KvSNRzrSXwCSRC5C mri3W6KhXrbm1nCg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592040; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5ec+mGkP+lWg3xgZ2hFwG6qnPL79FFiMx9E4GKxI33k=; b=dgGs2pGH5Xbu24OvlaMlbziTazBKJcpagBl2QDkY8nDh10jfWQ8nyWJvaHFUwcwaPUB/42 yUFBvboA+UfsBmKyOCHSSPrxb4VRqBrwg5JIiohOSw3akfGdmU/2GtuOGYqgzNOCyiI4ug 0Aa24PXKyR9wDNpjKBOMwwAp+0MUHHFmUzLU1p+k2aZrI1Cy0vkl6t8shxYWaebCmgAVUa diBo2C7mtyHGH+Xl35z1ltKooOlIgcyAANHy/XjO1ewtvuZBPzrWhM2WgcaHfck4dg1xOT aHWXDNGpD0qcMPRanAwMAFa0z5CG95FrO7Q/668/ylqmiBAEOst3D/qxdtlczA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 4/6] mpc: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:11 +0200 Message-Id: <20210902141313.2737982-4-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> References: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/mpc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/mpc b/lfs/mpc index 2060685cc..47b069401 100644 --- a/lfs/mpc +++ b/lfs/mpc @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpc -PAK_VER = 7 +PAK_VER = 8 DEPS = mpd libmpdclient @@ -78,7 +78,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && meson --prefix=/usr builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD) From patchwork Thu Sep 2 14:13:12 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4665 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbZ3j3vz3wy6 for ; Thu, 2 Sep 2021 14:14:18 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jbZ0z8nz6YH; Thu, 2 Sep 2021 14:14:18 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jbZ0MxZz2yXv; Thu, 2 Sep 2021 14:14:18 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbX57bBz2xZM for ; Thu, 2 Sep 2021 14:14:16 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jbX0Q8mz1f2; Thu, 2 Sep 2021 14:14:16 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592056; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2K5raiwZ5JRKuy2/iGlHrHLg0K2FBdFC9PB2wW8V/7g=; b=y/feQbLhTs/5cl7lmho3/BTDR00XO/JEsgt/PGN/4luJd0PjvndVv4uVnhlGeAmKjnz0RN vRL/h0snMcnFDzCA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592056; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2K5raiwZ5JRKuy2/iGlHrHLg0K2FBdFC9PB2wW8V/7g=; b=JujRi8i85428tBeOfmlks0t03Xuu52/GG/ulFdtVWOSghFo8r6FEyTUuCtJU56oNhnPn0U xluzE5IxG4BgSRo2T7d6idAhJhAaxk7AxxnDrS/kpEqnPOBssV+Bncy5enjvNPem6vQT0+ k80IOLDCAyF75PHeArBzU7/n2teHXFPolPirPqI4vkoMqCznt+/3XnkV1GAcokuIinPo1J tyJOKN+Nh4N7Y4bodcRVjvUue3FbdZX/K8PoClS7n15xhwRMttjyy1ucSmJXiQ8Na8MsUc XfpUEx2zLfgEedHev1ix00uKeo9ENL4oK8FS/1WL6+wcF0tTvYvSpVqxWzpSYg== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 5/6] mpd: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:12 +0200 Message-Id: <20210902141313.2737982-5-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> References: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/mpd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/mpd b/lfs/mpd index 012100b0e..c1871d8b5 100644 --- a/lfs/mpd +++ b/lfs/mpd @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/${THISAPP} TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpd -PAK_VER = 23 +PAK_VER = 24 SUP_ARCH = aarch64 armv6l x86_64 i586 DEPS = alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus soxr @@ -94,7 +94,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) -D upnp=disabled \ -D icu=disabled \ builddir/ - cd $(DIR_APP) && ninja -C builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install #install initscripts From patchwork Thu Sep 2 14:13:13 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4666 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbr4PFcz3wy6 for ; Thu, 2 Sep 2021 14:14:32 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4H0jbr1qX9z6cP; Thu, 2 Sep 2021 14:14:32 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4H0jbr1505z2y4C; Thu, 2 Sep 2021 14:14:32 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4H0jbq1zSvz2xZM for ; Thu, 2 Sep 2021 14:14:31 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4H0jbp4045z6cJ; Thu, 2 Sep 2021 14:14:30 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1630592070; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DD5ex7QseD3EoPNFezb2g/Rl5VjvhojI5Ug3cPe325Q=; b=DznnaZnViXszPVt9A7CiD6juWkp8+z8SjIfUXMDFX8QQ3+sOmySonx0wChXhEZrBugu1OC bU2ttucnIcKRvRAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1630592070; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DD5ex7QseD3EoPNFezb2g/Rl5VjvhojI5Ug3cPe325Q=; b=j8lbJpX1YHs9v/1tgyvv36GXSCVaYyMiDjDk8ubSRv3ptWm37sTChw8wTcsv0kNDbLevlW H88dsYb+onoCyZAMUOE1PKkZSYqGbjHC/vszPDI7Xd+vM60J0JUmYRkQXg2C5JqjB7YdFJ PLELxPFozXMUoYoHSSLyvRX30yw2XhlZdpWZ+BD+ImNOotJ+shSj8JKEQnX+SxOf+3sIES HN8bFPNyeEL5QZnNEhHalJMn59tOg/RhLAA3kYAPZCunzTuxaQg2H82YSxQBOJsj2mi4Ao 3SKWnL5QSH/xF79JQZ8ydMiTP6ruL/CGpql8UP2JDIETVwl9neBBGZ1FD5QGsw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 6/6] sshfs: Add $(MAKETUNING) variable to ninja build Date: Thu, 2 Sep 2021 16:13:13 +0200 Message-Id: <20210902141313.2737982-6-adolf.belka@ipfire.org> In-Reply-To: <20210902141313.2737982-1-adolf.belka@ipfire.org> References: <20210902141313.2737982-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - $(MAKETUNING) variable added to ninja build Signed-off-by: Adolf Belka --- lfs/sshfs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lfs/sshfs b/lfs/sshfs index 1e7706194..23b68c541 100644 --- a/lfs/sshfs +++ b/lfs/sshfs @@ -73,6 +73,8 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && meson --prefix=/usr builddir && cd builddir && ninja && ninja install + cd $(DIR_APP) && meson --prefix=/usr builddir/ + cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) + cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP) @$(POSTBUILD)