Here is an ebuild for pyfacebook's SVN trunk. USE flag "test" does not work, AFAIK. (Testing is skipped) Reproducible: Always
Created attachment 161808 [details] pyfacebook ebuild for SVN trunk
(this is an automated message based on filtering criteria that matched this bug) 'EBUILD' is in the KEYWORDS which should mean that there is a ebuild attached to this bug. This bug is assigned to maintainer-wanted which means that it is not in the main tree. Heuristics show that no Gentoo developer has commented on your ebuild. Hello, The Gentoo Team would like to firstly thank you for your ebuild submission. We also apologize for not being able to accommodate you in a timely manner. There are simply too many new packages. Allow me to use this opportunity to introduce you to Gentoo Sunrise. The sunrise overlay[1] is a overlay for Gentoo which we allow trusted users to commit to and all users can have ebuilds reviewed by Gentoo devs for entry into the overlay. So, the sunrise team is suggesting that you look into this and submit your ebuild to the overlay where even *you* can commit to. =) Because this is a mass message, we are also asking you to be patient with us. We anticipate a large number of requests in a short time. Thanks, On behalf of the Gentoo Sunrise Team, Jeremy. [1]: http://www.gentoo.org/proj/en/sunrise/ [2]: http://overlays.gentoo.org/proj/sunrise/wiki/SunriseFaq
Created attachment 203147 [details] pyfacebook-9999.ebuild (updated: svn -> git) Thanks for your ebuild, Joseph. PyFacebook has moved to GIT for versioning (instead of using SVN): http://code.google.com/p/pyfacebook/ The latest sources are thus stored in the GIT repository only. This update also fixes the problem that 'djangofb.py startapp fbapp' didn't create/copy any application template files (see http://wiki.developers.facebook.com/index.php/PythonPyFacebookTutorial) --- pyfacebook-9999.ebuild.svn 2009-09-04 13:16:58.000000000 +0000 +++ pyfacebook-9999.ebuild 2009-09-04 21:38:46.000000000 +0000 @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Header$ -ESVN_REPO_URI="http://pyfacebook.googlecode.com/svn/trunk/" +EGIT_REPO_URI="git://github.com/sciyoshi/pyfacebook.git" -inherit distutils eutils versionator subversion +inherit distutils eutils versionator git DESCRIPTION="Python Client Library for the Facebook API" HOMEPAGE="http://code.google.com/p/pyfacebook" @@ -19,7 +19,7 @@ S="${WORKDIR}" src_test() { - elog "Please note: You're using a live SVN ebuild." + elog "Please note: You're using a live GIT ebuild." elog "We therefore won't fix any failures in the tests." elog "If you think it's pyfacebook's fault report it to upstream." elog "Otherwise either disable the tests or use a stable version."
Comment on attachment 161808 [details] pyfacebook ebuild for SVN trunk Bugs
Comment on attachment 161808 [details] pyfacebook ebuild for SVN trunk ># Copyright 1999-2008 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header$ > >ESVN_REPO_URI="http://pyfacebook.googlecode.com/svn/trunk/" > >inherit distutils eutils versionator subversion > >DESCRIPTION="Python Client Library for the Facebook API" >HOMEPAGE="http://code.google.com/p/pyfacebook" >LICENSE="BSD" >SLOT="0" >KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" >IUSE="examples test" > >RDEPEND="dev-lang/python" >DEPEND="${RDEPEND}" > >S="${WORKDIR}" > >src_test() { > elog "Please note: You're using a live SVN ebuild." > elog "We therefore won't fix any failures in the tests." > elog "If you think it's pyfacebook's fault report it to upstream." > elog "Otherwise either disable the tests or use a stable version." > PYTHONPATH="." ${python} tests/test.py || die "tests failed" >} > >src_compile() { > distutils_src_compile >} > >src_install() { > distutils_python_version > > site_pkgs="/usr/$(get_libdir)/python${PYVER}/site-packages/" > export PYTHONPATH="${PYTHONPATH}:${D}/${site_pkgs}" > dodir ${site_pkgs} > > distutils_src_install > > dobin bin/djangofb.py > > if use examples ; then > insinto /usr/share/doc/${PF} > doins -r examples > fi >}