From patchwork Fri Jun 21 21:26:56 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 2310 Return-Path: Received: from mail01.ipfire.org (mail01.i.ipfire.org [172.28.1.200]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail01.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web07.i.ipfire.org (Postfix) with ESMTPS id BF362887664 for ; Fri, 21 Jun 2019 12:27:03 +0100 (BST) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 45Vbxf0V4fz5KKZZ; Fri, 21 Jun 2019 12:27:02 +0100 (BST) Received: from tuxedo.tremer.co.uk (unknown [88.215.19.234]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 45VbxZ3qjBz581gT; Fri, 21 Jun 2019 12:26:58 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904rsa; t=1561116418; 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=8INwyrgr0TAamT1JFAueu8A25Q/k98PSJHNMvYDNQQo=; b=ggjra/UxRS6rfxJncYj3oHGauzwKIapRlO9YyFwvRogYgYEKX4DgP+i4jmnkeS2cjoe5jJ 84BDwgmUw23XEYkPzn6vKzunoEzTR3pc7b2o5hJfAQnY8sSjeaRA/ykG087ZS8oMM8bo2l 0U0Jndn/V1vTqEVI1/F2FvHfmtmqFwJaGUoW7HBGm+hJj/N5MRFbPfei7DC3/x6S0lr0Ql NzDSgqKqTsuq/k9Glcf+wrpGOucmInHvSANQEPKHWh1v95HOfuapJuZKxOyYhh+Sbwl5c0 +Yoh2+zZvAVESN45c6RFyYhNSZOnqysPozR7uyoJNWoN6gNb9uO0BsEyoy//gQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904ed25519; t=1561116418; 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=8INwyrgr0TAamT1JFAueu8A25Q/k98PSJHNMvYDNQQo=; b=Ob4ymgPdWKl363gZNdYHSY3h2jGQnEQ/zDTTXFXYah5KVOFkSRc1iaLhbbppq+E56jMUAW XGVlPGHV3AsVzOCA== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] ninja: Update to 1.9.0 Date: Fri, 21 Jun 2019 13:26:56 +0200 Message-Id: <20190621112656.18358-1-stefan.schantl@ipfire.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=stevee smtp.mailfrom=stefan.schantl@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.15 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" X-Spam: Yes * Also add macro file for pakfire. Signed-off-by: Stefan Schantl --- ninja/ninja.nm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ninja/ninja.nm b/ninja/ninja.nm index e0793d8a0..ef54e5d99 100644 --- a/ninja/ninja.nm +++ b/ninja/ninja.nm @@ -4,7 +4,7 @@ ############################################################################### name = ninja -version = 1.8.2 +version = 1.9.0 release = 1 groups = Applications/System @@ -55,6 +55,12 @@ build # Install ninja syntax highlighting for vim. install -Dpm0644 misc/ninja.vim %{BUILDROOT}%{datadir}/vim/vimfiles/syntax/ninja.vim + + # Install pakfire macro. + mkdir -p %{BUILDROOT}/usr/lib/pakfire/macros + install -v -m 644 %{DIR_SOURCE}/%{name}.macro \ + %{BUILDROOT}/usr/lib/pakfire/macros + end end