public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/plyr: plyr-1.0.6.ebuild ChangeLog
@ 2014-06-24 15:02 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2014-06-24 15:02 UTC (permalink / raw
  To: gentoo-commits

idella4     14/06/24 15:02:05

  Modified:             ChangeLog
  Added:                plyr-1.0.6.ebuild
  Log:
  bump; update HOMEPAGE, change SRC_URI to src repo and tarball, add IUSE doc, doc build, test phase, ebuild prepared & updated by proxy maintainer
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/plyr/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	22 Jun 2014 12:28:01 -0000	1.1
+++ ChangeLog	24 Jun 2014 15:02:04 -0000	1.2
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/plyr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.1 2014/06/22 12:28:01 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.2 2014/06/24 15:02:04 idella4 Exp $
+
+*plyr-1.0.6 (24 Jun 2014)
+
+  24 Jun 2014; Ian Delaney <idella4@gentoo.org> +plyr-1.0.6.ebuild:
+  bump; update HOMEPAGE, change SRC_URI to src repo and tarball, add IUSE doc,
+  doc build, test phase, ebuild prepared & updated by proxy maintainer
 
 *plyr-1.0.2 (22 Jun 2014)
 



1.1                  dev-python/plyr/plyr-1.0.6.ebuild

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

Index: plyr-1.0.6.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v 1.1 2014/06/24 15:02:04 idella4 Exp $

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

inherit distutils-r1 flag-o-matic

MY_PN="python-glyr"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="A python wrapper for Glyr"
HOMEPAGE="http://sahib.github.com/python-glyr/intro.html
	https://github.com/sahib/python-glyr"
SRC_URI="https://github.com/sahib/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"

LICENSE="GPL-3+"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc"

RDEPEND="media-libs/glyr"
DEPEND="${RDEPEND}
	dev-python/cython[${PYTHON_USEDEP}]
	dev-python/setuptools[${PYTHON_USEDEP}]
	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

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

python_prepare_all() {
	# Disable test requiring internet connection
	sed -e 's:test_download:_&:' -i tests/test_misc.py || die
}

python_compile() {
	if ! python_is_python3; then
		local CFLAGS=${CFLAGS}
		append-cflags -fno-strict-aliasing
	fi
	distutils-r1_python_compile
}

python_compile_all() {
	if use doc; then
		emake -C docs html || die "Generating documentation failed"
	fi
}

python_test() {
	"${PYTHON}" -m unittest discover tests || die "Tests fail with ${EPYTHON}"
}

python_install_all() {
	use doc && local HTML_DOCS=( docs/build/html/. )
	distutils-r1_python_install_all
}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/plyr: plyr-1.0.6.ebuild ChangeLog
@ 2014-06-28  2:07 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2014-06-28  2:07 UTC (permalink / raw
  To: gentoo-commits

idella4     14/06/28 02:07:50

  Modified:             plyr-1.0.6.ebuild ChangeLog
  Log:
  add ~x86 keyword, add missing call in prepare_all()
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/plyr/plyr-1.0.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?r1=1.1&r2=1.2

Index: plyr-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- plyr-1.0.6.ebuild	24 Jun 2014 15:02:04 -0000	1.1
+++ plyr-1.0.6.ebuild	28 Jun 2014 02:07:49 -0000	1.2
@@ -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/plyr/plyr-1.0.6.ebuild,v 1.1 2014/06/24 15:02:04 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v 1.2 2014/06/28 02:07:49 idella4 Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -16,7 +16,7 @@
 SRC_URI="https://github.com/sahib/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
 
 LICENSE="GPL-3+"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 SLOT="0"
 IUSE="doc"
 
@@ -31,6 +31,7 @@
 python_prepare_all() {
 	# Disable test requiring internet connection
 	sed -e 's:test_download:_&:' -i tests/test_misc.py || die
+	distutils-r1_python_prepare_all
 }
 
 python_compile() {



1.5                  dev-python/plyr/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	27 Jun 2014 11:45:19 -0000	1.4
+++ ChangeLog	28 Jun 2014 02:07:50 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/plyr
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.4 2014/06/27 11:45:19 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.5 2014/06/28 02:07:50 idella4 Exp $
+
+  28 Jun 2014; Ian Delaney <idella4@gentoo.org> plyr-1.0.6.ebuild:
+  add ~x86 keyword, add missing call in prepare_all()
 
   27 Jun 2014; Ian Delaney <idella4@gentoo.org> -plyr-1.0.2.ebuild:
   remove superseded version





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/plyr: plyr-1.0.6.ebuild ChangeLog
@ 2015-03-06 22:32 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:32 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:32:14

  Modified:             plyr-1.0.6.ebuild ChangeLog
  Log:
  amd64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  dev-python/plyr/plyr-1.0.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?r1=1.2&r2=1.3

Index: plyr-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- plyr-1.0.6.ebuild	28 Jun 2014 02:07:49 -0000	1.2
+++ plyr-1.0.6.ebuild	6 Mar 2015 22:32:14 -0000	1.3
@@ -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/plyr/plyr-1.0.6.ebuild,v 1.2 2014/06/28 02:07:49 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v 1.3 2015/03/06 22:32:14 pacho Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -16,7 +16,7 @@
 SRC_URI="https://github.com/sahib/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
 
 LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SLOT="0"
 IUSE="doc"
 



1.6                  dev-python/plyr/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	28 Jun 2014 02:07:50 -0000	1.5
+++ ChangeLog	6 Mar 2015 22:32:14 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/plyr
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.5 2014/06/28 02:07:50 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.6 2015/03/06 22:32:14 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> plyr-1.0.6.ebuild:
+  amd64 stable, bug 540290
 
   28 Jun 2014; Ian Delaney <idella4@gentoo.org> plyr-1.0.6.ebuild:
   add ~x86 keyword, add missing call in prepare_all()





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/plyr: plyr-1.0.6.ebuild ChangeLog
@ 2015-03-08 23:55 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:55 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:55:16

  Modified:             plyr-1.0.6.ebuild ChangeLog
  Log:
  x86 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  dev-python/plyr/plyr-1.0.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild?r1=1.3&r2=1.4

Index: plyr-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- plyr-1.0.6.ebuild	6 Mar 2015 22:32:14 -0000	1.3
+++ plyr-1.0.6.ebuild	8 Mar 2015 23:55:16 -0000	1.4
@@ -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/plyr/plyr-1.0.6.ebuild,v 1.3 2015/03/06 22:32:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/plyr-1.0.6.ebuild,v 1.4 2015/03/08 23:55:16 pacho Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -16,7 +16,7 @@
 SRC_URI="https://github.com/sahib/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
 
 LICENSE="GPL-3+"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 SLOT="0"
 IUSE="doc"
 



1.7                  dev-python/plyr/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	6 Mar 2015 22:32:14 -0000	1.6
+++ ChangeLog	8 Mar 2015 23:55:16 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/plyr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.6 2015/03/06 22:32:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/plyr/ChangeLog,v 1.7 2015/03/08 23:55:16 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> plyr-1.0.6.ebuild:
+  x86 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> plyr-1.0.6.ebuild:
   amd64 stable, bug 540290





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-03-08 23:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-24 15:02 [gentoo-commits] gentoo-x86 commit in dev-python/plyr: plyr-1.0.6.ebuild ChangeLog Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-28  2:07 Ian Delaney (idella4)
2015-03-06 22:32 Pacho Ramos (pacho)
2015-03-08 23:55 Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox