summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-13 09:18:34 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-13 09:18:34 +0000
commit0b7ca45bbfe8b5ea3d6f082cc31ed0e8d0caca93 (patch)
tree4f59bcde01b0b63cb0d10b72964675fbf2039c53 /dev-python/pyyaml
parentVersion bump, license change, init options and lots more thanks to Malte Star... (diff)
downloadgentoo-2-0b7ca45bbfe8b5ea3d6f082cc31ed0e8d0caca93.tar.gz
gentoo-2-0b7ca45bbfe8b5ea3d6f082cc31ed0e8d0caca93.tar.bz2
gentoo-2-0b7ca45bbfe8b5ea3d6f082cc31ed0e8d0caca93.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/pyyaml')
-rw-r--r--dev-python/pyyaml/ChangeLog5
-rw-r--r--dev-python/pyyaml/pyyaml-3.10-r1.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-python/pyyaml/ChangeLog b/dev-python/pyyaml/ChangeLog
index 5fe2edcf165d..31e4679122ae 100644
--- a/dev-python/pyyaml/ChangeLog
+++ b/dev-python/pyyaml/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pyyaml
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/ChangeLog,v 1.57 2015/05/28 15:13:12 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/ChangeLog,v 1.58 2015/06/13 09:18:34 mrueg Exp $
+
+ 13 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -pyyaml-3.10-r1.ebuild:
+ Remove old.
28 May 2015; Jack Morgan <jmorgan@gentoo.org> pyyaml-3.10-r1.ebuild:
sparc stable wrt bug #506042
diff --git a/dev-python/pyyaml/pyyaml-3.10-r1.ebuild b/dev-python/pyyaml/pyyaml-3.10-r1.ebuild
deleted file mode 100644
index fde756f3dea2..000000000000
--- a/dev-python/pyyaml/pyyaml-3.10-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/pyyaml-3.10-r1.ebuild,v 1.12 2015/05/28 15:13:12 jmorgan Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3} pypy )
-
-inherit distutils-r1
-
-MY_P="PyYAML-${PV}"
-
-DESCRIPTION="YAML parser and emitter for Python"
-HOMEPAGE="http://pyyaml.org/wiki/PyYAML http://pypi.python.org/pypi/PyYAML"
-SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="examples libyaml"
-
-RDEPEND="libyaml? ( dev-libs/libyaml )"
-DEPEND="${RDEPEND}
- libyaml? ( dev-python/cython[${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_configure_all() {
- mydistutilsargs=($(use_with libyaml))
-}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}
- fi
-}