* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2020-12-15 15:38 David Seifert
0 siblings, 0 replies; 10+ messages in thread
From: David Seifert @ 2020-12-15 15:38 UTC (permalink / raw
To: gentoo-commits
commit: 1b42cd876d1f5119a68f5f9ab3f7b40a0b8e8616
Author: Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Tue Dec 15 15:38:13 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 15:38:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b42cd87
media-sound/scream: new ebuild
* Packaging https://github.com/duncanthrax/scream
Closes: https://bugs.gentoo.org/718800
Closes: https://github.com/gentoo/gentoo/pull/15281
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alexey Sokolov <sokolov <AT> google.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/scream/Manifest | 1 +
media-sound/scream/metadata.xml | 15 ++++++++++++++
media-sound/scream/scream-3.6.ebuild | 39 +++++++++++++++++++++++++++++++++++
media-sound/scream/scream-9999.ebuild | 39 +++++++++++++++++++++++++++++++++++
4 files changed, 94 insertions(+)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
new file mode 100644
index 00000000000..d7e02efe74d
--- /dev/null
+++ b/media-sound/scream/Manifest
@@ -0,0 +1 @@
+DIST scream-3.6.tar.gz 999237 BLAKE2B d199d9658958ac53d973c25421ee3a7f2c1ec9666c34596639942bcbfa5efb60e4aad033adc2fdbd810f676f412357283dc5fda6224752587498f7636ade1662 SHA512 4fd07a808d8f0ead3551061e96fe2f9b54ef6f34d1d615fb6454185fc6ffc67f71afb08a876550363cb3f8c15bbff461936808031e5aba5885626c92880e92ec
diff --git a/media-sound/scream/metadata.xml b/media-sound/scream/metadata.xml
new file mode 100644
index 00000000000..ed60e1c354a
--- /dev/null
+++ b/media-sound/scream/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>alexey+gentoo@asokolov.org</email>
+ <name>Alexey Sokolov</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">duncanthrax/scream</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-sound/scream/scream-3.6.ebuild b/media-sound/scream/scream-3.6.ebuild
new file mode 100644
index 00000000000..1c3ead36e4d
--- /dev/null
+++ b/media-sound/scream/scream-3.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
+HOMEPAGE="https://github.com/duncanthrax/scream"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
+else
+ SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+S="${WORKDIR}/${P}/Receivers/unix"
+
+LICENSE="Ms-PL"
+SLOT="0"
+IUSE="alsa pulseaudio"
+
+RDEPEND="
+ alsa? ( media-libs/alsa-lib )
+ pulseaudio? ( media-sound/pulseaudio )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local mycmakeargs=(
+ -DALSA_ENABLE=$(usex alsa)
+ -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
+ )
+
+ cmake_src_configure
+}
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild
new file mode 100644
index 00000000000..1c3ead36e4d
--- /dev/null
+++ b/media-sound/scream/scream-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
+HOMEPAGE="https://github.com/duncanthrax/scream"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
+else
+ SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+S="${WORKDIR}/${P}/Receivers/unix"
+
+LICENSE="Ms-PL"
+SLOT="0"
+IUSE="alsa pulseaudio"
+
+RDEPEND="
+ alsa? ( media-libs/alsa-lib )
+ pulseaudio? ( media-sound/pulseaudio )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local mycmakeargs=(
+ -DALSA_ENABLE=$(usex alsa)
+ -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
+ )
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2021-07-04 20:32 David Seifert
0 siblings, 0 replies; 10+ messages in thread
From: David Seifert @ 2021-07-04 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 3e2b16e0ca6ad0a80f2e971d6aa11a9eae281124
Author: Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Sun Jul 4 20:31:58 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 4 20:31:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e2b16e0
media-sound/scream: add 3.7
Closes: https://github.com/gentoo/gentoo/pull/21308
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/scream/Manifest | 1 +
media-sound/scream/scream-3.7.ebuild | 41 ++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index d7e02efe74d..56f199b270f 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1 +1,2 @@
DIST scream-3.6.tar.gz 999237 BLAKE2B d199d9658958ac53d973c25421ee3a7f2c1ec9666c34596639942bcbfa5efb60e4aad033adc2fdbd810f676f412357283dc5fda6224752587498f7636ade1662 SHA512 4fd07a808d8f0ead3551061e96fe2f9b54ef6f34d1d615fb6454185fc6ffc67f71afb08a876550363cb3f8c15bbff461936808031e5aba5885626c92880e92ec
+DIST scream-3.7.tar.gz 1021097 BLAKE2B b7918359d71852cc923bcfebd7f01b7ecec12146199b99d50840d02748410cbead6b385ebcbbced20d9d75771a4331220547276a65e86281bbe5072b8af9bbf7 SHA512 5801bed5fff40d17548edb689f37b277bdba7520ab1c0daa4fad79429ade6ad806f90e4197c753f2257bac84ff4f7cc1e2c1209102b60a5bc001b92d42b4ceda
diff --git a/media-sound/scream/scream-3.7.ebuild b/media-sound/scream/scream-3.7.ebuild
new file mode 100644
index 00000000000..019926a23b7
--- /dev/null
+++ b/media-sound/scream/scream-3.7.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
+HOMEPAGE="https://github.com/duncanthrax/scream"
+S="${WORKDIR}/${P}/Receivers/unix"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
+else
+ SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="Ms-PL"
+SLOT="0"
+IUSE="alsa jack pulseaudio"
+
+RDEPEND="
+ alsa? ( media-libs/alsa-lib )
+ jack? (
+ media-libs/soxr
+ virtual/jack
+ )
+ pulseaudio? ( media-sound/pulseaudio )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local mycmakeargs=(
+ -DALSA_ENABLE=$(usex alsa)
+ -DJACK_ENABLE=$(usex jack)
+ -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2021-07-04 20:32 David Seifert
0 siblings, 0 replies; 10+ messages in thread
From: David Seifert @ 2021-07-04 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 760917faa46ea5b40249680cbfd4031760ff0414
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 4 20:32:01 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 4 20:32:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=760917fa
media-sound/scream: sync live ebuild
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/scream/scream-9999.ebuild | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild
index 1c3ead36e4d..019926a23b7 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,8 +7,9 @@ inherit cmake
DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
HOMEPAGE="https://github.com/duncanthrax/scream"
+S="${WORKDIR}/${P}/Receivers/unix"
-if [[ ${PV} == *9999* ]]; then
+if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
else
@@ -16,24 +17,25 @@ else
KEYWORDS="~amd64"
fi
-S="${WORKDIR}/${P}/Receivers/unix"
-
LICENSE="Ms-PL"
SLOT="0"
-IUSE="alsa pulseaudio"
+IUSE="alsa jack pulseaudio"
RDEPEND="
alsa? ( media-libs/alsa-lib )
- pulseaudio? ( media-sound/pulseaudio )
-"
+ jack? (
+ media-libs/soxr
+ virtual/jack
+ )
+ pulseaudio? ( media-sound/pulseaudio )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DALSA_ENABLE=$(usex alsa)
+ -DJACK_ENABLE=$(usex jack)
-DPULSEAUDIO_ENABLE=$(usex pulseaudio)
)
-
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2021-08-07 2:36 Ionen Wolkens
0 siblings, 0 replies; 10+ messages in thread
From: Ionen Wolkens @ 2021-08-07 2:36 UTC (permalink / raw
To: gentoo-commits
commit: f62dfd8b526a9dde2f2c37bd9ebddaa99deaaba6
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Wed Aug 4 08:29:24 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Aug 7 02:34:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62dfd8b
media-sound/scream: drop old
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/21876
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
media-sound/scream/Manifest | 2 --
media-sound/scream/scream-3.6.ebuild | 39 ----------------------------------
media-sound/scream/scream-3.7.ebuild | 41 ------------------------------------
3 files changed, 82 deletions(-)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index 5586ab4b330..7f7de9727a5 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1,3 +1 @@
-DIST scream-3.6.tar.gz 999237 BLAKE2B d199d9658958ac53d973c25421ee3a7f2c1ec9666c34596639942bcbfa5efb60e4aad033adc2fdbd810f676f412357283dc5fda6224752587498f7636ade1662 SHA512 4fd07a808d8f0ead3551061e96fe2f9b54ef6f34d1d615fb6454185fc6ffc67f71afb08a876550363cb3f8c15bbff461936808031e5aba5885626c92880e92ec
-DIST scream-3.7.tar.gz 1021097 BLAKE2B b7918359d71852cc923bcfebd7f01b7ecec12146199b99d50840d02748410cbead6b385ebcbbced20d9d75771a4331220547276a65e86281bbe5072b8af9bbf7 SHA512 5801bed5fff40d17548edb689f37b277bdba7520ab1c0daa4fad79429ade6ad806f90e4197c753f2257bac84ff4f7cc1e2c1209102b60a5bc001b92d42b4ceda
DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983
diff --git a/media-sound/scream/scream-3.6.ebuild b/media-sound/scream/scream-3.6.ebuild
deleted file mode 100644
index 1c3ead36e4d..00000000000
--- a/media-sound/scream/scream-3.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
-HOMEPAGE="https://github.com/duncanthrax/scream"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
-else
- SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-S="${WORKDIR}/${P}/Receivers/unix"
-
-LICENSE="Ms-PL"
-SLOT="0"
-IUSE="alsa pulseaudio"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- pulseaudio? ( media-sound/pulseaudio )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
- local mycmakeargs=(
- -DALSA_ENABLE=$(usex alsa)
- -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
- )
-
- cmake_src_configure
-}
diff --git a/media-sound/scream/scream-3.7.ebuild b/media-sound/scream/scream-3.7.ebuild
deleted file mode 100644
index 019926a23b7..00000000000
--- a/media-sound/scream/scream-3.7.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
-HOMEPAGE="https://github.com/duncanthrax/scream"
-S="${WORKDIR}/${P}/Receivers/unix"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
-else
- SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="Ms-PL"
-SLOT="0"
-IUSE="alsa jack pulseaudio"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- jack? (
- media-libs/soxr
- virtual/jack
- )
- pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
- local mycmakeargs=(
- -DALSA_ENABLE=$(usex alsa)
- -DJACK_ENABLE=$(usex jack)
- -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2021-08-07 2:36 Ionen Wolkens
0 siblings, 0 replies; 10+ messages in thread
From: Ionen Wolkens @ 2021-08-07 2:36 UTC (permalink / raw
To: gentoo-commits
commit: b1b65d51de20920a851e9fcee7d632fdb7f4dfd7
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Wed Aug 4 08:28:51 2021 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sat Aug 7 02:34:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b65d51
media-sound/scream: version 3.8
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
media-sound/scream/Manifest | 1 +
media-sound/scream/metadata.xml | 3 +++
media-sound/scream/{scream-9999.ebuild => scream-3.8.ebuild} | 4 +++-
media-sound/scream/scream-9999.ebuild | 4 +++-
4 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index 56f199b270f..5586ab4b330 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1,2 +1,3 @@
DIST scream-3.6.tar.gz 999237 BLAKE2B d199d9658958ac53d973c25421ee3a7f2c1ec9666c34596639942bcbfa5efb60e4aad033adc2fdbd810f676f412357283dc5fda6224752587498f7636ade1662 SHA512 4fd07a808d8f0ead3551061e96fe2f9b54ef6f34d1d615fb6454185fc6ffc67f71afb08a876550363cb3f8c15bbff461936808031e5aba5885626c92880e92ec
DIST scream-3.7.tar.gz 1021097 BLAKE2B b7918359d71852cc923bcfebd7f01b7ecec12146199b99d50840d02748410cbead6b385ebcbbced20d9d75771a4331220547276a65e86281bbe5072b8af9bbf7 SHA512 5801bed5fff40d17548edb689f37b277bdba7520ab1c0daa4fad79429ade6ad806f90e4197c753f2257bac84ff4f7cc1e2c1209102b60a5bc001b92d42b4ceda
+DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983
diff --git a/media-sound/scream/metadata.xml b/media-sound/scream/metadata.xml
index e7bb11276a7..8121cb0073e 100644
--- a/media-sound/scream/metadata.xml
+++ b/media-sound/scream/metadata.xml
@@ -9,6 +9,9 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <use>
+ <flag name="pcap">Support sniffing packets from network using <pkg>net-libs/libpcap</pkg></flag>
+ </use>
<upstream>
<remote-id type="github">duncanthrax/scream</remote-id>
</upstream>
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-3.8.ebuild
similarity index 90%
copy from media-sound/scream/scream-9999.ebuild
copy to media-sound/scream/scream-3.8.ebuild
index 019926a23b7..82133a82fe2 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-3.8.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="Ms-PL"
SLOT="0"
-IUSE="alsa jack pulseaudio"
+IUSE="alsa jack pcap pulseaudio"
RDEPEND="
alsa? ( media-libs/alsa-lib )
@@ -27,6 +27,7 @@ RDEPEND="
media-libs/soxr
virtual/jack
)
+ pcap? ( net-libs/libpcap )
pulseaudio? ( media-sound/pulseaudio )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
@@ -35,6 +36,7 @@ src_configure() {
local mycmakeargs=(
-DALSA_ENABLE=$(usex alsa)
-DJACK_ENABLE=$(usex jack)
+ -DPCAP_ENABLE=$(usex pcap)
-DPULSEAUDIO_ENABLE=$(usex pulseaudio)
)
cmake_src_configure
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild
index 019926a23b7..82133a82fe2 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-9999.ebuild
@@ -19,7 +19,7 @@ fi
LICENSE="Ms-PL"
SLOT="0"
-IUSE="alsa jack pulseaudio"
+IUSE="alsa jack pcap pulseaudio"
RDEPEND="
alsa? ( media-libs/alsa-lib )
@@ -27,6 +27,7 @@ RDEPEND="
media-libs/soxr
virtual/jack
)
+ pcap? ( net-libs/libpcap )
pulseaudio? ( media-sound/pulseaudio )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
@@ -35,6 +36,7 @@ src_configure() {
local mycmakeargs=(
-DALSA_ENABLE=$(usex alsa)
-DJACK_ENABLE=$(usex jack)
+ -DPCAP_ENABLE=$(usex pcap)
-DPULSEAUDIO_ENABLE=$(usex pulseaudio)
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2022-01-12 8:34 Florian Schmaus
0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-01-12 8:34 UTC (permalink / raw
To: gentoo-commits
commit: 0eac882166d586b353b6598890c85a0bb87af1bb
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Tue Jan 11 19:25:16 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 08:34:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eac8821
media-sound/scream: version 3.9
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
media-sound/scream/Manifest | 1 +
media-sound/scream/{scream-9999.ebuild => scream-3.9.ebuild} | 4 ++--
media-sound/scream/scream-9999.ebuild | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index 7f7de9727a58..b3e52d7a1dfc 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1 +1,2 @@
DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983
+DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-3.9.ebuild
similarity index 95%
copy from media-sound/scream/scream-9999.ebuild
copy to media-sound/scream/scream-3.9.ebuild
index 82133a82fe29..8c7ed7611cf1 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-3.9.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit cmake
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild
index 82133a82fe29..8c7ed7611cf1 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit cmake
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2022-01-12 8:34 Florian Schmaus
0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-01-12 8:34 UTC (permalink / raw
To: gentoo-commits
commit: 54a23786de97567ce2c3c32c5989fb96d65c7026
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Tue Jan 11 19:28:02 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 08:34:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a23786
media-sound/scream: drop old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/23743
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
media-sound/scream/Manifest | 1 -
media-sound/scream/scream-3.8.ebuild | 43 ------------------------------------
2 files changed, 44 deletions(-)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index b3e52d7a1dfc..99e80ea18113 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1,2 +1 @@
-DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983
DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede
diff --git a/media-sound/scream/scream-3.8.ebuild b/media-sound/scream/scream-3.8.ebuild
deleted file mode 100644
index 82133a82fe29..000000000000
--- a/media-sound/scream/scream-3.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
-HOMEPAGE="https://github.com/duncanthrax/scream"
-S="${WORKDIR}/${P}/Receivers/unix"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
-else
- SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="Ms-PL"
-SLOT="0"
-IUSE="alsa jack pcap pulseaudio"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- jack? (
- media-libs/soxr
- virtual/jack
- )
- pcap? ( net-libs/libpcap )
- pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
- local mycmakeargs=(
- -DALSA_ENABLE=$(usex alsa)
- -DJACK_ENABLE=$(usex jack)
- -DPCAP_ENABLE=$(usex pcap)
- -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2022-11-04 17:13 Matthew Smith
0 siblings, 0 replies; 10+ messages in thread
From: Matthew Smith @ 2022-11-04 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 1ec2683c951a9905c8a139410dc2da9dd1548b4e
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Fri Oct 28 23:51:51 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Fri Nov 4 17:12:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec2683c
media-sound/scream: add 4.0
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
media-sound/scream/Manifest | 1 +
media-sound/scream/scream-4.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index 99e80ea18113..a8be72170876 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1 +1,2 @@
DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede
+DIST scream-4.0.tar.gz 1114738 BLAKE2B 8e67033faea465d6d64427c9c7ff40d38ad88892cbcb9d3fa3d09998161fef2fce998a6d11e5c416f8b5652701f6c9dcf86283e44e084e7fa005aaf8275b49c6 SHA512 70b41f946e5f3dc3ccdceef752a719ba59841a850a9b347e8d33dc08dd5c3a4ba3d2fe5ae5004b9b621372f5d3faf52b34dc02fdaaa5be6f89991084425f682a
diff --git a/media-sound/scream/scream-4.0.ebuild b/media-sound/scream/scream-4.0.ebuild
new file mode 100644
index 000000000000..8c7ed7611cf1
--- /dev/null
+++ b/media-sound/scream/scream-4.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
+HOMEPAGE="https://github.com/duncanthrax/scream"
+S="${WORKDIR}/${P}/Receivers/unix"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
+else
+ SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="Ms-PL"
+SLOT="0"
+IUSE="alsa jack pcap pulseaudio"
+
+RDEPEND="
+ alsa? ( media-libs/alsa-lib )
+ jack? (
+ media-libs/soxr
+ virtual/jack
+ )
+ pcap? ( net-libs/libpcap )
+ pulseaudio? ( media-sound/pulseaudio )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local mycmakeargs=(
+ -DALSA_ENABLE=$(usex alsa)
+ -DJACK_ENABLE=$(usex jack)
+ -DPCAP_ENABLE=$(usex pcap)
+ -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2022-11-04 17:13 Matthew Smith
0 siblings, 0 replies; 10+ messages in thread
From: Matthew Smith @ 2022-11-04 17:13 UTC (permalink / raw
To: gentoo-commits
commit: d1025370acc24d52eb051dd9ad32a842ab104e9f
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Fri Oct 28 23:52:08 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Fri Nov 4 17:12:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1025370
media-sound/scream: drop 3.9
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/28016
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
media-sound/scream/Manifest | 1 -
media-sound/scream/scream-3.9.ebuild | 43 ------------------------------------
2 files changed, 44 deletions(-)
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
index a8be72170876..ba566f83ea9c 100644
--- a/media-sound/scream/Manifest
+++ b/media-sound/scream/Manifest
@@ -1,2 +1 @@
-DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede
DIST scream-4.0.tar.gz 1114738 BLAKE2B 8e67033faea465d6d64427c9c7ff40d38ad88892cbcb9d3fa3d09998161fef2fce998a6d11e5c416f8b5652701f6c9dcf86283e44e084e7fa005aaf8275b49c6 SHA512 70b41f946e5f3dc3ccdceef752a719ba59841a850a9b347e8d33dc08dd5c3a4ba3d2fe5ae5004b9b621372f5d3faf52b34dc02fdaaa5be6f89991084425f682a
diff --git a/media-sound/scream/scream-3.9.ebuild b/media-sound/scream/scream-3.9.ebuild
deleted file mode 100644
index 8c7ed7611cf1..000000000000
--- a/media-sound/scream/scream-3.9.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
-HOMEPAGE="https://github.com/duncanthrax/scream"
-S="${WORKDIR}/${P}/Receivers/unix"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
-else
- SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="Ms-PL"
-SLOT="0"
-IUSE="alsa jack pcap pulseaudio"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- jack? (
- media-libs/soxr
- virtual/jack
- )
- pcap? ( net-libs/libpcap )
- pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
- local mycmakeargs=(
- -DALSA_ENABLE=$(usex alsa)
- -DJACK_ENABLE=$(usex jack)
- -DPCAP_ENABLE=$(usex pcap)
- -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
@ 2023-06-10 22:56 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-06-10 22:56 UTC (permalink / raw
To: gentoo-commits
commit: 61b10eac413d91748dd025fcbba05cb31fecc677
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 09:28:31 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 22:56:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61b10eac
media-sound/scream: Switch IUSE=pulseaudio to media-libs/libpulse
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-sound/scream/scream-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild
index 8c7ed7611cf1..75ab1107c4f1 100644
--- a/media-sound/scream/scream-9999.ebuild
+++ b/media-sound/scream/scream-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -28,7 +28,7 @@ RDEPEND="
virtual/jack
)
pcap? ( net-libs/libpcap )
- pulseaudio? ( media-sound/pulseaudio )"
+ pulseaudio? ( media-libs/libpulse )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-06-10 22:56 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-07 2:36 [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/ Ionen Wolkens
-- strict thread matches above, loose matches on Subject: below --
2023-06-10 22:56 Andreas Sturmlechner
2022-11-04 17:13 Matthew Smith
2022-11-04 17:13 Matthew Smith
2022-01-12 8:34 Florian Schmaus
2022-01-12 8:34 Florian Schmaus
2021-08-07 2:36 Ionen Wolkens
2021-07-04 20:32 David Seifert
2021-07-04 20:32 David Seifert
2020-12-15 15:38 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox