1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-03-26 14:43:33 +01:00

Compare commits

...

4 Commits

Author SHA1 Message Date
343610827e Added extfslib 2022-10-02 16:35:55 +02:00
5d5a64ae14 Added uadf MC plugin 2022-10-02 16:34:09 +02:00
4a0464770d Added ulzx MC plugin 2022-10-02 16:32:42 +02:00
0d3035ace5 Added adbfs mc plugin 2022-10-02 16:30:22 +02:00
8 changed files with 126 additions and 0 deletions

1
app-misc/adbfs/Manifest Normal file
View File

@@ -0,0 +1 @@
EBUILD adbfs-9999.ebuild 644 BLAKE2B cc5a64ec492e2b1879d27ad1364f504adb09c3c416e3d57a01943763ffc5880fe9b970756e803436608949bf62881948500e5a1b457ad9bee1766ab1d4c36c58 SHA512 623ca2f2012bfd17f15c6f6272b7580b72b6f02f0e1c856ae1155382fd7d18827d1365434081b5d256bef1ca7c3f6e4a004394b09ac56d13128e60554b7de149

View File

@@ -0,0 +1,36 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit git-r3
DESCRIPTION="Access your Android device filesystem from Midnight Commander through adb"
HOMEPAGE="https://github.com/gryf/mc_adbfs"
EGIT_REPO_URI="https://github.com/gryf/mc_adbfs"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64"
DEPEND="
dev-util/android-tools
app-misc/mc
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_prepare() {
eapply_user
}
src_compile() {
einfo "Skipping calling make, as it has other purpose."
}
src_install() {
exeinto "/usr/libexec/mc/extfs.d/"
doexe "${S}/adbfs"
}

1
app-misc/uadf/Manifest Normal file
View File

@@ -0,0 +1 @@
EBUILD uadf-9999.ebuild 531 BLAKE2B 18c84044a98f80c301be9379d18b43500e6909c697c959a427aa16284e72ac7747af14071f8299b4832e19bdc1dff52cebef9ff9b74a010d3768d010380a5848 SHA512 67e5f6781ba8d145d5d8c5a093397b82d3ce8cb43f6d00c488c53e7467435f07a28bcb51f548fcedde46ec1380865791e717ea919670ea4631f0950ebb38439a

View File

@@ -0,0 +1,31 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Access ADF/DMS Amiga disk images with Midnight Commander"
HOMEPAGE="https://github.com/gryf/mc_uadf"
EGIT_REPO_URI="https://github.com/gryf/mc_uadf"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64"
IUSE="dms"
DEPEND="
dms? ( app-arch/xdms )
app-arch/unadf
app-misc/mc
dev-python/extfslib
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
exeinto "/usr/libexec/mc/extfs.d/"
doexe "${S}/uadf"
}

1
app-misc/ulzx/Manifest Normal file
View File

@@ -0,0 +1 @@
EBUILD ulzx-9999.ebuild 521 BLAKE2B ad026c0673dcfacf0114e3ba61b23821020253fc7797ea4804c035abb06be2fef9a0ae3bc0edcae915dc46b86b77b0db9a478fe40a65877883a7df8a06934ef0 SHA512 4da7df2fb34973cb410cb449bb82e7f0278242958e501b0444cce0276fab83ea70a02c0fc84a803ae6236b5b6e9e67d3895f01051bcad4dab6f0af55a6baabd7

View File

@@ -0,0 +1,31 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Access LZX Amiga archives with Midnight Commander"
HOMEPAGE="https://github.com/gryf/mc_ulzx"
EGIT_REPO_URI="https://github.com/gryf/mc_ulzx"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64"
DEPEND="
app-arch/unlzx
app-misc/mc
dev-python/extfslib
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
echo skipping
}
src_install() {
exeinto "/usr/libexec/mc/extfs.d/"
doexe "${S}/ulzx"
}

View File

@@ -0,0 +1,2 @@
DIST extfslib-1.1.tar.gz 5297 BLAKE2B a19e7d7b9386d9933a3eb4aeb1e7c51fb1e437a972438786f8b01ab741f294942d4b9550e582b549ae38ad24f4e66d8592bc3a79be43c97cecf8f05d6747c7c4 SHA512 2c4fed3ced4606f075f93d567391b6050d3ebb54d1b0da4afcf274771f4479a57da5c155a39967815f7b7ffb1fa1e91af3f559d1382ce18e1c1e48ca11a84f12
EBUILD extfslib-1.1.ebuild 484 BLAKE2B c99cfbd975d496c3e162742501588f63dbd9575aee637cb180d056873ed5a62e87ca1ccaa5c9f2e5a899d5a36848007f7762070d1a881f46dd7ecf4026c0e55c SHA512 eecef55f8ae1dd0a6d7baa2cc6feaa614f3526d59366cee40cca81fe239d77a84dbef5ff223cff9bfed3b4e6bb5aa723db1d19a48dce41b887672632d81148c9

View File

@@ -0,0 +1,23 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="Midnight Commander extfs for several filetypes using Python"
HOMEPAGE="https://github.com/gryf/mc_extfslib"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="test"
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""