Compare commits
2 commits
0fea822c91
...
63f76dc68f
| Author | SHA1 | Date | |
|---|---|---|---|
| 63f76dc68f | |||
| e7e9687b8d |
8 changed files with 11 additions and 22 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 1.2.0a8 (2025-01-04)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- better support of not_for_commandline feature
|
||||||
|
|
||||||
## 1.2.0a7 (2025-01-02)
|
## 1.2.0a7 (2025-01-02)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail"
|
name = "rougail"
|
||||||
version = "1.2.0a7"
|
version = "1.2.0a8"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "A consistency handling system that was initially designed in the configuration management"
|
description = "A consistency handling system that was initially designed in the configuration management"
|
||||||
|
|
|
||||||
|
|
@ -287,6 +287,7 @@ base_option_name:
|
||||||
|
|
||||||
not_export_with_import:
|
not_export_with_import:
|
||||||
description: {_("In cache file, do not importation of Tiramisu and other dependencies")}
|
description: {_("In cache file, do not importation of Tiramisu and other dependencies")}
|
||||||
|
negative_description: {_("In cache file, do importation of Tiramisu and other dependencies")}
|
||||||
default: false
|
default: false
|
||||||
commandline: false
|
commandline: false
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -425,7 +425,7 @@ class ParserVariable:
|
||||||
raise Exception(
|
raise Exception(
|
||||||
f'cannot redefine the inexisting family "{path}" in {filename}'
|
f'cannot redefine the inexisting family "{path}" in {filename}'
|
||||||
)
|
)
|
||||||
if exists is True:
|
if not self.load_unexist_redefine and exists is True:
|
||||||
return
|
return
|
||||||
extra_attrs = set(family_obj) - self.family_attrs
|
extra_attrs = set(family_obj) - self.family_attrs
|
||||||
if extra_attrs:
|
if extra_attrs:
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ structural_commandline:
|
||||||
|
|
||||||
add_extra_options:
|
add_extra_options:
|
||||||
description: Add extra options to tiramisu-cmdline-parser
|
description: Add extra options to tiramisu-cmdline-parser
|
||||||
|
negative_description: Remove extra options to tiramisu-cmdline-parser
|
||||||
default: true
|
default: true
|
||||||
"""
|
"""
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
"""
|
|
||||||
Silique (https://www.silique.fr)
|
|
||||||
Copyright (C) 2024
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Lesser General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
||||||
details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from .update import RougailUpgrade
|
|
||||||
Loading…
Reference in a new issue