mrueg       15/06/13 14:13:35

  Modified:             ChangeLog
  Added:                pypam-0.5.0-r3.ebuild
  Log:
  Apply patches from Fedora fixing security bug #407603 and add support for 
Python3.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.18                 dev-python/pypam/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypam/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypam/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypam/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pypam/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   8 Apr 2015 08:05:13 -0000       1.17
+++ ChangeLog   13 Jun 2015 14:13:35 -0000      1.18
@@ -1,6 +1,15 @@
 # ChangeLog for dev-python/pypam
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pypam/ChangeLog,v 1.17 
2015/04/08 08:05:13 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pypam/ChangeLog,v 1.18 
2015/06/13 14:13:35 mrueg Exp $
+
+*pypam-0.5.0-r3 (13 Jun 2015)
+
+  13 Jun 2015; Manuel Rüger <[email protected]> 
+files/PyPAM-0.5.0-dealloc.patch,
+  +files/PyPAM-0.5.0-memory-errors.patch, +files/PyPAM-0.5.0-nofree.patch,
+  +files/PyPAM-0.5.0-return-value.patch, +files/PyPAM-python3-support.patch,
+  +pypam-0.5.0-r3.ebuild:
+  Apply patches from Fedora fixing security bug #407603 and add support for
+  Python3.
 
   08 Apr 2015; Michał Górny <[email protected]> pypam-0.5.0-r2.ebuild:
   Drop old Python implementations



1.1                  dev-python/pypam/pypam-0.5.0-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypam/pypam-0.5.0-r3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypam/pypam-0.5.0-r3.ebuild?rev=1.1&content-type=text/plain

Index: pypam-0.5.0-r3.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypam/pypam-0.5.0-r3.ebuild,v 1.1 
2015/06/13 14:13:35 mrueg Exp $

EAPI=5
PYTHON_COMPAT=( python{2_7,3_3} )

inherit distutils-r1 flag-o-matic

MY_PN="PyPAM"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Python Bindings for PAM (Pluggable Authentication Modules)"
HOMEPAGE="http://www.pangalactic.org/PyPAM";
SRC_URI="http://www.pangalactic.org/PyPAM/${MY_P}.tar.gz";

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""

DEPEND=">=sys-libs/pam-0.64"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

DOCS=( AUTHORS examples/pamtest.py )

PATCHES=(
        # Pull patches from fedora.
        "${FILESDIR}/PyPAM-${PV}-dealloc.patch"
        "${FILESDIR}/PyPAM-${PV}-nofree.patch"
        "${FILESDIR}/PyPAM-${PV}-memory-errors.patch"
        "${FILESDIR}/PyPAM-${PV}-return-value.patch"
        "${FILESDIR}/PyPAM-python3-support.patch"
        # Fix a missing include.
        "${FILESDIR}/${P}-stricter.patch"
)

src_compile() {
        append-cflags -fno-strict-aliasing
        distutils-r1_src_compile
}

python_test() {
        "${PYTHON}" tests/PamTest.py
}




Reply via email to