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/protected_attributes/
Date: Tue, 05 May 2020 08:06:06
Message-Id: 1588665946.05f88aa11299e9398a6f980072a76af91081e626.graaff@gentoo
1 commit: 05f88aa11299e9398a6f980072a76af91081e626
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 07:54:23 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 08:05:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05f88aa1
7
8 dev-ruby/protected_attributes: remove masked package
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/protected_attributes/Manifest | 1 -
13 dev-ruby/protected_attributes/metadata.xml | 11 ------
14 .../protected_attributes-1.1.4.ebuild | 39 ----------------------
15 3 files changed, 51 deletions(-)
16
17 diff --git a/dev-ruby/protected_attributes/Manifest b/dev-ruby/protected_attributes/Manifest
18 deleted file mode 100644
19 index 22bf0849810..00000000000
20 --- a/dev-ruby/protected_attributes/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST protected_attributes-1.1.4.tar.gz 23562 BLAKE2B 8b8c8a9f533344c6344de0e389807e39c06f53948d9206f965d0f954a9e8e8f4de61aebcbf96d95186b94e600ceceb48fd258087dfcc3baf15e65d588569829f SHA512 02c55825ec21dde386e31b25e71df4ac48c2356bad303a82cc33703b930c5f8e36b57193761dba59dff3868d39a3b5458fb2a2c49809019e72ed4b4f4313bed3
24
25 diff --git a/dev-ruby/protected_attributes/metadata.xml b/dev-ruby/protected_attributes/metadata.xml
26 deleted file mode 100644
27 index 242f40c6e3a..00000000000
28 --- a/dev-ruby/protected_attributes/metadata.xml
29 +++ /dev/null
30 @@ -1,11 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <maintainer type="project">
35 - <email>ruby@g.o</email>
36 - <name>Gentoo Ruby Project</name>
37 - </maintainer>
38 - <upstream>
39 - <remote-id type="github">rails/protected_attributes</remote-id>
40 - </upstream>
41 -</pkgmetadata>
42
43 diff --git a/dev-ruby/protected_attributes/protected_attributes-1.1.4.ebuild b/dev-ruby/protected_attributes/protected_attributes-1.1.4.ebuild
44 deleted file mode 100644
45 index e23b1df20ff..00000000000
46 --- a/dev-ruby/protected_attributes/protected_attributes-1.1.4.ebuild
47 +++ /dev/null
48 @@ -1,39 +0,0 @@
49 -# Copyright 1999-2018 Gentoo Foundation
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=6
53 -USE_RUBY="ruby22 ruby23 ruby24"
54 -
55 -RUBY_FAKEGEM_TASK_TEST="test"
56 -
57 -RUBY_FAKEGEM_TASK_DOC=""
58 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
59 -
60 -inherit ruby-fakegem
61 -
62 -DESCRIPTION="Protect attributes from mass-assignment in ActiveRecord models"
63 -HOMEPAGE="https://github.com/rails/protected_attributes"
64 -SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
65 -SLOT="1"
66 -
67 -LICENSE="MIT"
68 -
69 -KEYWORDS="~amd64"
70 -IUSE="test"
71 -
72 -ruby_add_rdepend "
73 - =dev-ruby/activemodel-4*:* >=dev-ruby/activemodel-4.0.1:*
74 -"
75 -
76 -ruby_add_bdepend "test? (
77 - dev-ruby/bundler
78 - =dev-ruby/actionpack-4*
79 - =dev-ruby/activerecord-4*
80 - =dev-ruby/rails-4*
81 - dev-ruby/mocha
82 - dev-ruby/sqlite3
83 -)"
84 -
85 -all_ruby_prepare() {
86 - sed -i -e '/github/ s:^:#:' Gemfile || die
87 -}