Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 293571 Details for
Bug 374871
net-misc/pyload - A fast, lightweight and full featured download manager for many One-Click-Hosters
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
pyload-0.4.8.ebuild
pyload-0.4.8.ebuild (text/plain), 3.78 KB, created by
Sven E.
on 2011-11-23 20:59:02 UTC
(
hide
)
Description:
pyload-0.4.8.ebuild
Filename:
MIME Type:
Creator:
Sven E.
Created:
2011-11-23 20:59:02 UTC
Size:
3.78 KB
patch
obsolete
># Copyright 1999-2011 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >EAPI=3 > >PYTHON_DEPEND="2" >PYTHON_USE_WITH="sqlite" > >inherit base eutils python systemd > >if [[ ${PV} == *9999 ]]; then > EHG_REPO_URI="http://bitbucket.org/spoob/pyload/" > inherit mercurial >else > SRC_URI="http://get.pyload.org/static/${PN}-src-v${PV}.zip" > KEYWORDS="~amd64 ~x86" >fi >DESCRIPTION="A fast, lightweight and full featured download manager for many One-Click-Hosters." >HOMEPAGE="http://www.pyload.org" >LICENSE="freedist" >SLOT="0" >IUSE="captcha clicknload container qt4 rar ssl systemd" > >DEPEND="app-arch/unzip" > >RDEPEND="${DEPEND} > dev-python/beautifulsoup > dev-python/beaker > dev-python/feedparser > dev-python/simplejson > dev-python/pycurl > captcha? ( > dev-python/imaging > app-text/tesseract > ) > clicknload? ( > || ( > dev-lang/spidermonkey > dev-java/rhino > ) > ) > container? ( dev-python/pycrypto ) > qt4? ( dev-python/PyQt4 ) > rar? ( app-arch/unrar ) > ssl? ( > dev-python/pycrypto > dev-python/pyopenssl > )" >#clicknload? ( || ( ... ossp-js pyv8 ) ) > >S=${WORKDIR}/${PN} > >PYLOAD_WORKDIR=/var/lib/pyload # (/var/lib/ in lack of a better place) > >pkg_setup() { > python_pkg_setup > python_set_active_version 2 ># enewuser pyload -1 -1 ${PYLOAD_WORKDIR} >} > >src_unpack() { > if [[ ${PV} == *9999 ]]; then > mercurial_src_unpack > else > default > #base_src_unpack > fi > > cd "${S}" > epatch "${FILESDIR}/${P}-pid.patch" > epatch "${FILESDIR}/${P}-sanitize-config.patch" >} > >src_prepare() { > # fix workdir > echo ${PYLOAD_WORKDIR} > ${S}/module/config/configdir > > # replace some shipped dependencies with the system libraries > rm -r \ > ${S}/module/lib/BeautifulSoup.py \ > ${S}/module/lib/beaker \ > ${S}/module/lib/feedparser.py \ > ${S}/module/lib/simplejson > > find ${S}/module/ -name "*.py" -type f -print0 | xargs -0 \ > sed -i \ > -e 's:from module.lib.BeautifulSoup:from BeautifulSoup:' \ > -e 's:from module.lib \(import feedparser.*\):\1:' \ > -e 's:from module.lib.simplejson:from simplejson:' \ > -e 's:from module:from pyload:' \ > -e 's:"module\(.*\)":"pyload\1":' \ > -e 's:join(PYLOAD_DIR, "locale"):"/usr/share/pyload/locale":' \ > #${S}/module/**/*.py # globbing not working -> find > > sed -i -e 's:from module:from pyload:' \ > -e 's:self.path("locale"):"/usr/share/pyload/locale":' pyLoadCore.py > > sed -i -e 's:from module:from pyload:' \ > -e 's:join(pypath, "locale"):"/usr/share/pyload/locale":' pyLoadCli.py > > if ! use qt4; then > rm -r ${S}/module/gui > fi >} > >src_configure() { > : >} > >src_compile() { > : >} > >src_install() { > insinto $(python_get_sitedir)/${PN} > doins -r ${S}/module/* > insinto /usr/share/${PN} > doins -r ${S}/locale > #doins -r ${S}/module > doins -r ${S}/scripts > exeinto /usr/bin/ > newexe ${S}/pyLoadCore.py pyLoadCore > newexe ${S}/pyLoadCli.py pyLoadCli > > > if use qt4; then > doins -r ${S}/icons > make_wrapper pyloadgui /opt/${PN}/pyLoadGui.py > fi > > dodir ${PYLOAD_WORKDIR} > # install default config > if ! test -f ${PYLOAD_WORKDIR}/pyload.conf; then > cp ${S}/module/config/default.conf ${D}/${PYLOAD_WORKDIR}/pyload.conf > fi > > #fix tmpdir > dosym /tmp ${PYLOAD_WORKDIR}/tmp > > newinitd ${FILESDIR}/pyload.init pyload > newconfd ${FILESDIR}/pyload.confd pyload > > if use systemd; then > systemd_dounit ${FILESDIR}/pyload.service > fi > > python_convert_shebangs -q -r 2 "${D}" >} > >pkg_postinst() { > python_mod_optimize ${PN} > if use ssl && ! test -f ${PYLOAD_WORKDIR}/ssl.key; then > einfo "If you plan using pyLoad's XML-RPC via SSL, you'll have to create a key in pyloads work directory" > echo > einfo "For the lazy, the list of needed commands is:" > echo > einfo "cd ${PYLOAD_WORKDIR}" > einfo "openssl genrsa 1024 > ssl.key" > einfo "openssl req -new -key ssl.key -out ssl.csr" > einfo "openssl req -days 36500 -x509 -key ssl.key -in ssl.csr > ssl.crt" > fi >} > >pkg_postrm() { > python_mod_cleanup ${PN} >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 374871
:
287145
|
287147
|
287149
|
288155
|
288357
|
293449
|
293451
|
293467
|
293567
|
293569
|
293571
|
293573
|
293575
|
293577
|
293579
|
293585
|
293589
|
293871
|
294257
|
294383
|
294429
|
294459
|
294501
|
294627
|
298795
|
298797