Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-09 Thread Biru Ionut

Daenyth Blank wrote:

On Fri, Aug 7, 2009 at 12:43, Biru Ionut wrote:

ok. i will update. thanks for notify.


Thanks. I'm away this weekend, but I intend to adopt these after I get
back and talk to codemac (louipc told me he's not really interested in
maintaining packages much more, I just wanted to double check with him
before taking them over.)

In any case, can you make sure this gets built with xml-rpc? Check the
current PKGBUILD for the configure flag.

sorry for late reply.  rtorrent has xml-rpc support

--
Ionut


Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-08 Thread Daenyth Blank
On Fri, Aug 7, 2009 at 12:43, Biru Ionut wrote:
> ok. i will update. thanks for notify.

Thanks. I'm away this weekend, but I intend to adopt these after I get
back and talk to codemac (louipc told me he's not really interested in
maintaining packages much more, I just wanted to double check with him
before taking them over.)

In any case, can you make sure this gets built with xml-rpc? Check the
current PKGBUILD for the configure flag.


Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-07 Thread Heiko Baums
Am Fri, 07 Aug 2009 19:43:53 +0300
schrieb Biru Ionut :

> ok. i will update. thanks for notify.

Thanks for updating.

Heiko


Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-07 Thread Biru Ionut

Heiko Baums wrote:

Am Fri, 07 Aug 2009 19:16:14 +0300
schrieb Biru Ionut :


those version are unstable. i don't think that they will be updated.


But they should at least be updated to the latest stable releases:
libtorrent 0.12.4
rtorrent 0.8.4


ok. i will update. thanks for notify.


--
Ionut


Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-07 Thread Heiko Baums
Am Fri, 07 Aug 2009 19:16:14 +0300
schrieb Biru Ionut :

> those version are unstable. i don't think that they will be updated.

But they should at least be updated to the latest stable releases:
libtorrent 0.12.4
rtorrent 0.8.4

Btw., in AUR they already were updated to these versions until they
were moved to community. ;-)

Heiko


Re: [aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-07 Thread Biru Ionut

Partha Chowdhury wrote:

Following the discussions here,
http://www.archlinux.org/pipermail/arch-general/2009-August/006881.html

i have attached modified PKGBUILDs for libtorrent and rtorrent for updated
versions 0.12.5 and 0.8.5 repectively.


those version are unstable. i don't think that they will be updated.

--
Ionut


[aur-general] PKGBUILD for updated libtorrent and rtorrent

2009-08-07 Thread Partha Chowdhury
Following the discussions here,
http://www.archlinux.org/pipermail/arch-general/2009-August/006881.html

i have attached modified PKGBUILDs for libtorrent and rtorrent for updated
versions 0.12.5 and 0.8.5 repectively.
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jeff Mickey 
# Contributor: sh__
# Contributor: Partha Chowdhury 

pkgname=libtorrent
pkgver=0.12.5
pkgrel=1
pkgdesc="BitTorrent library written in C++"
arch=('i686' )
url="http://libtorrent.rakshasa.no";
license=('GPL')
depends=('libsigc++2.0' 'openssl')
options=('!libtool')
source=(http://libtorrent.rakshasa.no/downloads/$pkgname-$pkgver.tar.gz )
md5sums=('fe8155d364b220713074423100d4bf29')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" \
./configure --prefix=/usr --disable-debug || return 1
  make || return 1
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et:
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jeff Mickey 
# Contributor: sh__
# Contributor: Partha chowdhury 

pkgname=rtorrent
pkgver=0.8.5
pkgrel=1
pkgdesc="Ncurses BitTorrent client based on libTorrent"
arch=('i686' )
url="http://libtorrent.rakshasa.no";
license=('GPL')
depends=('libtorrent>=0.12.5' 'curl>=7.19.5' 'xmlrpc-c')
source=(http://libtorrent.rakshasa.no/downloads/$pkgname-$pkgver.tar.gz )
install=$pkgname.install
md5sums=('e701095e1824b7e512a17000f4c0a783')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" \
./configure --prefix=/usr --disable-debug --with-xmlrpc-c || return 1
  make || return 1
  make DESTDIR="$pkgdir" install
}


# vim:set ts=2 sw=2 et: