From patchwork Sat Jun 22 06:12:15 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arne Fitzenreiter X-Patchwork-Id: 2320 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 21ECE887673 for ; Fri, 21 Jun 2019 21:12:25 +0100 (BST) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 45Vqbr4RQlz5H9NT; Fri, 21 Jun 2019 21:12:24 +0100 (BST) Received: from ipfire.localdomain (unknown [88.215.19.234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 45Vqbm6T4yz581gw; Fri, 21 Jun 2019 21:12:20 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904rsa; t=1561147941; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=C27oSZcLKqG+EstGrQgMMhdKQLq5JyDu2Px7Pyr4tpE=; b=aDiGRI9VtmQEhNNAlM8MRfcqJ9wjwY7LR2QNRbhvl/d71AhlctJQLNxxZ9i7O85kyjMuKh PGElzricHQ3m4HFj+FUMTmZijuL6x6PzxE1O5h/WaJ7d7ppK+9Xx+vdsGjHK6f99Fx32ML sEr0Y6fk9mOoG3DCvoAxaD6yl/bTk7Tx10GeP1wheiqztNn0T0zJsImno/vpbYkKicLTXp kUJQyIFgbfqa5cqAr9fbiUP0RlASv1OSU27bSpxb/EQ0PNJhcpYHwdb6AI5o5KogTLz3v2 4GxRI99czeDeIrxiNabc+v6r6iD2lBPIlAQ60mx1rOqofElgEdJz3WrhBgnIPQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904ed25519; t=1561147941; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=C27oSZcLKqG+EstGrQgMMhdKQLq5JyDu2Px7Pyr4tpE=; b=BmyR1VLsNOYrGNiMLu3RUB67z3N9dSK7hXtPO1X5uzzWYeGs15kocsCTHZgFNQI2nTkcFY zAJuDARVthOBESCA== From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH] grubby: drop package Date: Fri, 21 Jun 2019 21:12:15 +0100 Message-Id: <1561147935-5550-1-git-send-email-arne_f@ipfire.org> X-Mailer: git-send-email 2.6.3 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=arne_f smtp.mailfrom=arne_f@ipfire.org Cc: Arne Fitzenreiter 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" Signed-off-by: Arne Fitzenreiter --- grubby/grubby.nm | 69 -------------------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 grubby/grubby.nm diff --git a/grubby/grubby.nm b/grubby/grubby.nm deleted file mode 100644 index 576d77a..0000000 --- a/grubby/grubby.nm +++ /dev/null @@ -1,69 +0,0 @@ -############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) - IPFire Development Team # -############################################################################### - -name = grubby -version = 8.11 -release = 5 - -groups = System/Base -url = http://git.fedorahosted.org/git/grubby.git -license = GPLv2+ -summary = Command line tool for updating bootloader configs. - -description - grubby is a command line tool for updating and displaying information about - the configuration files for the grub, lilo, elilo (ia64), yaboot (powerpc) - and zipl (s390) boot loaders. It is primarily designed to be used from scripts - which install new kernels and need to find information about the current boot - environment. -end - -# Source tarballs must be generated from git. -sources = %{thisapp}.tar.bz2 - -build - requires - glib2-devel - libblkid-devel - popt-devel - util-linux - end - - make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}" - - test - make test - end - - make_install_targets += mandir=%{mandir} - - install_cmds - mkdir -pv %{BUILDROOT}%{prefix} - mv -v %{BUILDROOT}{,%{prefix}}/sbin - end -end - -packages - package %{name} - # Pull in u-boot-tools on ARM platforms. - if "%{DISTRO_ARCH}" == "armv7hl" - requires += u-boot-tools - end - - if "%{DISTRO_ARCH}" == "armv5tel" - requires += u-boot-tools - end - - provides - /sbin/grubby - /sbin/installkernel - /sbin/new-kernel-pkg - end - end - - package %{name}-debuginfo - template DEBUGINFO - end -end