summaryrefslogtreecommitdiff
path: root/dev-ruby/multipart-post
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/multipart-post')
-rw-r--r--dev-ruby/multipart-post/Manifest1
-rw-r--r--dev-ruby/multipart-post/metadata.xml9
-rw-r--r--dev-ruby/multipart-post/multipart-post-2.4.1.ebuild32
3 files changed, 0 insertions, 42 deletions
diff --git a/dev-ruby/multipart-post/Manifest b/dev-ruby/multipart-post/Manifest
deleted file mode 100644
index 8cd2845bedd1..000000000000
--- a/dev-ruby/multipart-post/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST multipart-post-2.4.1.tar.gz 13732 BLAKE2B 9a5b606109148a5e2679aa454286b2a8481cc8e90253bb22b13053cfaa45fd1882c6d6b2b7fecc17d49f4d3ced8667aa483a4e5023fc675a5d86f310ab20b40e SHA512 f21500a05428cbcc567be7b1bfdd8c38cfbc4b67cd646f96927478b768f45db996fc3868324c81e4adff5eb4013f0c5bede19802437f4539a334604c4736f8be
diff --git a/dev-ruby/multipart-post/metadata.xml b/dev-ruby/multipart-post/metadata.xml
deleted file mode 100644
index c685ebad7e3a..000000000000
--- a/dev-ruby/multipart-post/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-ruby/multipart-post/multipart-post-2.4.1.ebuild b/dev-ruby/multipart-post/multipart-post-2.4.1.ebuild
deleted file mode 100644
index ff250844cd63..000000000000
--- a/dev-ruby/multipart-post/multipart-post-2.4.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby32 ruby33 ruby34 ruby40"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="changelog.md readme.md"
-RUBY_FAKEGEM_GEMSPEC="multipart-post.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Adds a streamy multipart form post capability to Net::HTTP"
-HOMEPAGE="https://github.com/socketry/multipart-post"
-SRC_URI="https://github.com/socketry/multipart-post/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86"
-
-all_ruby_prepare() {
- sed -i -e '/\(bundler\|covered\)/ s:^:#:' spec/spec_helper.rb || die
-
- sed -i -e 's:_relative ":"./:' ${RUBY_FAKEGEM_GEMSPEC} || die
-
- # Remove warnings since these are only actionable for developers,
- # not for people consuming this package as part of other tools.
- sed -i -e '/Top level/ s/warn/# warn/' lib/*.rb || die
-}