summaryrefslogtreecommitdiff
path: root/sys-fs/bashmount
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-08-31 12:01:05 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-08-31 12:01:05 +0100
commit5b7f6475da27c05b30659a00ecb49636aca2bece (patch)
treef67500afbab4acebaa18739efa57f79c7ee620b3 /sys-fs/bashmount
parent2e8abb8c82f14dd064991a1afd337b2f022b37f6 (diff)
gentoo auto-resync : 31:08:2024 - 12:01:05
Diffstat (limited to 'sys-fs/bashmount')
-rw-r--r--sys-fs/bashmount/Manifest1
-rw-r--r--sys-fs/bashmount/bashmount-4.3.2-r2.ebuild29
2 files changed, 30 insertions, 0 deletions
diff --git a/sys-fs/bashmount/Manifest b/sys-fs/bashmount/Manifest
index 629c997ebfc0..fad034f0bead 100644
--- a/sys-fs/bashmount/Manifest
+++ b/sys-fs/bashmount/Manifest
@@ -1,3 +1,4 @@
DIST bashmount-4.3.2.tar.gz 47450 BLAKE2B 0dc45580b62aa55872753de17ee50e77e716e87498193c8dab0998f5a70994ad5cc9434c104bc1d6cc77d75d63688afae8be8e0e8ee4344249ded5f1719051c5 SHA512 ac18d76dc27099524f4051299dc5421e1e5811e943df21d64a1405b5cdf6401189d78571596f27c89c0d76ab40874392c0c90756ef5fa9c036f447ac884ee062
EBUILD bashmount-4.3.2-r1.ebuild 617 BLAKE2B c03165b40a492feb0ab5fb0600fb58594a361dc452d966ed0f23823cc38a9166be509e83399161700a1536f6190e40b12b5ad5929d81e46332f598bf44f7923b SHA512 f044eed2a7762dbfa649859301ccfeef0e65784d3b5082bf970402d782c11b3f799a1d7373b9661b7461c3b50c0f577b3b8dfe5bd58ed2dcc6f391212ac8e966
+EBUILD bashmount-4.3.2-r2.ebuild 620 BLAKE2B 768d905023dfc299b984305983ece75656ad1a77c64d054c68c9fb8de9fc64e91b15bb7159ae31494496d21d9b939b2dcdceeb8dad14638a9205da3826a86c33 SHA512 69fd195314574b3ab12ebf996bb8c611cc9c2f7ca00c3c7aa586db81628d927be574a2bb437b35bcbb0d38c66b677b94aafc5bf98915aa5b06f48205f5659ef1
MISC metadata.xml 327 BLAKE2B 8cac6be6f6e1547ec7db00b20b3c5b050c14983f0f1c6cdc2589584db58dceef0801563e32ea07b9486557666c9d5cd8e9f0fe1640e585612830f728eb9ab77b SHA512 6f2d50b1abe2e4997f65d7e1616bc3e4e6bd76aea7a5e0d9a52cfd59500b3d4b8e8ef67dcfc14436b9cc00abbffcddadc5f57f1afce774f654d873a5c3c88466
diff --git a/sys-fs/bashmount/bashmount-4.3.2-r2.ebuild b/sys-fs/bashmount/bashmount-4.3.2-r2.ebuild
new file mode 100644
index 000000000000..834ce078e693
--- /dev/null
+++ b/sys-fs/bashmount/bashmount-4.3.2-r2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Bash script that uses udisks to mount removable devices without GUI"
+HOMEPAGE="https://github.com/jamielinux/bashmount"
+SRC_URI="https://github.com/jamielinux/bashmount/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+# sys-apps/util-linux -> lsblk
+RDEPEND="
+ app-shells/bash:*
+ sys-apps/dbus
+ sys-apps/util-linux
+ sys-fs/udisks:2
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ dobin ${PN}
+ insinto /etc
+ doins ${PN}.conf
+ doman ${PN}.1
+ dodoc NEWS
+}