summaryrefslogtreecommitdiff
path: root/dev-ruby/ruby-shout
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ruby/ruby-shout
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-ruby/ruby-shout')
-rw-r--r--dev-ruby/ruby-shout/Manifest1
-rw-r--r--dev-ruby/ruby-shout/files/ruby-shout-2.2.2-errno.patch13
-rw-r--r--dev-ruby/ruby-shout/metadata.xml11
-rw-r--r--dev-ruby/ruby-shout/ruby-shout-2.2.2-r2.ebuild26
4 files changed, 0 insertions, 51 deletions
diff --git a/dev-ruby/ruby-shout/Manifest b/dev-ruby/ruby-shout/Manifest
deleted file mode 100644
index eaf8522ce007..000000000000
--- a/dev-ruby/ruby-shout/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ruby-shout-2.2.2.gem 13312 BLAKE2B da84e8ca777e5c5e60f4319f030467cbbb0709f8e94c08d3b7c8bb30c4db2861d27852930a01f4a0625ca8cf71ed849fd39f0398708b838c3b6bdcf85c12609d SHA512 2553518d3cef655e9cd59a734860d290928171600676dd0fa4b65d84421286eb9d79cc897cfa5544570e3731c4f761e97e8cd1dd3488d9b62246af840a1d126d
diff --git a/dev-ruby/ruby-shout/files/ruby-shout-2.2.2-errno.patch b/dev-ruby/ruby-shout/files/ruby-shout-2.2.2-errno.patch
deleted file mode 100644
index 91e484ab4295..000000000000
--- a/dev-ruby/ruby-shout/files/ruby-shout-2.2.2-errno.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/ext/shout_ext.c 2024-01-23 14:02:08.404056464 +0100
-+++ b/ext/shout_ext.c 2024-01-23 14:03:47.152700002 +0100
-@@ -91,8 +91,8 @@
- /* For metadata-related errors, which don't relate to a shout_t, so we can't
- * use shout_get_errno or shout_get_error on them.
- */
--static void raise_nonspecific_shout_error(int errno) {
-- rb_raise(cShoutError, "%d", errno);
-+static void raise_nonspecific_shout_error(int err_no) {
-+ rb_raise(cShoutError, "%d", err_no);
- }
-
- /*
diff --git a/dev-ruby/ruby-shout/metadata.xml b/dev-ruby/ruby-shout/metadata.xml
deleted file mode 100644
index eb019ffa058b..000000000000
--- a/dev-ruby/ruby-shout/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://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">niko/ruby-shout</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ruby/ruby-shout/ruby-shout-2.2.2-r2.ebuild b/dev-ruby/ruby-shout/ruby-shout-2.2.2-r2.ebuild
deleted file mode 100644
index c0c6b08ef742..000000000000
--- a/dev-ruby/ruby-shout/ruby-shout-2.2.2-r2.ebuild
+++ /dev/null
@@ -1,26 +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_TASK_TEST=""
-
-RUBY_FAKEGEM_EXTRADOC="README.textile"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb)
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby interface to libshout2"
-HOMEPAGE="https://github.com/niko/ruby-shout"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-
-RDEPEND=">=media-libs/libshout-2.0"
-DEPEND=">=media-libs/libshout-2.0"
-
-PATCHES=( "${FILESDIR}/${P}-errno.patch" )