media-sound/eartag: new package, add 0.3.1, 9999
This commit is contained in:
parent
c74208d8a5
commit
69716de53a
4
media-sound/eartag/Manifest
Normal file
4
media-sound/eartag/Manifest
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
DIST eartag-0.3.1.tar.gz 590855 BLAKE2B 0f41cdc86dff145c84951f4de1b954a205cfa48a41b3ee29c93e8840181c1554db633334b94392aaabad0020a664b8088f9a74e405634a4fa964cd7fbd72f4b9 SHA512 8b09b99a9edda7eabf878e982d443742452c9b40a77021b4f1cbae21a914b1d537a8cca164e847ad39b843aa48ba91a9197e6654f6e01a87296ebcfadc4e0931
|
||||||
|
EBUILD eartag-0.3.1.ebuild 921 BLAKE2B f6faa1b8c2109310c29baae46d7a55db1a4c62cf9ee600c04db9fa7a9ee9a23cf8e5a062514d904c43e498a16d303c6b342fbfea1e143ea1aaf0d054bce09e75 SHA512 3bb71a7d5256a0080460e3f8c66c90dbe0bb90784593b07a644e8657b844aaee2df5427c557820bc023e86e7e0fd834222783efe2eb70bad9ec6c27b9c0baf27
|
||||||
|
EBUILD eartag-9999.ebuild 921 BLAKE2B f6faa1b8c2109310c29baae46d7a55db1a4c62cf9ee600c04db9fa7a9ee9a23cf8e5a062514d904c43e498a16d303c6b342fbfea1e143ea1aaf0d054bce09e75 SHA512 3bb71a7d5256a0080460e3f8c66c90dbe0bb90784593b07a644e8657b844aaee2df5427c557820bc023e86e7e0fd834222783efe2eb70bad9ec6c27b9c0baf27
|
||||||
|
MISC metadata.xml 321 BLAKE2B f0fe1718e334666af162f96317c530acc76bd5a7d4c79fcd0726704bf5d25fbe831e9e3b580ec57d67160bdac7dae41e1ead783a7730b02ca5f2260d044a1f18 SHA512 cc609b0dc8dcb83b11a4247e38783f75714506b0a0723a299d184289aca14a16e2e753e38e5e91dd4faa04843c5c4871ff9961997df444de78b9ea91f4f43b31
|
42
media-sound/eartag/eartag-0.3.1.ebuild
Normal file
42
media-sound/eartag/eartag-0.3.1.ebuild
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# Copyright 1999-2023 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{8..11} )
|
||||||
|
inherit python-single-r1 meson xdg
|
||||||
|
|
||||||
|
if [[ ${PV} == 9999 ]]; then
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://github.com/knuxify/eartag.git"
|
||||||
|
else
|
||||||
|
SRC_URI="https://github.com/knuxify/eartag/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DESCRIPTION="A simple music tag editor."
|
||||||
|
HOMEPAGE="https://github.com/knuxify/eartag"
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
>=gui-libs/gtk-4.8.0:4
|
||||||
|
>=gui-libs/libadwaita-1.2.0
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
$(python_gen_cond_dep '
|
||||||
|
dev-python/pillow[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pygobject[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-magic[${PYTHON_USEDEP}]
|
||||||
|
media-libs/mutagen[${PYTHON_USEDEP}]
|
||||||
|
')
|
||||||
|
"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_install
|
||||||
|
python_fix_shebang "${D}/usr/bin/eartag"
|
||||||
|
}
|
42
media-sound/eartag/eartag-9999.ebuild
Normal file
42
media-sound/eartag/eartag-9999.ebuild
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# Copyright 1999-2023 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{8..11} )
|
||||||
|
inherit python-single-r1 meson xdg
|
||||||
|
|
||||||
|
if [[ ${PV} == 9999 ]]; then
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://github.com/knuxify/eartag.git"
|
||||||
|
else
|
||||||
|
SRC_URI="https://github.com/knuxify/eartag/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DESCRIPTION="A simple music tag editor."
|
||||||
|
HOMEPAGE="https://github.com/knuxify/eartag"
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
>=gui-libs/gtk-4.8.0:4
|
||||||
|
>=gui-libs/libadwaita-1.2.0
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
$(python_gen_cond_dep '
|
||||||
|
dev-python/pillow[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pygobject[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-magic[${PYTHON_USEDEP}]
|
||||||
|
media-libs/mutagen[${PYTHON_USEDEP}]
|
||||||
|
')
|
||||||
|
"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
meson_install
|
||||||
|
python_fix_shebang "${D}/usr/bin/eartag"
|
||||||
|
}
|
11
media-sound/eartag/metadata.xml
Normal file
11
media-sound/eartag/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>flewkey@2a03.party</email>
|
||||||
|
<name>Ryan Fox</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">knuxify/eartag</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
Loading…
x
Reference in New Issue
Block a user