* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-10-04 15:55 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-10-04 15:55 UTC (permalink / raw
To: gentoo-commits
commit: 1a815b99d24b73678c575798878f285bc6e06913
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 15:55:44 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 15:55:44 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=1a815b99
start work on v0.10.17
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 5eaa66ba..c2ce2dc2 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ('keywords', 'scan', 'PkgcheckException', 'Result')
__title__ = 'pkgcheck'
-__version__ = '0.10.16'
+__version__ = '0.10.17'
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-10-12 18:06 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-10-12 18:06 UTC (permalink / raw
To: gentoo-commits
commit: 32864bb166f3a85b4663d93b2a9f03832626bb4f
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 17:50:40 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 17:51:19 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=32864bb1
runners: add sequential runner
Add a special runner which is run only on main process, and after the
synchronous runners. This is useful for runners which must not be run
in parallel, like the git checks.
Resolves: #326
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/pipeline.py | 10 ++++++++--
src/pkgcheck/runners.py | 9 +++++++++
2 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/src/pkgcheck/pipeline.py b/src/pkgcheck/pipeline.py
index 9c83ffdb..0dd8f9b4 100644
--- a/src/pkgcheck/pipeline.py
+++ b/src/pkgcheck/pipeline.py
@@ -77,7 +77,7 @@ class Pipeline:
def _create_runners(self):
"""Initialize and categorize checkrunners for results pipeline."""
- pipes = {'async': [], 'sync': []}
+ pipes = {'async': [], 'sync': [], 'sequential': []}
# use addon/source caches to avoid re-initializing objects
addons_map = {}
@@ -96,7 +96,7 @@ class Pipeline:
# Initialize checkrunners per source type using separate runner for
# async checks and categorize them for parallelization based on the
# scan and source scope.
- runners = {'async': defaultdict(list), 'sync': defaultdict(list)}
+ runners = {'async': defaultdict(list), 'sync': defaultdict(list), 'sequential': defaultdict(list)}
for (source, runner_cls), check_objs in checks.items():
runner = runner_cls(self.options, source, check_objs)
if not self.options.pkg_scan and source.scope >= base.package_scope:
@@ -227,6 +227,12 @@ class Pipeline:
self._queue_work(sync_pipes, work_q)
pool.join()
+ if sequential_pipes := self._pipes['sequential']:
+ for _scope, restriction, pipes in sequential_pipes:
+ for runner in chain.from_iterable(pipes.values()):
+ if results := tuple(runner.run(restriction)):
+ self._results_q.put(results)
+
if async_proc is not None:
async_proc.join()
# notify iterator that no more results exist
diff --git a/src/pkgcheck/runners.py b/src/pkgcheck/runners.py
index b87cafb8..b1aa8e64 100644
--- a/src/pkgcheck/runners.py
+++ b/src/pkgcheck/runners.py
@@ -92,6 +92,15 @@ class RepoCheckRunner(SyncCheckRunner):
yield from check.finish()
+class SequentialCheckRunner(SyncCheckRunner):
+ """Generic runner for sequential checks.
+
+ Checks that must not be run in parallel, will be run on the main process.
+ """
+
+ type = 'sequential'
+
+
class AsyncCheckRunner(CheckRunner):
"""Generic runner for asynchronous checks.
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-10-14 20:35 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-10-14 20:35 UTC (permalink / raw
To: gentoo-commits
commit: 6f5180b315d6ebc7db6a58eec906b4f0f6b20f15
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 20:26:00 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 20:34:52 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=6f5180b3
start work on 0.10.18
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index c2ce2dc2..0cd5cce0 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ('keywords', 'scan', 'PkgcheckException', 'Result')
__title__ = 'pkgcheck'
-__version__ = '0.10.17'
+__version__ = '0.10.18'
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-11-11 16:15 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-11-11 16:15 UTC (permalink / raw
To: gentoo-commits
commit: cfc39a9f7d011b1fa8fe26ac937a0ac5ff1cf6e7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 11 16:14:40 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 16:14:40 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=cfc39a9f
start work on 0.10.19
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 0cd5cce0..43b72929 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ('keywords', 'scan', 'PkgcheckException', 'Result')
__title__ = 'pkgcheck'
-__version__ = '0.10.18'
+__version__ = '0.10.19'
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-12-02 10:39 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-12-02 10:39 UTC (permalink / raw
To: gentoo-commits
commit: a51a319f4fca03597ee9be2a08cf6d6b1f6ef1fd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 2 10:39:04 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 2 10:39:04 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=a51a319f
start work on 0.10.20
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 43b72929..699538a1 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ('keywords', 'scan', 'PkgcheckException', 'Result')
__title__ = 'pkgcheck'
-__version__ = '0.10.19'
+__version__ = '0.10.20'
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2022-12-31 11:31 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-12-31 11:31 UTC (permalink / raw
To: gentoo-commits
commit: 05db7941d68e06581ecdce5124fc8ef3e9ac9ba9
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 11:31:15 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 11:31:23 2022 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=05db7941
start work on 0.10.21
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 8e50bdfc..5798eced 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.20"
+__version__ = "0.10.21"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-01-09 18:13 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-01-09 18:13 UTC (permalink / raw
To: gentoo-commits
commit: d4056e19077852795cd71f3cf099616fb60fb772
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 9 18:12:53 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 9 18:12:53 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=d4056e19
add __main__.py file
I'm adding this file, so you can call pkgcheck using
`python -m pkgcheck`.
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__main__.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/pkgcheck/__main__.py b/src/pkgcheck/__main__.py
new file mode 100644
index 00000000..4f139a41
--- /dev/null
+++ b/src/pkgcheck/__main__.py
@@ -0,0 +1,4 @@
+from .scripts import run
+
+if __name__ == "__main__":
+ run("pkgcheck")
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-01-20 13:29 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-01-20 13:29 UTC (permalink / raw
To: gentoo-commits
commit: 64be4386e6c85ffea7b8f0d99d6d1d5980e2cf88
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 13:29:22 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 13:29:22 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=64be4386
FormatReporter: mention `--format` in help
Resolves: https://github.com/pkgcore/pkgcheck/issues/522
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/reporters.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/pkgcheck/reporters.py b/src/pkgcheck/reporters.py
index 089037d1..cf6d9b2b 100644
--- a/src/pkgcheck/reporters.py
+++ b/src/pkgcheck/reporters.py
@@ -166,7 +166,7 @@ class XmlReporter(Reporter):
@coroutine
def _process_report(self):
- result_template = "<result><class>%(class)s</class>" "<msg>%(msg)s</msg></result>"
+ result_template = "<result><class>%(class)s</class><msg>%(msg)s</msg></result>"
cat_template = (
"<result><category>%(category)s</category>"
"<class>%(class)s</class><msg>%(msg)s</msg></result>"
@@ -239,7 +239,10 @@ class _ResultFormatter(Formatter):
class FormatReporter(Reporter):
- """Custom format string reporter."""
+ """Custom format string reporter.
+
+ This formatter uses custom format string passed using the ``--format``
+ command line argument."""
priority = -1001
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-02-04 19:28 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-02-04 19:28 UTC (permalink / raw
To: gentoo-commits
commit: 8642e09fb9df7083691fe24c93b4aa5c563c0ac4
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 19:28:01 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 19:28:01 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=8642e09f
start work on 0.10.22
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 5798eced..25c1299b 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.21"
+__version__ = "0.10.22"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-03-01 19:24 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-03-01 19:24 UTC (permalink / raw
To: gentoo-commits
commit: e623cc14466a870fd03be842de72554f9fef4d99
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 1 19:24:10 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 1 19:24:10 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=e623cc14
start work on 0.10.23
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 25c1299b..8764ee1d 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.22"
+__version__ = "0.10.23"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-03-11 7:15 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-03-11 7:15 UTC (permalink / raw
To: gentoo-commits
commit: 95583858015465a63128d3ef294bf46e692f3ce3
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 07:14:55 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 07:14:55 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=95583858
start work on 0.10.24
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 8764ee1d..a56018f1 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.23"
+__version__ = "0.10.24"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-05-19 17:00 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-05-19 17:00 UTC (permalink / raw
To: gentoo-commits
commit: 47e962f361d991c4b33361dc50e35b163f318cde
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 16:59:48 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 19 16:59:48 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=47e962f3
start work on 0.10.25
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index a56018f1..070881ab 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.24"
+__version__ = "0.10.25"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-07-30 17:57 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-07-30 17:57 UTC (permalink / raw
To: gentoo-commits
commit: 05856663ab843d2b2be82ab95002a6285fc661d5
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 30 17:57:27 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 17:57:27 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=05856663
start work on 0.10.26
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 070881ab..95e913ed 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.25"
+__version__ = "0.10.26"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2023-11-01 19:20 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2023-11-01 19:20 UTC (permalink / raw
To: gentoo-commits
commit: ca188bb3bcdb0ad36031728b373bbdc84a682525
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 1 18:57:58 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 1 18:57:58 2023 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=ca188bb3
start work on 0.10.27
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 95e913ed..23aba96d 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.26"
+__version__ = "0.10.27"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-01-26 8:46 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-01-26 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 99b0d97368405f1dc847b04207338603e71b1342
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 26 08:35:19 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 26 08:35:19 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=99b0d973
start work on 0.10.28
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 23aba96d..780bab4f 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.27"
+__version__ = "0.10.28"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-03-01 21:06 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-03-01 21:06 UTC (permalink / raw
To: gentoo-commits
commit: a9fcb73cc3f06ed8987abaf8a42492dc9bb5db0e
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 1 20:49:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 1 20:49:15 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=a9fcb73c
start work on 0.10.29
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 780bab4f..7fcee5d7 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.28"
+__version__ = "0.10.29"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-05-17 14:58 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-17 14:58 UTC (permalink / raw
To: gentoo-commits
commit: c7ddf4025e2b2ae0d745bb1fa52c7dae85c8f985
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 17 14:56:56 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 17 14:56:56 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=c7ddf402
work on 0.10.30
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 7fcee5d7..10f97e86 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.29"
+__version__ = "0.10.30"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-07-04 20:07 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-07-04 20:07 UTC (permalink / raw
To: gentoo-commits
commit: 48fbc3521e9ae0737114923b891dbcfa128d5277
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 4 20:07:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 4 20:07:15 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=48fbc352
start work on 0.10.31
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 10f97e86..7b23585e 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.30"
+__version__ = "0.10.31"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-10-21 16:59 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-10-21 16:59 UTC (permalink / raw
To: gentoo-commits
commit: 28199c7aa0b1daeeab2eaf17685e07e62be49edf
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 16:58:45 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 16:58:45 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=28199c7a
start work on v0.10.32
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 7b23585e..6b708c03 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.31"
+__version__ = "0.10.32"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-11-23 12:51 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2024-11-23 12:51 UTC (permalink / raw
To: gentoo-commits
commit: f33e0538d7621b19673b046472a79ee7db6126ed
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 12:51:43 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 12:51:43 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=f33e0538
start work on v0.10.33
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index 6b708c03..d2452c76 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.32"
+__version__ = "0.10.33"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/
@ 2024-12-04 19:20 Michał Górny
0 siblings, 0 replies; 21+ messages in thread
From: Michał Górny @ 2024-12-04 19:20 UTC (permalink / raw
To: gentoo-commits
commit: dd053c2c387761ccbe942cbda685bd911a752783
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 4 19:19:03 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Dec 4 19:19:33 2024 +0000
URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=dd053c2c
start work on v0.10.34
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
src/pkgcheck/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index d2452c76..cba1c1e5 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -6,7 +6,7 @@ from .results import Result
__all__ = ("keywords", "scan", "PkgcheckException", "Result")
__title__ = "pkgcheck"
-__version__ = "0.10.33"
+__version__ = "0.10.34"
def __getattr__(name):
^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2024-12-04 19:20 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-02 10:39 [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-12-04 19:20 Michał Górny
2024-11-23 12:51 Michał Górny
2024-10-21 16:59 Arthur Zamarin
2024-07-04 20:07 Arthur Zamarin
2024-05-17 14:58 Arthur Zamarin
2024-03-01 21:06 Arthur Zamarin
2024-01-26 8:46 Arthur Zamarin
2023-11-01 19:20 Arthur Zamarin
2023-07-30 17:57 Arthur Zamarin
2023-05-19 17:00 Arthur Zamarin
2023-03-11 7:15 Arthur Zamarin
2023-03-01 19:24 Arthur Zamarin
2023-02-04 19:28 Arthur Zamarin
2023-01-20 13:29 Arthur Zamarin
2023-01-09 18:13 Arthur Zamarin
2022-12-31 11:31 Arthur Zamarin
2022-11-11 16:15 Arthur Zamarin
2022-10-14 20:35 Arthur Zamarin
2022-10-12 18:06 Arthur Zamarin
2022-10-04 15:55 Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox