commit 016179c2afabfbf17705b223e7a7433d6499c64e Author: BigfootACA Date: Thu Dec 14 15:14:38 2023 +0800 Initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..d100484 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = pd-mapper + pkgdesc = Qualcomm Protection Domain mapper + pkgver = r19.10997ba + pkgrel = 1 + url = https://github.com/andersson/pd-mapper + arch = aarch64 + groups = qcom-icnss-wlan + license = BSD-3-Clause + makedepends = git + makedepends = make + makedepends = gcc + depends = qrtr + source = git+https://github.com/andersson/pd-mapper + md5sums = SKIP + +pkgname = pd-mapper diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d6f4bb9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +*.rej +*.orig +*.swp +*.save* +*.o +*.a +*.out +*.lib +*.obj +*.dll +*.so +*.exe +*.gch +*.plist +*.mo +*.gmo +*.fd +*.iso +*.img +*.img.* +*.qcow2 +*.vhd +*.vdi +*.vmdk +*.cpio +*.cpio.* +*.ttf +*.ttc +*.pcf +*.pcf.* +*.efi +*.pkg.tar.* +vgcore.* +/build* +initramfs*.* +initrd*.* +System.map* +/cmake-build-* +/.idea +/.vscode +/.cache +CMakeCache.txt +CMakeFiles +Makefile +cmake_install.cmake +node_modules +package.json +package-lock.json +fonts.scale +fonts.dir +/src +/pkg +/pd-mapper diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a2105e7 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,44 @@ +pipeline { + agent { + label 'aarch64 && archlinux' + } + stages { + stage('Download Config') { + steps { + dir('jenkins-utils') { + git 'https://gitlab.classfun.cn:4443/renegade-project/jenkins-utils' + } + } + } + stage('Cleanup packages') { + steps { + sh 'rm -f *.pkg.tar.*' + } + } + stage('Build') { + steps { + sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --force' + } + } + stage('Signature packages') { + steps { + withCredentials([ + file(credentialsId: 'gpg-file', variable: 'GPG_FILE'), + string(credentialsId: 'gpg-secret', variable: 'GPG_SECRET') + ]) { + sh 'python3 jenkins-utils/sign-pkg.py -d . -k "$GPG_FILE" -p "$GPG_SECRET"' + } + } + } + stage('Upload packages') { + steps { + sh 'python3 jenkins-utils/upload-pkg.py -d . -a aarch64' + } + } + stage('Archive') { + steps { + archiveArtifacts artifacts: '*.pkg.tar.*', fingerprint: true + } + } + } +} diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..574eaa1 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Jami Kettunen +# Maintainer: BigfootACA + +pkgname="pd-mapper" +pkgdesc="Qualcomm Protection Domain mapper" +pkgver=r19.10997ba +pkgrel=1 +arch=("aarch64") +url="https://github.com/andersson/$pkgname" +license=("BSD-3-Clause") +groups=("qcom-icnss-wlan") +depends=("qrtr") +makedepends=("git" "make" "gcc") +source=("git+$url") +md5sums=("SKIP") + +pkgver() { + cd "$pkgname" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +build() { + cd "$pkgname" + make prefix=/usr +} + +package() { + cd "$pkgname" + make prefix=/usr DESTDIR="$pkgdir/" install + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}