You are not logged in.

#1 2004-10-04 14:23:02

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

[new] bittornado

pkgname=bittornado
pkgver=0.3.7
pkgrel=1
pkgdesc="TheSHAD0W's Experimental BitTorrent client."
url="http://bittornado.com"
depends=('wxpython' 'wxgtk')
source=(http://e.scarywater.net/bt/download/BitTornado-0.3.7.tar.gz)

build()
{
  cd $startdir/src/BitTornado-CVS
  mkdir -p $startdir/pkg/usr
  ./setup.py install --prefix=$startdir/pkg/usr
}

This package installs to where the developer wanted it installed... and NOT /opt like bittorrent....

I'll put the package in incoming later

Offline

#2 2004-10-04 14:27:34

dp
Member
From: Aarau, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [new] bittornado

phrakture wrote:

This package installs to where the developer wanted it installed... and NOT /opt like bittorrent....

file a bug, if you think, some pkg has files in the wrong place


The impossible missions are the only ones which succeed.

Offline

#3 2004-10-04 14:30:17

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

eh, I don't think it's a bug per-se... it's more preference.... but I'll file it...

bittorrent installs to /opt/bittorrent while the developer's setup.py file installs to /usr/bin and to the python lib directory

I'll file it now

Offline

#4 2004-10-04 15:09:06

dp
Member
From: Aarau, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [new] bittornado

phrakture wrote:

eh, I don't think it's a bug per-se... it's more preference.... but I'll file it...

bittorrent installs to /opt/bittorrent while the developer's setup.py file installs to /usr/bin and to the python lib directory

I'll file it now

i guess that the reason for setup.py to use /usr instead of /opt is that /opt/bittorrent is hardly in the python-path


The impossible missions are the only ones which succeed.

Offline

#5 2004-10-04 16:18:02

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

yeah installing it where it should be doesnt require an additional /etc/profile.d/bittorrent script - which the current package uses

bug filed....
i need to add that bittornado replaces bittorrent... yeah you could use them side by side, but they're not meant to be used that way

Offline

#6 2004-10-04 17:06:58

dp
Member
From: Aarau, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [new] bittornado

phrakture wrote:

i need to add that bittornado replaces bittorrent... yeah you could use them side by side, but they're not meant to be used that way

if they do not conflict any files, then it is NOT a replace, but a virtual provides (like xorg and xfree86, where both of these have "provides=('x-server')") --- so if they are usable side-by-side, you should add a "provides=('torrent-client')" or something like this instead of a replaces=()


The impossible missions are the only ones which succeed.

Offline

#7 2004-10-04 17:11:42

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

well, the files are named the same and all the btdownloadcurses.py and whatnot files will overwrite....
this may be the reason /opt was used, but who knows....

still, the only real changes are with the gui (allows you to set alot more options)... thoughts or opinions?

Offline

#8 2004-10-04 17:31:10

dp
Member
From: Aarau, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: [new] bittornado

phrakture wrote:

well, the files are named the same and all the btdownloadcurses.py and whatnot files will overwrite....
this may be the reason /opt was used, but who knows....

still, the only real changes are with the gui (allows you to set alot more options)... thoughts or opinions?

email the maintainer to replace the low-function version with the high-function version and put it in a place where it works without tricks/hacks to work (where it is intendend to be)


The impossible missions are the only ones which succeed.

Offline

#9 2004-10-04 17:35:26

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

ok:

submitted bug report to use setup.py for bittorrent - this should install to /usr
i will add that bittornado replaces bittorrent (as the files are all named the same)...

Offline

#10 2004-10-04 20:39:56

Abaddon
Member
From: Poland
Registered: 2004-05-03
Posts: 249

Re: [new] bittornado

Is there any way to run Bittornado without gtk?


Gnome - The weakest link!
Linux, *not* GNU/Linux!

Offline

#11 2004-10-04 21:18:14

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

no, bittornado is written in python using pygtk which calls the gtk libraries...

you can run it using

btdownloadcurses.py <TORRENT-FILE>.torrent 

from a console, but the download still requires gtk....for console only, i would try ctorrent (in extra) as it's a console only C client...

Offline

#12 2004-10-05 10:43:32

Abaddon
Member
From: Poland
Registered: 2004-05-03
Posts: 249

Re: [new] bittornado

Hm, so if there is a btdownloadcurses.py, maybe it's possible to create pkgbuild which doesn't require gtk? (I hate gtk, sorry...).


Gnome - The weakest link!
Linux, *not* GNU/Linux!

Offline

#13 2004-10-05 14:51:39

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

ok I'll make a curses only version..... this is untested and unsupported - and there should be more dependancies....

do with this what you will

pkgname=bittornado-ncurses
pkgver=0.3.7
pkgrel=1
pkgdesc="TheSHAD0W's Experimental BitTorrent client."
url="http://bittornado.com"
depends=('python')
source=(http://e.scarywater.net/bt/download/BitTornado-0.3.7.tar.gz)

build()
{
  cd $startdir/src/BitTornado-CVS
  mkdir -p $startdir/pkg/usr
  ./setup.py install --prefix=$startdir/pkg/usr
  rm $startdir/pkg/usr/bt-t-make.py
  rm $startdir/pkg/usr/btcompletedirgui.py
  rm $startdir/pkg/usr/btdownloadgui.py
  rm $startdir/pkg/usr/btmaketorrentgui.py
} 

I have no clue if I missed anything, but this just removed the gui programs - there's still lots of gui stuff in the BitTornado directory installed under python libraries - but I dont have the time to sort through it.... try contacting the developer if this is real important - for now you can just install gtk and not use it if you "hate" it so much.... (how does one hate a tool kit... that's like hating flathead screwdrivers)

Offline

#14 2004-10-05 17:22:20

Abaddon
Member
From: Poland
Registered: 2004-05-03
Posts: 249

Re: [new] bittornado

==> WARNING: MD5sums are missing or incomplete.  Cannot verify source integrity.
==> Extracting Sources...
==>     tar --use-compress-program=gzip -xf BitTornado-0.3.7.tar.gz
==> Starting build()...
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/BitTornado
copying BitTornado/clock.py -> build/lib/BitTornado
copying BitTornado/SocketHandler.py -> build/lib/BitTornado
copying BitTornado/CurrentRateMeasure.py -> build/lib/BitTornado
copying BitTornado/zurllib.py -> build/lib/BitTornado
copying BitTornado/bencode.py -> build/lib/BitTornado
copying BitTornado/ConfigDir.py -> build/lib/BitTornado
copying BitTornado/ConfigReader.py -> build/lib/BitTornado
copying BitTornado/parseargs.py -> build/lib/BitTornado
copying BitTornado/selectpoll.py -> build/lib/BitTornado
copying BitTornado/parsedir.py -> build/lib/BitTornado
copying BitTornado/piecebuffer.py -> build/lib/BitTornado
copying BitTornado/RawServer.py -> build/lib/BitTornado
copying BitTornado/inifile.py -> build/lib/BitTornado
copying BitTornado/RateLimiter.py -> build/lib/BitTornado
copying BitTornado/HTTPHandler.py -> build/lib/BitTornado
copying BitTornado/ServerPortHandler.py -> build/lib/BitTornado
copying BitTornado/ConnChoice.py -> build/lib/BitTornado
copying BitTornado/PSYCO.py -> build/lib/BitTornado
copying BitTornado/RateMeasure.py -> build/lib/BitTornado
copying BitTornado/natpunch.py -> build/lib/BitTornado
copying BitTornado/launchmanycore.py -> build/lib/BitTornado
copying BitTornado/CreateIcons.py -> build/lib/BitTornado
copying BitTornado/__init__.py -> build/lib/BitTornado
copying BitTornado/download_bt1.py -> build/lib/BitTornado
copying BitTornado/bitfield.py -> build/lib/BitTornado
copying BitTornado/subnetparse.py -> build/lib/BitTornado
creating build/lib/BitTornado/BT1
copying BitTornado/BT1/DownloaderFeedback.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/fakeopen.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/T2T.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/NatCheck.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Rerequester.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Connecter.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/FileSelector.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Encrypter.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/makemetafile.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/StorageWrapper.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Storage.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/StreamCheck.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Statistics.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/HTTPDownloader.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Uploader.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Downloader.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/Choker.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/__init__.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/btformats.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/PiecePicker.py -> build/lib/BitTornado/BT1
copying BitTornado/BT1/track.py -> build/lib/BitTornado/BT1
running build_scripts
creating build/scripts-2.3
copying and adjusting btdownloadgui.py -> build/scripts-2.3
copying and adjusting btdownloadheadless.py -> build/scripts-2.3
copying and adjusting bttrack.py -> build/scripts-2.3
copying and adjusting btmakemetafile.py -> build/scripts-2.3
copying and adjusting btlaunchmany.py -> build/scripts-2.3
copying and adjusting btcompletedir.py -> build/scripts-2.3
copying and adjusting btdownloadcurses.py -> build/scripts-2.3
copying and adjusting btcompletedirgui.py -> build/scripts-2.3
copying and adjusting btlaunchmanycurses.py -> build/scripts-2.3
copying and adjusting btreannounce.py -> build/scripts-2.3
copying and adjusting btrename.py -> build/scripts-2.3
copying and adjusting btshowmetainfo.py -> build/scripts-2.3
copying and adjusting bttest.py -> build/scripts-2.3
copying and adjusting btmaketorrentgui.py -> build/scripts-2.3
copying and adjusting btcopyannounce.py -> build/scripts-2.3
copying and adjusting btsethttpseeds.py -> build/scripts-2.3
copying and adjusting bt-t-make.py -> build/scripts-2.3
changing mode of build/scripts-2.3/btdownloadgui.py from 644 to 755
changing mode of build/scripts-2.3/btdownloadheadless.py from 644 to 755
changing mode of build/scripts-2.3/bttrack.py from 644 to 755
changing mode of build/scripts-2.3/btmakemetafile.py from 644 to 755
changing mode of build/scripts-2.3/btlaunchmany.py from 644 to 755
changing mode of build/scripts-2.3/btcompletedir.py from 644 to 755
changing mode of build/scripts-2.3/btdownloadcurses.py from 644 to 755
changing mode of build/scripts-2.3/btcompletedirgui.py from 644 to 755
changing mode of build/scripts-2.3/btlaunchmanycurses.py from 644 to 755
changing mode of build/scripts-2.3/btreannounce.py from 644 to 755
changing mode of build/scripts-2.3/btrename.py from 644 to 755
changing mode of build/scripts-2.3/btshowmetainfo.py from 644 to 755
changing mode of build/scripts-2.3/bttest.py from 644 to 755
changing mode of build/scripts-2.3/btmaketorrentgui.py from 644 to 755
changing mode of build/scripts-2.3/btcopyannounce.py from 644 to 755
changing mode of build/scripts-2.3/btsethttpseeds.py from 644 to 755
changing mode of build/scripts-2.3/bt-t-make.py from 644 to 755
running install_lib
creating /var/abs/local/bittornado/pkg/usr/lib
creating /var/abs/local/bittornado/pkg/usr/lib/python2.3
creating /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages
creating /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
creating /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/DownloaderFeedback.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/fakeopen.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/T2T.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/NatCheck.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Rerequester.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Connecter.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/FileSelector.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Encrypter.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/makemetafile.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/StorageWrapper.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Storage.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/StreamCheck.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Statistics.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/HTTPDownloader.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Uploader.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Downloader.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/Choker.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/__init__.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/btformats.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/PiecePicker.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/BT1/track.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1
copying build/lib/BitTornado/clock.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/SocketHandler.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/CurrentRateMeasure.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/zurllib.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/bencode.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/ConfigDir.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/ConfigReader.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/parseargs.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/selectpoll.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/parsedir.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/piecebuffer.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/RawServer.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/inifile.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/RateLimiter.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/HTTPHandler.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/ServerPortHandler.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/ConnChoice.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/PSYCO.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/RateMeasure.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/natpunch.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/launchmanycore.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/CreateIcons.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/__init__.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/download_bt1.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/bitfield.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
copying build/lib/BitTornado/subnetparse.py -> /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/DownloaderFeedback.py to DownloaderFeedback.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/fakeopen.py to fakeopen.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/T2T.py to T2T.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/NatCheck.py to NatCheck.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Rerequester.py to Rerequester.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Connecter.py to Connecter.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/FileSelector.py to FileSelector.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Encrypter.py to Encrypter.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/makemetafile.py to makemetafile.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/StorageWrapper.py to StorageWrapper.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Storage.py to Storage.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/StreamCheck.py to StreamCheck.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Statistics.py to Statistics.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/HTTPDownloader.py to HTTPDownloader.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Uploader.py to Uploader.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Downloader.py to Downloader.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/Choker.py to Choker.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/__init__.py to __init__.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/btformats.py to btformats.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/PiecePicker.py to PiecePicker.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/BT1/track.py to track.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/clock.py to clock.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/SocketHandler.py to SocketHandler.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/CurrentRateMeasure.py to CurrentRateMeasure.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/zurllib.py to zurllib.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/bencode.py to bencode.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/ConfigDir.py to ConfigDir.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/ConfigReader.py to ConfigReader.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/parseargs.py to parseargs.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/selectpoll.py to selectpoll.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/parsedir.py to parsedir.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/piecebuffer.py to piecebuffer.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/RawServer.py to RawServer.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/inifile.py to inifile.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/RateLimiter.py to RateLimiter.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/HTTPHandler.py to HTTPHandler.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/ServerPortHandler.py to ServerPortHandler.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/ConnChoice.py to ConnChoice.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/PSYCO.py to PSYCO.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/RateMeasure.py to RateMeasure.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/natpunch.py to natpunch.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/launchmanycore.py to launchmanycore.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/CreateIcons.py to CreateIcons.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/__init__.py to __init__.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/download_bt1.py to download_bt1.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/bitfield.py to bitfield.pyc
byte-compiling /var/abs/local/bittornado/pkg/usr/lib/python2.3/site-packages/BitTornado/subnetparse.py to subnetparse.pyc
running install_scripts
creating /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btsethttpseeds.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btlaunchmanycurses.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btcompletedir.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/bttrack.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btdownloadgui.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btmaketorrentgui.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btshowmetainfo.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/bttest.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btcompletedirgui.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btrename.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/bt-t-make.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btmakemetafile.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btreannounce.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btlaunchmany.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btdownloadheadless.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btcopyannounce.py -> /var/abs/local/bittornado/pkg/usr/bin
copying build/scripts-2.3/btdownloadcurses.py -> /var/abs/local/bittornado/pkg/usr/bin
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btsethttpseeds.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btlaunchmanycurses.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btcompletedir.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/bttrack.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btdownloadgui.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btmaketorrentgui.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btshowmetainfo.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/bttest.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btcompletedirgui.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btrename.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/bt-t-make.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btmakemetafile.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btreannounce.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btlaunchmany.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btdownloadheadless.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btcopyannounce.py to 755
changing mode of /var/abs/local/bittornado/pkg/usr/bin/btdownloadcurses.py to 755
rm: nie można usunąć `/var/abs/local/bittornado/pkg/usr/bt-t-make.py': Nie ma takiego pliku ani katalogu
rm: nie można usunąć `/var/abs/local/bittornado/pkg/usr/btcompletedirgui.py': Nie ma takiego pliku ani katalogu
rm: nie można usunąć `/var/abs/local/bittornado/pkg/usr/btdownloadgui.py': Nie ma takiego pliku ani katalogu
rm: nie można usunąć `/var/abs/local/bittornado/pkg/usr/btmaketorrentgui.py': Nie ma takiego pliku ani katalogu

Gnome - The weakest link!
Linux, *not* GNU/Linux!

Offline

#15 2004-10-05 17:25:56

Abaddon
Member
From: Poland
Registered: 2004-05-03
Posts: 249

Re: [new] bittornado

Ok, I repaired PKGBUID. Here you are the good version of PKGBUILD for bittornado-ncurses:

pkgname=bittornado-ncurses
pkgver=0.3.7
pkgrel=1
pkgdesc="TheSHAD0W's Experimental BitTorrent client."
url="http://bittornado.com"
depends=('python')
source=(http://e.scarywater.net/bt/download/BitTornado-0.3.7.tar.gz)

build()
{
  cd $startdir/src/BitTornado-CVS
  mkdir -p $startdir/pkg/usr
  ./setup.py install --prefix=$startdir/pkg/usr
  rm $startdir/pkg/usr/bt-t-make.py
  rm $startdir/pkg/usr/bin/btcompletedirgui.py
  rm $startdir/pkg/usr/bin/btdownloadgui.py
  rm $startdir/pkg/usr/bin/btmaketorrentgui.py
}

btw. "full" bittornado requires gtk or gtk2?


Gnome - The weakest link!
Linux, *not* GNU/Linux!

Offline

#16 2004-10-05 20:26:43

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [new] bittornado

full bittornado requires wxgtk

wxgtk depends on:
* gtk2
* gcc
* libpng

Offline

Board footer

Powered by FluxBB