Initial commit
Some checks failed
gitea/pkg-diag/pipeline/head There was a failure building this commit
Some checks failed
gitea/pkg-diag/pipeline/head There was a failure building this commit
This commit is contained in:
commit
6769a7bf60
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
pkgbase = diag
|
||||||
|
pkgdesc = DIAG Router
|
||||||
|
pkgver = r120.d06e599
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/andersson/diag
|
||||||
|
arch = aarch64
|
||||||
|
license = BSD
|
||||||
|
makedepends = git
|
||||||
|
depends = glibc
|
||||||
|
depends = qrtr
|
||||||
|
optdepends = systemd-gadget: for usb gadget
|
||||||
|
source = git+https://github.com/andersson/diag
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = diag
|
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
@ -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
|
||||||
|
/diag
|
44
Jenkinsfile
vendored
Normal file
44
Jenkinsfile
vendored
Normal file
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Maintainer: BigfootACA <bigfoot@classfun.cn>
|
||||||
|
|
||||||
|
pkgname=diag
|
||||||
|
pkgver=r120.d06e599
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="DIAG Router"
|
||||||
|
arch=("aarch64")
|
||||||
|
url="https://github.com/andersson/diag"
|
||||||
|
license=(BSD)
|
||||||
|
makedepends=(git)
|
||||||
|
depends=(glibc qrtr)
|
||||||
|
source=("git+https://github.com/andersson/diag")
|
||||||
|
md5sums=('SKIP')
|
||||||
|
optdepends=(
|
||||||
|
"systemd-gadget: for usb gadget"
|
||||||
|
)
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "$pkgname"
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$pkgname"
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$pkgname"
|
||||||
|
make DESTDIR="$pkgdir/" prefix=/usr install
|
||||||
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||||
|
}
|
9
diag-router.service
Normal file
9
diag-router.service
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=DIAG Router
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
User=root
|
||||||
|
ExecStart=/usr/bin/diag-rotuer
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user