public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.13-r1.ebuild rb_libtorrent-0.14.2.ebuild rb_libtorrent-0.13.1.ebuild rb_libtorrent-0.13_p2335.ebuild rb_libtorrent-0.12.1.ebuild rb_libtorrent-0.14.1.ebuild
@ 2009-06-28  0:02 Ben de Groot (yngwin)
  0 siblings, 0 replies; only message in thread
From: Ben de Groot (yngwin) @ 2009-06-28  0:02 UTC (permalink / raw
  To: gentoo-commits

yngwin      09/06/28 00:02:56

  Modified:             ChangeLog
  Added:                rb_libtorrent-0.13-r1.ebuild
  Removed:              rb_libtorrent-0.14.2.ebuild
                        rb_libtorrent-0.13.1.ebuild
                        rb_libtorrent-0.13_p2335.ebuild
                        rb_libtorrent-0.12.1.ebuild
                        rb_libtorrent-0.14.1.ebuild
  Log:
  Cleanup, add 0.13-r1 with security fix for bug 273156, various other fixes
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.59                 net-libs/rb_libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	27 Jun 2009 12:56:43 -0000	1.58
+++ ChangeLog	28 Jun 2009 00:02:56 -0000	1.59
@@ -1,6 +1,25 @@
 # ChangeLog for net-libs/rb_libtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.58 2009/06/27 12:56:43 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.59 2009/06/28 00:02:56 yngwin Exp $
+
+*rb_libtorrent-0.13-r1 (27 Jun 2009)
+
+  27 Jun 2009; Ben de Groot <yngwin@gentoo.org>
+  -rb_libtorrent-0.12.1.ebuild, +rb_libtorrent-0.13-r1.ebuild,
+  -rb_libtorrent-0.13_p2335.ebuild,
+  +files/rb_libtorrent-0.13-CVE-2009-1760.patch,
+  -rb_libtorrent-0.13.1.ebuild, +files/rb_libtorrent-0.13-boost-1.37.patch,
+  +files/rb_libtorrent-0.13-gcc44.patch, -rb_libtorrent-0.14.1.ebuild,
+  -rb_libtorrent-0.14.2.ebuild:
+  Remove all older ebuilds, except for latest stable.
+  Add 0.13-r1 with the following changes:
+  - add security patch for CVE-2009-1760 (bug 273156)
+  - add patch to fix building with boost-1.37 (bug 270447)
+  - migrate to EAPI=2 and general cleanup
+  - use append-ldflags from flag-o-matic.eclass
+  - disable as-needed for now (bug 271818)
+  - add minor patch to fix compilation with gcc-4.4
+  - add doc useflag to install HTML documentation
 
   27 Jun 2009; Ben de Groot <yngwin@gentoo.org> metadata.xml:
   Add qt herd as co-maintainer, as this is a dependency of qbittorrent



1.1                  net-libs/rb_libtorrent/rb_libtorrent-0.13-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13-r1.ebuild?rev=1.1&content-type=text/plain

Index: rb_libtorrent-0.13-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.13-r1.ebuild,v 1.1 2009/06/28 00:02:56 yngwin Exp $

EAPI="2"
inherit eutils flag-o-matic

MY_P=${P/rb_/}
S=${WORKDIR}/${MY_P}

DESCRIPTION="A C++ BitTorrent implementation focusing on efficiency and scalability"
HOMEPAGE="http://www.rasterbar.com/products/libtorrent/"
SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="debug doc"

DEPEND="|| ( >=dev-libs/boost-1.34.1
		~dev-libs/boost-1.33.1[threads] )
	!net-libs/libtorrent"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${P}-CVE-2009-1760.patch  # bug 273156
	epatch "${FILESDIR}"/${P}-boost-1.37.patch     # bug 270447
	epatch "${FILESDIR}"/${P}-gcc44.patch
}

src_configure() {
	append-ldflags -pthread

	# fails with as-needed, bug 271818
	append-ldflags -Wl,--no-as-needed

	# use multi-threaded boost libs
	local BOOST_LIBS="--with-boost-date-time=boost_date_time-mt \
		--with-boost-filesystem=boost_filesystem-mt \
		--with-boost-thread=boost_thread-mt \
		--with-boost-regex=boost_regex-mt \
		--with-boost-program_options=boost_program_options-mt"

	econf $(use_enable debug) ${BOOST_LIBS}
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc ChangeLog AUTHORS NEWS README || die "dodoc failed"
	if use doc ; then
		dohtml docs/* || die "Could not install HTML documentation"
	fi
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-28  0:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-28  0:02 [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: ChangeLog rb_libtorrent-0.13-r1.ebuild rb_libtorrent-0.14.2.ebuild rb_libtorrent-0.13.1.ebuild rb_libtorrent-0.13_p2335.ebuild rb_libtorrent-0.12.1.ebuild rb_libtorrent-0.14.1.ebuild Ben de Groot (yngwin)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox