moat-src 0.8.4__tar.gz → 0.8.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.8.5/Makefile +15 -0
- {moat_src-0.8.4/moat_src.egg-info → moat_src-0.8.5}/PKG-INFO +1 -1
- moat_src-0.8.5/debian/.gitignore +8 -0
- moat_src-0.8.5/debian/changelog +78 -0
- moat_src-0.8.5/debian/control +20 -0
- {moat_src-0.8.4 → moat_src-0.8.5/debian/moat-src/usr/lib/python3/dist-packages}/moat/src/_main.py +1 -1
- moat_src-0.8.5/debian/rules +10 -0
- {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages → moat_src-0.8.5}/moat/src/_main.py +1 -1
- {moat_src-0.8.4 → moat_src-0.8.5/moat_src.egg-info}/PKG-INFO +1 -1
- {moat_src-0.8.4 → moat_src-0.8.5}/moat_src.egg-info/SOURCES.txt +5 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/pyproject.toml +1 -3
- {moat_src-0.8.4 → moat_src-0.8.5}/LICENSE.txt +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/moat/__init__.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.default.yaml +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.forced.yaml +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/__init__.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/_templates/moat/__init__.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/_templates/pyproject.default.yaml +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/_templates/pyproject.forced.yaml +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/inspect.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat/src/test.py +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat_src.egg-info/dependency_links.txt +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat_src.egg-info/requires.txt +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/moat_src.egg-info/top_level.txt +0 -0
- {moat_src-0.8.4 → moat_src-0.8.5}/setup.cfg +0 -0
moat_src-0.8.5/Makefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/make -f
|
2
|
+
|
3
|
+
PACKAGE = moat-src
|
4
|
+
MAKEINCL ?= $(shell python3 -mmoat src path)/make/py
|
5
|
+
|
6
|
+
ifneq ($(wildcard $(MAKEINCL)),)
|
7
|
+
include $(MAKEINCL)
|
8
|
+
# availabe via http://github.com/smurfix/sourcemgr
|
9
|
+
|
10
|
+
else
|
11
|
+
%:
|
12
|
+
@echo "Please fix 'python3 -mmoat src path'."
|
13
|
+
@exit 1
|
14
|
+
endif
|
15
|
+
|
@@ -0,0 +1,78 @@
|
|
1
|
+
moat-src (0.8.5-1) unstable; urgency=medium
|
2
|
+
|
3
|
+
* New release for 25.0.8
|
4
|
+
|
5
|
+
-- Matthias Urlichs <matthias@urlichs.de> Sun, 23 Mar 2025 14:42:53 +0100
|
6
|
+
|
7
|
+
moat-src (0.8.4-1) unstable; urgency=medium
|
8
|
+
|
9
|
+
* New release for 25.0.7
|
10
|
+
|
11
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 21:57:15 +0100
|
12
|
+
|
13
|
+
moat-src (0.8.3-1) unstable; urgency=medium
|
14
|
+
|
15
|
+
* New release for 25.0.6
|
16
|
+
|
17
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 21:51:18 +0100
|
18
|
+
|
19
|
+
moat-src (0.8.2-1) unstable; urgency=medium
|
20
|
+
|
21
|
+
* New release for 25.0.3
|
22
|
+
|
23
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 14:54:14 +0100
|
24
|
+
|
25
|
+
moat-src (0.8.1-1) unstable; urgency=medium
|
26
|
+
|
27
|
+
* New release for 25.0.2
|
28
|
+
|
29
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 13:31:29 +0100
|
30
|
+
|
31
|
+
moat-src (0.8.0-1) unstable; urgency=medium
|
32
|
+
|
33
|
+
* New release for 25.0.2
|
34
|
+
|
35
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 13:24:30 +0100
|
36
|
+
|
37
|
+
moat-src (0.7.0-1) unstable; urgency=medium
|
38
|
+
|
39
|
+
* New release for 25.0.2
|
40
|
+
|
41
|
+
-- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 12:04:24 +0100
|
42
|
+
|
43
|
+
moat-src (0.6.1-1) unstable; urgency=medium
|
44
|
+
|
45
|
+
* Merge
|
46
|
+
|
47
|
+
-- Matthias Urlichs <matthias@urlichs.de> Mon, 18 Nov 2024 10:05:25 +0100
|
48
|
+
|
49
|
+
moat-src (0.6.0-1) unstable; urgency=medium
|
50
|
+
|
51
|
+
* Merge
|
52
|
+
|
53
|
+
-- Matthias Urlichs <matthias@urlichs.de> Wed, 06 Mar 2024 10:34:24 +0100
|
54
|
+
|
55
|
+
moat-src (0.5.2-1) unstable; urgency=medium
|
56
|
+
|
57
|
+
* Merge
|
58
|
+
|
59
|
+
-- Matthias Urlichs <matthias@urlichs.de> Sun, 24 Dec 2023 09:30:07 +0100
|
60
|
+
|
61
|
+
moat-src (0.5.1-2) unstable; urgency=medium
|
62
|
+
|
63
|
+
* Fix naming and deps
|
64
|
+
|
65
|
+
-- Matthias Urlichs <matthias@urlichs.de> Wed, 15 Nov 2023 14:33:46 +0100
|
66
|
+
|
67
|
+
moat-src (0.5.1-1) unstable; urgency=medium
|
68
|
+
|
69
|
+
* Merge
|
70
|
+
|
71
|
+
-- Matthias Urlichs <matthias@urlichs.de> Wed, 15 Nov 2023 14:32:17 +0100
|
72
|
+
|
73
|
+
moat-src (0.3.1-1) unstable; urgency=medium
|
74
|
+
|
75
|
+
* Debianized.
|
76
|
+
|
77
|
+
-- Matthias Urlichs <matthias@urlichs.de> Thu, 18 May 2023 14:52:55 +0200
|
78
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Source: moat-src
|
2
|
+
Maintainer: Matthias Urlichs <matthias@urlichs.de>
|
3
|
+
Section: python
|
4
|
+
Priority: optional
|
5
|
+
Build-Depends: dh-python, python3-all, debhelper (>= 13), debhelper-compat (= 13),
|
6
|
+
python3-setuptools,
|
7
|
+
python3-wheel,
|
8
|
+
Standards-Version: 3.9.6
|
9
|
+
Homepage: https://github.com/M-o-a-T/moat-src
|
10
|
+
|
11
|
+
Package: moat-src
|
12
|
+
Architecture: all
|
13
|
+
Depends: ${misc:Depends}, ${python3:Depends},
|
14
|
+
python3-anyio (>= 2.0),
|
15
|
+
moat-main,
|
16
|
+
Recommends:
|
17
|
+
moat-kv (>= 0.32),
|
18
|
+
python3-trio (>= 0.17),
|
19
|
+
Description: MoaT module for handling MoaT-related packaging
|
20
|
+
|
@@ -1,5 +1,10 @@
|
|
1
1
|
LICENSE.txt
|
2
|
+
Makefile
|
2
3
|
pyproject.toml
|
4
|
+
debian/.gitignore
|
5
|
+
debian/changelog
|
6
|
+
debian/control
|
7
|
+
debian/rules
|
3
8
|
debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py
|
4
9
|
debian/moat-src/usr/lib/python3/dist-packages/moat/src/_main.py
|
5
10
|
debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py
|
@@ -18,7 +18,7 @@ dependencies = [
|
|
18
18
|
"gitpython",
|
19
19
|
"packaging",
|
20
20
|
]
|
21
|
-
version = "0.8.
|
21
|
+
version = "0.8.5"
|
22
22
|
keywords = [ "MoaT",]
|
23
23
|
requires-python = ">=3.8"
|
24
24
|
name = "moat-src"
|
@@ -49,8 +49,6 @@ find = {}
|
|
49
49
|
[tool.setuptools.package-data]
|
50
50
|
"*" = ["*.yaml"]
|
51
51
|
|
52
|
-
[tool.setuptools_scm]
|
53
|
-
|
54
52
|
[tool.tox]
|
55
53
|
legacy_tox_ini = """
|
56
54
|
[tox]
|
File without changes
|
{moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py
RENAMED
File without changes
|
{moat_src-0.8.4 → moat_src-0.8.5}/debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py
RENAMED
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
|