moat-src 0.9.3__tar.gz → 0.9.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {moat_src-0.9.3/src/moat_src.egg-info → moat_src-0.9.5}/PKG-INFO +1 -1
- {moat_src-0.9.3 → moat_src-0.9.5}/debian/changelog +18 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/pyproject.toml +1 -1
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_main.py +2 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/test.py +1 -2
- {moat_src-0.9.3 → moat_src-0.9.5/src/moat_src.egg-info}/PKG-INFO +1 -1
- {moat_src-0.9.3 → moat_src-0.9.5}/LICENSE.txt +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/Makefile +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/debian/.gitignore +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/debian/control +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/debian/rules +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/setup.cfg +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/__init__.py +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_cfg.yaml +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_templates/moat/__init__.py +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_templates/moat/_main.py +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_templates/packaging/pyproject.default.yaml +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/_templates/packaging/pyproject.forced.yaml +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat/src/inspect.py +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat_src.egg-info/SOURCES.txt +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat_src.egg-info/dependency_links.txt +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat_src.egg-info/requires.txt +0 -0
- {moat_src-0.9.3 → moat_src-0.9.5}/src/moat_src.egg-info/top_level.txt +0 -0
@@ -1,3 +1,21 @@
|
|
1
|
+
moat-src (0.9.5-1) unstable; urgency=medium
|
2
|
+
|
3
|
+
* New release for 25.3.3
|
4
|
+
|
5
|
+
-- Matthias Urlichs <matthias@urlichs.de> Tue, 22 Jul 2025 09:31:30 +0200
|
6
|
+
|
7
|
+
moat-src (0.9.4-2) unstable; urgency=medium
|
8
|
+
|
9
|
+
* New release for 25.3.3
|
10
|
+
|
11
|
+
-- Matthias Urlichs <matthias@urlichs.de> Sat, 24 May 2025 14:28:26 +0200
|
12
|
+
|
13
|
+
moat-src (0.9.4-1) unstable; urgency=medium
|
14
|
+
|
15
|
+
* New release for 25.3.2
|
16
|
+
|
17
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 23 May 2025 13:46:49 +0200
|
18
|
+
|
1
19
|
moat-src (0.9.3-1) unstable; urgency=medium
|
2
20
|
|
3
21
|
* New release for 25.3.1
|
@@ -190,6 +190,8 @@ class Package(_Common):
|
|
190
190
|
except AttributeError:
|
191
191
|
return True
|
192
192
|
for d in head.diff(self.last_commit, paths=self.path if main else Path("packaging")/self.dash):
|
193
|
+
if Path(d.b_path).name == "changelog":
|
194
|
+
continue
|
193
195
|
if (
|
194
196
|
self._repo.repo_for(d.a_path, main) != self.name
|
195
197
|
and self._repo.repo_for(d.b_path, main) != self.name
|
@@ -11,7 +11,7 @@ import sys
|
|
11
11
|
from contextlib import contextmanager
|
12
12
|
|
13
13
|
from asyncscope import main_scope, scope
|
14
|
-
from moat.util import OptCtx, attrdict, wrap_main # pylint:disable=no-name-in-module
|
14
|
+
from moat.util import OptCtx, attrdict, wrap_main, CFG # pylint:disable=no-name-in-module
|
15
15
|
|
16
16
|
logger = logging.getLogger(__name__)
|
17
17
|
|
@@ -19,7 +19,6 @@ logger = logging.getLogger(__name__)
|
|
19
19
|
async def run(*args, expect_exit=0, do_stdout=True):
|
20
20
|
"""Call a MoaT command handler"""
|
21
21
|
args = ("-c", "/dev/null", *args)
|
22
|
-
CFG = {} # load_cfg("moat")
|
23
22
|
|
24
23
|
if do_stdout:
|
25
24
|
CFG["_stdout"] = out = io.StringIO()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|