summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-11-01 12:16:51 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-11-01 12:16:51 +0000
commit7f1c632c0b87a77b48a83ca646b2fb54b9fbbc29 (patch)
tree5781fc49d823d4a7b6f01daf6040962e13df4c51 /net-p2p/qbittorrent
parentstable x86, bug 343097 (diff)
downloadgentoo-2-7f1c632c0b87a77b48a83ca646b2fb54b9fbbc29.tar.gz
gentoo-2-7f1c632c0b87a77b48a83ca646b2fb54b9fbbc29.tar.bz2
gentoo-2-7f1c632c0b87a77b48a83ca646b2fb54b9fbbc29.zip
Version bump. Remove old ebuilds
(Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
Diffstat (limited to 'net-p2p/qbittorrent')
-rw-r--r--net-p2p/qbittorrent/ChangeLog10
-rw-r--r--net-p2p/qbittorrent/qbittorrent-2.3.0.ebuild63
-rw-r--r--net-p2p/qbittorrent/qbittorrent-2.3.1.ebuild63
-rw-r--r--net-p2p/qbittorrent/qbittorrent-2.4.8.ebuild64
-rw-r--r--net-p2p/qbittorrent/qbittorrent-2.4.9.ebuild (renamed from net-p2p/qbittorrent/qbittorrent-2.4.7.ebuild)2
5 files changed, 10 insertions, 192 deletions
diff --git a/net-p2p/qbittorrent/ChangeLog b/net-p2p/qbittorrent/ChangeLog
index 0e4c030546dd..429e2c51efe8 100644
--- a/net-p2p/qbittorrent/ChangeLog
+++ b/net-p2p/qbittorrent/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for net-p2p/qbittorrent
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.119 2010/10/25 21:01:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.120 2010/11/01 12:16:51 hwoarang Exp $
+
+*qbittorrent-2.4.9 (01 Nov 2010)
+
+ 01 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
+ -qbittorrent-2.3.0.ebuild, -qbittorrent-2.3.1.ebuild,
+ -qbittorrent-2.4.7.ebuild, -qbittorrent-2.4.8.ebuild,
+ +qbittorrent-2.4.9.ebuild:
+ Version bump. Remove old ebuilds
*qbittorrent-2.4.8 (25 Oct 2010)
diff --git a/net-p2p/qbittorrent/qbittorrent-2.3.0.ebuild b/net-p2p/qbittorrent/qbittorrent-2.3.0.ebuild
deleted file mode 100644
index 005e59af10c0..000000000000
--- a/net-p2p/qbittorrent/qbittorrent-2.3.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-2.3.0.ebuild,v 1.1 2010/07/28 22:35:59 hwoarang Exp $
-
-EAPI="2"
-PYTHON_DEPEND="2"
-
-inherit python confutils qt4-r2 versionator
-
-MY_P="${P/_/}"
-DESCRIPTION="BitTorrent client in C++ and Qt"
-HOMEPAGE="http://www.qbittorrent.org/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+X geoip libnotify"
-
-# boost version so that we always have thread support
-CDEPEND="net-libs/rb_libtorrent
- x11-libs/qt-core:4
- X? ( x11-libs/qt-gui:4
- libnotify? ( x11-libs/qt-gui:4[glib] ) )
- dev-libs/boost"
-DEPEND="${CDEPEND}
- dev-util/pkgconfig"
-RDEPEND="${CDEPEND}
- geoip? ( dev-libs/geoip )
- libnotify? ( x11-libs/libnotify )"
-
-DOCS="AUTHORS Changelog NEWS README TODO"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- confutils_use_depend_all libnotify X
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # Respect LDFLAGS
- sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local myconf
- use X || myconf+=" --disable-gui"
- use geoip || myconf+=" --disable-geoip-database"
- use libnotify || myconf+=" --disable-libnotify"
-
- # slotted boost detection, bug #309415
- BOOST_PKG="$(best_version ">=dev-libs/boost-1.34.1")"
- BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
- BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
- myconf+=" --with-libboost-inc=/usr/include/boost-${BOOST_VER}"
-
- # econf fails, since this uses qconf
- ./configure --prefix=/usr --qtdir=/usr ${myconf} || die "configure failed"
- eqmake4
-}
diff --git a/net-p2p/qbittorrent/qbittorrent-2.3.1.ebuild b/net-p2p/qbittorrent/qbittorrent-2.3.1.ebuild
deleted file mode 100644
index c9e826d63757..000000000000
--- a/net-p2p/qbittorrent/qbittorrent-2.3.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-2.3.1.ebuild,v 1.1 2010/08/19 00:51:35 hwoarang Exp $
-
-EAPI="2"
-PYTHON_DEPEND="2"
-
-inherit python confutils qt4-r2 versionator
-
-MY_P="${P/_/}"
-DESCRIPTION="BitTorrent client in C++ and Qt"
-HOMEPAGE="http://www.qbittorrent.org/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+X geoip libnotify"
-
-# boost version so that we always have thread support
-CDEPEND="net-libs/rb_libtorrent
- x11-libs/qt-core:4
- X? ( x11-libs/qt-gui:4
- libnotify? ( x11-libs/qt-gui:4[glib] ) )
- dev-libs/boost"
-DEPEND="${CDEPEND}
- dev-util/pkgconfig"
-RDEPEND="${CDEPEND}
- geoip? ( dev-libs/geoip )
- libnotify? ( x11-libs/libnotify )"
-
-DOCS="AUTHORS Changelog NEWS README TODO"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- confutils_use_depend_all libnotify X
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # Respect LDFLAGS
- sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local myconf
- use X || myconf+=" --disable-gui"
- use geoip || myconf+=" --disable-geoip-database"
- use libnotify || myconf+=" --disable-libnotify"
-
- # slotted boost detection, bug #309415
- BOOST_PKG="$(best_version ">=dev-libs/boost-1.34.1")"
- BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
- BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
- myconf+=" --with-libboost-inc=/usr/include/boost-${BOOST_VER}"
-
- # econf fails, since this uses qconf
- ./configure --prefix=/usr --qtdir=/usr ${myconf} || die "configure failed"
- eqmake4
-}
diff --git a/net-p2p/qbittorrent/qbittorrent-2.4.8.ebuild b/net-p2p/qbittorrent/qbittorrent-2.4.8.ebuild
deleted file mode 100644
index d549ade0eb1f..000000000000
--- a/net-p2p/qbittorrent/qbittorrent-2.4.8.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-2.4.8.ebuild,v 1.1 2010/10/25 21:01:16 hwoarang Exp $
-
-EAPI="2"
-PYTHON_DEPEND="2"
-
-inherit python confutils qt4-r2 versionator
-
-MY_P="${P/_/}"
-DESCRIPTION="BitTorrent client in C++ and Qt"
-HOMEPAGE="http://www.qbittorrent.org/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+X geoip libnotify"
-
-# boost version so that we always have thread support
-CDEPEND="net-libs/rb_libtorrent
- x11-libs/qt-core:4
- x11-libs/qt-dbus:4
- X? ( x11-libs/qt-gui:4
- libnotify? ( x11-libs/qt-gui:4[glib] ) )
- dev-libs/boost"
-DEPEND="${CDEPEND}
- dev-util/pkgconfig"
-RDEPEND="${CDEPEND}
- geoip? ( dev-libs/geoip )
- libnotify? ( x11-libs/libnotify )"
-
-DOCS="AUTHORS Changelog NEWS README TODO"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- confutils_use_depend_all libnotify X
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # Respect LDFLAGS
- sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local myconf
- use X || myconf+=" --disable-gui"
- use geoip || myconf+=" --disable-geoip-database"
- use libnotify || myconf+=" --disable-libnotify"
-
- # slotted boost detection, bug #309415
- BOOST_PKG="$(best_version ">=dev-libs/boost-1.34.1")"
- BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
- BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
- myconf+=" --with-libboost-inc=/usr/include/boost-${BOOST_VER}"
-
- # econf fails, since this uses qconf
- ./configure --prefix=/usr --qtdir=/usr ${myconf} || die "configure failed"
- eqmake4
-}
diff --git a/net-p2p/qbittorrent/qbittorrent-2.4.7.ebuild b/net-p2p/qbittorrent/qbittorrent-2.4.9.ebuild
index 662f4f6efab5..7de69adfc01b 100644
--- a/net-p2p/qbittorrent/qbittorrent-2.4.7.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-2.4.9.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-2.4.7.ebuild,v 1.1 2010/10/19 19:56:58 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-2.4.9.ebuild,v 1.1 2010/11/01 12:16:51 hwoarang Exp $
EAPI="2"
PYTHON_DEPEND="2"