From patchwork Thu Oct 12 20:28:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 1476 Return-Path: Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 014B760C10 for ; Thu, 12 Oct 2017 11:18:28 +0200 (CEST) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id D569B29FC; Thu, 12 Oct 2017 11:18:26 +0200 (CEST) Received: from tuxedo.stevee (unknown [46.125.249.118]) (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 114B429F2; Thu, 12 Oct 2017 11:18:22 +0200 (CEST) From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 2/3] libsepol: Drop package Date: Thu, 12 Oct 2017 11:28:09 +0200 Message-Id: <20171012092810.18910-2-stefan.schantl@ipfire.org> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20171012092810.18910-1-stefan.schantl@ipfire.org> References: <20171012092810.18910-1-stefan.schantl@ipfire.org> X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 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: Stefan Schantl --- libsepol/libsepol.nm | 71 ---------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 libsepol/libsepol.nm diff --git a/libsepol/libsepol.nm b/libsepol/libsepol.nm deleted file mode 100644 index 951f76e..0000000 --- a/libsepol/libsepol.nm +++ /dev/null @@ -1,71 +0,0 @@ -############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) - IPFire Development Team # -############################################################################### - -name = libsepol -version = 2.5 -release = 1 - -groups = System/Libraries -url = http://www.selinuxproject.org -license = LGPLv2+ -summary = SELinux binary policy manipulation library. - -description - libsepol provides an API for the manipulation of SELinux binary - policies. -end - -source_dl = https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20160223/ -sources = %{thisapp}.tar.gz - -build - # Keep static libsepol.a for some selinux tools, that needs to link - # against it. We will put it into an own package. - keep_libraries = %{libdir}/libsepol.a - - requires - flex - end - - build - make clean - make CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}" %{PARALLELISMFLAGS} - end - - # Install libraries to correct place. - make_install_targets += \ - LIBDIR="%{BUILDROOT}%{libdir}" \ - SHLIBDIR="%{BUILDROOT}%{libdir}" - - install_cmds - # Remove binaries - rm -rf %{BUILDROOT}/usr/bin - - # Remove manpages for binaries - rm -rf %{BUILDROOT}/usr/share/man/man8 - end -end - -packages - package %{name} - - package %{name}-devel - template DEVEL - end - - package %{name}-debuginfo - template DEBUGINFO - end - - package %{name}-static - summary = Static libraries used to build policy manipulation tools. - description = %{summary} - groups = Development/Libraries - - files - %{libdir}/libsepol.a - end - end -end