* [gentoo-commits] repo/proj/guru:master commit in: app-misc/superfile/
@ 2025-02-25 15:25 David Roman
0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2025-02-25 15:25 UTC (permalink / raw
To: gentoo-commits
commit: 0403f402bca223c2b3fa84305c0e2b1c3abc1164
Author: ingenarel <ingenarelitems <AT> gmail <DOT> com>
AuthorDate: Tue Feb 25 06:37:35 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Feb 25 06:37:35 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0403f402
app-misc/superfile: new package, add 1.1.7.1
Signed-off-by: ingenarel <ingenarelitems <AT> gmail.com>
app-misc/superfile/Manifest | 2 ++
app-misc/superfile/superfile-1.1.7.1.ebuild | 23 +++++++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/app-misc/superfile/Manifest b/app-misc/superfile/Manifest
new file mode 100644
index 000000000..2adc7e19b
--- /dev/null
+++ b/app-misc/superfile/Manifest
@@ -0,0 +1,2 @@
+DIST superfile-1.1.7.1-vendor.tar.xz 2722972 BLAKE2B 3dee77111a2611a3eb67ff5f6fba27f0b59a5c760b4849e31eb013b39e3d4269bd0a7a5492982a624f85a3441637a42bdc713d6f414d3bf24e49266571c10018 SHA512 0b76eadb09f9752c611b3b3917e4997d1a6293bbd0ce7caebc6158e03895492f5031de7414da9efcca0688f511cffdb842eb98f157c8d8eab81fa1ecd2cc8b69
+DIST superfile-1.1.7.1.tar.gz 8216364 BLAKE2B 81e4f3096d29408bc187178dacba233a1d41452d295ea302260f294b2cf768b9b6ec8c7c8b5831c410485f921be37277937ebaf54642b4344767f93d15bc44c3 SHA512 e4bb45db59821b5e03d890019e5ea9537af834b51ce5819ae1a17ce1006785746c1ba42f01e0c9d967c8430e338c2d59daaa7251dca4d508adb18f2e0c4b2018
diff --git a/app-misc/superfile/superfile-1.1.7.1.ebuild b/app-misc/superfile/superfile-1.1.7.1.ebuild
new file mode 100644
index 000000000..164cd70e1
--- /dev/null
+++ b/app-misc/superfile/superfile-1.1.7.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Pretty fancy and modern terminal file manager"
+HOMEPAGE="https://superfile.netlify.app/"
+SRC_URI="https://github.com/yorukot/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://github.com/ingenarel/guru-depfiles/releases/download/0.2/${P}-vendor.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_compile() {
+ go build -o ./bin/spf
+}
+
+src_install() {
+ dobin bin/spf
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-misc/superfile/
@ 2025-02-27 11:52 David Roman
0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2025-02-27 11:52 UTC (permalink / raw
To: gentoo-commits
commit: 3ec80bd7c8d09fb86d713fb26424dd0c725294ea
Author: ingenarel <ingenarelitems <AT> gmail <DOT> com>
AuthorDate: Tue Feb 25 16:21:18 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Feb 25 16:22:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ec80bd7
app-misc/superfile: fix package: Use ego instead of go; add metadata.xml
Signed-off-by: ingenarel <ingenarelitems <AT> gmail.com>
app-misc/superfile/metadata.xml | 18 ++++++++++++++++++
app-misc/superfile/superfile-1.1.7.1.ebuild | 2 +-
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/app-misc/superfile/metadata.xml b/app-misc/superfile/metadata.xml
new file mode 100644
index 000000000..7f09a14a6
--- /dev/null
+++ b/app-misc/superfile/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ingenarelitems@gmail.com</email>
+ <name>ingenarel</name>
+ </maintainer>
+<longdescription lang="en">
+Superfile is a very fancy and modern terminal file manager that can complete the file operations you need!!
+It can be said that good-looking is the original intention of superfile, so the entire superfile should be as beautiful as possible.
+From basic Hotkey, the entire theme color and even the border Style can be customized.
+This file manager allows you to do almost everything you want to do on a file manager.
+Multiple panel allows you to view multiple directories at the same time and copy and paste in just a few simple steps without having to return to the main directory.
+</longdescription>
+<upstream>
+ <remote-id type="github">yorukot/superfile</remote-id>
+</upstream>
+</pkgmetadata>
diff --git a/app-misc/superfile/superfile-1.1.7.1.ebuild b/app-misc/superfile/superfile-1.1.7.1.ebuild
index 164cd70e1..9e1489b51 100644
--- a/app-misc/superfile/superfile-1.1.7.1.ebuild
+++ b/app-misc/superfile/superfile-1.1.7.1.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
KEYWORDS="~amd64"
src_compile() {
- go build -o ./bin/spf
+ ego build -o bin/spf
}
src_install() {
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-02-27 11:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-27 11:52 [gentoo-commits] repo/proj/guru:master commit in: app-misc/superfile/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2025-02-25 15:25 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox