moat-src 0.8.4__tar.gz → 0.8.10__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.
Files changed (33) hide show
  1. moat_src-0.8.10/Makefile +15 -0
  2. {moat_src-0.8.4/moat_src.egg-info → moat_src-0.8.10}/PKG-INFO +2 -2
  3. moat_src-0.8.10/debian/.gitignore +8 -0
  4. moat_src-0.8.10/debian/changelog +132 -0
  5. moat_src-0.8.10/debian/control +20 -0
  6. moat_src-0.8.10/debian/rules +10 -0
  7. moat_src-0.8.10/pyproject.toml +41 -0
  8. moat_src-0.8.10/src/moat/src/_cfg.yaml +2 -0
  9. {moat_src-0.8.4 → moat_src-0.8.10/src}/moat/src/_main.py +287 -197
  10. moat_src-0.8.10/src/moat/src/_templates/moat/_main.py +23 -0
  11. {moat_src-0.8.4 → moat_src-0.8.10/src}/moat/src/test.py +1 -1
  12. {moat_src-0.8.4 → moat_src-0.8.10/src/moat_src.egg-info}/PKG-INFO +2 -2
  13. moat_src-0.8.10/src/moat_src.egg-info/SOURCES.txt +21 -0
  14. {moat_src-0.8.4 → moat_src-0.8.10/src}/moat_src.egg-info/requires.txt +1 -1
  15. moat_src-0.8.10/src/moat_src.egg-info/top_level.txt +1 -0
  16. moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_main.py +0 -1113
  17. moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py +0 -89
  18. moat_src-0.8.4/moat/src/__init__.py +0 -0
  19. moat_src-0.8.4/moat/src/_templates/moat/__init__.py +0 -3
  20. moat_src-0.8.4/moat/src/_templates/pyproject.default.yaml +0 -146
  21. moat_src-0.8.4/moat/src/_templates/pyproject.forced.yaml +0 -77
  22. moat_src-0.8.4/moat/src/inspect.py +0 -65
  23. moat_src-0.8.4/moat_src.egg-info/SOURCES.txt +0 -21
  24. moat_src-0.8.4/moat_src.egg-info/top_level.txt +0 -4
  25. moat_src-0.8.4/pyproject.toml +0 -90
  26. {moat_src-0.8.4 → moat_src-0.8.10}/LICENSE.txt +0 -0
  27. {moat_src-0.8.4 → moat_src-0.8.10}/setup.cfg +0 -0
  28. {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages → moat_src-0.8.10/src}/moat/src/__init__.py +0 -0
  29. {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages → moat_src-0.8.10/src}/moat/src/_templates/moat/__init__.py +0 -0
  30. {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates → moat_src-0.8.10/src/moat/src/_templates/packaging}/pyproject.default.yaml +0 -0
  31. {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates → moat_src-0.8.10/src/moat/src/_templates/packaging}/pyproject.forced.yaml +0 -0
  32. {moat_src-0.8.4/debian/moat-src/usr/lib/python3/dist-packages → moat_src-0.8.10/src}/moat/src/inspect.py +0 -0
  33. {moat_src-0.8.4 → moat_src-0.8.10/src}/moat_src.egg-info/dependency_links.txt +0 -0
@@ -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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moat-src
3
- Version: 0.8.4
3
+ Version: 0.8.10
4
4
  Summary: Tools for managing the MoaT sources
5
5
  Author-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
@@ -15,7 +15,7 @@ Classifier: Development Status :: 4 - Beta
15
15
  Requires-Python: >=3.8
16
16
  Description-Content-Type: text/x-rst
17
17
  License-File: LICENSE.txt
18
- Requires-Dist: anyio~=3.0
18
+ Requires-Dist: anyio~=4.2
19
19
  Requires-Dist: tomlkit~=0.12
20
20
  Requires-Dist: asyncclick
21
21
  Requires-Dist: gitpython
@@ -0,0 +1,8 @@
1
+ /files
2
+ /*.log
3
+ /*.debhelper
4
+ /*.debhelper-build-stamp
5
+ /*.substvars
6
+ /debhelper-build-stamp
7
+ /moat-src
8
+ /*.service
@@ -0,0 +1,132 @@
1
+ moat-src (0.8.10-1) unstable; urgency=medium
2
+
3
+ * New release for 25.1.24
4
+
5
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 11:35:22 +0200
6
+
7
+ moat-src (0.8.9-2) unstable; urgency=medium
8
+
9
+ * New release for 25.1.16
10
+
11
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 02:50:39 +0200
12
+
13
+ moat-src (0.8.9-1) unstable; urgency=medium
14
+
15
+ * New release for 25.1.15
16
+
17
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 02:47:30 +0200
18
+
19
+ moat-src (0.8.8-1) unstable; urgency=medium
20
+
21
+ * New release for 25.1.14
22
+
23
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 02:46:57 +0200
24
+
25
+ moat-src (0.8.7-3) unstable; urgency=medium
26
+
27
+ * New release for 25.1.13
28
+
29
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 02:07:36 +0200
30
+
31
+ moat-src (0.8.7-2) unstable; urgency=medium
32
+
33
+ * New release for 25.1.12
34
+
35
+ -- Matthias Urlichs <matthias@urlichs.de> Tue, 06 May 2025 01:53:32 +0200
36
+
37
+ moat-src (0.8.7-1) unstable; urgency=medium
38
+
39
+ * New release for 25.1.11
40
+
41
+ -- Matthias Urlichs <matthias@urlichs.de> Mon, 05 May 2025 18:25:34 +0200
42
+
43
+ moat-src (0.8.6-2) unstable; urgency=medium
44
+
45
+ * New release for 25.1.8
46
+
47
+ -- Matthias Urlichs <matthias@urlichs.de> Sun, 04 May 2025 19:51:30 +0200
48
+
49
+ moat-src (0.8.6-1) unstable; urgency=medium
50
+
51
+ * New release for 25.1.2
52
+
53
+ -- Matthias Urlichs <matthias@urlichs.de> Sun, 04 May 2025 16:24:28 +0200
54
+
55
+ moat-src (0.8.5-1) unstable; urgency=medium
56
+
57
+ * New release for 25.0.8
58
+
59
+ -- Matthias Urlichs <matthias@urlichs.de> Sun, 23 Mar 2025 14:42:53 +0100
60
+
61
+ moat-src (0.8.4-1) unstable; urgency=medium
62
+
63
+ * New release for 25.0.7
64
+
65
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 21:57:15 +0100
66
+
67
+ moat-src (0.8.3-1) unstable; urgency=medium
68
+
69
+ * New release for 25.0.6
70
+
71
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 21:51:18 +0100
72
+
73
+ moat-src (0.8.2-1) unstable; urgency=medium
74
+
75
+ * New release for 25.0.3
76
+
77
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 14:54:14 +0100
78
+
79
+ moat-src (0.8.1-1) unstable; urgency=medium
80
+
81
+ * New release for 25.0.2
82
+
83
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 13:31:29 +0100
84
+
85
+ moat-src (0.8.0-1) unstable; urgency=medium
86
+
87
+ * New release for 25.0.2
88
+
89
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 13:24:30 +0100
90
+
91
+ moat-src (0.7.0-1) unstable; urgency=medium
92
+
93
+ * New release for 25.0.2
94
+
95
+ -- Matthias Urlichs <matthias@urlichs.de> Fri, 21 Mar 2025 12:04:24 +0100
96
+
97
+ moat-src (0.6.1-1) unstable; urgency=medium
98
+
99
+ * Merge
100
+
101
+ -- Matthias Urlichs <matthias@urlichs.de> Mon, 18 Nov 2024 10:05:25 +0100
102
+
103
+ moat-src (0.6.0-1) unstable; urgency=medium
104
+
105
+ * Merge
106
+
107
+ -- Matthias Urlichs <matthias@urlichs.de> Wed, 06 Mar 2024 10:34:24 +0100
108
+
109
+ moat-src (0.5.2-1) unstable; urgency=medium
110
+
111
+ * Merge
112
+
113
+ -- Matthias Urlichs <matthias@urlichs.de> Sun, 24 Dec 2023 09:30:07 +0100
114
+
115
+ moat-src (0.5.1-2) unstable; urgency=medium
116
+
117
+ * Fix naming and deps
118
+
119
+ -- Matthias Urlichs <matthias@urlichs.de> Wed, 15 Nov 2023 14:33:46 +0100
120
+
121
+ moat-src (0.5.1-1) unstable; urgency=medium
122
+
123
+ * Merge
124
+
125
+ -- Matthias Urlichs <matthias@urlichs.de> Wed, 15 Nov 2023 14:32:17 +0100
126
+
127
+ moat-src (0.3.1-1) unstable; urgency=medium
128
+
129
+ * Debianized.
130
+
131
+ -- Matthias Urlichs <matthias@urlichs.de> Thu, 18 May 2023 14:52:55 +0200
132
+
@@ -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
+
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/make -f
2
+
3
+ # This file was automatically generated by stdeb 0.8.5 at
4
+ # Fri, 19 Jul 2019 22:07:17 +0200
5
+ export PYBUILD_NAME=moat-src
6
+ %:
7
+ dh $@ --with python3 --buildsystem=pybuild
8
+
9
+ override_dh_auto_test:
10
+ : no test
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ build-backend = "setuptools.build_meta"
3
+ requires = [ "setuptools", "wheel",]
4
+
5
+ [project]
6
+ classifiers = [
7
+ "Intended Audience :: Developers",
8
+ "Programming Language :: Python :: 3",
9
+ "Framework :: AsyncIO",
10
+ "Framework :: Trio",
11
+ "Framework :: AnyIO",
12
+ "Development Status :: 4 - Beta",
13
+ ]
14
+ dependencies = [
15
+ "anyio ~= 4.2",
16
+ "tomlkit ~= 0.12",
17
+ "asyncclick",
18
+ "gitpython",
19
+ "packaging",
20
+ ]
21
+ version = "0.8.10"
22
+ keywords = [ "MoaT",]
23
+ requires-python = ">=3.8"
24
+ name = "moat-src"
25
+ description = "Tools for managing the MoaT sources"
26
+ readme = "README.rst"
27
+
28
+ [[project.authors]]
29
+ email = "matthias@urlichs.de"
30
+ name = "Matthias Urlichs"
31
+
32
+ [project.urls]
33
+ homepage = "https://m-o-a-t.org"
34
+ repository = "https://github.com/M-o-a-T/moat"
35
+
36
+ [tool.setuptools]
37
+ [tool.setuptools.packages.find]
38
+ where = ["src"]
39
+
40
+ [tool.setuptools.package-data]
41
+ "*" = ["*.yaml"]
@@ -0,0 +1,2 @@
1
+ src:
2
+ done: "/src/DONE"