xmw         14/04/23 23:59:11

  Added:                pycollada-0.4.ebuild pycollada-9999.ebuild
                        metadata.xml ChangeLog
  Log:
  Initial import. Ebuild contributed by Fabio Rossi (bug 498592).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
62EEF090)

Revision  Changes    Path
1.1                  dev-python/pycollada/pycollada-0.4.ebuild

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

Index: pycollada-0.4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycollada/pycollada-0.4.ebuild,v 
1.1 2014/04/23 23:59:11 xmw Exp $

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

inherit distutils-r1

DESCRIPTION="python library for reading and writing collada documents"
HOMEPAGE="http://pycollada.github.com/";
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples test"

DEPEND="doc? ( dev-python/sphinx )
        test? ( dev-python/python-dateutil )"
RDEPEND="dev-python/numpy
        dev-python/lxml
        >=dev-python/python-dateutil-2.0
        virtual/python-unittest2"

src_compile() {
        distutils-r1_src_compile

        if use doc ; then
                pushd docs
                emake html
                popd
        fi
}

src_install() {
        distutils-r1_src_install

        if use doc ; then
                pushd docs/_build/html
                dohtml -r *
                popd
        fi

        if use examples ; then
                insinto /usr/share/${P}/
                doins -r examples
        fi

        install_test_data() {
                insinto $(python_get_sitedir)/collada/tests/
                doins -r collada/tests/data
        }
        python_foreach_impl install_test_data
}

src_test() {
        test_collada() {
                for script in "${S}"/collada/tests/*.py ; do
                        PYTHONPATH="${S}" $EPYTHON "${script}"
                done
        }
        python_foreach_impl test_collada
}



1.1                  dev-python/pycollada/pycollada-9999.ebuild

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

Index: pycollada-9999.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycollada/pycollada-9999.ebuild,v 
1.1 2014/04/23 23:59:11 xmw Exp $

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

inherit distutils-r1 git-2

DESCRIPTION="python library for reading and writing collada documents"
HOMEPAGE="http://pycollada.github.com/";
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git";

LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE="doc examples test"

DEPEND="doc? ( dev-python/sphinx )
        test? ( dev-python/python-dateutil )"
RDEPEND="dev-python/numpy
        dev-python/lxml
        >=dev-python/python-dateutil-2.0
        virtual/python-unittest2"

src_compile() {
        distutils-r1_src_compile

        if use doc ; then
                pushd docs
                emake html
                popd
        fi
}

src_install() {
        distutils-r1_src_install

        if use doc ; then
                pushd docs/_build/html
                dohtml -r *
                popd
        fi

        if use examples ; then
                insinto /usr/share/${P}/
                doins -r examples
        fi

        install_test_data() {
                insinto $(python_get_sitedir)/collada/tests/
                doins -r collada/tests/data
        }
        python_foreach_impl install_test_data
}

src_test() {
        test_collada() {
                for script in "${S}"/collada/tests/*.py ; do
                        PYTHONPATH="${S}" $EPYTHON "${script}"
                done
        }
        python_foreach_impl test_collada
}



1.1                  dev-python/pycollada/metadata.xml

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

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
<pkgmetadata>
<maintainer>
<email>[email protected]</email>
<name>Michael Weber</name>
</maintainer>
</pkgmetadata>



1.1                  dev-python/pycollada/ChangeLog

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

Index: ChangeLog
===================================================================
# ChangeLog for dev-python/pycollada
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycollada/ChangeLog,v 1.1 
2014/04/23 23:59:11 xmw Exp $

*pycollada-0.4 (23 Apr 2014)
*pycollada-9999 (23 Apr 2014)

  23 Apr 2014; Michael Weber <[email protected]> +metadata.xml,
  +pycollada-0.4.ebuild, +pycollada-9999.ebuild:
  Initial import. Ebuild contributed by Fabio Rossi (bug 498592).




Reply via email to