This repository has been archived by the owner on Sep 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
regenerate_everything.sh
executable file
·76 lines (62 loc) · 2.1 KB
/
regenerate_everything.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/sh
source ./config.sh
echo ""
echo "========================================="
echo "Removing old data..."
echo "========================================="
rm -rf "$topdir/modules" "$topdir/repos"
echo ""
echo "========================================="
echo "Cloning hp and bootstrap repositories..."
echo "========================================="
./get_hp.sh
echo ""
echo "========================================="
echo "Cloning 'modularity-modules' repositories..."
echo "========================================="
./clone_repos.sh
echo ""
echo "========================================="
echo "Generating machine-readable top-lvl package lists..."
echo "========================================="
./generate_lists.sh
echo ""
echo "========================================="
echo "Resolving runtime package dependencies using depchase..."
echo "========================================="
./resolve.sh runtime
echo ""
echo "========================================="
echo "Substracting runtime module dependencies..."
echo "========================================="
make
echo ""
echo "========================================="
echo "Resolving build package dependencies using depchase..."
echo "========================================="
./resolve.sh buildtime
echo ""
echo "========================================="
echo "Substracting build module dependencies..."
echo "========================================="
./build_deps_definitions.sh
echo ""
echo "========================================="
echo "Producing human-readable reports..."
echo "========================================="
./reports.sh
echo ""
echo "========================================="
echo "Generating runtime package dependency graph for all modules..."
echo "========================================="
#./graph.sh
echo " - temporarily disabled"
echo ""
echo "========================================="
echo "Generating global reports..."
echo "========================================="
./global_reports.sh
echo ""
echo "========================================="
echo "EVERYTHING is done! \\o/"
echo "========================================="