Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
ESS EPICS Environment
wrappers
e3-require
Commits
27247a1b
Commit
27247a1b
authored
3 years ago
by
Simon Rose
Browse files
Options
Downloads
Patches
Plain Diff
Warning if invalid dependent X_DEP_VERSION is used
parent
fb082b35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!83
E3-752: Fetch dependencies recursively
Pipeline
#109744
failed
3 years ago
Stage: check
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
require-ess/tools/driver.makefile
+13
-11
13 additions, 11 deletions
require-ess/tools/driver.makefile
with
13 additions
and
11 deletions
require-ess/tools/driver.makefile
+
13
−
11
View file @
27247a1b
...
@@ -438,36 +438,38 @@ select = $(strip $(call -select,$(strip $2),$1,$3))
...
@@ -438,36 +438,38 @@ select = $(strip $(call -select,$(strip $2),$1,$3))
str-eq
=
$(
if
$(
subst x
$1
,,x
$2
)
,,t
)
str-eq
=
$(
if
$(
subst x
$1
,,x
$2
)
,,t
)
_MODULES
:=
_MODULES
:=
REQUIRED
:=
REQ
:=
INSTALLED_MODULES
:=
$(
sort
$(
notdir
$(
shell
ls
-d
$(
E3_SITEMODS_PATH
)
/
*
$(
EPICS_MODULES
)
/
*
)))
# Converts all of the X_DEP_VERSIONs to x_VERSION and records them
# Converts all of the X_DEP_VERSIONs to x_VERSION and records them
define
fetch_module_versions
define
fetch_module_versions
_lm
:=
$$(
shell
echo
$1
|
tr
'[:upper:]'
'[:lower:]'
)
_lm
:=
$$(
shell
echo
$1
|
tr
'[:upper:]'
'[:lower:]'
)
$$(_lm)_VERSION
:=
$(
$1_DEP_VERSION
)
ifneq
($$(strip $$(filter $(INSTALLED_MODULES),$$(_lm))),)
_MODULES
+=
$$(
_lm
)
$$(_lm)_VERSION
:=
$(
$1_DEP_VERSION
)
_MODULES
+=
$$(
_lm
)
else
$
$(
warning
Invalid dependency
"
$1_DEP_VERSION
"
;
pruning
)
endif
endef
endef
$(
foreach
m,
$(
patsubst %_DEP_VERSION,%,
$(
filter %_DEP_VERSION,
$(
.VARIABLES
)))
,
$(
eval
$(
call fetch_module_versions,
$m
)))
$(
foreach
m,
$(
patsubst %_DEP_VERSION,%,
$(
filter %_DEP_VERSION,
$(
.VARIABLES
)))
,
$(
eval
$(
call fetch_module_versions,
$m
)))
# Only keep actual modules, however
_MODULES
:=
$(
filter
$(
shell
ls
$(
E3_SITEMODS_PATH
)
$(
EPICS_MODULES
))
,
$(
_MODULES
))
# Fetches the data from .dep files to be parsed by the above
# Fetches the data from .dep files to be parsed by the above
define
fetch_deps
define
fetch_deps
$(
shell
cat
$(
E3_SITEMODS_PATH
)
/
$1
/
$(
$1_VERSION
)
/lib/
$(
T_A
)
/
$1
.dep |
sed
'1d'
)
$(
shell
cat
$(
E3_SITEMODS_PATH
)
/
$1
/
$(
$1_VERSION
)
/lib/
$(
T_A
)
/
$1
.dep |
sed
'1d'
)
endef
endef
# Used to recurse through versions: updates REQ
UIRED
and fetches all of the dependencies from the given module
# Used to recurse through versions: updates REQ and fetches all of the dependencies from the given module
define
update_dep_versions
define
update_dep_versions
m
:=
$$(
firstword
$$(
_MODULES
))
m
:=
$$(
firstword
$$(
_MODULES
))
REQ
UIRED
+=
$$
m
REQ
+=
$$
m
$$m_TBL
:=
$$(
call fetch_deps,
$$
m
)
$$m_TBL
:=
$$(
call fetch_deps,
$$
m
)
$$m_DEPS
:=
$$(
call
select
,1,
$$(
$$
m_TBL
)
,1
)
$$m_DEPS
:=
$$(
call
select
,1,
$$(
$$
m_TBL
)
,1
)
_MODULES
:=
$$(
filter-out
$$(
REQ
UIRED
)
,
$$(
_MODULES
)
$$(
$$
m_DEPS
))
_MODULES
:=
$$(
filter-out
$$(
REQ
)
,
$$(
_MODULES
)
$$(
$$
m_DEPS
))
$$(foreach mm,$$($$m_DEPS),$$(eval $$(mm)_VERSION
:
= $$(call select
,
2
,
$$($$m_TBL)
,
$$$$(call str-eq
,
$$$$1
,
$$(mm)))))
$$(foreach mm,$$($$m_DEPS),$$(eval $$(mm)_VERSION
:
= $$(call select
,
2
,
$$($$m_TBL)
,
$$$$(call str-eq
,
$$$$1
,
$$(mm)))))
endef
endef
$(
call
while
,
$$(
_MODULES
)
,
$(
update_dep_versions
))
$(
call
while
,
$$(
_MODULES
)
,
$(
update_dep_versions
))
$(
foreach
m,
$(
REQ
UIRED
)
,
$(
eval export
$m_VERSION
))
$(
foreach
m,
$(
REQ
)
,
$(
eval export
$m_VERSION
))
debug
::
debug
::
@
echo
"===================== Pass 3: T_A =
$(
T_A
)
====================="
@
echo
"===================== Pass 3: T_A =
$(
T_A
)
====================="
...
@@ -514,7 +516,7 @@ ARCH_PARTS = ${T_A} $(subst -, ,${T_A}) ${OS_CLASS}
...
@@ -514,7 +516,7 @@ ARCH_PARTS = ${T_A} $(subst -, ,${T_A}) ${OS_CLASS}
VAR_EXTENSIONS
=
${
EPICSVERSION
}
${
ARCH_PARTS
}
${
ARCH_PARTS:%
=
${
EPICSVERSION
}
_%
}
VAR_EXTENSIONS
=
${
EPICSVERSION
}
${
ARCH_PARTS
}
${
ARCH_PARTS:%
=
${
EPICSVERSION
}
_%
}
export
VAR_EXTENSIONS
export
VAR_EXTENSIONS
REQ
=
${
REQUIRED
}
$(
foreach x,
${
VAR_EXTENSIONS
}
,
${
REQUIRED_
$x
})
REQ
+
=
${
REQUIRED
}
$(
foreach x,
${
VAR_EXTENSIONS
}
,
${
REQUIRED_
$x
})
export
REQ
export
REQ
SRCS
+=
$(
foreach x,
${
VAR_EXTENSIONS
}
,
${
SOURCES_
$x
})
SRCS
+=
$(
foreach x,
${
VAR_EXTENSIONS
}
,
${
SOURCES_
$x
})
...
...
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