public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Frysinger (vapier)" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/pax-utils: pax-utils-1.0.3.ebuild ChangeLog
Date: Sun, 29 Mar 2015 20:11:59 +0000 (UTC)	[thread overview]
Message-ID: <20150329201200.51D9814CC2@oystercatcher.gentoo.org> (raw)

vapier      15/03/29 20:11:59

  Modified:             ChangeLog
  Added:                pax-utils-1.0.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.174                app-misc/pax-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	10 Mar 2015 05:34:03 -0000	1.173
+++ ChangeLog	29 Mar 2015 20:11:59 -0000	1.174
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/pax-utils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.173 2015/03/10 05:34:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.174 2015/03/29 20:11:59 vapier Exp $
+
+*pax-utils-1.0.3 (29 Mar 2015)
+
+  29 Mar 2015; Mike Frysinger <vapier@gentoo.org> +pax-utils-1.0.3.ebuild:
+  Version bump.
 
 *pax-utils-1.0.2 (10 Mar 2015)
 



1.1                  app-misc/pax-utils/pax-utils-1.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild?rev=1.1&content-type=text/plain

Index: pax-utils-1.0.3.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild,v 1.1 2015/03/29 20:11:59 vapier Exp $

EAPI="4"

inherit eutils toolchain-funcs unpacker

DESCRIPTION="ELF related utils for ELF 32/64 binaries that can check files for security relevant properties"
HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities"
SRC_URI="mirror://gentoo/pax-utils-${PV}.tar.xz
	http://dev.gentoo.org/~solar/pax/pax-utils-${PV}.tar.xz
	http://dev.gentoo.org/~vapier/dist/pax-utils-${PV}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="caps python"

RDEPEND="caps? ( sys-libs/libcap )
	python? ( dev-python/pyelftools )"
DEPEND="${RDEPEND}
	app-arch/xz-utils"

_emake() {
	emake \
		USE_CAP=$(usex caps) \
		USE_PYTHON=$(usex python) \
		"$@"
}

src_configure() {
	# Avoid slow configure+gnulib+make if on an up-to-date Linux system
	if use prefix || ! use kernel_linux || \
	   has_version '<sys-libs/glibc-2.10'
	then
		econf $(use_with caps) $(use_with python)
	else
		tc-export CC
	fi
}

src_compile() {
	_emake
}

src_test() {
	_emake check
}

src_install() {
	_emake DESTDIR="${ED}" PKGDOCDIR='$(DOCDIR)'/${PF} install
}





             reply	other threads:[~2015-03-29 20:12 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-29 20:11 Mike Frysinger (vapier) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-05-24 20:43 [gentoo-commits] gentoo-x86 commit in app-misc/pax-utils: pax-utils-1.0.3.ebuild ChangeLog Mikle Kolyada (zlogene)
2015-05-25  0:42 Anthony G. Basile (blueness)
2015-05-25  1:41 Mike Frysinger (vapier)
2015-05-25 10:47 Mikle Kolyada (zlogene)
2015-05-28 16:21 Jeroen Roovers (jer)
2015-06-02  5:21 Jack Morgan (jmorgan)
2015-06-21 16:13 Mikle Kolyada (zlogene)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150329201200.51D9814CC2@oystercatcher.gentoo.org \
    --to=vapier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox