* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2021-12-29 22:19 Alfredo Tupone
0 siblings, 0 replies; 7+ 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] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2022-03-19 23:45 Sam James
0 siblings, 0 replies; 7+ 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] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2022-12-05 13:34 Alfredo Tupone
0 siblings, 0 replies; 7+ 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] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2023-01-26 19:37 Alfredo Tupone
0 siblings, 0 replies; 7+ 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] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2025-01-12 10:06 Alfredo Tupone
0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone @ 2025-01-12 10:06 UTC (permalink / raw
To: gentoo-commits
commit: 357c79a08bbd68efe960c49c4d66eef84ec895c6
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 10:05:21 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 10:05:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=357c79a0
sys-fs/fswatch: add 1.18.0, drop 1.16.0
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sys-fs/fswatch/Manifest | 2 +-
sys-fs/fswatch/{fswatch-1.16.0.ebuild => fswatch-1.18.0.ebuild} | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-fs/fswatch/Manifest b/sys-fs/fswatch/Manifest
index 29ad9d3d7c9c..55cc514f57fc 100644
--- a/sys-fs/fswatch/Manifest
+++ b/sys-fs/fswatch/Manifest
@@ -1,2 +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
+DIST fswatch-1.18.0.tar.gz 813482 BLAKE2B 432c7806428ba31585d336c8c21069ea3e55852f3318ecec19bc4094f2d8f13187afc0754f804591df7ad50d220e1674a0509e6d53dd388de03acdc363cc8563 SHA512 f0fd409f04d19830eb5d7244a43c7ef1117e9f6be807d1f4e7dbb637f74d9a494b1e19bf4e4b8df4acd959b221d884c054f680df6438b890c310bf69b2722664
diff --git a/sys-fs/fswatch/fswatch-1.16.0.ebuild b/sys-fs/fswatch/fswatch-1.18.0.ebuild
similarity index 90%
rename from sys-fs/fswatch/fswatch-1.16.0.ebuild
rename to sys-fs/fswatch/fswatch-1.18.0.ebuild
index dc84ca695257..ab5e42567752 100644
--- a/sys-fs/fswatch/fswatch-1.16.0.ebuild
+++ b/sys-fs/fswatch/fswatch-1.18.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2022-2022 Gentoo Authors
+# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/emcrisostomo/fswatch"
SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.gz"
LICENSE="GPL-3"
-SLOT="0"
+SLOT="0/13"
KEYWORDS="~amd64 ~x86"
IUSE="nls static-libs"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2025-01-12 13:34 Alfredo Tupone
0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone @ 2025-01-12 13:34 UTC (permalink / raw
To: gentoo-commits
commit: fd1b9e0137700dc6a37ee78049c371226ba0dbdf
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 13:32:57 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 13:33:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd1b9e01
sys-fs/fswatch: keyword 1.18.0 for ~arm64
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sys-fs/fswatch/fswatch-1.18.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/fswatch/fswatch-1.18.0.ebuild b/sys-fs/fswatch/fswatch-1.18.0.ebuild
index ab5e42567752..45b0d7dede13 100644
--- a/sys-fs/fswatch/fswatch-1.18.0.ebuild
+++ b/sys-fs/fswatch/fswatch-1.18.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.
LICENSE="GPL-3"
SLOT="0/13"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="nls static-libs"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/
@ 2025-02-15 18:51 Alfredo Tupone
0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone @ 2025-02-15 18:51 UTC (permalink / raw
To: gentoo-commits
commit: 8289842f116d806d11bfa992159e37bd24d03172
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 15 18:51:09 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Feb 15 18:51:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8289842f
sys-fs/fswatch: add 1.18.3, drop 1.17.1
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sys-fs/fswatch/Manifest | 2 +-
.../{fswatch-1.17.1.ebuild => fswatch-1.18.3.ebuild} | 18 +++++++++++++++---
2 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/sys-fs/fswatch/Manifest b/sys-fs/fswatch/Manifest
index 55cc514f57fc..8b4317d720b8 100644
--- a/sys-fs/fswatch/Manifest
+++ b/sys-fs/fswatch/Manifest
@@ -1,2 +1,2 @@
-DIST fswatch-1.17.1.tar.gz 853852 BLAKE2B 0d4d6a350325d4c7cc4ed4277e640d3fa4bfade5ec92b1c27abee9b506f34a024abadfbd5f002fdb3afd80a4ae432a071dd94c664123f447167ded6d5dbbaf9d SHA512 8d98b12e538026545052763961fe7d8147809958c25921bc30f43ba0d63c7f63a00c4b8412bbb63e3d1a0807687f8821f20e2667ee716b439cfb254ce346ccad
DIST fswatch-1.18.0.tar.gz 813482 BLAKE2B 432c7806428ba31585d336c8c21069ea3e55852f3318ecec19bc4094f2d8f13187afc0754f804591df7ad50d220e1674a0509e6d53dd388de03acdc363cc8563 SHA512 f0fd409f04d19830eb5d7244a43c7ef1117e9f6be807d1f4e7dbb637f74d9a494b1e19bf4e4b8df4acd959b221d884c054f680df6438b890c310bf69b2722664
+DIST fswatch-1.18.3.tar.gz 815588 BLAKE2B c59da8dd53b67ccaec863abfeed89e59e59ca639308557ac74a2e49f236da510270f8ab9afe4c83dfaf545a4cba7397c91aaa849603925f7cfabf1dabda71e4b SHA512 b867c228428bd343aca52655ed86dfc71a0f29474ef7444daca91d104f16cefa9a3be765773ec8078c5269035e67a6dcf99fe9a0deae823982078c094e48a9c2
diff --git a/sys-fs/fswatch/fswatch-1.17.1.ebuild b/sys-fs/fswatch/fswatch-1.18.3.ebuild
similarity index 64%
rename from sys-fs/fswatch/fswatch-1.17.1.ebuild
rename to sys-fs/fswatch/fswatch-1.18.3.ebuild
index 1ff71d7d6e2d..c937d09288b6 100644
--- a/sys-fs/fswatch/fswatch-1.17.1.ebuild
+++ b/sys-fs/fswatch/fswatch-1.18.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,9 +11,14 @@ SRC_URI="https://github.com/emcrisostomo/${PN}/releases/download/${PV}/${P}.tar.
LICENSE="GPL-3"
SLOT="0/13"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="nls static-libs"
+IUSE="doc nls static-libs"
+
+BDEPEND="doc? (
+ dev-texlive/texlive-latexrecommended
+ app-text/doxygen
+)"
src_configure() {
econf \
@@ -22,7 +27,14 @@ src_configure() {
CXX="$(tc-getCXX)"
}
+src_compile() {
+ default
+ use doc && emake doxygen
+}
+
src_install() {
default
find "${ED}" -type f -name "*.la" -delete || die
+ use doc && HTML_DOCS=( libfswatch/doc/doxygen/html/* )
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-15 18:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-19 23:45 [gentoo-commits] repo/gentoo:master commit in: sys-fs/fswatch/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-02-15 18:51 Alfredo Tupone
2025-01-12 13:34 Alfredo Tupone
2025-01-12 10:06 Alfredo Tupone
2023-01-26 19:37 Alfredo Tupone
2022-12-05 13:34 Alfredo Tupone
2021-12-29 22:19 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox