* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2022-01-30 21:02 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2022-01-30 21:02 UTC (permalink / raw
To: gentoo-commits
commit: 2141c0d497cbef4d9bb304e197975a5cac3a86eb
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 21:00:57 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 21:00:57 2022 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=2141c0d4
catalyst 3.0.21
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index 79f6ed60..1b7fcb5e 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.20"
+__version__= "3.0.21"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2022-11-17 23:40 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2022-11-17 23:40 UTC (permalink / raw
To: gentoo-commits
commit: 0601ad81033983b5aca31bbc3f75f2f995c40be4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 16 22:33:17 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Nov 17 23:39:45 2022 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0601ad81
catalyst: Add .sha256 to list of ignored extensions
Otherwise the presence of a .sha256 file would cause this error:
ERROR:catalyst:CatalystError: Ambiguous Filename: /home/catalyst/builds/default/stage3-ia64-openrc-20220216T032203Z
ERROR:catalyst:Please specify the correct extension as well
Fixes: 7457cd3b ("catalyst: generate .sha256 file if any digest is enabled")
Closes: https://bugs.gentoo.org/881705
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
(cherry picked from commit 1a8d6cd3d31f960755c3237679539d9cab175bc6)
catalyst/support.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/catalyst/support.py b/catalyst/support.py
index 7743b142..6f49d4bf 100644
--- a/catalyst/support.py
+++ b/catalyst/support.py
@@ -64,8 +64,11 @@ def file_check(filepath, extensions=None, strict=True):
# so check if there are files of that name with an extension
files = glob.glob("%s.*" % filepath)
# remove any false positive files
- files = [x for x in files if not x.endswith(".CONTENTS") and not
- x.endswith(".CONTENTS.gz") and not x.endswith(".DIGESTS")]
+ files = [x for x in files if
+ not x.endswith(".CONTENTS") and
+ not x.endswith(".CONTENTS.gz") and
+ not x.endswith(".DIGESTS") and
+ not x.endswith(".sha256")]
if len(files) is 1:
return files[0]
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2022-10-01 16:27 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2022-10-01 16:27 UTC (permalink / raw
To: gentoo-commits
commit: e76de3ceb9b919061590e94df9010f9f3b723a62
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 1 16:26:27 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 1 16:26:27 2022 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e76de3ce
catalyst 3.0.22
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index 1b7fcb5e..cd5bd101 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.21"
+__version__= "3.0.22"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2021-07-06 22:13 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2021-07-06 22:13 UTC (permalink / raw
To: gentoo-commits
commit: 6b23e5891613dfbc5b6f92f7e460effdb412226a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 6 22:12:42 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 6 22:12:42 2021 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6b23e589
catalyst 3.0.20
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index b0f27a06..79f6ed60 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.19"
+__version__= "3.0.20"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2021-06-11 4:14 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2021-06-11 4:14 UTC (permalink / raw
To: gentoo-commits
commit: e745267c28e87fa04523091668af937c69f768ff
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 11 04:13:02 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 11 04:13:12 2021 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e745267c
catalyst 3.0.19
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index 19761641..b0f27a06 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.18"
+__version__= "3.0.19"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2021-06-06 22:38 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2021-06-06 22:38 UTC (permalink / raw
To: gentoo-commits
commit: 1d5b144e6f271f85061f077d176b4e5da0a084d5
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 6 22:37:49 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jun 6 22:37:49 2021 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1d5b144e
catalyst 3.0.18
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index cee85376..19761641 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.17"
+__version__= "3.0.18"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2021-03-04 17:18 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2021-03-04 17:18 UTC (permalink / raw
To: gentoo-commits
commit: 159e45bf90d67f33b9fa62baa8345e59ff7b63af
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 14:45:17 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 14:45:17 2021 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=159e45bf
catalyst 3.0.16
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index e1887adf..72273198 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.15"
+__version__= "3.0.16"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2021-03-04 17:18 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2021-03-04 17:18 UTC (permalink / raw
To: gentoo-commits
commit: 0207f10c922a7368d5f999eb321ee18becdbda15
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 14:47:25 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 14:47:25 2021 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0207f10c
catalyst 3.0.17
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index 72273198..cee85376 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.16"
+__version__= "3.0.17"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-12-16 16:04 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-12-16 16:04 UTC (permalink / raw
To: gentoo-commits
commit: e9da23047d6e888d8deeba9a0e3634ec24ff4ca4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 16 16:03:20 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 16:03:20 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e9da2304
catalyst 3.0.15
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index f0268686..e1887adf 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.14"
+__version__= "3.0.15"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-10-08 21:16 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-10-08 21:16 UTC (permalink / raw
To: gentoo-commits
commit: 5a731acab6f229b73b204f302107de826ff5664e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 8 21:15:03 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Oct 8 21:16:32 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5a731aca
catalyst: Fix typo
Fixes: 3c5ef2e7 ("log: new logging module to standardize catalyst output")
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
(cherry picked from commit b3f0a3535e3550ed7d0dbd3100e43b82e9b34c3b)
catalyst/log.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/log.py b/catalyst/log.py
index d640dece..26f9a591 100644
--- a/catalyst/log.py
+++ b/catalyst/log.py
@@ -74,7 +74,7 @@ class CatalystFormatter(logging.Formatter):
@staticmethod
def detect_color():
"""Figure out whether the runtime env wants color"""
- if 'NOCOLOR' is os.environ:
+ if 'NOCOLOR' in os.environ:
return False
return os.isatty(sys.stdout.fileno())
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-10-03 16:05 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-10-03 16:05 UTC (permalink / raw
To: gentoo-commits
commit: 09bdc97e0da16f730deb2058cca3202f467d40a1
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 3 16:04:47 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 3 16:04:47 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=09bdc97e
catalyst 3.0.14
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index da727956..f0268686 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.13"
+__version__= "3.0.14"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-09-19 18:29 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-09-19 18:29 UTC (permalink / raw
To: gentoo-commits
commit: 11113ed1a762d3facf6a62aff59fb8362475cc8b
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 19 18:27:44 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 18:27:44 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=11113ed1
catalyst 3.0.13
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index a891614f..da727956 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.12"
+__version__= "3.0.13"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-05-19 16:20 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-05-19 16:20 UTC (permalink / raw
To: gentoo-commits
commit: 38d0ecf4dfbff77a79c7d83dbc78d4a749a57aec
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 16:18:47 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue May 19 16:18:47 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=38d0ecf4
catalyst 3.0.12
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index d9c6bb3a..a891614f 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.11"
+__version__= "3.0.12"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-05-19 15:49 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-05-19 15:49 UTC (permalink / raw
To: gentoo-commits
commit: bc44e34073dd2f81f6755696d35055f957cce14c
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 15:46:10 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue May 19 15:46:10 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=bc44e340
catalyst 3.0.12
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index d9c6bb3a..a891614f 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.11"
+__version__= "3.0.12"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-05-18 20:02 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-05-18 20:02 UTC (permalink / raw
To: gentoo-commits
commit: 40d17ba8c9e6e32a95d9f75cefe1485fba4ad6f4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon May 18 20:01:32 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon May 18 20:01:32 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=40d17ba8
catalyst 3.0.11
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index ecbc8654..d9c6bb3a 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.10"
+__version__= "3.0.11"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/
@ 2020-05-17 18:25 Matt Turner
0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-05-17 18:25 UTC (permalink / raw
To: gentoo-commits
commit: b654dad6385b59d3da8e5f0011bc29fdb05dc67a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun May 17 18:23:54 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun May 17 18:23:54 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b654dad6
catalyst 3.0.10
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/version.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/version.py b/catalyst/version.py
index 91b0a743..ecbc8654 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
from snakeoil.version import get_git_version as get_ver
-__version__= "3.0.7"
+__version__= "3.0.10"
_ver = None
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2022-11-17 23:40 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-30 21:02 [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/ Matt Turner
-- strict thread matches above, loose matches on Subject: below --
2022-11-17 23:40 Matt Turner
2022-10-01 16:27 Matt Turner
2021-07-06 22:13 Matt Turner
2021-06-11 4:14 Matt Turner
2021-06-06 22:38 Matt Turner
2021-03-04 17:18 Ben Kohler
2021-03-04 17:18 Ben Kohler
2020-12-16 16:04 Matt Turner
2020-10-08 21:16 Matt Turner
2020-10-03 16:05 Matt Turner
2020-09-19 18:29 Matt Turner
2020-05-19 16:20 Matt Turner
2020-05-19 15:49 Matt Turner
2020-05-18 20:02 Matt Turner
2020-05-17 18:25 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox