public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2021-12-29 22:19 Alfredo Tupone
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone @ 2021-12-29 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     019f74b4fc6d60d660c6f002954b5f2621f5fad6
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 29 22:18:37 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Dec 29 22:18:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=019f74b4

sys-fs/fswatch: file change monitor

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 sys-fs/fswatch/Manifest              |  1 +
 sys-fs/fswatch/fswatch-1.16.0.ebuild | 27 +++++++++++++++++++++++++++
 sys-fs/fswatch/metadata.xml          |  7 +++++++
 3 files changed, 35 insertions(+)

diff --git a/sys-fs/fswatch/Manifest b/sys-fs/fswatch/Manifest
new file mode 100644
index 000000000000..b9e7a1470faf
--- /dev/null
+++ b/sys-fs/fswatch/Manifest
@@ -0,0 +1 @@
+DIST fswatch-1.16.0.tar.gz 844804 BLAKE2B 55527e7d38421f16a9d2c51b5455b73de54220d280233d905a02d192bc374ef91b02c0d68dcd1c1ed6a29351421df0cd0ee9fad50bb98ec9c9018088a6064d4b SHA512 80100b92f5acef503436bbb684f07f5b692099a7eee0970a61c04670de67cd9bfa7942af40b348236dd97fc4d02fcd6a081b96486332efbd06500379c1eff806

diff --git a/sys-fs/fswatch/fswatch-1.16.0.ebuild b/sys-fs/fswatch/fswatch-1.16.0.ebuild
new file mode 100644
index 000000000000..f145c182b0f7
--- /dev/null
+++ b/sys-fs/fswatch/fswatch-1.16.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="cross-platform file change monitor with multiple backends"
+HOMEPAGE="https://github.com/emcrisostomo/fswatch"
+SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="nls static-libs"
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		CXX=$(tc-getCXX)
+}
+
+src_install() {
+	default
+	find "${ED}" -type f -name "*.la" -delete || die
+}

diff --git a/sys-fs/fswatch/metadata.xml b/sys-fs/fswatch/metadata.xml
new file mode 100644
index 000000000000..91e8ad9f5e33
--- /dev/null
+++ b/sys-fs/fswatch/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>ada@gentoo.org</email>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2022-03-19 23:45 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-03-19 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     48d6c51da13a6fd30fced65a97bbcecb776386dd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 23:43:09 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 23:43:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d6c51d

sys-fs/fswatch: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/fswatch/fswatch-1.16.0.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-fs/fswatch/fswatch-1.16.0.ebuild b/sys-fs/fswatch/fswatch-1.16.0.ebuild
index f145c182b0f7..dc84ca695257 100644
--- a/sys-fs/fswatch/fswatch-1.16.0.ebuild
+++ b/sys-fs/fswatch/fswatch-1.16.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2021 Gentoo Authors
+# Copyright 2022-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,9 +8,10 @@ inherit toolchain-funcs
 DESCRIPTION="cross-platform file change monitor with multiple backends"
 HOMEPAGE="https://github.com/emcrisostomo/fswatch"
 SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+
 LICENSE="GPL-3"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 
 IUSE="nls static-libs"
 
@@ -18,7 +19,7 @@ src_configure() {
 	econf \
 		$(use_enable nls) \
 		$(use_enable static-libs static) \
-		CXX=$(tc-getCXX)
+		CXX="$(tc-getCXX)"
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2022-12-05 13:34 Alfredo Tupone
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone @ 2022-12-05 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     221a670c3a2c06f00f8da95c761ccd5197a02635
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  5 13:34:04 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Dec  5 13:34:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221a670c

sys-fs/fswatch: add github upstream metadata

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 sys-fs/fswatch/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys-fs/fswatch/metadata.xml b/sys-fs/fswatch/metadata.xml
index 91e8ad9f5e33..d73a90465c32 100644
--- a/sys-fs/fswatch/metadata.xml
+++ b/sys-fs/fswatch/metadata.xml
@@ -4,4 +4,7 @@
 	<maintainer type="project">
 		<email>ada@gentoo.org</email>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">emcrisostomo/fswatch</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2023-01-26 19:37 Alfredo Tupone
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone @ 2023-01-26 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     e4698c4fb9e801fdce3b29bed143889869b84c3d
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 26 19:24:26 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Jan 26 19:32:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4698c4f

sys-fs/fswatch: add 1.17.1

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 sys-fs/fswatch/Manifest              |  1 +
 sys-fs/fswatch/fswatch-1.17.1.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/sys-fs/fswatch/Manifest b/sys-fs/fswatch/Manifest
index b9e7a1470faf..29ad9d3d7c9c 100644
--- a/sys-fs/fswatch/Manifest
+++ b/sys-fs/fswatch/Manifest
@@ -1 +1,2 @@
 DIST fswatch-1.16.0.tar.gz 844804 BLAKE2B 55527e7d38421f16a9d2c51b5455b73de54220d280233d905a02d192bc374ef91b02c0d68dcd1c1ed6a29351421df0cd0ee9fad50bb98ec9c9018088a6064d4b SHA512 80100b92f5acef503436bbb684f07f5b692099a7eee0970a61c04670de67cd9bfa7942af40b348236dd97fc4d02fcd6a081b96486332efbd06500379c1eff806
+DIST fswatch-1.17.1.tar.gz 853852 BLAKE2B 0d4d6a350325d4c7cc4ed4277e640d3fa4bfade5ec92b1c27abee9b506f34a024abadfbd5f002fdb3afd80a4ae432a071dd94c664123f447167ded6d5dbbaf9d SHA512 8d98b12e538026545052763961fe7d8147809958c25921bc30f43ba0d63c7f63a00c4b8412bbb63e3d1a0807687f8821f20e2667ee716b439cfb254ce346ccad

diff --git a/sys-fs/fswatch/fswatch-1.17.1.ebuild b/sys-fs/fswatch/fswatch-1.17.1.ebuild
new file mode 100644
index 000000000000..1ff71d7d6e2d
--- /dev/null
+++ b/sys-fs/fswatch/fswatch-1.17.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="cross-platform file change monitor with multiple backends"
+HOMEPAGE="https://github.com/emcrisostomo/fswatch"
+SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/13"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="nls static-libs"
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		CXX="$(tc-getCXX)"
+}
+
+src_install() {
+	default
+	find "${ED}" -type f -name "*.la" -delete || die
+}


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

end of thread, other threads:[~2023-01-26 19:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-29 22:19 [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2022-03-19 23:45 Sam James
2022-12-05 13:34 Alfredo Tupone
2023-01-26 19:37 Alfredo Tupone

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