From: "Davide Pesavento (pesa)" <pesa@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.13.2-r1.ebuild ChangeLog sip-4.13.2.ebuild
Date: Thu, 23 Feb 2012 21:32:39 +0000 (UTC) [thread overview]
Message-ID: <20120223213239.BAEE72004B@flycatcher.gentoo.org> (raw)
pesa 12/02/23 21:32:39
Modified: ChangeLog
Added: sip-4.13.2-r1.ebuild
Removed: sip-4.13.2.ebuild
Log:
Revbump with EAPI 4 support.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Revision Changes Path
1.210 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.209&r2=1.210
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog 23 Feb 2012 18:39:42 -0000 1.209
+++ ChangeLog 23 Feb 2012 21:32:39 -0000 1.210
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.209 2012/02/23 18:39:42 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.210 2012/02/23 21:32:39 pesa Exp $
+
+*sip-4.13.2-r1 (23 Feb 2012)
+
+ 23 Feb 2012; Davide Pesavento <pesa@gentoo.org> +sip-4.13.2-r1.ebuild,
+ -sip-4.13.2.ebuild:
+ Revbump with EAPI 4 support.
23 Feb 2012; Davide Pesavento <pesa@gentoo.org> sip-4.13.2.ebuild:
Minor code cleanup.
1.1 dev-python/sip/sip-4.13.2-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.13.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.13.2-r1.ebuild?rev=1.1&content-type=text/plain
Index: sip-4.13.2-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.13.2-r1.ebuild,v 1.1 2012/02/23 21:32:39 pesa Exp $
EAPI="4"
PYTHON_DEPEND="*"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-*"
inherit eutils python toolchain-funcs
DESCRIPTION="Python extension module generator for C and C++ libraries"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/sip/intro http://pypi.python.org/pypi/SIP"
SRC_URI="http://www.riverbankcomputing.com/static/Downloads/${PN}${PV%%.*}/${P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 sip )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug doc"
DEPEND=""
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${PN}-4.9.3-darwin.patch
sed -i -e 's/-O2//g' specs/* || die
python_src_prepare
}
src_configure() {
configuration() {
local myconf=("$(PYTHON)"
configure.py
--bindir="${EPREFIX}/usr/bin"
--destdir="${EPREFIX}$(python_get_sitedir)"
--incdir="${EPREFIX}$(python_get_includedir)"
--sipdir="${EPREFIX}/usr/share/sip"
$(use debug && echo --debug)
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
LINK="$(tc-getCXX)"
LINK_SHLIB="$(tc-getCXX)"
CFLAGS="${CFLAGS}"
CXXFLAGS="${CXXFLAGS}"
LFLAGS="${LDFLAGS}"
STRIP=":")
echo "${myconf[@]}"
"${myconf[@]}"
}
python_execute_function -s configuration
}
src_install() {
python_src_install
dodoc NEWS
if use doc; then
dohtml -r doc/html/*
fi
}
pkg_postinst() {
python_mod_optimize sipconfig.py sipdistutils.py
ewarn "When updating dev-python/sip, you usually need to rebuild packages, which depend on dev-python/sip,"
ewarn "such as dev-python/PyQt4 and dev-python/qscintilla-python. If you have app-portage/gentoolkit"
ewarn "installed, you can find these packages with \`equery d dev-python/sip dev-python/PyQt4\`."
}
pkg_postrm() {
python_mod_cleanup sipconfig.py sipdistutils.py
}
reply other threads:[~2012-02-23 21:33 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20120223213239.BAEE72004B@flycatcher.gentoo.org \
--to=pesa@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