add Emby Theater
This commit is contained in:
3
app-admin/equo/Manifest
Normal file
3
app-admin/equo/Manifest
Normal file
@@ -0,0 +1,3 @@
|
||||
AUX equo-324-py3.patch 862 BLAKE2B 5182947a5746241ca1c72425ba5c31912f08072718c10e06fa960ae9098924f0386d80a6b8dcb7e2eb5a614dfe0f09401c84ec0013d3cc730f09f83f74a9cd26 SHA512 542f2578322cb3138ddd270dcba8e9e83c52301e3398d2627f7cbf3561aa56a78c7b3ac6e1d4e5d6c730e95f5d9efe3a82a4b3f08a996beeef6f131d1cb34c7f
|
||||
EBUILD equo-325-r1.ebuild 1086 BLAKE2B 91067b603c979a86ed0dd972753a920c0c35e80f4c8d39cc6aa645a354df375ac188c46f725a558ed34221f48912bc578b7c477fc5915a64405625213aa9892c SHA512 cd6d02984ca3d2a2e417158018851f2b77c976bccb14577fba1e9dab9bfbeb2236e46acecce399c8e95e60b641a1335c3e36dfc2d083c0281bfdb30d5c4aae84
|
||||
MISC metadata.xml 579 BLAKE2B ffcf49b0dcb474066e2f49fd1ff3e7bb85f566a6d5c2455d8c6c3b0e60cd75f416d9eeea920e7d6b33f07ca93a92e170812a09f97405624c0c977daccc1f0fdd SHA512 1e6ef21cd1157018b0c7790d8f08b56495f92c2eb8db7dbb715e61e8cef35cf94d6a241e1f75423cbef0a80274cb0c6184c574f4231bf6c847e51898ce1d465c
|
||||
44
app-admin/equo/equo-325-r1.ebuild
Normal file
44
app-admin/equo/equo-325-r1.ebuild
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2020 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_6 python3_7 python3_8 python3_9 )
|
||||
|
||||
inherit eutils python-r1 bash-completion-r1 git-r3
|
||||
|
||||
DESCRIPTION="Entropy Package Manager text-based client"
|
||||
HOMEPAGE="http://www.sabayon.org"
|
||||
LICENSE="GPL-2"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE=""
|
||||
|
||||
EGIT_REPO_URI=https://github.com/Sabayon/entropy.git
|
||||
EGIT_COMMIT=${PV}
|
||||
|
||||
S="${WORKDIR}/${P}/client"
|
||||
MISC_DIR="${WORKDIR}/${P}/misc"
|
||||
|
||||
COMMON_DEPEND="${PYTHON_DEPS}
|
||||
~sys-apps/entropy-${PV}[${PYTHON_USEDEP}]"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
dev-util/intltool
|
||||
app-text/asciidoc"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
sys-apps/file[${PYTHON_USEDEP},python]"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
PATCHES=()
|
||||
|
||||
src_install() {
|
||||
installation() {
|
||||
emake DESTDIR="${D}" LIBDIR="usr/lib" PYTHON_SITEDIR="$(python_get_sitedir)" install
|
||||
python_optimize
|
||||
}
|
||||
python_foreach_impl installation
|
||||
python_replicate_script "${ED}usr/bin/equo" "${ED}usr/bin/kernel-switcher"
|
||||
newbashcomp "${MISC_DIR}/equo-completion.bash" equo
|
||||
}
|
||||
25
app-admin/equo/files/equo-324-py3.patch
Normal file
25
app-admin/equo/files/equo-324-py3.patch
Normal file
@@ -0,0 +1,25 @@
|
||||
From 09cb7b34961cf7a83d76115156844dac444d2c78 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?S=C5=82awomir=20Nizio?= <slawomir.nizio@sabayon.org>
|
||||
Date: Fri, 13 Mar 2020 20:18:04 +0100
|
||||
Subject: [PATCH] [solo.commands.query] fix "equo query orphans" with Python 3
|
||||
|
||||
---
|
||||
client/solo/commands/query.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git client/solo/commands/query.py client/solo/commands/query.py
|
||||
index 5a371e513..3c7b5e05d 100644
|
||||
--- client/solo/commands/query.py
|
||||
+++ client/solo/commands/query.py
|
||||
@@ -1069,7 +1069,7 @@ Repository query tools.
|
||||
|
||||
system_dirs_mask_regexp = []
|
||||
for mask in settings['system_dirs_mask']:
|
||||
- reg_mask = re.compile(mask)
|
||||
+ reg_mask = re.compile(const_convert_to_rawstring(mask))
|
||||
system_dirs_mask_regexp.append(reg_mask)
|
||||
|
||||
file_data = set()
|
||||
--
|
||||
2.24.1
|
||||
|
||||
20
app-admin/equo/metadata.xml
Normal file
20
app-admin/equo/metadata.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>mudler@gentoo.org</email>
|
||||
<name>Ettore Di Giacinto</name>
|
||||
<description>Assign bugs to him</description>
|
||||
</maintainer>
|
||||
<maintainer type="person">
|
||||
<email>skullbocks@sabayon.org</email>
|
||||
<name>Francesco Ferretti</name>
|
||||
</maintainer>
|
||||
<maintainer type="person">
|
||||
<email>lxnay@gentoo.org</email>
|
||||
<name>Fabio Erculiani</name>
|
||||
<description>CC on bugs</description>
|
||||
</maintainer>
|
||||
<use>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user