5
0
forked from pool/watchexec

3 Commits

Author SHA256 Message Date
0a2a9f383a Accepting request 1220044 from utilities
- Update to version 2.2.0:
  * Explicitly watching files that are in your .gitignore no longer requires --no-vcs-ignore (#674, #859, contributed by @TheBlek)
  * Fix Windows usage for legacy programs due to usage of UNC paths (#830, #858, contributed by @TheBlek)
  * Various dependency upgrades
- Version 2.1.0 changes:
  * New: -W, --watch-non-recursive for watching paths without also watching subfolders.
  * New: out-of-tree git repositories are now detected (i.e. when .git is a file rather than a folder)
  * Logs are also improved slightly with less nonsense at startup.
- Version 2.0.0 changelog:
   * New: --wrap-process=MODE lets you choose between using process groups, process sessions, or nothing at all. (#794)
  * New: the WATCHEXEC_TMPDIR environment variable can be used to customize where Watchexec will write temporary files, if for some reason your $TMPDIR is unwritable. (#814)
  * Fix: watchexec no longer creates a temporary file at startup. (#814)
  * Fix: the screen is no longer cleared on all events, only when starting a new process. (#809)
  * Experimental new feature - filterp rograms with -j
  * Full changelog for breaking changes in 2.0.0: https://github.com/watchexec/watchexec/releases/tag/v2.0.0

OBS-URL: https://build.opensuse.org/request/show/1220044
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/watchexec?expand=0&rev=11
2024-11-01 20:03:55 +00:00
07df380455 - Remove unneeded obscpio and obsinfo files.
- Update to version 1.23.0:
  * release: watchexec-cli v1.23.0 (#647)
  * Add --no-discover-ignore (#645)
  * Re-add `-d` short flag (#635)
  * Skip search for ignores when not needed (#644)
  * Clippy and update lockfile (#646)
  * release: bosion v1.0.1 (#623)
  * Update gix-config requirement from 0.24.0 to 0.25.1 in /crates/ignore-files (#622)
  * Update gix requirement from 0.47 to 0.48 in /crates/bosion (#621)
  * Fix some typos (#617)
  * Update gix-config requirement from 0.22.0 to 0.24.0 in /crates/ignore-files (#614)

OBS-URL: https://build.opensuse.org/package/show/utilities/watchexec?expand=0&rev=24
2024-11-01 10:54:48 +00:00
1bf957935e - Update to version 2.2.0:
* Explicitly watching files that are in your .gitignore no longer requires --no-vcs-ignore (#674, #859, contributed by @TheBlek)
  * Fix Windows usage for legacy programs due to usage of UNC paths (#830, #858, contributed by @TheBlek)
  * Various dependency upgrades
- Version 2.1.0 changes:
  * New: -W, --watch-non-recursive for watching paths without also watching subfolders.
  * New: out-of-tree git repositories are now detected (i.e. when .git is a file rather than a folder)
  * Logs are also improved slightly with less nonsense at startup.
- Version 2.0.0 changelog:
   * New: --wrap-process=MODE lets you choose between using process groups, process sessions, or nothing at all. (#794)
  * New: the WATCHEXEC_TMPDIR environment variable can be used to customize where Watchexec will write temporary files, if for some reason your $TMPDIR is unwritable. (#814)
  * Fix: watchexec no longer creates a temporary file at startup. (#814)
  * Fix: the screen is no longer cleared on all events, only when starting a new process. (#809)
  * Experimental new feature - filterp rograms with -j
  * Full changelog for breaking changes in 2.0.0: https://github.com/watchexec/watchexec/releases/tag/v2.0.0

OBS-URL: https://build.opensuse.org/package/show/utilities/watchexec?expand=0&rev=23
2024-10-31 12:30:17 +00:00
6 changed files with 30 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
<param name="url">https://github.com/watchexec/watchexec.git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="scm">git</param>
<param name="revision">v1.23.0</param>
<param name="revision">v2.2.0</param>
<param name="match-tag">*</param>
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
<param name="versionrewrite-replacement">\1</param>
@@ -24,4 +24,4 @@
<service name="cargo_audit" mode="disabled">
<param name="srcdir">watchexec</param>
</service>
</services>
</services>

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a713691707b1583d70e42177db7ec23ca9abff2bbb6306ee7bca262d61ba54f1
size 49240716
oid sha256:9e45c75388abb3b844abd92692e078922bf1a09b1f00bdbafa67328e5f2e53fd
size 37606504

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6ef7357da06cfc15220930c812f07ee90403e7cc9cecadda674504ad7a0f0ff1
size 296648

3
watchexec-2.2.0.tar.xz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc2dc50c880c97b79c5ebfc2eb1b03fecd19cd671cf153931a5c136fa2da4f0e
size 279328

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Oct 31 08:33:03 UTC 2024 - Angel Yankov <angel.yankov@suse.com>
- Update to version 2.2.0:
* Explicitly watching files that are in your .gitignore no longer requires --no-vcs-ignore (#674, #859, contributed by @TheBlek)
* Fix Windows usage for legacy programs due to usage of UNC paths (#830, #858, contributed by @TheBlek)
* Various dependency upgrades
- Version 2.1.0 changes:
* New: -W, --watch-non-recursive for watching paths without also watching subfolders.
* New: out-of-tree git repositories are now detected (i.e. when .git is a file rather than a folder)
* Logs are also improved slightly with less nonsense at startup.
- Version 2.0.0 changelog:
* New: --wrap-process=MODE lets you choose between using process groups, process sessions, or nothing at all. (#794)
* New: the WATCHEXEC_TMPDIR environment variable can be used to customize where Watchexec will write temporary files, if for some reason your $TMPDIR is unwritable. (#814)
* Fix: watchexec no longer creates a temporary file at startup. (#814)
* Fix: the screen is no longer cleared on all events, only when starting a new process. (#809)
* Experimental new feature - filterp rograms with -j
* Full changelog for breaking changes in 2.0.0: https://github.com/watchexec/watchexec/releases/tag/v2.0.0
-------------------------------------------------------------------
Mon Oct 23 15:23:41 UTC 2023 - David Anes <david.anes@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package watchexec
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: watchexec
Version: 1.23.0
Version: 2.2.0
Release: 0
Summary: Watches a path and runs a command whenever it detects modifications.
License: Apache-2.0
@@ -57,7 +57,6 @@ install -m 0644 doc/watchexec.1 %{buildroot}%{_mandir}/man1/watchexec.1
%license LICENSE
%doc README.md
%doc doc/watchexec.1.md
%doc doc/watchexec.1.pdf
%{_mandir}/man1/watchexec.1%{?ext_man}
%{_bindir}/watchexec