* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2014-07-15 17:27 Davide Pesavento (pesa)
0 siblings, 0 replies; 9+ messages in thread
From: Davide Pesavento (pesa) @ 2014-07-15 17:27 UTC (permalink / raw
To: gentoo-commits
pesa 14/07/15 17:27:22
Modified: ChangeLog
Added: sip-4.16.2.ebuild
Log:
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Revision Changes Path
1.286 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.286&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.286&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.285&r2=1.286
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog 20 Jun 2014 09:22:55 -0000 1.285
+++ ChangeLog 15 Jul 2014 17:27:22 -0000 1.286
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.285 2014/06/20 09:22:55 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.286 2014/07/15 17:27:22 pesa Exp $
+
+*sip-4.16.2 (15 Jul 2014)
+
+ 15 Jul 2014; Davide Pesavento <pesa@gentoo.org> +sip-4.16.2.ebuild:
+ Version bump.
20 Jun 2014; Ian Delaney <idella4@gentoo.org> sip-4.15.4.ebuild:
add py3.4 support
1.1 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.1&content-type=text/plain
Index: sip-4.16.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.1 2014/07/15 17:27:22 pesa Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
inherit eutils python-r1 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"
LICENSE="|| ( GPL-2 GPL-3 sip )"
if [[ ${PV} == *9999* ]]; then
# live version from mercurial repo
EHG_REPO_URI="http://www.riverbankcomputing.com/hg/sip"
inherit mercurial
elif [[ ${PV} == *_pre* ]]; then
# development snapshot
HG_REVISION=
MY_P=${PN}-${PV%_pre*}-snapshot-${HG_REVISION}
SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
else
# official release
SRC_URI="mirror://sourceforge/pyqt/${P}.tar.gz"
fi
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}"
[[ ${PV} == *9999* ]] && DEPEND+="
=dev-lang/python-2*
sys-devel/bison
sys-devel/flex
doc? ( dev-python/sphinx[$(python_gen_usedep 'python2*')] )
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-4.15.5-darwin.patch
if [[ ${PV} == *9999* ]]; then
python2 build.py prepare || die
if use doc; then
python2 build.py doc || die
fi
fi
# Sub-slot sanity check
local sub_slot=${SLOT#*/}
local sip_api_major_nr=$(sed -nre 's:^#define SIP_API_MAJOR_NR\s+([0-9]+):\1:p' siplib/sip.h.in)
if [[ ${sub_slot} != ${sip_api_major_nr} ]]; then
eerror
eerror "Ebuild sub-slot (${sub_slot}) does not match SIP_API_MAJOR_NR (${sip_api_major_nr})"
eerror "Please update SLOT variable as follows:"
eerror " SLOT=\"${SLOT%%/*}/${sip_api_major_nr}\""
eerror
die "sub-slot sanity check failed"
fi
python_copy_sources
}
src_configure() {
configuration() {
local myconf=(
"${PYTHON}" configure.py
--bindir="${EPREFIX}/usr/bin"
--destdir="$(python_get_sitedir)"
--incdir="$(python_get_includedir)"
--sipdir="${EPREFIX}/usr/share/sip"
$(use debug && echo --debug)
AR="$(tc-getAR) cqs"
CC="$(tc-getCC)"
CFLAGS="${CFLAGS}"
CFLAGS_RELEASE=
CXX="$(tc-getCXX)"
CXXFLAGS="${CXXFLAGS}"
CXXFLAGS_RELEASE=
LINK="$(tc-getCXX)"
LINK_SHLIB="$(tc-getCXX)"
LFLAGS="${LDFLAGS}"
LFLAGS_RELEASE=
RANLIB=
STRIP=
)
echo "${myconf[@]}"
"${myconf[@]}"
}
python_foreach_impl run_in_build_dir configuration
}
src_compile() {
python_foreach_impl run_in_build_dir default
}
src_install() {
installation() {
emake DESTDIR="${D}" install
python_optimize
}
python_foreach_impl run_in_build_dir installation
dodoc NEWS
use doc && dohtml -r doc/html/*
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2014-09-21 11:18 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2014-09-21 11:18 UTC (permalink / raw
To: gentoo-commits
jer 14/09/21 11:18:10
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for HPPA (bug #523322).
(Portage version: 2.2.13/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.3 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.2&r2=1.3
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sip-4.16.2.ebuild 12 Sep 2014 21:47:29 -0000 1.2
+++ sip-4.16.2.ebuild 21 Sep 2014 11:18:10 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.2 2014/09/12 21:47:29 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.3 2014/09/21 11:18:10 jer Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.289 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.289&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.289&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.288&r2=1.289
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog 12 Sep 2014 21:47:29 -0000 1.288
+++ ChangeLog 21 Sep 2014 11:18:10 -0000 1.289
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.288 2014/09/12 21:47:29 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.289 2014/09/21 11:18:10 jer Exp $
+
+ 21 Sep 2014; Jeroen Roovers <jer@gentoo.org> sip-4.16.2.ebuild:
+ Stable for HPPA (bug #523322).
*sip-4.16.3 (12 Sep 2014)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2014-10-09 9:35 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-09 9:35 UTC (permalink / raw
To: gentoo-commits
ago 14/10/09 09:35:00
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #523322
(Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.4&r2=1.5
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sip-4.16.2.ebuild 4 Oct 2014 12:21:43 -0000 1.4
+++ sip-4.16.2.ebuild 9 Oct 2014 09:35:00 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.4 2014/10/04 12:21:43 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.5 2014/10/09 09:35:00 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.291 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.291&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.291&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.290&r2=1.291
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog 4 Oct 2014 12:21:43 -0000 1.290
+++ ChangeLog 9 Oct 2014 09:35:00 -0000 1.291
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.290 2014/10/04 12:21:43 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.291 2014/10/09 09:35:00 ago Exp $
+
+ 09 Oct 2014; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
+ Stable for amd64, wrt bug #523322
04 Oct 2014; Markus Meier <maekke@gentoo.org> sip-4.16.2.ebuild:
arm stable, bug #523322
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2014-10-09 16:43 Davide Pesavento (pesa)
0 siblings, 0 replies; 9+ messages in thread
From: Davide Pesavento (pesa) @ 2014-10-09 16:43 UTC (permalink / raw
To: gentoo-commits
pesa 14/10/09 16:43:36
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Revert to ~amd64, see bug #523322 comment #4.
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Revision Changes Path
1.6 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.5&r2=1.6
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sip-4.16.2.ebuild 9 Oct 2014 09:35:00 -0000 1.5
+++ sip-4.16.2.ebuild 9 Oct 2014 16:43:36 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.5 2014/10/09 09:35:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.6 2014/10/09 16:43:36 pesa Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.292 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.292&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.292&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.291&r2=1.292
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -r1.291 -r1.292
--- ChangeLog 9 Oct 2014 09:35:00 -0000 1.291
+++ ChangeLog 9 Oct 2014 16:43:36 -0000 1.292
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.291 2014/10/09 09:35:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.292 2014/10/09 16:43:36 pesa Exp $
+
+ 09 Oct 2014; Davide Pesavento <pesa@gentoo.org> sip-4.16.2.ebuild:
+ Revert to ~amd64, see bug #523322 comment #4.
09 Oct 2014; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
Stable for amd64, wrt bug #523322
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2014-12-10 15:11 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-12-10 15:11 UTC (permalink / raw
To: gentoo-commits
zlogene 14/12/10 15:11:07
Modified: sip-4.16.2.ebuild ChangeLog
Log:
amd64 stable wrt bug #517344
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.9 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.8&r2=1.9
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sip-4.16.2.ebuild 22 Nov 2014 09:00:16 -0000 1.8
+++ sip-4.16.2.ebuild 10 Dec 2014 15:11:07 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.8 2014/11/22 09:00:16 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.9 2014/12/10 15:11:07 zlogene Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.298 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.298&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.298&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.297&r2=1.298
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog 23 Nov 2014 23:16:02 -0000 1.297
+++ ChangeLog 10 Dec 2014 15:11:07 -0000 1.298
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.297 2014/11/23 23:16:02 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.298 2014/12/10 15:11:07 zlogene Exp $
+
+ 10 Dec 2014; Mikle Kolyada <zlogene@gentoo.org> sip-4.16.2.ebuild:
+ amd64 stable wrt bug #517344
23 Nov 2014; Mike Gilbert <floppym@gentoo.org> sip-4.15.3.ebuild:
Add python3.4.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2015-02-14 14:38 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-14 14:38 UTC (permalink / raw
To: gentoo-commits
ago 15/02/14 14:38:12
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for x86, wrt bug #517344
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.9&r2=1.10
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sip-4.16.2.ebuild 10 Dec 2014 15:11:07 -0000 1.9
+++ sip-4.16.2.ebuild 14 Feb 2015 14:38:11 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.9 2014/12/10 15:11:07 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.10 2015/02/14 14:38:11 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.301 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.301&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.301&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.300&r2=1.301
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.300
retrieving revision 1.301
diff -u -r1.300 -r1.301
--- ChangeLog 26 Dec 2014 22:28:12 -0000 1.300
+++ ChangeLog 14 Feb 2015 14:38:11 -0000 1.301
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.300 2014/12/26 22:28:12 pesa Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.301 2015/02/14 14:38:11 ago Exp $
+
+ 14 Feb 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
+ Stable for x86, wrt bug #517344
*sip-4.16.5 (26 Dec 2014)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2015-02-16 8:34 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-16 8:34 UTC (permalink / raw
To: gentoo-commits
ago 15/02/16 08:34:28
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #517344
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.10&r2=1.11
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sip-4.16.2.ebuild 14 Feb 2015 14:38:11 -0000 1.10
+++ sip-4.16.2.ebuild 16 Feb 2015 08:34:28 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.10 2015/02/14 14:38:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.11 2015/02/16 08:34:28 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.302 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.302&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.302&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.301&r2=1.302
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.301
retrieving revision 1.302
diff -u -r1.301 -r1.302
--- ChangeLog 14 Feb 2015 14:38:11 -0000 1.301
+++ ChangeLog 16 Feb 2015 08:34:28 -0000 1.302
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.301 2015/02/14 14:38:11 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.302 2015/02/16 08:34:28 ago Exp $
+
+ 16 Feb 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
+ Stable for ppc, wrt bug #517344
14 Feb 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
Stable for x86, wrt bug #517344
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2015-02-17 11:09 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-17 11:09 UTC (permalink / raw
To: gentoo-commits
ago 15/02/17 11:09:15
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #517344
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.11&r2=1.12
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sip-4.16.2.ebuild 16 Feb 2015 08:34:28 -0000 1.11
+++ sip-4.16.2.ebuild 17 Feb 2015 11:09:15 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.11 2015/02/16 08:34:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.12 2015/02/17 11:09:15 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.303 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.303&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.303&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.302&r2=1.303
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.302
retrieving revision 1.303
diff -u -r1.302 -r1.303
--- ChangeLog 16 Feb 2015 08:34:28 -0000 1.302
+++ ChangeLog 17 Feb 2015 11:09:15 -0000 1.303
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.302 2015/02/16 08:34:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.303 2015/02/17 11:09:15 ago Exp $
+
+ 17 Feb 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
+ Stable for ppc64, wrt bug #517344
16 Feb 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
Stable for ppc, wrt bug #517344
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog
@ 2015-04-14 12:36 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:36 UTC (permalink / raw
To: gentoo-commits
ago 15/04/14 12:36:29
Modified: sip-4.16.2.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #523322
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 dev-python/sip/sip-4.16.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild?r1=1.12&r2=1.13
Index: sip-4.16.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sip-4.16.2.ebuild 17 Feb 2015 11:09:15 -0000 1.12
+++ sip-4.16.2.ebuild 14 Apr 2015 12:36:29 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.12 2015/02/17 11:09:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.16.2.ebuild,v 1.13 2015/04/14 12:36:29 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -28,7 +28,7 @@
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/11"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"
1.307 dev-python/sip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.307&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?rev=1.307&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sip/ChangeLog?r1=1.306&r2=1.307
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -r1.306 -r1.307
--- ChangeLog 8 Apr 2015 08:04:59 -0000 1.306
+++ ChangeLog 14 Apr 2015 12:36:29 -0000 1.307
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.306 2015/04/08 08:04:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/ChangeLog,v 1.307 2015/04/14 12:36:29 ago Exp $
+
+ 14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> sip-4.16.2.ebuild:
+ Stable for ia64, wrt bug #523322
08 Apr 2015; Michał Górny <mgorny@gentoo.org> sip-4.15.3.ebuild:
Drop old Python implementations
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-04-14 12:36 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-14 14:38 [gentoo-commits] gentoo-x86 commit in dev-python/sip: sip-4.16.2.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2015-04-14 12:36 Agostino Sarubbo (ago)
2015-02-17 11:09 Agostino Sarubbo (ago)
2015-02-16 8:34 Agostino Sarubbo (ago)
2014-12-10 15:11 Mikle Kolyada (zlogene)
2014-10-09 16:43 Davide Pesavento (pesa)
2014-10-09 9:35 Agostino Sarubbo (ago)
2014-09-21 11:18 Jeroen Roovers (jer)
2014-07-15 17:27 Davide Pesavento (pesa)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox