graaff 15/01/19 19:13:13 Modified: ChangeLog Added: ffi-1.9.6-r2.ebuild ffi-1.9.6-r1.ebuild Removed: ffi-1.9.6.ebuild Log: Revision bump since 1.9.6 removed a runtime dependency, and create a stable candidate. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.89 dev-ruby/ffi/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?rev=1.89&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?rev=1.89&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?r1=1.88&r2=1.89 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v retrieving revision 1.88 retrieving revision 1.89 diff -u -r1.88 -r1.89 --- ChangeLog 24 Dec 2014 08:23:10 -0000 1.88 +++ ChangeLog 19 Jan 2015 19:13:13 -0000 1.89 @@ -1,6 +1,14 @@ # ChangeLog for dev-ruby/ffi -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v 1.88 2014/12/24 08:23:10 graaff Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v 1.89 2015/01/19 19:13:13 graaff Exp $ + +*ffi-1.9.6-r2 (19 Jan 2015) +*ffi-1.9.6-r1 (19 Jan 2015) + + 19 Jan 2015; Hans de Graaff <[email protected]> -ffi-1.9.6.ebuild, + +ffi-1.9.6-r1.ebuild, +ffi-1.9.6-r2.ebuild: + Revision bump since 1.9.6 removed a runtime dependency, and create a stable + candidate. 24 Dec 2014; Hans de Graaff <[email protected]> ffi-1.9.6.ebuild: All ruby implementations now provide threads, drop redundant virtual. 1.1 dev-ruby/ffi/ffi-1.9.6-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r2.ebuild?rev=1.1&content-type=text/plain Index: ffi-1.9.6-r2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r2.ebuild,v 1.1 2015/01/19 19:13:13 graaff Exp $ EAPI=5 # jruby → unneeded, this is part of the standard JRuby distribution, and # would just install a dummy. USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="rspec" RUBY_FAKEGEM_RECIPE_DOC="yard" RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="README.md" inherit ruby-fakegem DESCRIPTION="Ruby extension for programmatically loading dynamic libraries" HOMEPAGE="http://wiki.github.com/ffi/ffi" SRC_URI="http://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${PN}-git-${PV}.tgz" IUSE="" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" RDEPEND+=" virtual/libffi" DEPEND+=" virtual/libffi" ruby_add_bdepend "doc? ( dev-ruby/yard )" all_ruby_prepare() { sed -i -e '/tasks/ s:^:#:' \ -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die # Fix Makefile for tests sed -i -e '/CCACHE :=/ s:^:#:' \ -e 's/-O2//' \ -e 's/^CFLAGS =/CFLAGS +=/' libtest/GNUmakefile || die # Remove bundled version of libffi. rm -rf ext/ffi_c/libffi || die } each_ruby_configure() { ${RUBY} -Cext/ffi_c extconf.rb || die } each_ruby_compile() { emake -Cext/ffi_c V=1 cp ext/ffi_c/ffi_c.so lib/ || die ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed" } each_ruby_test() { CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec spec || die } all_ruby_install() { all_fakegem_install docinto examples dodoc samples/* } 1.1 dev-ruby/ffi/ffi-1.9.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r1.ebuild?rev=1.1&content-type=text/plain Index: ffi-1.9.6-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ffi-1.9.6-r1.ebuild,v 1.1 2015/01/19 19:13:13 graaff Exp $ EAPI=5 # jruby → unneeded, this is part of the standard JRuby distribution, and # would just install a dummy. USE_RUBY="ruby19 ruby20" RUBY_FAKEGEM_RECIPE_TEST="rspec" RUBY_FAKEGEM_RECIPE_DOC="yard" RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="README.md" inherit ruby-fakegem DESCRIPTION="Ruby extension for programmatically loading dynamic libraries" HOMEPAGE="http://wiki.github.com/ffi/ffi" SRC_URI="http://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${PN}-git-${PV}.tgz" IUSE="" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" RDEPEND+=" virtual/libffi" DEPEND+=" virtual/libffi" ruby_add_bdepend "doc? ( dev-ruby/yard )" all_ruby_prepare() { sed -i -e '/tasks/ s:^:#:' \ -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die # Fix Makefile for tests sed -i -e '/CCACHE :=/ s:^:#:' \ -e 's/-O2//' \ -e 's/^CFLAGS =/CFLAGS +=/' libtest/GNUmakefile || die # Remove bundled version of libffi. rm -rf ext/ffi_c/libffi || die } each_ruby_configure() { ${RUBY} -Cext/ffi_c extconf.rb || die } each_ruby_compile() { emake -Cext/ffi_c V=1 cp ext/ffi_c/ffi_c.so lib/ || die ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed" } each_ruby_test() { CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec spec || die } all_ruby_install() { all_fakegem_install docinto examples dodoc samples/* }
