From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D08481385C2 for ; Mon, 21 Jan 2013 12:09:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A058421C01E; Mon, 21 Jan 2013 12:09:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1017B21C07B for ; Mon, 21 Jan 2013 12:09:35 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29C6533DAE2 for ; Mon, 21 Jan 2013 12:09:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2149) id DA5E92171D; Mon, 21 Jan 2013 12:09:32 +0000 (UTC) From: "Hans de Graaff (graaff)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, graaff@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/listen: ChangeLog listen-0.7.2-r1.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog listen-0.7.2-r1.ebuild X-VCS-Directories: dev-ruby/listen X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130121120932.DA5E92171D@flycatcher.gentoo.org> Date: Mon, 21 Jan 2013 12:09:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 52de08dd-77b1-4f51-b65b-d19b0ceea048 X-Archives-Hash: 831eda649f70629adfadb55e713188f3 graaff 13/01/21 12:09:32 Modified: ChangeLog Added: listen-0.7.2-r1.ebuild Log: Fix rb-inotify dependency to adhere to semantic versioning. (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!) Revision Changes Path 1.18 dev-ruby/listen/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 21 Jan 2013 12:02:25 -0000 1.17 +++ ChangeLog 21 Jan 2013 12:09:32 -0000 1.18 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/listen # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.17 2013/01/21 12:02:25 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/ChangeLog,v 1.18 2013/01/21 12:09:32 graaff Exp $ + +*listen-0.7.2-r1 (21 Jan 2013) + + 21 Jan 2013; Hans de Graaff +listen-0.7.2-r1.ebuild: + Fix rb-inotify dependency to adhere to semantic versioning. 21 Jan 2013; Hans de Graaff -listen-0.5.3.ebuild, -listen-0.6.0.ebuild: 1.1 dev-ruby/listen/listen-0.7.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.7.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/listen/listen-0.7.2-r1.ebuild?rev=1.1&content-type=text/plain Index: listen-0.7.2-r1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.7.2-r1.ebuild,v 1.1 2013/01/21 12:09:32 graaff Exp $ EAPI=5 USE_RUBY="ruby18 ruby19 ree18 jruby" RUBY_FAKEGEM_RECIPE_TEST="rspec" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" inherit ruby-fakegem DESCRIPTION="Listens to file modifications and notifies you about the changes." HOMEPAGE="https://github.com/guard/listen" SRC_URI="https://github.com/guard/listen/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos" IUSE="" ruby_add_rdepend ">=dev-ruby/rb-inotify-0.8.8" all_ruby_prepare() { # Adhere to semantic versioning. sed -i -e '/rb-inotify/ s/0.8.8/0.8/' lib/listen/adapters/linux.rb || die }