public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mongo/
@ 2015-08-12  5:08 Hans de Graaff
  0 siblings, 0 replies; 4+ messages in thread
From: Hans de Graaff @ 2015-08-12  5:08 UTC (permalink / raw
  To: gentoo-commits

commit:     9107fab8b7ae24054b8498985fc383a367b12231
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 12 05:07:53 2015 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Aug 12 05:08:36 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9107fab8

dev-ruby/mongo: version bump

Package-Manager: portage-2.2.20

 dev-ruby/mongo/Manifest           |  1 +
 dev-ruby/mongo/mongo-2.0.6.ebuild | 59 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/mongo/Manifest b/dev-ruby/mongo/Manifest
index d8235c0..8a0038d 100644
--- a/dev-ruby/mongo/Manifest
+++ b/dev-ruby/mongo/Manifest
@@ -1 +1,2 @@
 DIST mongo-ruby-driver-1.12.0.tar.gz 360669 SHA256 84c87d26601c9bd91a6604bcb3630be50d239e471542f9b0a68379705dd03e11 SHA512 725110c527867379def85fde50b6825e94a320356f062e4403d9d55c223f2503676f83ae42916d6ab45afd90d30b2a4272519e070c4af2095c0965297fd72bb6 WHIRLPOOL c152aa579a0535707909560cc73fc878521aac95c034ec71bca6c2397754b5e057c1e7ca32f6b2b3393ce975f122e65926820cdde29aa5f5734fb9717bd980e0
+DIST mongo-ruby-driver-2.0.6.tar.gz 173405 SHA256 212b3d4a83398ac0299323e9380c5d804d0691d1f8dfc7259aaf5b669943abb9 SHA512 25e5e63538f498b42a44665d725b04e8b7ee0fae4d3331d43b883e427fccdcf0de5a1151819ba04fb6520b5d20da02adf59f1c144176bc2a458142efd5ca7b95 WHIRLPOOL 030072734393abc20fe87e2f0798010ee0c256b5d8fab236171a1942fb737239a3719b5c3488075330616c959cfcacf0f9da6cf02646e29e8c9b7a6a03c0b9af

diff --git a/dev-ruby/mongo/mongo-2.0.6.ebuild b/dev-ruby/mongo/mongo-2.0.6.ebuild
new file mode 100644
index 0000000..10f47f5
--- /dev/null
+++ b/dev-ruby/mongo/mongo-2.0.6.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC=""
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+GITHUB_USER="mongodb"
+GITHUB_PROJECT="mongo-ruby-driver"
+RUBY_S="${GITHUB_PROJECT}-${PV}"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A Ruby driver for MongoDB"
+HOMEPAGE="http://www.mongodb.org/"
+SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/${PV}.tar.gz -> ${GITHUB_PROJECT}-${PV}.tar.gz"
+
+LICENSE="APSL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_rdepend "dev-ruby/bson:3"
+
+DEPEND+=" test? ( dev-db/mongodb )"
+
+# Requires a running mongod
+RESTRICT="test"
+
+all_ruby_prepare() {
+	# Avoid test dependency on pry
+	sed -i -e '/\(pry\|coverall\)/I s:^:#:' \
+		-e '/simplecov/,/^  end/ s:^:#:' \
+		-e '/config.formatter/ s:^:#:' spec/spec_helper.rb || die
+
+	sed -i -e 's/localhost/127.0.0.1/' spec/mongo/*_spec.rb || die
+
+	rm -f .rspec || die
+}
+
+each_ruby_test() {
+	CI=true ruby-ng_rspec
+}
+
+each_ruby_install() {
+	# Remove bson code used for testing. This is installed as part of
+	# dev-ruby/bson.
+#	rm -rf lib/bson* || die
+
+	each_fakegem_install
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mongo/
@ 2016-09-16  6:47 Hans de Graaff
  0 siblings, 0 replies; 4+ messages in thread
From: Hans de Graaff @ 2016-09-16  6:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e98ab13d8c88ee17fedf65a04aa3aee53798bb08
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 16 05:00:24 2016 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Sep 16 06:44:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e98ab13d

dev-ruby/mongo: drop ruby19

Package-Manager: portage-2.2.28

 dev-ruby/mongo/mongo-2.0.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/mongo/mongo-2.0.6.ebuild b/dev-ruby/mongo/mongo-2.0.6.ebuild
index 10f47f5..b20c58b 100644
--- a/dev-ruby/mongo/mongo-2.0.6.ebuild
+++ b/dev-ruby/mongo/mongo-2.0.6.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mongo/
@ 2016-09-16  6:47 Hans de Graaff
  0 siblings, 0 replies; 4+ messages in thread
From: Hans de Graaff @ 2016-09-16  6:47 UTC (permalink / raw
  To: gentoo-commits

commit:     0280985b3723d2558c44a2479b53efc1bc26b062
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 16 04:59:54 2016 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Sep 16 06:44:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0280985b

dev-ruby/mongo: cleanup

Package-Manager: portage-2.2.28

 dev-ruby/mongo/Manifest            |  1 -
 dev-ruby/mongo/mongo-1.12.0.ebuild | 68 --------------------------------------
 2 files changed, 69 deletions(-)

diff --git a/dev-ruby/mongo/Manifest b/dev-ruby/mongo/Manifest
index 8a0038d..703e5f1 100644
--- a/dev-ruby/mongo/Manifest
+++ b/dev-ruby/mongo/Manifest
@@ -1,2 +1 @@
-DIST mongo-ruby-driver-1.12.0.tar.gz 360669 SHA256 84c87d26601c9bd91a6604bcb3630be50d239e471542f9b0a68379705dd03e11 SHA512 725110c527867379def85fde50b6825e94a320356f062e4403d9d55c223f2503676f83ae42916d6ab45afd90d30b2a4272519e070c4af2095c0965297fd72bb6 WHIRLPOOL c152aa579a0535707909560cc73fc878521aac95c034ec71bca6c2397754b5e057c1e7ca32f6b2b3393ce975f122e65926820cdde29aa5f5734fb9717bd980e0
 DIST mongo-ruby-driver-2.0.6.tar.gz 173405 SHA256 212b3d4a83398ac0299323e9380c5d804d0691d1f8dfc7259aaf5b669943abb9 SHA512 25e5e63538f498b42a44665d725b04e8b7ee0fae4d3331d43b883e427fccdcf0de5a1151819ba04fb6520b5d20da02adf59f1c144176bc2a458142efd5ca7b95 WHIRLPOOL 030072734393abc20fe87e2f0798010ee0c256b5d8fab236171a1942fb737239a3719b5c3488075330616c959cfcacf0f9da6cf02646e29e8c9b7a6a03c0b9af

diff --git a/dev-ruby/mongo/mongo-1.12.0.ebuild b/dev-ruby/mongo/mongo-1.12.0.ebuild
deleted file mode 100644
index 243c46a..00000000
--- a/dev-ruby/mongo/mongo-1.12.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_TEST="test:unit"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC=""
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-GITHUB_USER="mongodb"
-GITHUB_PROJECT="mongo-ruby-driver"
-RUBY_S="${GITHUB_PROJECT}-${PV}"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby driver for MongoDB"
-HOMEPAGE="http://www.mongodb.org/"
-SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/${PV}.tar.gz -> ${GITHUB_PROJECT}-${PV}.tar.gz"
-
-LICENSE="APSL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-# This is the same source package as bson, so keep them the same
-# version, but not revision
-ruby_add_rdepend "~dev-ruby/bson-${PV}"
-
-ruby_add_bdepend \
-	"test? (
-		dev-ruby/bundler
-		>=dev-ruby/rake-10.1
-		dev-ruby/sfl
-		>=dev-ruby/shoulda-3.3.2
-		dev-ruby/mocha
-		dev-ruby/test-unit:2
-	)"
-
-all_ruby_prepare() {
-	# remove the stuff that is actually part of dev-ruby/bson
-	rm -f bin/{b2j,j2b}son || die
-
-	# Avoid test dependency on pry
-	sed -i -e '/\(pry\|coverall\)/I s:^:#:' Gemfile tasks/testing.rake test/test_helper.rb || die
-	# Avoid deployment dependencies and fix version issues
-	sed -i -e '/rest-client/ s/1.6.8/~> 1.6/' \
-		-e '/test-unit/ s/~>2.0/>= 2.0/' \
-		-e '/rake/ s/10.1.1/~>10.1/' \
-		-e '/:deploy/,/end/ s:^:#:' Gemfile || die
-}
-
-each_ruby_test() {
-	JENKINS_CI=true ${RUBY} -S rake test:unit || die "Tests failed."
-}
-
-each_ruby_install() {
-	# Remove bson code used for testing. This is installed as part of
-	# dev-ruby/bson.
-	rm -rf lib/bson* || die
-
-	each_fakegem_install
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mongo/
@ 2018-02-24  8:50 Hans de Graaff
  0 siblings, 0 replies; 4+ messages in thread
From: Hans de Graaff @ 2018-02-24  8:50 UTC (permalink / raw
  To: gentoo-commits

commit:     dd7b38ec20b2bec00d753a33cfd4dea17ff3b358
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 08:44:36 2018 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 08:48:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7b38ec

dev-ruby/mongo: remove masked package

 dev-ruby/mongo/Manifest           |  1 -
 dev-ruby/mongo/metadata.xml       | 11 --------
 dev-ruby/mongo/mongo-2.0.6.ebuild | 58 ---------------------------------------
 3 files changed, 70 deletions(-)

diff --git a/dev-ruby/mongo/Manifest b/dev-ruby/mongo/Manifest
deleted file mode 100644
index 9599f2e009e..00000000000
--- a/dev-ruby/mongo/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mongo-ruby-driver-2.0.6.tar.gz 173405 BLAKE2B 94363a19308627897a585594388b074348e047afb644d199763686353f4fa1c89f1a410f84ffba68a0bbd057321e83b9b323663e3200b05c4aa668e6cdb5ab4f SHA512 25e5e63538f498b42a44665d725b04e8b7ee0fae4d3331d43b883e427fccdcf0de5a1151819ba04fb6520b5d20da02adf59f1c144176bc2a458142efd5ca7b95

diff --git a/dev-ruby/mongo/metadata.xml b/dev-ruby/mongo/metadata.xml
deleted file mode 100644
index 5e9c8a35c62..00000000000
--- a/dev-ruby/mongo/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="project">
-    <email>ruby@gentoo.org</email>
-    <name>Gentoo Ruby Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">mongodb/mongo-ruby-driver</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-ruby/mongo/mongo-2.0.6.ebuild b/dev-ruby/mongo/mongo-2.0.6.ebuild
deleted file mode 100644
index 32f4923247e..00000000000
--- a/dev-ruby/mongo/mongo-2.0.6.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC=""
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-GITHUB_USER="mongodb"
-GITHUB_PROJECT="mongo-ruby-driver"
-RUBY_S="${GITHUB_PROJECT}-${PV}"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby driver for MongoDB"
-HOMEPAGE="http://www.mongodb.org/"
-SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/${PV}.tar.gz -> ${GITHUB_PROJECT}-${PV}.tar.gz"
-
-LICENSE="APSL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-ruby_add_rdepend "dev-ruby/bson:3"
-
-DEPEND+=" test? ( dev-db/mongodb )"
-
-# Requires a running mongod
-RESTRICT="test"
-
-all_ruby_prepare() {
-	# Avoid test dependency on pry
-	sed -i -e '/\(pry\|coverall\)/I s:^:#:' \
-		-e '/simplecov/,/^  end/ s:^:#:' \
-		-e '/config.formatter/ s:^:#:' spec/spec_helper.rb || die
-
-	sed -i -e 's/localhost/127.0.0.1/' spec/mongo/*_spec.rb || die
-
-	rm -f .rspec || die
-}
-
-each_ruby_test() {
-	CI=true ruby-ng_rspec
-}
-
-each_ruby_install() {
-	# Remove bson code used for testing. This is installed as part of
-	# dev-ruby/bson.
-#	rm -rf lib/bson* || die
-
-	each_fakegem_install
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-24  8:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-24  8:50 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mongo/ Hans de Graaff
  -- strict thread matches above, loose matches on Subject: below --
2016-09-16  6:47 Hans de Graaff
2016-09-16  6:47 Hans de Graaff
2015-08-12  5:08 Hans de Graaff

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