[gentoo-commits] repo/gentoo:master commit in: dev-python/pysyck/

2016-02-09 Thread Michael Palimaka
commit: 5bbef50d82b6e38751948b1a9d392b1e39be9f23
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Feb  9 09:00:21 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Feb  9 09:04:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bbef50d

dev-python/pysyck: remove last-rited package

Gentoo-bug: 565010

 dev-python/pysyck/Manifest|  1 -
 dev-python/pysyck/metadata.xml| 10 -
 dev-python/pysyck/pysyck-0.61.2-r1.ebuild | 35 ---
 3 files changed, 46 deletions(-)

diff --git a/dev-python/pysyck/Manifest b/dev-python/pysyck/Manifest
deleted file mode 100644
index 4ba52ae..000
--- a/dev-python/pysyck/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST PySyck-0.61.2.tar.gz 44949 SHA256 
cc4ce350411c39d11a4654d8e97f5f92644c3dd9a1e2e2d862f3de47190ed473 SHA512 
3ccb304b7a8efbf57209079b92fb34f0122cb1da93ee51fb45bdd5e8728dec383e0e0e9f329f1704ef5deeb6cdb93a5dc9cad69c877a886e9d0c3058ec1aa812
 WHIRLPOOL 
d98d43ead9a6b196f567f78b8b0ccce8d5ac1df222531e478c8645a58dfeadfe5bef9c4b89660fe1a72802899dc14361ca6c04f6beeab747f4d838852eb74cb1

diff --git a/dev-python/pysyck/metadata.xml b/dev-python/pysyck/metadata.xml
deleted file mode 100644
index 2c517cc..000
--- a/dev-python/pysyck/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   PySyck is aimed to update the current Python bindings for Syck. 
The new
-   bindings provide a wrapper for the Syck emitter and give access 
to YAML
-   representation graphs. PySyck may be used for various tasks, in
-   particular, as a replacement of the module pickle.
-   
-

diff --git a/dev-python/pysyck/pysyck-0.61.2-r1.ebuild 
b/dev-python/pysyck/pysyck-0.61.2-r1.ebuild
deleted file mode 100644
index eca2258..000
--- a/dev-python/pysyck/pysyck-0.61.2-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-MY_P="PySyck-${PV}"
-
-DESCRIPTION="Python bindings for the Syck YAML parser and emitter"
-HOMEPAGE="http://pyyaml.org/wiki/PySyck;
-SRC_URI="http://pyyaml.org/download/pysyck/${MY_P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=dev-libs/syck-0.55"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-   distutils-r1_python_prepare_all
-   append-cflags -fno-strict-aliasing
-}
-
-python_test() {
-   "${PYTHON}" tests/test_syck.py
-   einfo "Some tests may have failed due to pending bugs in dev-libs/syck"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pysyck/

2015-09-02 Thread Justin Lecher
commit: 2406e6e57708af0d0dfcdb121efe763511f45c6d
Author: Justin Lecher  gentoo  org>
AuthorDate: Wed Sep  2 16:41:44 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Wed Sep  2 16:53:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2406e6e5

dev-python/pysyck: Use append-cflags

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pysyck/pysyck-0.61.2-r1.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-python/pysyck/pysyck-0.61.2-r1.ebuild 
b/dev-python/pysyck/pysyck-0.61.2-r1.ebuild
index 9cad1c0..eca2258 100644
--- a/dev-python/pysyck/pysyck-0.61.2-r1.ebuild
+++ b/dev-python/pysyck/pysyck-0.61.2-r1.ebuild
@@ -3,9 +3,10 @@
 # $Id$
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 )
 
-inherit distutils-r1
+inherit distutils-r1 flag-o-matic
 
 MY_P="PySyck-${PV}"
 
@@ -21,9 +22,13 @@ IUSE=""
 DEPEND=">=dev-libs/syck-0.55"
 RDEPEND="${DEPEND}"
 
-CFLAGS="${CFLAGS} -fno-strict-aliasing"
 S="${WORKDIR}/${MY_P}"
 
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   append-cflags -fno-strict-aliasing
+}
+
 python_test() {
"${PYTHON}" tests/test_syck.py
einfo "Some tests may have failed due to pending bugs in dev-libs/syck"