diff options
author | Hans de Graaff <graaff@gentoo.org> | 2007-11-01 20:12:06 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2007-11-01 20:12:06 +0000 |
commit | e8c066f3a56aaa36c74893d9ae482a87a19811b2 (patch) | |
tree | f24ecfc436f54944eddf3b0db60767d211328103 /dev-ruby | |
parent | Stable on x86, bug #197750 (diff) | |
download | gentoo-2-e8c066f3a56aaa36c74893d9ae482a87a19811b2.tar.gz gentoo-2-e8c066f3a56aaa36c74893d9ae482a87a19811b2.tar.bz2 gentoo-2-e8c066f3a56aaa36c74893d9ae482a87a19811b2.zip |
Version bump
(Portage version: 2.1.3.16)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/xmpp4r/ChangeLog | 16 | ||||
-rw-r--r-- | dev-ruby/xmpp4r/files/digest-xmpp4r-0.3.2 | 3 | ||||
-rw-r--r-- | dev-ruby/xmpp4r/xmpp4r-0.3.2.ebuild | 26 |
3 files changed, 44 insertions, 1 deletions
diff --git a/dev-ruby/xmpp4r/ChangeLog b/dev-ruby/xmpp4r/ChangeLog index fc80bf6697f5..523b721bd1d6 100644 --- a/dev-ruby/xmpp4r/ChangeLog +++ b/dev-ruby/xmpp4r/ChangeLog @@ -1,6 +1,20 @@ # ChangeLog for dev-ruby/xmpp4r # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xmpp4r/ChangeLog,v 1.6 2007/05/13 16:07:24 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xmpp4r/ChangeLog,v 1.7 2007/11/01 20:12:05 graaff Exp $ + +*xmpp4r-0.3.2 (01 Nov 2007) + + 01 Nov 2007; Hans de Graaff <graaff@gentoo.org> +xmpp4r-0.3.2.ebuild: + Version bump per bug #197606. + + * Serious bug involving Ruby threading fixed (caused exceptions with ruby 1.8.6) + * vCard helper fixes + * Jabber RPC (JEP0009) support + * HTTP Binding (JEP0124) support + * Publish-Subscribe support + * XMPPElement: a framework for classes representing XML elements + * Ad-hoc commands support + * Improvements to Dataforms: XData, XDataTitle and XDataInstructions *xmpp4r-0.3.1 (13 May 2007) diff --git a/dev-ruby/xmpp4r/files/digest-xmpp4r-0.3.2 b/dev-ruby/xmpp4r/files/digest-xmpp4r-0.3.2 new file mode 100644 index 000000000000..dec281ba9ad0 --- /dev/null +++ b/dev-ruby/xmpp4r/files/digest-xmpp4r-0.3.2 @@ -0,0 +1,3 @@ +MD5 c5d88218ab82dc9d2a69c230b8b982b3 xmpp4r-0.3.2.gem 134144 +RMD160 2d492e065d75937ba92b87e3ca32149abc1300b9 xmpp4r-0.3.2.gem 134144 +SHA256 bf17fa93cfe4279186e836ab5b9809e20a33890f57f2c7f48a26ab76cd6eea6e xmpp4r-0.3.2.gem 134144 diff --git a/dev-ruby/xmpp4r/xmpp4r-0.3.2.ebuild b/dev-ruby/xmpp4r/xmpp4r-0.3.2.ebuild new file mode 100644 index 000000000000..c51549a65e62 --- /dev/null +++ b/dev-ruby/xmpp4r/xmpp4r-0.3.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xmpp4r/xmpp4r-0.3.2.ebuild,v 1.1 2007/11/01 20:12:05 graaff Exp $ + +RUBY_BUG_145222=yes +inherit ruby gems + +DESCRIPTION="An XMPP library for Ruby" +HOMEPAGE="http://home.gna.org/xmpp4r/" +SRC_URI="http://download.gna.org/xmpp4r/${P}.gem" + +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~ppc64" +IUSE="examples" + +DEPEND=">=dev-lang/ruby-1.8" + +src_install() { + gems_src_install + gems_location + D2="${D}/${GEMSDIR}/gems/${P}" + use examples || rm -r ${D2}/data/doc/xmpp4r/examples + mv ${D2}/data/doc/xmpp4r ${D2}/data/doc/${PF} || die "Failed to rename examples" + dodoc ${D2}/{UPDATING,LICENSE,COPYING,README,ChangeLog} +} |