rucio-clients 38.0.0rc2__py3-none-any.whl → 38.1.0__py3-none-any.whl
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.
Potentially problematic release.
This version of rucio-clients might be problematic. Click here for more details.
- rucio/cli/account.py +1 -1
- rucio/cli/bin_legacy/rucio.py +2 -64
- rucio/cli/did.py +1 -4
- rucio/common/exception.py +5 -5
- rucio/common/schema/__init__.py +19 -35
- rucio/common/utils.py +1 -1
- rucio/vcsversion.py +4 -4
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/scripts/rucio +4 -1
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/METADATA +1 -1
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/RECORD +20 -20
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/licenses/AUTHORS.rst +1 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/etc/rse-accounts.cfg.template +0 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/etc/rucio.cfg.template +0 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/requirements.client.txt +0 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/rucio_client/merge_rucio_configs.py +0 -0
- {rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/scripts/rucio-admin +0 -0
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/WHEEL +0 -0
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/licenses/LICENSE +0 -0
- {rucio_clients-38.0.0rc2.dist-info → rucio_clients-38.1.0.dist-info}/top_level.txt +0 -0
rucio/cli/account.py
CHANGED
|
@@ -212,5 +212,5 @@ def identity_add(ctx, account_name, type_, id, email, password):
|
|
|
212
212
|
@click.pass_context
|
|
213
213
|
def identity_remove(ctx, account_name, type_, id):
|
|
214
214
|
"""Revoke a given ID's access from an account"""
|
|
215
|
-
args = Arguments({"no_pager": ctx.obj.no_pager, "account": account_name, "authtype": type_, "
|
|
215
|
+
args = Arguments({"no_pager": ctx.obj.no_pager, "account": account_name, "authtype": type_, "identity": id})
|
|
216
216
|
identity_delete(args, ctx.obj.client, ctx.obj.logger, ctx.obj.console, ctx.obj.spinner)
|
rucio/cli/bin_legacy/rucio.py
CHANGED
|
@@ -32,7 +32,6 @@ from rich.status import Status
|
|
|
32
32
|
from rich.text import Text
|
|
33
33
|
from rich.theme import Theme
|
|
34
34
|
from rich.traceback import install
|
|
35
|
-
from rich.tree import Tree
|
|
36
35
|
from tabulate import tabulate
|
|
37
36
|
|
|
38
37
|
# rucio module has the same name as this executable module, so this rule fails. pylint: disable=no-name-in-module
|
|
@@ -716,64 +715,7 @@ def list_parent_dids(args, client, logger, console, spinner):
|
|
|
716
715
|
spinner.update(status='Fetching parent DIDs')
|
|
717
716
|
spinner.start()
|
|
718
717
|
|
|
719
|
-
if args.
|
|
720
|
-
dict_datasets = {}
|
|
721
|
-
output = []
|
|
722
|
-
for res in client.get_did_from_pfns(args.pfns):
|
|
723
|
-
for key in res:
|
|
724
|
-
if key not in dict_datasets:
|
|
725
|
-
dict_datasets[key] = []
|
|
726
|
-
for rule in client.list_associated_rules_for_file(res[key]['scope'], res[key]['name']):
|
|
727
|
-
if f"{rule['scope']}:{rule['name']}" not in dict_datasets[key]:
|
|
728
|
-
dict_datasets[key].append(f"{rule['scope']}:{rule['name']}")
|
|
729
|
-
|
|
730
|
-
for i, pfn in enumerate(dict_datasets):
|
|
731
|
-
if cli_config == 'rich':
|
|
732
|
-
parent_tree = Tree('')
|
|
733
|
-
for parent in dict_datasets[pfn]:
|
|
734
|
-
parent_tree.add(parent)
|
|
735
|
-
table = generate_table([['PFN', pfn], ['Parents', parent_tree]], col_alignments=['left', 'left'], row_styles=['none'])
|
|
736
|
-
output.append(table)
|
|
737
|
-
else:
|
|
738
|
-
print('PFN: ', pfn)
|
|
739
|
-
print('Parents: ', ','.join(dict_datasets[pfn]))
|
|
740
|
-
|
|
741
|
-
if cli_config == 'rich':
|
|
742
|
-
spinner.stop()
|
|
743
|
-
print_output(*output, console=console, no_pager=args.no_pager)
|
|
744
|
-
elif args.guids:
|
|
745
|
-
output = []
|
|
746
|
-
guids = []
|
|
747
|
-
for input_ in args.guids:
|
|
748
|
-
try:
|
|
749
|
-
uuid.UUID(input_)
|
|
750
|
-
except ValueError:
|
|
751
|
-
print(f'Ignoring invalid GUID: {input_}')
|
|
752
|
-
continue
|
|
753
|
-
dict_datasets = {}
|
|
754
|
-
for guid in guids:
|
|
755
|
-
for did in client.get_dataset_by_guid(guid):
|
|
756
|
-
if guid not in dict_datasets:
|
|
757
|
-
dict_datasets[guid] = []
|
|
758
|
-
for rule in client.list_associated_rules_for_file(did['scope'], did['name']):
|
|
759
|
-
if f"{rule['scope']}:{rule['name']}" not in dict_datasets[guid]:
|
|
760
|
-
dict_datasets[guid].append(f"{rule['scope']}:{rule['name']}")
|
|
761
|
-
|
|
762
|
-
for i, guid in enumerate(dict_datasets):
|
|
763
|
-
if cli_config == 'rich':
|
|
764
|
-
parent_tree = Tree('')
|
|
765
|
-
for parent in dict_datasets[guid]:
|
|
766
|
-
parent_tree.add(parent)
|
|
767
|
-
table = generate_table([['GUID', guid], ['Parents', parent_tree]], col_alignments=['left', 'left'], row_styles=['none'])
|
|
768
|
-
output.append(table)
|
|
769
|
-
else:
|
|
770
|
-
print('GUID: ', guid)
|
|
771
|
-
print('Parents : ', ','.join(dict_datasets[guid]))
|
|
772
|
-
|
|
773
|
-
if cli_config == 'rich':
|
|
774
|
-
spinner.stop()
|
|
775
|
-
print_output(*output, console=console, no_pager=args.no_pager)
|
|
776
|
-
elif args.did:
|
|
718
|
+
if args.did:
|
|
777
719
|
table_data = []
|
|
778
720
|
scope, name = get_scope(args.did, client)
|
|
779
721
|
for dataset in client.list_parent_dids(scope=scope, name=name):
|
|
@@ -789,7 +731,7 @@ def list_parent_dids(args, client, logger, console, spinner):
|
|
|
789
731
|
else:
|
|
790
732
|
print(tabulate(table_data, tablefmt=tablefmt, headers=['SCOPE:NAME', '[DID TYPE]']))
|
|
791
733
|
else:
|
|
792
|
-
raise InputValidationError('
|
|
734
|
+
raise InputValidationError('A DID must be provided. Use -h to list the options.')
|
|
793
735
|
return SUCCESS
|
|
794
736
|
|
|
795
737
|
|
|
@@ -2403,8 +2345,6 @@ You can filter by key/value, e.g.::
|
|
|
2403
2345
|
''')
|
|
2404
2346
|
list_parent_parser.set_defaults(function=list_parent_dids)
|
|
2405
2347
|
list_parent_parser.add_argument(dest='did', action='store', nargs='?', default=None, help='Data identifier.')
|
|
2406
|
-
list_parent_parser.add_argument('--pfn', dest='pfns', action='store', nargs='+', help='List parent dids for these pfns.')
|
|
2407
|
-
list_parent_parser.add_argument('--guid', dest='guids', action='store', nargs='+', help='List parent dids for these guids.')
|
|
2408
2348
|
|
|
2409
2349
|
# argparse 2.7 does not allow aliases for commands, thus the list-parent-datasets is a copy&paste from list-parent-dids
|
|
2410
2350
|
list_parent_datasets_parser = subparsers.add_parser('list-parent-datasets', help='List parent DIDs for a given DID', description='List all parents Data IDentifier that contains the target Data IDentifier.',
|
|
@@ -2423,8 +2363,6 @@ You can filter by key/value, e.g.::
|
|
|
2423
2363
|
|
|
2424
2364
|
list_parent_datasets_parser.set_defaults(function=list_parent_dids)
|
|
2425
2365
|
list_parent_datasets_parser.add_argument(dest='did', action='store', nargs='?', default=None, help='Data identifier.')
|
|
2426
|
-
list_parent_datasets_parser.add_argument('--pfn', dest='pfns', action='store', nargs='+', help='List parent dids for these pfns.')
|
|
2427
|
-
list_parent_datasets_parser.add_argument('--guid', dest='guids', action='store', nargs='+', help='List parent dids for these guids.')
|
|
2428
2366
|
|
|
2429
2367
|
# The list-scopes command
|
|
2430
2368
|
scope_list_parser = subparsers.add_parser('list-scopes', help='List all available scopes.',
|
rucio/cli/did.py
CHANGED
|
@@ -37,11 +37,8 @@ def did():
|
|
|
37
37
|
@click.option("--short", is_flag=True, default=False, help="Dump the list of DIDs")
|
|
38
38
|
@click.argument("did-pattern", nargs=-1)
|
|
39
39
|
@click.option("--parent", default=False, is_flag=True, help="List the parents of the DID - must use a full DID scope and name")
|
|
40
|
-
# TODO Implement or remove option - view https://github.com/rucio/rucio/issues/7230
|
|
41
|
-
@click.option("--pfn", hidden=True)
|
|
42
|
-
@click.option("--guid", hidden=True)
|
|
43
40
|
@click.pass_context
|
|
44
|
-
def list_(ctx, did_pattern, recursive, filter_, short, parent
|
|
41
|
+
def list_(ctx, did_pattern, recursive, filter_, short, parent):
|
|
45
42
|
"""
|
|
46
43
|
List the Data IDentifiers matching certain pattern.
|
|
47
44
|
Only the collections (i.e. dataset or container) are returned by default.
|
rucio/common/exception.py
CHANGED
|
@@ -1215,7 +1215,7 @@ class OpenDataError(RucioException):
|
|
|
1215
1215
|
|
|
1216
1216
|
def __init__(self, *args):
|
|
1217
1217
|
super(OpenDataError, self).__init__(*args)
|
|
1218
|
-
self._message =
|
|
1218
|
+
self._message = "Error related to open data."
|
|
1219
1219
|
self.error_code = 115
|
|
1220
1220
|
|
|
1221
1221
|
|
|
@@ -1226,7 +1226,7 @@ class OpenDataDataIdentifierNotFound(OpenDataError):
|
|
|
1226
1226
|
|
|
1227
1227
|
def __init__(self, *args):
|
|
1228
1228
|
super(OpenDataDataIdentifierNotFound, self).__init__(*args)
|
|
1229
|
-
self._message =
|
|
1229
|
+
self._message = "Data identifier not found in the open data catalog."
|
|
1230
1230
|
self.error_code = 116
|
|
1231
1231
|
|
|
1232
1232
|
|
|
@@ -1237,7 +1237,7 @@ class OpenDataDataIdentifierAlreadyExists(OpenDataError):
|
|
|
1237
1237
|
|
|
1238
1238
|
def __init__(self, *args):
|
|
1239
1239
|
super(OpenDataDataIdentifierAlreadyExists, self).__init__(*args)
|
|
1240
|
-
self._message =
|
|
1240
|
+
self._message = "Data identifier already exists in the open data catalog."
|
|
1241
1241
|
self.error_code = 117
|
|
1242
1242
|
|
|
1243
1243
|
|
|
@@ -1248,7 +1248,7 @@ class OpenDataInvalidState(OpenDataError):
|
|
|
1248
1248
|
|
|
1249
1249
|
def __init__(self, *args):
|
|
1250
1250
|
super(OpenDataInvalidState, self).__init__(*args)
|
|
1251
|
-
self._message =
|
|
1251
|
+
self._message = "Open data entry is in an invalid state."
|
|
1252
1252
|
self.error_code = 118
|
|
1253
1253
|
|
|
1254
1254
|
|
|
@@ -1259,5 +1259,5 @@ class OpenDataInvalidStateUpdate(OpenDataError):
|
|
|
1259
1259
|
|
|
1260
1260
|
def __init__(self, *args):
|
|
1261
1261
|
super(OpenDataInvalidStateUpdate, self).__init__(*args)
|
|
1262
|
-
self._message =
|
|
1262
|
+
self._message = "Invalid state update attempted on open data entry."
|
|
1263
1263
|
self.error_code = 119
|
rucio/common/schema/__init__.py
CHANGED
|
@@ -59,23 +59,15 @@ def _get_generic_schema_module():
|
|
|
59
59
|
if not _is_multivo():
|
|
60
60
|
GENERIC_FALLBACK = 'generic'
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
except (NoOptionError, NoSectionError, ModuleNotFoundError):
|
|
72
|
-
# fall back to old system for now
|
|
73
|
-
try:
|
|
74
|
-
policy = config.config_get('policy', 'schema', check_config_table=False)
|
|
75
|
-
except (NoOptionError, NoSectionError):
|
|
76
|
-
policy = GENERIC_FALLBACK
|
|
77
|
-
policy = 'rucio.common.schema.' + policy.lower()
|
|
78
|
-
else:
|
|
62
|
+
try:
|
|
63
|
+
if 'RUCIO_POLICY_PACKAGE' in environ:
|
|
64
|
+
policy = environ['RUCIO_POLICY_PACKAGE']
|
|
65
|
+
else:
|
|
66
|
+
policy = config.config_get('policy', 'package', check_config_table=False, raise_exception=True)
|
|
67
|
+
package_module = importlib.import_module(policy)
|
|
68
|
+
check_policy_module_version(package_module)
|
|
69
|
+
policy = policy + ".schema"
|
|
70
|
+
except (NoOptionError, NoSectionError, ModuleNotFoundError):
|
|
79
71
|
policy = 'rucio.common.schema.' + GENERIC_FALLBACK.lower()
|
|
80
72
|
|
|
81
73
|
try:
|
|
@@ -102,24 +94,16 @@ if not _is_multivo():
|
|
|
102
94
|
|
|
103
95
|
def load_schema_for_vo(vo: str) -> None:
|
|
104
96
|
generic_fallback = 'generic_multi_vo'
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
except (NoOptionError, NoSectionError, ModuleNotFoundError):
|
|
116
|
-
# fall back to old system for now
|
|
117
|
-
try:
|
|
118
|
-
policy = config.config_get('policy', 'schema', check_config_table=False)
|
|
119
|
-
except (NoOptionError, NoSectionError):
|
|
120
|
-
policy = generic_fallback
|
|
121
|
-
policy = 'rucio.common.schema.' + policy.lower()
|
|
122
|
-
else:
|
|
97
|
+
try:
|
|
98
|
+
env_name = 'RUCIO_POLICY_PACKAGE_' + vo.upper()
|
|
99
|
+
if env_name in environ:
|
|
100
|
+
policy = environ[env_name]
|
|
101
|
+
else:
|
|
102
|
+
policy = config.config_get('policy', 'package-' + vo, check_config_table=False, raise_exception=True)
|
|
103
|
+
package_module = importlib.import_module(policy)
|
|
104
|
+
check_policy_module_version(package_module)
|
|
105
|
+
policy = policy + ".schema"
|
|
106
|
+
except (NoOptionError, NoSectionError, ModuleNotFoundError):
|
|
123
107
|
policy = 'rucio.common.schema.' + generic_fallback.lower()
|
|
124
108
|
|
|
125
109
|
try:
|
rucio/common/utils.py
CHANGED
|
@@ -399,7 +399,7 @@ class NonDeterministicPFNAlgorithms(PolicyPackageAlgorithms):
|
|
|
399
399
|
Initialises a non-deterministic PFN construction object
|
|
400
400
|
"""
|
|
401
401
|
super().__init__()
|
|
402
|
-
|
|
402
|
+
|
|
403
403
|
self.vo = vo
|
|
404
404
|
|
|
405
405
|
def construct_non_deterministic_pfn(self, dsn: str, scope: Optional[str], filename: str, naming_convention: str) -> str:
|
rucio/vcsversion.py
CHANGED
|
@@ -4,8 +4,8 @@ This file is automatically generated; Do not edit it. :)
|
|
|
4
4
|
'''
|
|
5
5
|
VERSION_INFO = {
|
|
6
6
|
'final': True,
|
|
7
|
-
'version': '38.0
|
|
8
|
-
'branch_nick': '
|
|
9
|
-
'revision_id': '
|
|
10
|
-
'revno':
|
|
7
|
+
'version': '38.1.0',
|
|
8
|
+
'branch_nick': 'release-38-LTS',
|
|
9
|
+
'revision_id': 'f63f25c84c254eac1701a9640e3cb658a7bbdd8e',
|
|
10
|
+
'revno': 13947
|
|
11
11
|
}
|
|
@@ -17,6 +17,7 @@ import argparse
|
|
|
17
17
|
import sys
|
|
18
18
|
from typing import TYPE_CHECKING, Optional
|
|
19
19
|
|
|
20
|
+
from rucio.cli.bin_legacy.rucio import get_parser
|
|
20
21
|
from rucio.cli.bin_legacy.rucio import main as main_legacy
|
|
21
22
|
from rucio.cli.command import main
|
|
22
23
|
from rucio.common.utils import setup_logger
|
|
@@ -119,9 +120,11 @@ if __name__ == "__main__":
|
|
|
119
120
|
main() # pylint: disable=E1120
|
|
120
121
|
|
|
121
122
|
else:
|
|
122
|
-
make_warning(logger)
|
|
123
123
|
try:
|
|
124
|
+
get_parser().parse_args()
|
|
125
|
+
make_warning(logger)
|
|
124
126
|
main_legacy()
|
|
127
|
+
|
|
125
128
|
# Make a custom warning - show the new help menu when invalid commands are called.
|
|
126
129
|
except argparse.ArgumentError:
|
|
127
130
|
logger.error("Invalid argument(s) - %s " % sys.argv[1:])
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
2
|
rucio/alembicrevision.py,sha256=9tnjQLFkTpUEcZqcw-ojWpt4Wbg-5OtMJ0CfjPc0wX8,690
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
3
|
+
rucio/vcsversion.py,sha256=yMKoNaABtSAIdUEDF8GKVaGThokyhemXGEjqfWPCHaI,248
|
|
4
4
|
rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
|
|
5
5
|
rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
|
|
6
|
-
rucio/cli/account.py,sha256=
|
|
6
|
+
rucio/cli/account.py,sha256=2Fe-iEaTfLxqlW5mDJsJPwD-Etm4VqaMowTSA67hZIo,9458
|
|
7
7
|
rucio/cli/command.py,sha256=dr9bhugorgc2kX-JsdrRsq9Yfh92sYwaALB7CrX6PNI,10835
|
|
8
8
|
rucio/cli/config.py,sha256=L7vhzAyUVKZBWKKDvrLl7zCei8O6kDyzX_x_-p-vk9M,2706
|
|
9
|
-
rucio/cli/did.py,sha256=
|
|
9
|
+
rucio/cli/did.py,sha256=IDrFFAfMhnVhGJMBm9QySO1avnbRcx_VTSaDMi41am8,9020
|
|
10
10
|
rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
|
|
11
11
|
rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
|
|
12
12
|
rucio/cli/opendata.py,sha256=wnfzcVBpCmkA9WQFqNsqtMuT-2QRl1LHBjLBgm_c4AU,4741
|
|
@@ -18,7 +18,7 @@ rucio/cli/subscription.py,sha256=kx1ox3OkWqdwfdflhdsv00XSYI6nnUZCp97YBZa4Aw4,426
|
|
|
18
18
|
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
19
19
|
rucio/cli/utils.py,sha256=AEmdlvvebyFqBiM5z2HWrR1_kWmcDR1yLq3694rFqMs,10410
|
|
20
20
|
rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
21
|
-
rucio/cli/bin_legacy/rucio.py,sha256=
|
|
21
|
+
rucio/cli/bin_legacy/rucio.py,sha256=Z53nUKd5orN9sFPHXcC6XC2diwMo1Dx5AzJhT3ha7Dw,140892
|
|
22
22
|
rucio/cli/bin_legacy/rucio_admin.py,sha256=pRpJhEGMr3-xzw3EsGeVayEiu8NI_UxEI2wSIbeulzI,141046
|
|
23
23
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
24
24
|
rucio/client/accountclient.py,sha256=kScbVL9rR8pyZRmETOyz_gwffc7biaPriMgDnCLxA_0,18864
|
|
@@ -55,7 +55,7 @@ rucio/common/config.py,sha256=69AhxgP9SXXrlaTqlOCQiaiqGqHLhSfhRFasroGfDdc,24402
|
|
|
55
55
|
rucio/common/constants.py,sha256=5MhQHY24NODmvp71MqHS8BzSird2K1ICmC94clD-JlY,7751
|
|
56
56
|
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
57
57
|
rucio/common/didtype.py,sha256=nXoyK740yrwsiGX9e9vOc8UX0PXRvKry67C0Sd8SpmM,8010
|
|
58
|
-
rucio/common/exception.py,sha256=
|
|
58
|
+
rucio/common/exception.py,sha256=q_vSqaJ_SdPorkyo247-l9HqBDpZSGZ1pf2-ZR4uaUY,36188
|
|
59
59
|
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
60
60
|
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
61
61
|
rucio/common/pcache.py,sha256=V2OnO4h4v5yaxWT9T9DMJpm-2rLalBzzaqlUWUq5x4c,47097
|
|
@@ -65,8 +65,8 @@ rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5
|
|
|
65
65
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
66
66
|
rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
|
|
67
67
|
rucio/common/types.py,sha256=joi_upIQsi3U3HMmyfVOVQem3404kGI6OixyFzrqavk,11941
|
|
68
|
-
rucio/common/utils.py,sha256=
|
|
69
|
-
rucio/common/schema/__init__.py,sha256
|
|
68
|
+
rucio/common/utils.py,sha256=FauL76qhhSm2IZxKrZT7cSnURPCytWAZP5awHdTAXNY,67298
|
|
69
|
+
rucio/common/schema/__init__.py,sha256=gC39BlHz45lX6-OTtIL5U8RqVJpZGk0RfqCwSKRseYU,7284
|
|
70
70
|
rucio/common/schema/generic.py,sha256=NmmQJ0Z8dHbL7xnbFL7rvXFK29wA8ZGtkwwwMAxzVC0,15887
|
|
71
71
|
rucio/common/schema/generic_multi_vo.py,sha256=UK5DOO-dO7pY6O44t9SJqzeS3xUye_stu_f-EVD-r0s,15107
|
|
72
72
|
rucio/rse/__init__.py,sha256=0Y-ZU-K8E-a_sc6q-rTjstREC25EmxPmtIWig5gFNU4,3361
|
|
@@ -90,16 +90,16 @@ rucio/rse/protocols/ssh.py,sha256=pHPAQx2bPNkMrtqbCqDfq7OXoy7XphQ-i2Stzdvnf1k,17
|
|
|
90
90
|
rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,7864
|
|
91
91
|
rucio/rse/protocols/webdav.py,sha256=8UzmBA8vF_-exoUvpIHRQLfhvAvExQsfu-P4WbXGOXI,24810
|
|
92
92
|
rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
|
|
93
|
-
rucio_clients-38.0.
|
|
94
|
-
rucio_clients-38.0.
|
|
95
|
-
rucio_clients-38.0.
|
|
96
|
-
rucio_clients-38.0.
|
|
97
|
-
rucio_clients-38.0.
|
|
98
|
-
rucio_clients-38.0.
|
|
99
|
-
rucio_clients-38.0.
|
|
100
|
-
rucio_clients-38.0.
|
|
101
|
-
rucio_clients-38.0.
|
|
102
|
-
rucio_clients-38.0.
|
|
103
|
-
rucio_clients-38.0.
|
|
104
|
-
rucio_clients-38.0.
|
|
105
|
-
rucio_clients-38.0.
|
|
93
|
+
rucio_clients-38.1.0.data/data/requirements.client.txt,sha256=ob8DW6vHurtEcXZ2j_u67WO_M2Mf7dzJFROKqIQINTo,1790
|
|
94
|
+
rucio_clients-38.1.0.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
95
|
+
rucio_clients-38.1.0.data/data/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
96
|
+
rucio_clients-38.1.0.data/data/etc/rucio.cfg.template,sha256=hKnGDIm7oIFWBhj6vr5L6bE4TDRHT-7eZh9IsqOHbpo,8023
|
|
97
|
+
rucio_clients-38.1.0.data/data/rucio_client/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
98
|
+
rucio_clients-38.1.0.data/scripts/rucio,sha256=f8f5X6O9W2JfUqWiSdsuDROekGt28p9CBvFZropZ-C0,5260
|
|
99
|
+
rucio_clients-38.1.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
100
|
+
rucio_clients-38.1.0.dist-info/licenses/AUTHORS.rst,sha256=FQ5q2_bY3dYKDmEw-8YD-SgPJ4fgnM1XI5wRF5ksQPg,4771
|
|
101
|
+
rucio_clients-38.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
102
|
+
rucio_clients-38.1.0.dist-info/METADATA,sha256=33Fl0bZ2J05hdH-p_7R8kVu1LJgRQdrfi4IE1q1dmtM,1740
|
|
103
|
+
rucio_clients-38.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
+
rucio_clients-38.1.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
105
|
+
rucio_clients-38.1.0.dist-info/RECORD,,
|
|
@@ -69,6 +69,7 @@ Individual contributors to the source code
|
|
|
69
69
|
- Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
|
|
70
70
|
- Eric Banzuzi, <eric.banzuzi@gmail.com>, 2024
|
|
71
71
|
- Paul Millar, <paul.millar@desy.de>, 2025
|
|
72
|
+
- Vimalan S <vimalan.github@gmail.com>, 2025
|
|
72
73
|
|
|
73
74
|
Organisations employing contributors
|
|
74
75
|
------------------------------------
|
{rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/etc/rse-accounts.cfg.template
RENAMED
|
File without changes
|
{rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/etc/rucio.cfg.atlas.client.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio_clients-38.0.0rc2.data → rucio_clients-38.1.0.data}/data/rucio_client/merge_rucio_configs.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|