Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kdesrc-build
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
20
Issues
20
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KDE
kdesrc-build
Commits
4adf7354
Commit
4adf7354
authored
Sep 08, 2019
by
Michael Pyne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mojo: Remove now-dead dep printing code.
parent
d36b5e6f
Pipeline
#7587
passed with stage
in 1 minute and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
43 deletions
+0
-43
modules/ksb/Application.pm
modules/ksb/Application.pm
+0
-43
No files found.
modules/ksb/Application.pm
View file @
4adf7354
...
...
@@ -349,49 +349,6 @@ DONE
=
values
%
auxOptions
;
}
sub
_yieldModuleDependencyTreeEntry
{
my
(
$nodeInfo
,
$module
,
$context
)
=
@_
;
my
$depth
=
$nodeInfo
->
{
depth
};
my
$index
=
$nodeInfo
->
{
idx
};
my
$count
=
$nodeInfo
->
{
count
};
my
$build
=
$nodeInfo
->
{
build
};
my
$currentItem
=
$nodeInfo
->
{
currentItem
};
my
$currentBranch
=
$nodeInfo
->
{
currentBranch
};
my
$parentItem
=
$nodeInfo
->
{
parentItem
};
my
$parentBranch
=
$nodeInfo
->
{
parentBranch
};
my
$buildStatus
=
$build
?
'
built
'
:
'
not built
';
my
$statusInfo
=
$currentBranch
?
"
(
$buildStatus
:
$currentBranch
)
"
:
"
(
$buildStatus
)
";
my
$connectorStack
=
$context
->
{
stack
};
my
$prefix
=
pop
(
@$connectorStack
);
while
(
$context
->
{
depth
}
>
$depth
)
{
$prefix
=
pop
(
@$connectorStack
);
--
(
$context
->
{
depth
});
}
push
(
@$connectorStack
,
$prefix
);
my
$connector
;
if
(
$depth
==
0
)
{
$connector
=
$prefix
.
'
──
';
push
(
@$connectorStack
,
$prefix
.
('
'
x
4
));
}
else
{
$connector
=
$prefix
.
(
$index
==
$count
?
'
└──
':
'
├──
');
push
(
@$connectorStack
,
$prefix
.
(
$index
==
$count
?
'
'
x
4
:
'
│
'));
}
$context
->
{
depth
}
=
$depth
+
1
;
$context
->
{
report
}(
$connector
.
$currentItem
.
'
'
.
$statusInfo
);
}
# Generates the build context, builds various module, dependency and branch
# group resolvers, and splits up the provided option/selector mix read from
# cmdline into selectors (returned to caller, if any) and pre-built context and
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment