Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osc-plugins
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpcdf
obs
osc-plugins
Commits
3656e9af
Commit
3656e9af
authored
6 years ago
by
Lorenz Huedepohl
Browse files
Options
Downloads
Patches
Plain Diff
Refactor mpcdf_sync_projects into common function
parent
93a86232
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
mpcdf_common.py
+69
-0
69 additions, 0 deletions
mpcdf_common.py
mpcdf_sync_projects.py
+2
-60
2 additions, 60 deletions
mpcdf_sync_projects.py
with
71 additions
and
60 deletions
mpcdf_common.py
+
69
−
0
View file @
3656e9af
...
@@ -447,3 +447,72 @@ def set_as_branch(api_url, my_project, my_package, main_project, main_package):
...
@@ -447,3 +447,72 @@ def set_as_branch(api_url, my_project, my_package, main_project, main_package):
rev
=
pac
.
latest_rev
(
expand
=
True
)
rev
=
pac
.
latest_rev
(
expand
=
True
)
pac
.
update
(
rev
)
pac
.
update
(
rev
)
return
True
return
True
def
sync_projects
(
api_url
,
package
=
None
,
from_project
=
"
software
"
,
to_projects
=
None
,
redo_all
=
False
):
if
package
is
not
None
and
redo_all
:
raise
osc
.
oscerr
.
WrongArgs
(
'
Cannot specify `redo_all` and package
'
)
if
to_projects
is
None
:
to_projects
=
filter
(
lambda
s
:
s
.
startswith
(
"
software:
"
)
and
not
(
s
==
"
software:dist
"
or
s
==
"
software:images
"
),
osc
.
core
.
meta_get_project_list
(
api_url
))
for
to_project
in
to_projects
:
print
(
"
Syncing {0} with {1}
"
.
format
(
to_project
,
from_project
))
to_packages
=
osc
.
core
.
meta_get_packagelist
(
api_url
,
to_project
)
if
package
is
None
:
from_packages
=
osc
.
core
.
meta_get_packagelist
(
api_url
,
from_project
)
if
not
redo_all
:
from_packages
=
list
(
sorted
(
set
(
from_packages
)
-
set
(
to_packages
)))
else
:
from_packages
=
[
package
]
project_attributes
=
[
"
MPCDF:compiler_modules
"
,
"
MPCDF:cuda_modules
"
,
"
MPCDF:mpi_modules
"
]
package_attributes
=
[
"
MPCDF:enable_repositories
"
]
+
project_attributes
for
attribute
in
project_attributes
:
try
:
get_attribute
(
api_url
,
to_project
,
None
,
attribute
)
except
Exception
:
attr
=
get_attribute
(
api_url
,
from_project
,
None
,
attribute
)
print
(
"
Setting attribute
"
,
attribute
)
set_attribute
(
api_url
,
to_project
,
None
,
attr
)
for
orig_package
in
from_packages
:
if
orig_package
not
in
to_packages
:
filelist
=
osc
.
core
.
meta_get_filelist
(
api_url
,
from_project
,
orig_package
)
if
"
_link
"
in
filelist
:
print
(
"
Not branching package {0}, is a link
"
.
format
(
orig_package
))
else
:
print
(
"
Branching package {0}
"
.
format
(
orig_package
))
exists
,
targetprj
,
targetpkg
,
srcprj
,
srcpkg
=
\
osc
.
core
.
branch_pkg
(
api_url
,
from_project
,
orig_package
,
target_project
=
to_project
,
nodevelproject
=
True
)
else
:
print
(
"
Not branching package {0}, already present in target
"
.
format
(
orig_package
))
for
attribute
in
package_attributes
:
try
:
attr
=
get_attribute
(
api_url
,
from_project
,
orig_package
,
attribute
)
except
UnsetAttributeException
:
if
has_attribute
(
api_url
,
to_project
,
orig_package
,
attribute
):
remove_attribute
(
api_url
,
to_project
,
orig_package
,
attribute
)
continue
set_attribute
(
api_url
,
to_project
,
orig_package
,
attr
)
if
package
is
None
and
redo_all
:
# Check if distribution is already set in to_project
to_prj_meta
=
project_meta
(
api_url
,
to_project
)
sys_repo
=
to_prj_meta
.
find
(
'
./repository[@name=
"
System
"
]
'
)
if
sys_repo
is
None
:
distribution
=
project_meta
(
api_url
,
from_project
).
find
(
'
./repository[@name=
"
System
"
]/path[@project=
"
distributions
"
]
'
).
get
(
"
repository
"
)
else
:
distribution
=
sys_repo
.
find
(
'
./path[@project=
"
distributions
"
]
'
).
get
(
"
repository
"
)
print
(
"
Creating repository configuration
"
)
mpcdf_setup_repositories
(
api_url
,
to_project
,
distribution
)
else
:
for
orig_package
in
from_packages
:
if
not
mpcdf_enable_repositories
(
api_url
,
to_project
,
orig_package
):
print
(
"
ATTENTION: Not changing unmanaged package {0}
"
.
format
(
orig_package
))
This diff is collapsed.
Click to expand it.
mpcdf_sync_projects.py
+
2
−
60
View file @
3656e9af
...
@@ -51,64 +51,6 @@ def do_mpcdf_sync_projects(self, subcmd, opts, *args):
...
@@ -51,64 +51,6 @@ def do_mpcdf_sync_projects(self, subcmd, opts, *args):
if
opts
.
to
:
if
opts
.
to
:
to_projects
=
[
opts
.
to
]
to_projects
=
[
opts
.
to
]
else
:
else
:
to_projects
=
filter
(
lambda
s
:
s
.
startswith
(
"
software:
"
)
and
not
(
s
==
"
software:dist
"
or
s
==
"
software:images
"
),
osc
.
core
.
meta_get_project_list
(
api_url
))
to_projects
=
None
for
to_project
in
to_projects
:
mpcdf_common
.
sync_projects
(
api_url
,
package
,
from_project
=
from_project
,
to_projects
=
to_projects
,
redo_all
=
opts
.
all
)
print
(
"
Syncing {0} with {1}
"
.
format
(
to_project
,
from_project
))
to_packages
=
osc
.
core
.
meta_get_packagelist
(
api_url
,
to_project
)
if
package
is
None
:
from_packages
=
osc
.
core
.
meta_get_packagelist
(
api_url
,
from_project
)
if
not
opts
.
all
:
from_packages
=
list
(
sorted
(
set
(
from_packages
)
-
set
(
to_packages
)))
else
:
from_packages
=
[
package
]
project_attributes
=
[
"
MPCDF:compiler_modules
"
,
"
MPCDF:cuda_modules
"
,
"
MPCDF:mpi_modules
"
]
package_attributes
=
[
"
MPCDF:enable_repositories
"
]
+
project_attributes
for
attribute
in
project_attributes
:
try
:
mpcdf_common
.
get_attribute
(
api_url
,
to_project
,
None
,
attribute
)
except
Exception
:
attr
=
mpcdf_common
.
get_attribute
(
api_url
,
from_project
,
None
,
attribute
)
print
(
"
Setting attribute
"
,
attribute
)
mpcdf_common
.
set_attribute
(
api_url
,
to_project
,
None
,
attr
)
for
orig_package
in
from_packages
:
if
orig_package
not
in
to_packages
:
filelist
=
osc
.
core
.
meta_get_filelist
(
api_url
,
from_project
,
orig_package
)
if
"
_link
"
in
filelist
:
print
(
"
Not branching package {0}, is a link
"
.
format
(
orig_package
))
else
:
print
(
"
Branching package {0}
"
.
format
(
orig_package
))
exists
,
targetprj
,
targetpkg
,
srcprj
,
srcpkg
=
\
osc
.
core
.
branch_pkg
(
api_url
,
from_project
,
orig_package
,
target_project
=
to_project
,
nodevelproject
=
True
)
else
:
print
(
"
Not branching package {0}, already present in target
"
.
format
(
orig_package
))
for
attribute
in
package_attributes
:
try
:
attr
=
mpcdf_common
.
get_attribute
(
api_url
,
from_project
,
orig_package
,
attribute
)
except
mpcdf_common
.
UnsetAttributeException
:
if
mpcdf_common
.
has_attribute
(
api_url
,
to_project
,
orig_package
,
attribute
):
mpcdf_common
.
remove_attribute
(
api_url
,
to_project
,
orig_package
,
attribute
)
continue
mpcdf_common
.
set_attribute
(
api_url
,
to_project
,
orig_package
,
attr
)
if
package
is
None
and
opts
.
all
:
# Check if distribution is already set in to_project
to_prj_meta
=
mpcdf_common
.
project_meta
(
api_url
,
to_project
)
sys_repo
=
to_prj_meta
.
find
(
'
./repository[@name=
"
System
"
]
'
)
if
sys_repo
is
None
:
distribution
=
mpcdf_common
.
project_meta
(
api_url
,
from_project
).
find
(
'
./repository[@name=
"
System
"
]/path[@project=
"
distributions
"
]
'
).
get
(
"
repository
"
)
else
:
distribution
=
sys_repo
.
find
(
'
./path[@project=
"
distributions
"
]
'
).
get
(
"
repository
"
)
print
(
"
Creating repository configuration
"
)
mpcdf_common
.
mpcdf_setup_repositories
(
api_url
,
to_project
,
distribution
)
else
:
for
orig_package
in
from_packages
:
if
not
mpcdf_common
.
mpcdf_enable_repositories
(
api_url
,
to_project
,
orig_package
):
print
(
"
ATTENTION: Not changing unmanaged package {0}
"
.
format
(
orig_package
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment