Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
pandas-9999 bdist_wininst has no option user-access-control
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
jeffk
l33t
l33t


Joined: 13 Sep 2003
Posts: 671

PostPosted: Mon Dec 03, 2012 6:58 pm    Post subject: pandas-9999 bdist_wininst has no option user-access-control Reply with quote

On a local overlay, my pandas-9999 (git master) I'm seeing a new error:
Code:
warning: install_lib: byte-compiling is disabled, skipping.
running install_egg_info
running egg_info
creating pandas.egg-info
writing requirements to pandas.egg-info/requires.txt
writing pandas.egg-info/PKG-INFO
writing top-level names to pandas.egg-info/top_level.txt
writing dependency_links to pandas.egg-info/dependency_links.txt
writing manifest file 'pandas.egg-info/SOURCES.txt'
reading manifest file 'pandas.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'setupegg.py'
no previously-included directories found matching 'doc/build'
warning: no previously-included files matching '*.so' found anywhere in distribution
warning: no previously-included files matching '*.pyd' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '.DS_Store' found anywhere in distribution
writing manifest file 'pandas.egg-info/SOURCES.txt'
Copying pandas.egg-info to /var/tmp/portage/dev-python/pandas-9999/temp/images/2.7/usr/lib64/python2.7/site-packages/pandas-0.10.0.dev_bf906bc-py2.7.egg-info
running install_scripts
error: error in setup script: command 'bdist_wininst' has no such option 'user-access-control'

Any ideas what this is? This ebuild was previously working.
Code:
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.9.1.ebuild,v 1.1 2012/11/23 05:14:47 bicatali Exp $

EAPI=4

# python cruft
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
RESTRICT_PYTHON_ABIS="2.4 2.7-pypy-* *-jython 3.3"

inherit git-2 distutils

DESCRIPTION="Powerful data structures for data analysis and statistics"
HOMEPAGE="http://pandas.sourceforge.net/"
EGIT_REPO_URI="git://github.com/pydata/pandas.git"
SRC_URI=""

LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE="doc examples excel R"

CDEPEND="dev-python/numpy
   >=dev-python/python-dateutil-2.1"
DEPEND="${CDEPEND}
   doc? (
      dev-python/ipython
      dev-python/rpy
      dev-python/sphinx
      sci-libs/scikits_statsmodels
   )"
RDEPEND="${CDEPEND}
   dev-python/matplotlib
   dev-python/pytables
   dev-python/pytz
   sci-libs/scipy
   excel? (
      dev-python/openpyxl
      dev-python/xlrd
      dev-python/xlwt
   )
   R? ( dev-python/rpy )"

src_compile() {
   distutils_src_compile
   if use doc; then
      cd doc
      "$(PYTHON -f)" make.py html || die
   fi
}

src_test() {
   testing() {
      cd "${S}/build-${PYTHON_ABI}"/lib*
      PYTHONPATH=. MPLCONFIGDIR=. HOME=. nosetests-"${PYTHON_ABI}" pandas
   }
   python_execute_function testing
}

src_install() {
   distutils_src_install
   use doc && dohtml -r doc/build/html
   if use examples; then
      insinto /usr/share/doc/${PF}
      doins -r examples
   fi
}

Thanks.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum