From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 37D7B139404 for ; Thu, 27 Oct 2016 18:51:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B5A7E0AE6; Thu, 27 Oct 2016 18:51:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34DBFE0AE6 for ; Thu, 27 Oct 2016 18:51:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E31A7341643 for ; Thu, 27 Oct 2016 18:50:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F2CC244E for ; Thu, 27 Oct 2016 18:50:57 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1477594247.1b9381e36762ad1e2f8bdcc7780fc7de137ec468.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libapparmor/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libapparmor/libapparmor-2.10.1.ebuild X-VCS-Directories: sys-libs/libapparmor/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 1b9381e36762ad1e2f8bdcc7780fc7de137ec468 X-VCS-Branch: master Date: Thu, 27 Oct 2016 18:50:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 00643923-f553-4119-9ce2-6f8936e8e55a X-Archives-Hash: b822a45c237ecb45c563b2a7b1ea4197 commit: 1b9381e36762ad1e2f8bdcc7780fc7de137ec468 Author: Michael Palimaka gentoo org> AuthorDate: Thu Oct 27 18:50:42 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Oct 27 18:50:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b9381e3 sys-libs/libapparmor: remove old Package-Manager: portage-2.3.2 sys-libs/libapparmor/libapparmor-2.10.1.ebuild | 88 -------------------------- 1 file changed, 88 deletions(-) diff --git a/sys-libs/libapparmor/libapparmor-2.10.1.ebuild b/sys-libs/libapparmor/libapparmor-2.10.1.ebuild deleted file mode 100644 index 9838956..00000000 --- a/sys-libs/libapparmor/libapparmor-2.10.1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -AUTOTOOLS_AUTORECONF=1 -DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) -GENTOO_DEPEND_ON_PERL="no" - -inherit autotools-utils distutils-r1 perl-module versionator - -DESCRIPTION="Library to support AppArmor userspace utilities" -HOMEPAGE="http://apparmor.net/" -SRC_URI="https://launchpad.net/apparmor/$(get_version_component_range 1-2)/${PV}/+download/apparmor-${PV}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc +perl +python static-libs" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} )" - -DEPEND="${RDEPEND} - sys-devel/autoconf-archive - sys-devel/bison - sys-devel/flex - doc? ( dev-lang/perl ) - perl? ( dev-lang/swig ) - python? ( dev-lang/swig )" - -S=${WORKDIR}/apparmor-${PV}/libraries/${PN} - -src_prepare() { - rm -r m4 || die "failed to remove bundled macros" - epatch "${FILESDIR}"/${PN}-2.10-symbol_visibility.patch - autotools-utils_src_prepare - use python && distutils-r1_src_prepare -} - -src_configure() { - local myeconfargs=( - $(use_with perl) \ - $(use_with python) - ) - - autotools-utils_src_configure -} - -src_compile() { - autotools-utils_src_compile -C src - autotools-utils_src_compile -C include - use doc && autotools-utils_src_compile -C doc - use perl && autotools-utils_src_compile -C swig/perl - - if use python ; then - pushd "${BUILD_DIR}"/swig/python > /dev/null - emake libapparmor_wrap.c - distutils-r1_src_compile - popd > /dev/null - fi -} - -src_install() { - autotools-utils_src_install -C src - autotools-utils_src_install -C include - use doc && autotools-utils_src_install -C doc - - if use perl ; then - autotools-utils_src_install -C swig/perl - perl_set_version - insinto "${VENDOR_ARCH}" - doins "${BUILD_DIR}"/swig/perl/LibAppArmor.pm - fi - - if use python ; then - pushd "${BUILD_DIR}"/swig/python > /dev/null - distutils-r1_src_install - - python_moduleinto LibAppArmor - python_foreach_impl python_domodule __init__.py - popd > /dev/null - fi -}