mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-15 18:13:10 -04:00
Merge updates from master
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
DIST visual-studio-code-bin-1.54.2-amd64.tar.gz 98888733 BLAKE2B a02fe21cbae80d479cebab17a3718b0f8980e5caab6abf6b33c44770a580a9cd4b384f21db367c91d3150ab4e4f299d404b8dc940bf721e773d39c4ba282f822 SHA512 80b9bd88524286715dccdd6afe0508247316a3fedbb35cd71a71ee4c3dff635eafc953879d39b3d9209030aa28a6dcdb80fe33228c22df2829e9997e979c9ab9
|
||||
DIST visual-studio-code-bin-1.54.2-arm.tar.gz 90226066 BLAKE2B fa7e076d6ab1168afbe0dad1cfeef752c8787f75e62a6d9140887fd9de7d8e728e8743d5473265a26747118016ad9c2f944242699707a362d4621332eb89e053 SHA512 0ed5c284f7d56ad09be76b7f53b3e8f11d9a74a0aa395b3cc74f4eaae73f3181bd532ccbeeee40bfbf913f516adf6a599ed4f9fe3de65820677e958fe4b6cad4
|
||||
DIST visual-studio-code-bin-1.54.2-arm64.tar.gz 103407705 BLAKE2B 0af7c16e0d184b3f836e9b5f4331c7227aebcec0e22ef1733899485faf343df0d3af5a3a333a88c95a0e0e57b611331aae9d9dcba88adf758880baae41fe04b2 SHA512 aca940cb68e664a7c2a6bacfac5f01c748fbaf8ed15f3c633c2f6bc12e1d42524235c7dc153f60e656017229248a7be03c2b3dbe32b69816e89071eb4876fce9
|
||||
DIST visual-studio-code-bin-1.55.0-amd64.tar.gz 97525604 BLAKE2B 732b7f0986ee8855cc84eeca3e6a8ead35c38454755146876f670dc5deafb334a4ab2862caa8602d3821ea5011d26f4d8a08d3152814a567b635d604ce149b63 SHA512 f4c159fbee0a22727326fbb692f0b6a6d409e8a15c2472dfe2e6467e440108089cad9b1ceb48aa25c85de6ee2bfe24879862b50c7b1eee810e3c5ef50f972ba3
|
||||
DIST visual-studio-code-bin-1.55.0-arm.tar.gz 88836120 BLAKE2B 67e988161b42a57cb67ab03181415c0f65bf3e1e6c036550f7fa15f033c3944357476d4b4bb4473c07ff9820c667a73e5451f280848d794ab9ac15209c67510f SHA512 177b8697a1e1f58aaa28987bf2728eab0d52858451d84b031d44ea9678e38c87a3d5b12837a829303a9f7e8d76c2b71cc48b32a18cf0c04739e036c9b6cff80d
|
||||
DIST visual-studio-code-bin-1.55.0-arm64.tar.gz 102041107 BLAKE2B d43a7bc4018ff05a7dc2efdb2e4ba1dd4865897726435a20ef9f12831b0e378918eb7774ac3dafaa474f18e485a66feb572842ec9196f7231f1be5671f1bafdf SHA512 1673c9bc4ea3619d62d5c503366babbd7f3c6a5ce7d0db42c26bd8d428ee961bb669177eec8a29748791023e992504a87bd2db46fbfe93015ecfcf99aae6dcef
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit desktop eutils pax-utils xdg
|
||||
|
||||
DESCRIPTION="Multiplatform Visual Studio Code from Microsoft"
|
||||
HOMEPAGE="https://code.visualstudio.com"
|
||||
SRC_URI="
|
||||
amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> ${P}-amd64.tar.gz )
|
||||
arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> ${P}-arm.tar.gz )
|
||||
arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable -> ${P}-arm64.tar.gz )"
|
||||
|
||||
RESTRICT="mirror strip bindist"
|
||||
|
||||
LICENSE="MIT Microsoft-VSCode"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~arm ~arm64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
app-accessibility/at-spi2-atk
|
||||
app-crypt/libsecret[crypt]
|
||||
dev-libs/nss
|
||||
media-libs/libpng:0/16
|
||||
x11-libs/cairo
|
||||
x11-libs/gtk+:3
|
||||
x11-libs/libnotify
|
||||
x11-libs/libXScrnSaver
|
||||
x11-libs/libXtst
|
||||
x11-libs/pango"
|
||||
|
||||
QA_PRESTRIPPED="*"
|
||||
|
||||
QA_PREBUILT="
|
||||
opt/${PN}/code
|
||||
opt/${PN}/libEGL.so
|
||||
opt/${PN}/libffmpeg.so
|
||||
opt/${PN}/libGLESv2.so
|
||||
opt/${PN}/libvk_swiftshader.so
|
||||
opt/${PN}/libvulkan.so
|
||||
opt/${PN}/swiftshader/libEGL.so
|
||||
opt/${PN}/swiftshader/libGLESv2.so"
|
||||
|
||||
pkg_setup() {
|
||||
if use amd64; then
|
||||
S="${WORKDIR}/VSCode-linux-x64"
|
||||
elif use arm; then
|
||||
S="${WORKDIR}/VSCode-linux-armhf"
|
||||
elif use arm64; then
|
||||
S="${WORKDIR}/VSCode-linux-arm64"
|
||||
else
|
||||
die "Visual Studio Code only supports amd64, arm and arm64"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
pax-mark m code
|
||||
insinto "/opt/${PN}"
|
||||
doins -r *
|
||||
fperms +x /opt/${PN}/{,bin/}code
|
||||
fperms +x /opt/${PN}/chrome-sandbox
|
||||
fperms -R +x /opt/${PN}/resources/app/out/vs/base/node
|
||||
fperms +x /opt/${PN}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg
|
||||
dosym "../../opt/${PN}/bin/code" "usr/bin/code"
|
||||
domenu "${FILESDIR}/code.desktop"
|
||||
domenu "${FILESDIR}/code-url-handler.desktop"
|
||||
dodoc "resources/app/LICENSE.rtf"
|
||||
newicon "resources/app/resources/linux/code.png" "visual-studio-code.png"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
elog "You may want to install some additional utils, check in:"
|
||||
elog "https://code.visualstudio.com/Docs/setup#_additional-tools"
|
||||
}
|
||||
1
app-emacs/flycheck/Manifest
Normal file
1
app-emacs/flycheck/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST flycheck-31.tar.gz 1056558 BLAKE2B 16a63d15748d1a9ca89dd5af80e2fb14923e33e80a05393f6c2c3b353ef4cdf32b69493ca6cc152a07ba4ac58ff627a81e61d13190b9926b3a85a1b4780071af SHA512 e7b3707f38a913d483109cf0e581d41053363e6fc0b849805d13076cc30eca19ec875c44590c3ffb383b73670c6763582f54a2df5502f287ec04b80a542182ec
|
||||
1
app-emacs/flycheck/files/50flycheck-gentoo.el
Normal file
1
app-emacs/flycheck/files/50flycheck-gentoo.el
Normal file
@@ -0,0 +1 @@
|
||||
(add-to-list 'load-path "@SITELISP@")
|
||||
20
app-emacs/flycheck/flycheck-31.ebuild
Normal file
20
app-emacs/flycheck/flycheck-31.ebuild
Normal file
@@ -0,0 +1,20 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit elisp
|
||||
|
||||
DESCRIPTION="On the fly syntax checking for GNU Emacs"
|
||||
HOMEPAGE="https://www.flycheck.org/en/latest/"
|
||||
SRC_URI="https://github.com/flycheck/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
BDEPEND="app-emacs/dash"
|
||||
RDEPEND="${BDEPEND}"
|
||||
|
||||
SITEFILE="50${PN}-gentoo.el"
|
||||
DOCS="README.md"
|
||||
8
app-emacs/flycheck/metadata.xml
Normal file
8
app-emacs/flycheck/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>brian@kubisiak.com</email>
|
||||
<name>Brian Kubisiak</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST fet.sh-1.7.tar.gz 145651 BLAKE2B cddf87054c417fa776e77a30a56795ee174c747940c9344d3a04aaaffe98d7bc1f7c73ea03cfa4d4f831cab79a52baf83f5a05894365bdd9a7cd20347149fca9 SHA512 1269e07e38911d14d7eb2434bc8478507abd0103414ffbe8c7b99b477b5d68089d8612fabc96cdda69f895cba34bf50af6948ca121e1e9b4793051dba3add864
|
||||
DIST fet.sh-1.8.tar.gz 145762 BLAKE2B 205d2c1f815ec5d42457c72bd65004a9a8bb29c29c9b85d23c64e46914e9643c2605f8dfb49faa67da2f1d7784fdd1b21dbe17864e86ee21877ed8875daf16df SHA512 3e2af006e9ca27022f5b6cee8ba7ec1847f18ff7c2f99715ef007492b7fec08dadb46a45eb30d1f7a425fd49740f77ed2d6490a439d7758ffd1862e7ac60b840
|
||||
DIST fet.sh-1.9.tar.gz 145980 BLAKE2B ea06aaf51f2e809fd9faa194313b9c970ca4b00f44cb7b51baf57206bc84d86ae505055862f02e564a352656aa072fb045336f431bb4931baaf4696f5af1b80e SHA512 1a3d9c535474b950121ef938b698b6a9197a743bc89ce0d1fac13f95ac28620605a64701b009a32c1127de34d5dabaa2bda07e5689197e26ebf493bed25837a8
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST asciimatics-1.11.0.tar.gz 1544889 BLAKE2B 98492a3bef25331daf085bfd93e17a244cd70939d06ead1c4e6dfa546411e268b7c278b7e05046c42d59faf35d85c6c584663aac3566ef82e682740f9fa67fa4 SHA512 7703e29955c984cb091a1cfda01abf31ad108da0488d0dd1c941593689cc4ebb899565471d5d4396b910a9770e640e0cba835c4dac203bd1c4a853ce7dcaacbc
|
||||
DIST asciimatics-1.12.0.tar.gz 1569408 BLAKE2B ee8071e3f49c05adfe70fb41a91cd422ed92aac51fb8c7f05b22e62f543d5a6a9a382fe4bfc7e9ae9220264303879c722e467d74a3134df66a3f762eea63af9e SHA512 9c7e18079b5560256bc93c39d41852878b2e57ccadb515563ff5eaea0234fae77e5494e4bd6ef3ac5ab386cd49cc96f6c56336c8f9fa4321592d23eb3c857812
|
||||
DIST asciimatics-1.13.0.tar.gz 2521962 BLAKE2B 35b564f7b0a33c658b93ad8bdad5bfb53c12da8dbe3347c1651fe3e1886c1721282455c7a668cbc85a12cd34944cc4d701d86862a622efb384739122ad983ba5 SHA512 b3943765c151b030e41bb08f3e85891449fb51533b18fae792289274f53b8548d2c7507533a56eb45797c9f44ae4963c0c247c37d6f375535900a4204238a95f
|
||||
|
||||
36
dev-python/asciimatics/asciimatics-1.13.0.ebuild
Normal file
36
dev-python/asciimatics/asciimatics-1.13.0.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_7 )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Package for curses-like operations, text UIs and ASCII art animations"
|
||||
HOMEPAGE="https://pypi.org/project/asciimatics/ https://github.com/peterbrittain/asciimatics"
|
||||
|
||||
if [[ "${PV}" == 9999 ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/peterbrittain/asciimatics.git"
|
||||
else
|
||||
SRC_URI="https://github.com/peterbrittain/asciimatics/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
|
||||
RESTRICT="mirror test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/pyfiglet-0.7.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pillow-2.7.0[${PYTHON_USEDEP}]
|
||||
dev-python/wcwidth[${PYTHON_USEDEP}]
|
||||
dev-python/future[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i -e "s/use_scm_version={/\0'fallback_version': '${PV}',/" setup.py
|
||||
}
|
||||
1
dev-python/portio/Manifest
Normal file
1
dev-python/portio/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST portio-0.5.tar.gz 134136 BLAKE2B a330caad064beb05ec7bb313f1f381c3fd5000a7b7d7f1f90ebe4a1a1767cbfe0e9441c368f053121322a35f342c69c6b4232be1773efd23f90bbc071d6858a9 SHA512 363a81d2c98cd0c0113a9d37082b7f017517239a02dbb0077922f3a32b918a92a7d9526cdf7a31d1ab80883ad4746bc86b49ea92eae7cc0d20f703a5f8eda777
|
||||
13
dev-python/portio/metadata.xml
Normal file
13
dev-python/portio/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<longdescription>PortIO is a Python wrapper for the port I/O macros like outb, inb, etc. provided by the C library on Linux x86 platforms. Both python 2 and 3 are supported. This module is useful when a general pourpose port I/O at the low level is needed. Programmers that want to perform I/O on the parallel port at an higher level, will be better satisfied by the pyParallel module. A similar module Ioport has inspired the writing of PortIO.</longdescription>
|
||||
<upstream>
|
||||
<changelog>http://portio.inrim.it/#changelog</changelog>
|
||||
<maintainer>
|
||||
<name>Fabrizio Pollastri</name>
|
||||
<email>f.pollastri@inrim.it</email>
|
||||
</maintainer>
|
||||
<remote-id type="pypi">portio</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
20
dev-python/portio/portio-0.5.ebuild
Normal file
20
dev-python/portio/portio-0.5.ebuild
Normal file
@@ -0,0 +1,20 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
DISTUTILS_USE_SETUPTOOLS=no
|
||||
PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python low level port I/O for Linux x86"
|
||||
HOMEPAGE="
|
||||
http://portio.inrim.it
|
||||
https://pypi.org/project/portio
|
||||
"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DOCS=( index.rst )
|
||||
1
dev-python/recordclass/Manifest
Normal file
1
dev-python/recordclass/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST recordclass-0.14.3.tar.gz 156962 BLAKE2B 31bbe62fd059b9ba594d824d3e719ca4a03d72d3fdb18f8c94634d0d2a5350e3132bc1d3e20900a018e769c3dd377c53b12728dbd8daf23faf82d93663511f69 SHA512 9764b49e4cd24395a545d4845dab1522f409b48f6c0cd718499ad92a0b655d3ceef0361286dab91c7e7f05c5306e9db1f1a130b12f923dcf66c704ecdeeb612a
|
||||
7
dev-python/recordclass/metadata.xml
Normal file
7
dev-python/recordclass/metadata.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="bitbucket">intellimath/recordclass</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
dev-python/recordclass/recordclass-0.14.3.ebuild
Normal file
33
dev-python/recordclass/recordclass-0.14.3.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Mutable variants of tupe and collections.namedtuple"
|
||||
HOMEPAGE="https://pypi.org/project/recordclass/"
|
||||
if [[ ${PV} == "9999" ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://bitbucket.org/intellimath/recordclass.git"
|
||||
else
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
# lib/recordclass/mutabletuple.c:727: PyObject *mutabletuple_copy(PyMutableTupleObject *): Assertion `PyTuple_Check(ob)' failed.
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="dev-python/cython"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
python_test() {
|
||||
[[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context"
|
||||
${EPYTHON} ./test_all.py
|
||||
}
|
||||
30
dev-python/recordclass/recordclass-9999.ebuild
Normal file
30
dev-python/recordclass/recordclass-9999.ebuild
Normal file
@@ -0,0 +1,30 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Mutable variants of tupe and collections.namedtuple"
|
||||
HOMEPAGE="https://pypi.org/project/recordclass/"
|
||||
if [[ ${PV} == "9999" ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://bitbucket.org/intellimath/recordclass.git"
|
||||
else
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-python/cython"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
python_test() {
|
||||
[[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context"
|
||||
${EPYTHON} ./test_all.py
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A side bar for showing widgets for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
|
||||
@@ -31,21 +31,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' app/"${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' app/*.desktop || die
|
||||
}
|
||||
|
||||
43
gui-apps/coreapps-meta/coreapps-meta-9999.ebuild
Normal file
43
gui-apps/coreapps-meta/coreapps-meta-9999.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Meta package for coreapps"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="metapackage"
|
||||
SLOT="0"
|
||||
PROPERTIES="live"
|
||||
IUSE="
|
||||
location
|
||||
pulseaudio
|
||||
udisks
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
~gui-apps/coreaction-${PV}
|
||||
~gui-apps/coreapps-meta-${PV}
|
||||
~gui-apps/corearchiver-${PV}
|
||||
~gui-apps/corefm-${PV}
|
||||
~gui-apps/coregarage-${PV}
|
||||
~gui-apps/corehunt-${PV}
|
||||
~gui-apps/coreimage-${PV}
|
||||
~gui-apps/coreinfo-${PV}
|
||||
~gui-apps/corekeyboard-${PV}
|
||||
~gui-apps/corepad-${PV}
|
||||
~gui-apps/corepaint-${PV}
|
||||
~gui-apps/corepdf-${PV}
|
||||
~gui-apps/corepins-${PV}
|
||||
~gui-apps/corerenamer-${PV}
|
||||
~gui-apps/coreshot-${PV}
|
||||
~gui-apps/corestats-${PV}
|
||||
~gui-apps/corestuff-${PV}
|
||||
~gui-apps/coreterminal-${PV}
|
||||
~gui-apps/coretime-${PV}
|
||||
~gui-apps/coretoppings-${PV}[location?,pulseaudio?]
|
||||
~gui-apps/coreuniverse-${PV}
|
||||
~gui-libs/libcprime-${PV}
|
||||
~gui-libs/libcsys-${PV}[udisks?]
|
||||
"
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="Archiver for C Suite, to create and extract archives"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A lightweight file-manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A settings manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
|
||||
@@ -34,21 +34,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A file finder utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="An image viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
|
||||
@@ -34,21 +34,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A file information tool for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
|
||||
@@ -35,21 +35,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A x11 based virtual keyboard for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A document editor for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A paint app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
|
||||
@@ -32,21 +32,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A PDF viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A bookmarking app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepins"
|
||||
@@ -32,22 +32,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/C Suite/X-CSuite/' *.desktop || die
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A batch file renamer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
|
||||
@@ -32,21 +32,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A screen capture utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreshot"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A system resource viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
|
||||
@@ -35,21 +35,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="An activity viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A terminal emulator for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreterminal"
|
||||
@@ -34,21 +34,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="A time related task manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime"
|
||||
@@ -33,21 +33,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
41
gui-apps/coretoppings/coretoppings-9999.ebuild
Normal file
41
gui-apps/coretoppings/coretoppings-9999.ebuild
Normal file
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="Additional features, plugins, widgets etc for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretoppings"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="test"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="location pulseaudio"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtbluetooth:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
location? ( dev-qt/qtlocation:5 )
|
||||
pulseaudio? ( media-sound/pulseaudio )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/C Suite/X-CSuite/' shareit/shareit.desktop || die
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit qmake-utils xdg
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="Shows information about apps for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreuniverse"
|
||||
@@ -32,21 +32,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cmake_src_prepare
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
sed -i 's/CSuite/X-CSuite/' *.desktop || die
|
||||
}
|
||||
|
||||
@@ -21,6 +21,7 @@ fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="udisks"
|
||||
|
||||
DEPEND="
|
||||
>=dev-qt/qtcore-${QTMIN}:5
|
||||
@@ -29,5 +30,7 @@ DEPEND="
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
sys-fs/udisks:2
|
||||
udisks? (
|
||||
sys-fs/udisks:2
|
||||
)
|
||||
"
|
||||
|
||||
1
media-gfx/bonzomatic/Manifest
Normal file
1
media-gfx/bonzomatic/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST bonzomatic-2021.03.07.tar.gz 2721345 BLAKE2B ef943aea11bbeab18b21a95a589caceb2694512a17bbf7ec83019243b30ce2aa1c91a1eff688bfc277885bbf6c1dccad4d1e4ad866800c9020edd83093e3a7d8 SHA512 d462fc7c44a62a00dfe4af7fa2a16718b767317a9d3de5bf4599fc83f19a665575d041c88c0de90c036a0497ec8576700189bc813a057a97883d509f3b3fd4b6
|
||||
46
media-gfx/bonzomatic/bonzomatic-2021.03.07.ebuild
Normal file
46
media-gfx/bonzomatic/bonzomatic-2021.03.07.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="Live shader coding tool and Shader Showdown workhorse"
|
||||
HOMEPAGE="https://github.com/Gargaj/Bonzomatic"
|
||||
if [[ "${PV}" == "9999" ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/Gargaj/Bonzomatic"
|
||||
else
|
||||
MY_PV="$(ver_rs 1- -)"
|
||||
SRC_URI="https://github.com/Gargaj/Bonzomatic/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/Bonzomatic-${MY_PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="Unlicense"
|
||||
SLOT="0"
|
||||
IUSE="system-glfw system-glew system-stb system-kissfft"
|
||||
|
||||
# TODO: system-miniaudio, system-jsonxx/json++, system-scintilla
|
||||
DEPEND="
|
||||
system-glfw? ( media-libs/glfw )
|
||||
system-glew? ( media-libs/glew:= )
|
||||
system-stb? ( dev-libs/stb )
|
||||
system-kissfft? ( sci-libs/kissfft )
|
||||
virtual/opengl
|
||||
media-libs/alsa-lib
|
||||
media-libs/fontconfig
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBONZOMATIC_USE_SYSTEM_GLFW=$(usex system-glfw)
|
||||
-DBONZOMATIC_USE_SYSTEM_GLEW=$(usex system-glew)
|
||||
-DBONZOMATIC_USE_SYSTEM_STB=$(usex system-stb)
|
||||
-DBONZOMATIC_USE_SYSTEM_KISSFFT=$(usex system-kissfft)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
46
media-gfx/bonzomatic/bonzomatic-9999.ebuild
Normal file
46
media-gfx/bonzomatic/bonzomatic-9999.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="Live shader coding tool and Shader Showdown workhorse"
|
||||
HOMEPAGE="https://github.com/Gargaj/Bonzomatic"
|
||||
if [[ "${PV}" == "9999" ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/Gargaj/Bonzomatic"
|
||||
else
|
||||
MY_PV="$(ver_rs 1- -)"
|
||||
SRC_URI="https://github.com/Gargaj/Bonzomatic/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/Bonzomatic-${MY_PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="Unlicense"
|
||||
SLOT="0"
|
||||
IUSE="system-glfw system-glew system-stb system-kissfft"
|
||||
|
||||
# TODO: system-miniaudio, system-jsonxx/json++, system-scintilla
|
||||
DEPEND="
|
||||
system-glfw? ( media-libs/glfw )
|
||||
system-glew? ( media-libs/glew:= )
|
||||
system-stb? ( dev-libs/stb )
|
||||
system-kissfft? ( sci-libs/kissfft )
|
||||
virtual/opengl
|
||||
media-libs/alsa-lib
|
||||
media-libs/fontconfig
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBONZOMATIC_USE_SYSTEM_GLFW=$(usex system-glfw)
|
||||
-DBONZOMATIC_USE_SYSTEM_GLEW=$(usex system-glew)
|
||||
-DBONZOMATIC_USE_SYSTEM_STB=$(usex system-stb)
|
||||
-DBONZOMATIC_USE_SYSTEM_KISSFFT=$(usex system-kissfft)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
10
media-gfx/bonzomatic/metadata.xml
Normal file
10
media-gfx/bonzomatic/metadata.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<use>
|
||||
<flag name="system-glfw">Use the systems installed version of GLFW (upstream-unsupported)</flag>
|
||||
<flag name="system-glew">Use the systems installed version of GLEW (upstream-unsupported)</flag>
|
||||
<flag name="system-stb">Use the systems installed version of STB (upstream-unsupported)</flag>
|
||||
<flag name="system-kissfft">Use the systems installed version of Kissfft (upstream-unsupported)</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
35
media-libs/gl4es/gl4es-9999.ebuild
Normal file
35
media-libs/gl4es/gl4es-9999.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake git-r3
|
||||
|
||||
DESCRIPTION="OpenGL 2.1/1.5 to GL ES 2.0/1.1 translation library"
|
||||
HOMEPAGE="http://ptitseb.github.io/gl4es/"
|
||||
EGIT_REPO_URI="https://github.com/ptitSeb/gl4es.git"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="egl X test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND="
|
||||
media-libs/mesa[X?,egl?]
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="test? ( dev-util/apitrace )"
|
||||
|
||||
# Note: Should be added into virtual/opengl if moved to ::gentoo
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DNOX11=$(usex !X)
|
||||
-DNOEGL=$(usex !egl)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
pkg_install() {
|
||||
einfo "To use this replacement library add ${PREFIX}/usr/lib/gl4es/ to LD_LIBRARY_PATH"
|
||||
}
|
||||
14
media-libs/gl4es/metadata.xml
Normal file
14
media-libs/gl4es/metadata.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>contact@hacktivis.me</email>
|
||||
<name>Haelwenn (lanodan) Monnier</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="egl">Enable EGL support.</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">ptitSeb/gl4es</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +1 @@
|
||||
DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93
|
||||
DIST kikoplay-0.8.0.tar.gz 10427854 BLAKE2B b4063b160d7fad816101fd98213037b188ff8569738b6757e69ba2fcaa61bb7c43e43866300cb1edd0649ffa97b4c6e000e058d7bacbcf7772caa3b3a77780d3 SHA512 68cfad08240fa283acb7361434b941cec8ff0effa6f64f6acde34cf3b1c96b8159cdd3531a8468052279ff53553b203373a14b3b032c5b524b14dcfeec996a08
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
@@ -49,7 +49,7 @@ BDEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}"/usr
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
@@ -49,7 +49,7 @@ BDEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}"/usr
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
@@ -29,9 +29,7 @@ src_install() {
|
||||
insinto /opt
|
||||
doins -r opt/*
|
||||
domenu usr/share/applications/freetube.desktop
|
||||
for size in {16,32,48,64,128,256}; do
|
||||
doicon -s ${size} usr/share/icons/hicolor/${size}x${size}/apps/freetube.png
|
||||
done
|
||||
doicon -s scalable usr/share/icons/hicolor/scalable/apps/freetube.svg
|
||||
fperms 4755 /opt/FreeTube/chrome-sandbox || die
|
||||
fperms +x /opt/FreeTube/freetube || die
|
||||
dosym ../../opt/FreeTube/freetube /usr/bin/freetube-bin
|
||||
|
||||
@@ -1 +1 @@
|
||||
DIST verilator-4.110.tar.gz 2227322 BLAKE2B 2032f70771fbb2a6f93f504d6b1a01ed5c5fa1f752d3834d8a5acf29190bd614ad3200452fa2ac7cfdc3f6d3baaf1c2e6b9cb32fdf23e43bca5beb19c86ac85b SHA512 c424650dac9ea15ff0d6387614e9a8b5b5a87514c92541af6838ef5a3d22f32d23cc339a9274ff7122d32f4aa368c773cf2dc4e1178dada6a34bad02103d237d
|
||||
DIST verilator-4.200.tar.gz 2245877 BLAKE2B e0606966777c9d3c364bc6d6e84a246a27f4ad4ee67871194a4738cf2c3f76529fe23d2a555139bc9b8eba268ed1929b651a161a7434dd380ec9762cb907f43e SHA512 f2fac4c46006c064b4a31b0edf0c3b1aebdea7e158ca6f8445ae3ece97f1132cd95dbfd63dc5e0f0cb4566a839f44ae0547e0e604cdd3231cf79a7400353fbb5
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
inherit cmake
|
||||
|
||||
case "${PV}" in
|
||||
9999)
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="https://github.com/ECP-VeloC/${PN}.git"
|
||||
inherit git-r3
|
||||
;;
|
||||
*)
|
||||
SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
;;
|
||||
esac
|
||||
|
||||
DESCRIPTION="KVTree provides a fully extensible C data structure modeled after Perl hashes."
|
||||
HOMEPAGE="https://github.com/ECP-VeloC/KVTree"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="fcntl +flock mpi test"
|
||||
|
||||
REQUIRED_USE="
|
||||
?? ( fcntl flock )
|
||||
"
|
||||
RESTRICT="test? ( userpriv ) !test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
mpi? ( virtual/mpi )
|
||||
sys-libs/zlib
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
>=dev-util/cmake-2.8
|
||||
app-admin/chrpath
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
#do not build static library
|
||||
sed -i '/kvtree-static/d' src/CMakeLists.txt || die
|
||||
#do not install README.md automatically
|
||||
sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
|
||||
default
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DMPI="$(usex mpi ON OFF)"
|
||||
-DKVTREE_FILE_LOCK="$(usex flock FLOCK $(usex fcntl FCNTL NONE))"
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
chrpath -d "${BUILD_DIR}/src/kvtree_print_file" || die
|
||||
cmake_src_install
|
||||
chrpath -d "${ED}/usr/$(get_libdir)/libkvtree.so" || die
|
||||
dodoc doc/rst/*.rst
|
||||
docinto "${DOCSDIR}/users"
|
||||
dodoc -r doc/rst/users/.
|
||||
}
|
||||
@@ -1,2 +1 @@
|
||||
DIST KVTree-1.0.2.tar.gz 46868 BLAKE2B 6c443eba3a861f1ecb0a04c0fa63d8fec32ed856de2d6324e011fc6a20ffb9d5eb85354bb0f6faa5e63462ced46e6a6b1af198b53219f96a865ec5eb26c9e832 SHA512 d3586ae8e5084ea4ce3293f1432127c0466e09ab32ba044df1ea793a13e424b2453dac71e38c7cea928601fcce1a16f2f1474e2785c523110ef091d7296a869f
|
||||
DIST KVTree-1.1.0.tar.gz 61555 BLAKE2B 250634e9c13335ae3cfd51b6159b5f6b20c68fb7cd0804f2712f79f7a914669cc65a2bbeac6c84020c744e7ee00ab12d1621f91f8bb816d72f65427c3b574760 SHA512 84885d62fe52f4ee13d8c78472b57f32b1422c275623192c2b0114e7925865912455e76459aaed7888f98acae418325e4e833c6e979e668323b96b65baecaf91
|
||||
|
||||
1
sys-power/ZenStates-Linux/Manifest
Normal file
1
sys-power/ZenStates-Linux/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST ZenStates-Linux-0bc27f4740e382f2a2896dc1dabfec1d0ac96818.tar.gz 3475 BLAKE2B ccbe505bc0f80b051fe589fbb0fecb5eb0dfb6861bb75a53c586406e35d8b9676428067386b6c0d77c806e20969f997d13593b34ffaa1d605e8f32a27a2121fb SHA512 832d0ae65aa2dfc9b1ef14f04bf75c9861acb0d84e9038f9de7c027b8b26a9cb27d2af011377bd47372424e2f918906d3d8ed7266f140790faacc0a19f419ee9
|
||||
40
sys-power/ZenStates-Linux/ZenStates-Linux-0_p20170507.ebuild
Normal file
40
sys-power/ZenStates-Linux/ZenStates-Linux-0_p20170507.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
|
||||
|
||||
inherit linux-info python-single-r1
|
||||
|
||||
DESCRIPTION="Dynamically edit AMD Ryzen processor P-States"
|
||||
HOMEPAGE="https://github.com/r4m0n/ZenStates-Linux"
|
||||
COMMIT=0bc27f4740e382f2a2896dc1dabfec1d0ac96818
|
||||
SRC_URI="https://github.com/r4m0n/ZenStates-Linux/archive/${COMMIT}.tar.gz -> ${PN}-${COMMIT}.tar.gz"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64"
|
||||
IUSE="togglecode"
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
togglecode? (
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/portio[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
"
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
DOCS=( README.md )
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
CONFIG_CHECK="X86_MSR"
|
||||
|
||||
src_install() {
|
||||
newsbin zenstates.py zenstates
|
||||
python_fix_shebang "${ED}/usr/sbin/zenstates"
|
||||
if use togglecode ; then
|
||||
newsbin togglecode.py togglecode
|
||||
python_fix_shebang "${ED}/usr/sbin/togglecode"
|
||||
fi
|
||||
einstalldocs
|
||||
}
|
||||
15
sys-power/ZenStates-Linux/metadata.xml
Normal file
15
sys-power/ZenStates-Linux/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<use>
|
||||
<flag name="togglecode">Install the togglecode utility to turn on/off the Q-Code display on ASUS Crosshair VI Hero motherboards (and other boards with a compatible Super I/O chip)</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/r4m0n/ZenStates-Linux/issues</bugs-to>
|
||||
<maintainer>
|
||||
<name>Thiago Ramon Gonçalves Montoya</name>
|
||||
<email>thiagoramon@gmail.com</email>
|
||||
</maintainer>
|
||||
<remote-id type="github">r4m0n/ZenStates-Linux</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
sys-power/disable-c6/Manifest
Normal file
1
sys-power/disable-c6/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST disable-c6-82765d490290a99ba18282e187e9de3d7c11dd49.tar.gz 2505 BLAKE2B 8995e970e8e4643e752aaf2a27f94eae282c6d2416a5a93f41e69bb367dc50226ca28deb7cdcbc8ef7bbc8105b9c488bd51374b2d3c1ef58322180b3dae1eee1 SHA512 77843b71cb3b485b949ed8a65bf76bdeffd661e21139ccc517f7641adf2802a32c6b2cf1317067e945d37153fc946fffdfc5d42619b508bedcb1fab25576f7ec
|
||||
24
sys-power/disable-c6/disable-c6-0_p20190603.ebuild
Normal file
24
sys-power/disable-c6/disable-c6-0_p20190603.ebuild
Normal file
@@ -0,0 +1,24 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit systemd
|
||||
|
||||
DESCRIPTION="disable the C6 state upon system boot, preventing Ryzen freezes"
|
||||
HOMEPAGE="https://github.com/jfredrickson/disable-c6"
|
||||
COMMIT=82765d490290a99ba18282e187e9de3d7c11dd49
|
||||
SRC_URI="https://github.com/jfredrickson/disable-c6/archive/${COMMIT}.tar.gz -> disable-c6-${COMMIT}.tar.gz"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64"
|
||||
RDEPEND="sys-power/ZenStates-Linux"
|
||||
DOCS=( ACKNOWLEDGMENTS README.md )
|
||||
PATCHES=( "${FILESDIR}/fix-path.patch" )
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
doinitd "${FILESDIR}/disable-c6"
|
||||
systemd_newunit "disable-c6.service.template" "disable-c6-service"
|
||||
}
|
||||
8
sys-power/disable-c6/files/disable-c6
Normal file
8
sys-power/disable-c6/files/disable-c6
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
command=/usr/sbin/zenstates
|
||||
command_args="--c6-disable"
|
||||
pidfile=
|
||||
name="disable-c6"
|
||||
description="Ryzen Disable C6"
|
||||
11
sys-power/disable-c6/files/fix-path.patch
Normal file
11
sys-power/disable-c6/files/fix-path.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- a/disable-c6.service.template 2021-04-04 23:46:51.260313163 +0200
|
||||
+++ b/disable-c6.service.template 2021-04-04 23:47:25.910835088 +0200
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
-ExecStart={{PREFIX}}/bin/zenstates.py --c6-disable
|
||||
+ExecStart=/usr/sbin/zenstates --c6-disable
|
||||
|
||||
[Install]
|
||||
WantedBy=basic.target suspend.target hibernate.target
|
||||
8
sys-power/disable-c6/metadata.xml
Normal file
8
sys-power/disable-c6/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/jfredrickson/disable-c6/issues</bugs-to>
|
||||
<remote-id type="github">jfredrickson/disable-c6</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -28,6 +28,7 @@ RDEPEND="
|
||||
app-crypt/gpgme[python,${PYTHON_USEDEP}]
|
||||
dev-python/PyQt5[${PYTHON_USEDEP},widgets]
|
||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
apparmor? ( sys-libs/libapparmor )
|
||||
"
|
||||
|
||||
@@ -28,6 +28,7 @@ RDEPEND="
|
||||
app-crypt/gpgme[python,${PYTHON_USEDEP}]
|
||||
dev-python/PyQt5[${PYTHON_USEDEP},widgets]
|
||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||
dev-python/packaging[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
apparmor? ( sys-libs/libapparmor )
|
||||
"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -30,7 +30,7 @@ DEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}/usr"
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -30,7 +30,7 @@ DEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}/usr"
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
@@ -30,7 +30,7 @@ DEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}/usr"
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -30,7 +30,7 @@ DEPEND="
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${D}/usr"
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
Reference in New Issue
Block a user