[neon-notifications] Changes in repo-metadata
Neon CI
noreply at kde.org
Sat Oct 10 19:46:18 BST 2020
commit ed654668f4f140bbea898b634700d24aefcb00df
Author: Aleix Pol <aleixpol at kde.org>
Date: Sat Oct 10 16:55:49 2020 +0200
Add KRecorder's dependency data
diff --git a/dependencies/dependency-data-kf5-qt5 b/dependencies/dependency-data-kf5-qt5
index 9a4c06a5..901c346d 100644
--- a/dependencies/dependency-data-kf5-qt5
+++ b/dependencies/dependency-data-kf5-qt5
@@ -1597,6 +1597,11 @@ playground/mobile/qrca: frameworks/ki18n
playground/mobile/qrca: frameworks/kcoreaddons
playground/mobile/qrca: third-party/zxing-cpp
+playground/mobile/krecorder: -frameworks/kf5umbrella
+playground/mobile/krecorder: frameworks/ki18n
+playground/mobile/krecorder: frameworks/kconfig
+playground/mobile/krecorder: frameworks/kirigami
+
playground/libs/kirigami-addons: -frameworks/kf5umbrella
playground/libs/kirigami-addons: frameworks/kirigami
playground/libs/kirigami-addons: frameworks/ki18n
commit 270361b02125e724f01aecf369932cdb442f3f94
Author: Ben Cooksley <bcooksley at kde.org>
Date: Sat Oct 10 21:55:13 2020 +1300
Add support for passing parameters to git when running git-kclone.
This will be necessary for the new API Documentation generation support to come soon in the Binary Factory
diff --git a/git-helpers/git-kclone b/git-helpers/git-kclone
index 2d223b02..261436d7 100755
--- a/git-helpers/git-kclone
+++ b/git-helpers/git-kclone
@@ -117,9 +117,14 @@ for repository in reposToClone:
print("WARNING: The repository '{0}' already exists - skipping".format( repository['identifier'] ))
continue
+ # Assemble our clone command
+ # We ignore the first item in argv (our script name) along with the second (which is the pattern we processed earlier) and assume everything else is a parameter to pass to git
+ cloneParameters = ' '.join( sys.argv[2:] )
+
# Now perform the clone!
- gitCloneCommand = 'git clone "{repositoryUrl}" {pathOnDisk}'
+ gitCloneCommand = 'git clone {cloneParameters} "{repositoryUrl}" {pathOnDisk}'
commandToRun = gitCloneCommand.format(
+ cloneParameters=cloneParameters,
repositoryUrl=gitClonePattern.format( repository['repopath'] ),
pathOnDisk=repository['identifier']
)
commit b95b163c7b369ecb4e02e9b82a4069630012d440
Author: Ben Cooksley <bcooksley at kde.org>
Date: Sat Oct 10 15:40:57 2020 +1300
Register new sysadmin/gitlab-triaging repository
Ref T13732
diff --git a/projects-invent/sysadmin/gitlab-triaging/i18n.json b/projects-invent/sysadmin/gitlab-triaging/i18n.json
new file mode 100644
index 00000000..9e26dfee
--- /dev/null
+++ b/projects-invent/sysadmin/gitlab-triaging/i18n.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/projects-invent/sysadmin/gitlab-triaging/metadata.yaml b/projects-invent/sysadmin/gitlab-triaging/metadata.yaml
new file mode 100644
index 00000000..e410c6c2
--- /dev/null
+++ b/projects-invent/sysadmin/gitlab-triaging/metadata.yaml
@@ -0,0 +1,7 @@
+description: Service to automatically triage Merge Requests, Tasks and other items on KDE Invent (Gitlab)
+hasrepo: true
+identifier: sysadmin-gitlab-triaging
+name: Gitlab Triaging
+projectpath: sysadmin/gitlab-triaging
+repoactive: true
+repopath: sysadmin/gitlab-triaging
More information about the neon-notifications
mailing list