Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/date_validator/
Date: Fri, 06 May 2022 10:04:32
Message-Id: 1651831463.38e0d87884f3805c04f074b4b70b3f0de06baa5b.graaff@gentoo
1 commit: 38e0d87884f3805c04f074b4b70b3f0de06baa5b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 08:54:03 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 10:04:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e0d878
7
8 dev-ruby/date_validator: drop 0.10.0
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/date_validator/Manifest | 1 -
13 .../date_validator/date_validator-0.10.0.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-ruby/date_validator/Manifest b/dev-ruby/date_validator/Manifest
17 index 4259f905a6de..30b094912f1b 100644
18 --- a/dev-ruby/date_validator/Manifest
19 +++ b/dev-ruby/date_validator/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST date_validator-0.10.0.gem 12800 BLAKE2B 0cbb11e70cb72a1203c2ec33581d4ed48be346af6998faa89e4323c8c6bf70b5c979b55bc79630153a940697c89ce140eb511538cd55adb0f12566f2f1a317a9 SHA512 4348835898ebfe311a8ea456adc10f7bbfd1dc21daf2678e32b1615ba3eef3d36671f67f533109882f40516c836f23d7e0a4072c9ecaa55a1b0eade0b6aa75b7
22 DIST date_validator-0.11.0.gem 12800 BLAKE2B ce45caa57bd1e29900ed0732bdbfbf81c68836de71efbf099bdc595a9b586872175960af40129af6d793ed5ce49ba222a3ca7d0172ef764ee02c88f4eae04e9e SHA512 269f3e234c8157a667c81d725497eafd21621cd35811f35707590242a3dc78065bd6dbe7b772a38761fdb8c95ae40f99976919444dac061f7bd2150fc9178afa
23 DIST date_validator-0.12.0.gem 12800 BLAKE2B 235434dbd7e4441698bc90e0dd37bf9e5b8f1f742424e8155876e677e5d7dbe7beb4edd2f7dda7dba2729a024dcda72ac816e4f6a7dd38fdfaa4ea79f21d078e SHA512 e7796375d6d6af2fc9ce6e7d6174d59bd35ddbac90c4e5b54b321e33ed25f3e816c58013fa61f2003724e87fc96495ce81c132d056c9c9331bd1a236eb7dec38
24
25 diff --git a/dev-ruby/date_validator/date_validator-0.10.0.ebuild b/dev-ruby/date_validator/date_validator-0.10.0.ebuild
26 deleted file mode 100644
27 index 8d4f4549e483..000000000000
28 --- a/dev-ruby/date_validator/date_validator-0.10.0.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -USE_RUBY="ruby25 ruby26 ruby27"
36 -
37 -RUBY_FAKEGEM_TASK_TEST="test"
38 -
39 -RUBY_FAKEGEM_TASK_DOC="docs"
40 -RUBY_FAKEGEM_EXTRADOC="Readme.md"
41 -
42 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
43 -
44 -# if ever needed
45 -#GITHUB_USER="codegram"
46 -#GITHUB_PROJECT="${PN}"
47 -#RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*"
48 -
49 -inherit ruby-fakegem
50 -
51 -DESCRIPTION="Simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails"
52 -HOMEPAGE="https://github.com/codegram/date_validator"
53 -
54 -LICENSE="MIT"
55 -SLOT="3"
56 -KEYWORDS="~amd64"
57 -IUSE=""
58 -
59 -ruby_add_rdepend ">=dev-ruby/activemodel-3.0:*
60 -"
61 -
62 -ruby_add_bdepend "
63 - test? (
64 - dev-ruby/minitest
65 - >=dev-ruby/tzinfo-0.3
66 - >=dev-ruby/activesupport-3.0
67 - )
68 - doc? ( dev-ruby/yard )"
69 -
70 -all_ruby_prepare() {
71 - sed -i \
72 - -e '/git ls-files/d' \
73 - ${RUBY_FAKEGEM_GEMSPEC} || die
74 - sed -i \
75 - -e '/[Bb]undler/s/^/#/' Rakefile || die
76 - # Fix tests
77 - sed -i -e "1irequire 'active_support'; require 'active_support/core_ext/time/zones'" test/test_helper.rb || die
78 -}