Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 233452 - pyfacebook-9999.ebuild submit
Summary: pyfacebook-9999.ebuild submit
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement with 1 vote (vote)
Assignee: Default Assignee for New Packages
URL:
Whiteboard: sunrise suggested
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2008-07-31 04:59 UTC by Joseph Turian
Modified: 2019-04-24 22:19 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
pyfacebook ebuild for SVN trunk (pyfacebook-9999.ebuild,1.13 KB, text/plain)
2008-07-31 05:00 UTC, Joseph Turian
Details
pyfacebook-9999.ebuild (updated: svn -> git) (pyfacebook-9999.ebuild,1.12 KB, text/plain)
2009-09-04 22:00 UTC, Daniel Mettler
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Joseph Turian 2008-07-31 04:59:45 UTC
Here is an ebuild for pyfacebook's SVN trunk.
USE flag "test" does not work, AFAIK. (Testing is skipped)

Reproducible: Always
Comment 1 Joseph Turian 2008-07-31 05:00:39 UTC
Created attachment 161808 [details]
pyfacebook ebuild for SVN trunk
Comment 2 Jeremy Olexa (darkside) (RETIRED) archtester gentoo-dev Security 2009-04-20 16:14:51 UTC
(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
Comment 3 Daniel Mettler 2009-09-04 22:00:16 UTC
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 4 Alma 2019-04-24 22:18:07 UTC
Comment on attachment 161808 [details]
pyfacebook ebuild for SVN trunk

Bugs
Comment 5 Alma 2019-04-24 22:19:28 UTC
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
>}