File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,18 @@ Overview
55--------
66qcom-build-utils holds set of tools which to developers to build, test and debug platform and CI/CD utilities.
77
8- Branches
9- --------
10- main: Primary development branch. Contributors should develop submissions based on this branch, and submit pull requests to this branch.
11-
128Features
139--------
14- - ubuntu/build-utils scripts helps to assist build debian package, create system image and other tools related to ubuntu.
10+ - scripts/ : Helper scripts to used in the reusable workflows
11+ - reusable-workflows/ : Reusable workflows that other repo shall call
1512
16- for more information, please refer to the README in each subdirectory.
13+ Branches
14+ --------
15+ main: Primary stable branch. Contributors should develop submissions based on this branch, and submit pull requests to this branch.
16+ development : Development happens on this branch, and gets merged back to main when the features are deemed stable
17+ internal : This branch is the mirror of the internal version of the build-utils repo. It is there to keep a mirror, but the content
18+ main and delvelopment has diverged substentially from it. It exists to that internal CI can use it, but should not be used
19+ as a base for development
1720
1821License
1922-------
File renamed without changes.
Original file line number Diff line number Diff line change 4444
4545This script will extract the 'canonical' package name (ie, without the major number in it, in this case its 1)
4646and create a folder in the PPA structure for this package name, and copy over all the .deb/ddeb that correspondt to it.
47-
47+
4848This operation will be done for all the 'canonical' package names because again, there can be multiple of this example package
4949alongside one another
5050
@@ -81,7 +81,7 @@ def reorganize(build_dir : str, output_dir : str):
8181
8282 # Create a list of all the packages (.deb, -dev.deb, -dbgsym.ddeb)
8383 files = os .listdir (build_dir )
84-
84+
8585 dsc_files = [f for f in files if f .endswith ('.dsc' ) ]
8686 deb_files = [f for f in files if f .endswith ('.deb' ) and "-dev" not in f ]
8787 dev_files = [f for f in files if f .endswith ('.deb' ) and "-dev" in f ]
@@ -113,7 +113,7 @@ def reorganize(build_dir : str, output_dir : str):
113113 for package_name in package_names :
114114
115115 output_dir = os .path .join (output_dir , package_name )
116-
116+
117117 # Do not delete if the directory exists, it may very well contain the same package, but with older versions
118118 # We want to copy the newly built packages alongside the other versions
119119 create_new_directory (output_dir , delete_if_exists = False )
You can’t perform that action at this time.
0 commit comments