public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2021-11-28 17:23 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2021-11-28 17:23 UTC (permalink / raw
  To: gentoo-commits

commit:     03ccd4575abb0c9e3f7af84c4092fdde0444e6de
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 28 17:19:56 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Nov 28 17:19:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ccd457

app-misc/fmawk: new package; add version 1.2 and live

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/Manifest          |  1 +
 app-misc/fmawk/fmawk-1.2.ebuild  | 42 ++++++++++++++++++++++++++++++++++++++++
 app-misc/fmawk/fmawk-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++
 app-misc/fmawk/metadata.xml      | 18 +++++++++++++++++
 4 files changed, 99 insertions(+)

diff --git a/app-misc/fmawk/Manifest b/app-misc/fmawk/Manifest
new file mode 100644
index 000000000000..05308c04d54f
--- /dev/null
+++ b/app-misc/fmawk/Manifest
@@ -0,0 +1 @@
+DIST fmawk-1.2.tar.gz 23399 BLAKE2B f4c20c8f1569a6715710a5cef02a767152694ef7e216c9fe707c7ac57c20dd012189db14777d47a980008255c7f51b5c165cdf086c41835a7ce550b758a8f350 SHA512 86d56e1cc893c385a0bb338957a9ef698c0edef4587e6d3a21aa316fd996fa3b1416220e5c235d613876a3d19650e8e7a20bf991a4ce67ce9759a362d2aaac30

diff --git a/app-misc/fmawk/fmawk-1.2.ebuild b/app-misc/fmawk/fmawk-1.2.ebuild
new file mode 100644
index 000000000000..2247b8c0dff1
--- /dev/null
+++ b/app-misc/fmawk/fmawk-1.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="File manager written in awk"
+HOMEPAGE="https://github.com/huijunchen9260/fm.awk/"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/huijunchen9260/fm.awk.git"
+else
+	SRC_URI="https://github.com/huijunchen9260/fm.awk/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/fm.awk-${PV}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="virtual/awk"
+
+src_compile() {
+	:
+}
+
+src_install() {
+	local bin
+	for bin in fm.awk fmawk fmawk-previewer; do
+		dobin ${bin}
+	done
+
+	einstalldocs
+}
+
+pkg_postinst() {
+	optfeature "PDFs preview" app-text/poppler
+	optfeature "images preview" media-gfx/chafa
+	optfeature "videos preview" media-video/ffmpegthumbnailer
+}

diff --git a/app-misc/fmawk/fmawk-9999.ebuild b/app-misc/fmawk/fmawk-9999.ebuild
new file mode 100644
index 000000000000..9500af6a4ee7
--- /dev/null
+++ b/app-misc/fmawk/fmawk-9999.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="File manager written in awk"
+HOMEPAGE="https://github.com/huijunchen9260/fm.awk/"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/huijunchen9260/fm.awk.git"
+else
+	SRC_URI="https://github.com/huijunchen9260/fm.awk/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/fm.awk-${PV}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="virtual/awk"
+
+src_compile() {
+	:
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	einstalldocs
+}
+
+pkg_postinst() {
+	optfeature "PDFs preview" app-text/poppler
+	optfeature "images preview" media-gfx/chafa
+	optfeature "videos preview" media-video/ffmpegthumbnailer
+}

diff --git a/app-misc/fmawk/metadata.xml b/app-misc/fmawk/metadata.xml
new file mode 100644
index 000000000000..a2080c646539
--- /dev/null
+++ b/app-misc/fmawk/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="person">
+    <email>xgqt@gentoo.org</email>
+    <name>Maciej Barć</name>
+  </maintainer>
+  <longdescription lang="en">
+    FMAWK is a experimental file manager written almost entirely
+    in the awk programming language. Thought written in awk it is comparable
+    with features to ranger or nnn.
+  </longdescription>
+  <upstream>
+    <bugs-to>https://github.com/huijunchen9260/fm.awk/issues</bugs-to>
+    <remote-id type="github">huijunchen9260/fm.awk</remote-id>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2021-11-28 17:36 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2021-11-28 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     208b23359f6464fc8034fd7de4a7f257ccf5209d
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 28 17:35:56 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Nov 28 17:35:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208b2335

app-misc/fmawk: reword longdescription

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-misc/fmawk/metadata.xml b/app-misc/fmawk/metadata.xml
index a2080c646539..88a2b065e2a2 100644
--- a/app-misc/fmawk/metadata.xml
+++ b/app-misc/fmawk/metadata.xml
@@ -7,9 +7,9 @@
     <name>Maciej Barć</name>
   </maintainer>
   <longdescription lang="en">
-    FMAWK is a experimental file manager written almost entirely
-    in the awk programming language. Thought written in awk it is comparable
-    with features to ranger or nnn.
+    FMAWK is a experimental file manager written almost entirely in the awk
+    programming language. Though written in awk, in terms of features it is
+    comparable to other terminal file managers such as fff, nnn or ranger.
   </longdescription>
   <upstream>
     <bugs-to>https://github.com/huijunchen9260/fm.awk/issues</bugs-to>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2022-01-10 15:34 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2022-01-10 15:34 UTC (permalink / raw
  To: gentoo-commits

commit:     28360c8d887b71360e74ec96469314d573476414
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 10 15:32:24 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 10 15:34:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28360c8d

app-misc/fmawk: bump to 1.3

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/Manifest         |  1 +
 app-misc/fmawk/fmawk-1.3.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/app-misc/fmawk/Manifest b/app-misc/fmawk/Manifest
index 05308c04d54f..618e4ef7fe10 100644
--- a/app-misc/fmawk/Manifest
+++ b/app-misc/fmawk/Manifest
@@ -1 +1,2 @@
 DIST fmawk-1.2.tar.gz 23399 BLAKE2B f4c20c8f1569a6715710a5cef02a767152694ef7e216c9fe707c7ac57c20dd012189db14777d47a980008255c7f51b5c165cdf086c41835a7ce550b758a8f350 SHA512 86d56e1cc893c385a0bb338957a9ef698c0edef4587e6d3a21aa316fd996fa3b1416220e5c235d613876a3d19650e8e7a20bf991a4ce67ce9759a362d2aaac30
+DIST fmawk-1.3.tar.gz 25628 BLAKE2B e9b591941c5dbfa96414cc494b91eebfc19e9153cad7066afe216a6e1a177de5c3f3e04f09fec62bbd0adf0b3330bfc9471fcecc23b568e966e8185b7a298c39 SHA512 b1ca40c71b219cd59009c96692e1297cec75d2a61b28c330e4b80b55bde6dc6dfb071fec9dc4ae4f3e8aa7be7bbb51d444687f9500c82dba440388d41369e157

diff --git a/app-misc/fmawk/fmawk-1.3.ebuild b/app-misc/fmawk/fmawk-1.3.ebuild
new file mode 100644
index 000000000000..188ad7e91e82
--- /dev/null
+++ b/app-misc/fmawk/fmawk-1.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="File manager written in awk"
+HOMEPAGE="https://github.com/huijunchen9260/fm.awk/"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/huijunchen9260/fm.awk.git"
+else
+	SRC_URI="https://github.com/huijunchen9260/fm.awk/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/fm.awk-${PV}"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="virtual/awk"
+
+src_compile() {
+	:
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	einstalldocs
+}
+
+pkg_postinst() {
+	optfeature "PDFs preview" app-text/poppler
+	optfeature "images preview" media-gfx/chafa
+	optfeature "videos preview" media-video/ffmpegthumbnailer
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2022-01-10 15:34 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2022-01-10 15:34 UTC (permalink / raw
  To: gentoo-commits

commit:     aa80f2a40040952de5d2012631930d59c9e79134
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 10 15:33:18 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 10 15:34:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa80f2a4

app-misc/fmawk: update copyright

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/fmawk-1.2.ebuild  | 2 +-
 app-misc/fmawk/fmawk-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/fmawk/fmawk-1.2.ebuild b/app-misc/fmawk/fmawk-1.2.ebuild
index 2247b8c0dff1..dac7c8432767 100644
--- a/app-misc/fmawk/fmawk-1.2.ebuild
+++ b/app-misc/fmawk/fmawk-1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/app-misc/fmawk/fmawk-9999.ebuild b/app-misc/fmawk/fmawk-9999.ebuild
index 9500af6a4ee7..188ad7e91e82 100644
--- a/app-misc/fmawk/fmawk-9999.ebuild
+++ b/app-misc/fmawk/fmawk-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2022-02-27  3:48 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2022-02-27  3:48 UTC (permalink / raw
  To: gentoo-commits

commit:     b109941cd597b3b2944f26600bb7409cb017ad44
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 27 03:33:59 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 03:37:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b109941c

app-misc/fmawk: update metadata

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/metadata.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-misc/fmawk/metadata.xml b/app-misc/fmawk/metadata.xml
index e4db69f67ed9..210d6b4a9b9a 100644
--- a/app-misc/fmawk/metadata.xml
+++ b/app-misc/fmawk/metadata.xml
@@ -6,12 +6,13 @@
     <email>xgqt@gentoo.org</email>
     <name>Maciej Barć</name>
   </maintainer>
-  <longdescription lang="en">
+  <longdescription>
     FMAWK is a experimental file manager written almost entirely in the awk
     programming language. Though written in awk, in terms of features it is
     comparable to other terminal file managers such as fff, nnn or ranger.
   </longdescription>
   <upstream>
+    <changelog>https://github.com/huijunchen9260/fm.awk/releases/</changelog>
     <bugs-to>https://github.com/huijunchen9260/fm.awk/issues</bugs-to>
     <remote-id type="github">huijunchen9260/fm.awk</remote-id>
   </upstream>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2023-01-21  9:20 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2023-01-21  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     6e79d6df0b4d34f0f82ac40973006503a51153e5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 21 09:20:09 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 21 09:20:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e79d6df

app-misc/fmawk: Stabilize 1.3 amd64, #891569

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/fmawk/fmawk-1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/fmawk/fmawk-1.3.ebuild b/app-misc/fmawk/fmawk-1.3.ebuild
index 57d3dbc7f79e..1401e88a7e30 100644
--- a/app-misc/fmawk/fmawk-1.3.ebuild
+++ b/app-misc/fmawk/fmawk-1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ if [[ "${PV}" == *9999* ]]; then
 else
 	SRC_URI="https://github.com/huijunchen9260/fm.awk/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
 	S="${WORKDIR}/fm.awk-${PV}"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/
@ 2023-05-05 12:03 Maciej Barć
  0 siblings, 0 replies; 7+ messages in thread
From: Maciej Barć @ 2023-05-05 12:03 UTC (permalink / raw
  To: gentoo-commits

commit:     f3531a192bd7ab33e59c7cc55409f42a55c40baa
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri May  5 10:49:37 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri May  5 12:03:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3531a19

app-misc/fmawk: drop old 1.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/fmawk/Manifest         |  1 -
 app-misc/fmawk/fmawk-1.2.ebuild | 42 -----------------------------------------
 2 files changed, 43 deletions(-)

diff --git a/app-misc/fmawk/Manifest b/app-misc/fmawk/Manifest
index 618e4ef7fe10..e07314a8e2e5 100644
--- a/app-misc/fmawk/Manifest
+++ b/app-misc/fmawk/Manifest
@@ -1,2 +1 @@
-DIST fmawk-1.2.tar.gz 23399 BLAKE2B f4c20c8f1569a6715710a5cef02a767152694ef7e216c9fe707c7ac57c20dd012189db14777d47a980008255c7f51b5c165cdf086c41835a7ce550b758a8f350 SHA512 86d56e1cc893c385a0bb338957a9ef698c0edef4587e6d3a21aa316fd996fa3b1416220e5c235d613876a3d19650e8e7a20bf991a4ce67ce9759a362d2aaac30
 DIST fmawk-1.3.tar.gz 25628 BLAKE2B e9b591941c5dbfa96414cc494b91eebfc19e9153cad7066afe216a6e1a177de5c3f3e04f09fec62bbd0adf0b3330bfc9471fcecc23b568e966e8185b7a298c39 SHA512 b1ca40c71b219cd59009c96692e1297cec75d2a61b28c330e4b80b55bde6dc6dfb071fec9dc4ae4f3e8aa7be7bbb51d444687f9500c82dba440388d41369e157

diff --git a/app-misc/fmawk/fmawk-1.2.ebuild b/app-misc/fmawk/fmawk-1.2.ebuild
deleted file mode 100644
index 3a0ee6e1fbd6..000000000000
--- a/app-misc/fmawk/fmawk-1.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="File manager written in awk"
-HOMEPAGE="https://github.com/huijunchen9260/fm.awk/"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/huijunchen9260/fm.awk.git"
-else
-	SRC_URI="https://github.com/huijunchen9260/fm.awk/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-	S="${WORKDIR}/fm.awk-${PV}"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="app-alternatives/awk"
-
-src_compile() {
-	:
-}
-
-src_install() {
-	local bin
-	for bin in fm.awk fmawk fmawk-previewer; do
-		dobin ${bin}
-	done
-
-	einstalldocs
-}
-
-pkg_postinst() {
-	optfeature "PDFs preview" app-text/poppler
-	optfeature "images preview" media-gfx/chafa
-	optfeature "videos preview" media-video/ffmpegthumbnailer
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-05-05 12:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-28 17:36 [gentoo-commits] repo/gentoo:master commit in: app-misc/fmawk/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2023-05-05 12:03 Maciej Barć
2023-01-21  9:20 Arthur Zamarin
2022-02-27  3:48 Maciej Barć
2022-01-10 15:34 Maciej Barć
2022-01-10 15:34 Maciej Barć
2021-11-28 17:23 Maciej Barć

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox