lockss-turtles 0.3.0.dev2__tar.gz → 0.3.0.dev4__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 (22) hide show
  1. lockss_turtles-0.3.0.dev4/CHANGELOG.rst +77 -0
  2. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/LICENSE +1 -1
  3. lockss_turtles-0.3.0.dev4/PKG-INFO +802 -0
  4. lockss_turtles-0.3.0.dev4/README.rst +771 -0
  5. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/pyproject.toml +4 -1
  6. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/__init__.py +1 -1
  7. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/app.py +18 -16
  8. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/cli.py +12 -10
  9. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/plugin_registry.py +8 -9
  10. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/resources/plugin-registry-schema.json +7 -0
  11. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/resources/plugin-set-schema.json +23 -19
  12. lockss_turtles-0.3.0.dev2/src/lockss/turtles/resources/plugin-signing-schema.json → lockss_turtles-0.3.0.dev4/src/lockss/turtles/resources/plugin-signing-credentials-schema.json +4 -4
  13. lockss_turtles-0.3.0.dev2/PKG-INFO +0 -607
  14. lockss_turtles-0.3.0.dev2/README.rst +0 -576
  15. lockss_turtles-0.3.0.dev2/src/lockss/turtles/turtles.py +0 -1109
  16. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/__main__.py +0 -0
  17. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/plugin.py +0 -0
  18. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/plugin_set.py +0 -0
  19. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/resources/__init__.py +0 -0
  20. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/resources/plugin-registry-catalog-schema.json +0 -0
  21. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/resources/plugin-set-catalog-schema.json +0 -0
  22. {lockss_turtles-0.3.0.dev2 → lockss_turtles-0.3.0.dev4}/src/lockss/turtles/util.py +0 -0
@@ -0,0 +1,77 @@
1
+ =============
2
+ Release Notes
3
+ =============
4
+
5
+ -----
6
+ 0.3.0
7
+ -----
8
+
9
+ Released: FIXME
10
+
11
+ .. rubric:: Features
12
+
13
+ * Completely refactored to be in the package ``lockss.turtles``.
14
+
15
+ * Using Poetry to make uploadable to and installable from PyPI as `lockss-turtles <https://pypi.org/project/lockss-turtles>`_. Removed the requirements file.
16
+
17
+ * Validate the various YAML objects (like a ``PluginSet``) against a `JSON Schema <https://json-schema.org/>`_.
18
+
19
+ .. rubric:: Changes
20
+
21
+ * Temporarily disabled the ``analyze-registry`` command.
22
+
23
+ * ``$XDG_CONFIG_HOME/turtles`` (by default ``$HOME/.config/turtles``) is now ``$XDG_CONFIG_HOME/lockss.turtles`` (by default ``$HOME/.config/lockss.turtles``) or ``/etc/lockss.turtles`` (formerly ``turtles``).
24
+
25
+ * ``settings.yaml`` is now ``plugin-signing.yaml`` and its ``kind`` is now ``PluginSigning``. The corresponding command line option ``--settings`` is now ``--plugin-signing``.
26
+
27
+ * ``plugin-sets.yaml``, its kind ``PluginSets``, its key ``plugin-sets``, and the command line option ``--plugin-sets`` are now ``plugin-set-catalog.yaml``, ``PluginSetCatalog``, ``plugin-set-files`` and ``--plugin-set-catalog``, respectively. The builder ``options`` key is deprecated.
28
+
29
+ * ``plugin-registries.yaml``, its kind ``PluginRegistries``, its key ``plugin-registries``, and the command line option ``--plugin-registries`` are now ``plugin-registry-catalog.yaml``, ``PluginRegistryCatalog``, ``plugin-registry-files`` and ``--plugin-registry-catalog``, respectively. The ``file-naming-convention`` key is now directly under ``layout`` and the value ``full`` is now ``identifier``. The layout ``options`` key is deprecated.
30
+
31
+ -----
32
+ 0.2.0
33
+ -----
34
+
35
+ Released: 2022-10-26
36
+
37
+ .. rubric:: Features
38
+
39
+ * ``MavenPluginSet``, for Maven projects inheriting from ``org.lockss:lockss-plugins-parent-pom``.
40
+
41
+ * ``AntPluginSet``: file naming convention layout option.
42
+
43
+ * Tabular output now includes the plugin version.
44
+
45
+ .. rubric:: Bug Fixes
46
+
47
+ * ``AntPluginSet``: run ``ant load-plugins`` before building plugins.
48
+
49
+ -----
50
+ 0.1.1
51
+ -----
52
+
53
+ Released: 2022-10-23
54
+
55
+ .. rubric:: Bug Fixes
56
+
57
+ * ``RcsPluginRegistry``: Better handle incompletely managed RCS areas.
58
+
59
+ * ``DirectoryPluginRegistry``: Better file handling with ``cp``.
60
+
61
+ -----
62
+ 0.1.0
63
+ -----
64
+
65
+ Released: 2022-10-10
66
+
67
+ Initial release.
68
+
69
+ .. rubric:: Features
70
+
71
+ * ``AntPluginSet``, based on the classic ``lockss-daemon`` Ant builder.
72
+
73
+ * ``DirectoryPluginRegistry``, for a simple layout.
74
+
75
+ * ``RcsPluginRegistry``, based on the classic RCS layout.
76
+
77
+ * Tabular output by `tabulate <https://pypi.org/project/tabulate/>`_.
@@ -1,4 +1,4 @@
1
- Copyright (c) 2000-2022, Board of Trustees of Leland Stanford Jr. University
1
+ Copyright (c) 2000-2023, Board of Trustees of Leland Stanford Jr. University
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without
4
4
  modification, are permitted provided that the following conditions are met: