summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Felisberto <humpback@gentoo.org>2007-11-05 17:03:32 +0000
committerGustavo Felisberto <humpback@gentoo.org>2007-11-05 17:03:32 +0000
commit62f9f3a30fe3f9f23e2bc451a60f9e0d931ba38b (patch)
tree98ba8f9b168c1c22d2b57bb8c58f56e6abdcd8d5 /net-libs/obby
parentAdd gksu dep; bug #198157 (diff)
downloadgentoo-2-62f9f3a30fe3f9f23e2bc451a60f9e0d931ba38b.tar.gz
gentoo-2-62f9f3a30fe3f9f23e2bc451a60f9e0d931ba38b.tar.bz2
gentoo-2-62f9f3a30fe3f9f23e2bc451a60f9e0d931ba38b.zip
removing older version
(Portage version: 2.1.3.15)
Diffstat (limited to 'net-libs/obby')
-rw-r--r--net-libs/obby/ChangeLog6
-rw-r--r--net-libs/obby/files/digest-obby-0.3.0-r13
-rw-r--r--net-libs/obby/files/dual_subscribe.patch15
-rw-r--r--net-libs/obby/obby-0.3.0-r1.ebuild41
4 files changed, 5 insertions, 60 deletions
diff --git a/net-libs/obby/ChangeLog b/net-libs/obby/ChangeLog
index 2399d9923803..bfc09881e210 100644
--- a/net-libs/obby/ChangeLog
+++ b/net-libs/obby/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/obby
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/obby/ChangeLog,v 1.21 2007/11/04 06:19:42 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/obby/ChangeLog,v 1.22 2007/11/05 17:03:31 humpback Exp $
+
+ 05 Nov 2007; Gustavo Felisberto <humpback@gentoo.org>
+ -files/dual_subscribe.patch, -obby-0.3.0-r1.ebuild:
+ Removing older version that is blocking bug #183776
04 Nov 2007; Lars Weiler <pylon@gentoo.org> obby-0.4.4.ebuild:
stable ppc, bug #197438
diff --git a/net-libs/obby/files/digest-obby-0.3.0-r1 b/net-libs/obby/files/digest-obby-0.3.0-r1
deleted file mode 100644
index bc3e23bfd8b9..000000000000
--- a/net-libs/obby/files/digest-obby-0.3.0-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b14135018a3093395296cf091f9f824f obby-0.3.0.tar.gz 454757
-RMD160 b998b429c4ff030c89e62a0c38540e9a1fe15751 obby-0.3.0.tar.gz 454757
-SHA256 609feb33095e6036808cd9b5dbeed8775866c8823f4416d1c333bffa36b072aa obby-0.3.0.tar.gz 454757
diff --git a/net-libs/obby/files/dual_subscribe.patch b/net-libs/obby/files/dual_subscribe.patch
deleted file mode 100644
index 26ba8105cbe9..000000000000
--- a/net-libs/obby/files/dual_subscribe.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- inc/document_info.hpp.original 2006-03-12 14:58:25.000000000 +0000
-+++ inc/document_info.hpp 2006-03-12 14:57:39.000000000 +0000
-@@ -643,9 +643,9 @@
- {
- if(is_subscribed(user) )
- {
-- throw std::logic_error(
-- "obby::basic_document_info::user_subscribe"
-- );
-+ // throw std::logic_error(
-+ // "obby::basic_document_info::user_subscribe"
-+ // );
- }
-
- m_users.push_back(&user);
diff --git a/net-libs/obby/obby-0.3.0-r1.ebuild b/net-libs/obby/obby-0.3.0-r1.ebuild
deleted file mode 100644
index 338795e46a54..000000000000
--- a/net-libs/obby/obby-0.3.0-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/obby/obby-0.3.0-r1.ebuild,v 1.2 2006/10/28 14:43:07 mabi Exp $
-
-#MY_P=${P/_rc/rc}
-#S=${WORKDIR}/${MY_P}
-inherit eutils
-
-DESCRIPTION="Library for collaborative text editing"
-HOMEPAGE="http://darcs.0x539.de/libobby"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="howl"
-SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
-
-DEPEND=">=net-libs/net6-1.2.2
- >=dev-libs/libsigc++-2.0
- >=dev-libs/gmp-4.1.4
- howl? ( >=net-misc/howl-0.9.8 )"
-
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/dual_subscribe.patch
-}
-
-src_compile() {
-
- local myconf
- myconf="${myconf} --disable-tests"
- use howl && myconf="${myconf} --with-howl"
- econf ${myconf} || die "./configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-}