Skip to content

Commit

Permalink
chore(main): release 0.7.8; fix loong64 build bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwq committed Jul 23, 2024
1 parent 700d6f5 commit 7802993
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions build/APKBUILD
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Contributor: Wang Qi <[email protected]>
# Maintainer: Wang Qi <[email protected]>
pkgname=aprilsh
pkgver=0.7.7
pkgver=0.7.8
pkgrel=0
pkgdesc="Remote shell support intermittent or mobile network"
url="https://github.com/ericwq/aprilsh"
# loongarch64: frontend/signal_linux_test.go:20:45: undefined: syscall.SIGUNUSED
arch="all"
license="MIT"
depends="$pkgname-client=$pkgver-r$pkgrel $pkgname-server=$pkgver-r$pkgrel"
Expand Down Expand Up @@ -41,7 +42,7 @@ build() {
local ldflags="-s -w \
-X $_module_name/frontend.BuildTime=$_date_str \
-X $_module_name/frontend.GitBranch=HEAD \
-X $_module_name/frontend.GitCommit=alpine \
-X $_module_name/frontend.GitCommit=700d6f5 \
-X $_module_name/frontend.GitTag=$pkgver \
-X $_module_name/frontend.GoVersion=$_go_version \
"
Expand Down Expand Up @@ -75,7 +76,7 @@ server() {
}

sha512sums="
85e4bef7c2d261e2e40b9d64a1d096f226357da9563d9db0416ab4e6bea5836cb9dc4f15277c71f7aecc5a5b0a7ba6982336dd8177e13d0342d6f815887f1b23 aprilsh-0.7.1.tar.gz
e155afb8d7d729869b524875c5fa40d0ab4b9f3171eca3e3637ca31df59520380dbde7d0489478ac55de06592b29da1806aabd83084bac0650e303f02b970713 aprilsh-0.7.7.tar.gz
5e65b2c344d31928398234eacf08e153d2edf991709703ffa4905abffac516658be8146bab5cd4cd31d8812619e9c85aac344537546d15ca57a3e2dc83051f48 apshd.logrotate
cf27f80d48a6056514c3f1efa1a057d720b9ee8017f683858dea0afc92517025a3b427110a55fc1923eef51c9d6fa30627eb9eef852aa4e075afba5e6a8275ad apshd.initd
f7afd2a135c2d3c6357f02ed4e580e85275de2fcd2d1c3dabefffeca4fecb4cc8f21243e97440b17256cb56a8c006b81635d418ab5457b5b4aa78deac5d00dd1 apshd.initd
"
4 changes: 2 additions & 2 deletions frontend/signal_linux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func TestGotSignal(t *testing.T) {
syscall.SIGIO, syscall.SIGIOT, syscall.SIGKILL, syscall.SIGPIPE, syscall.SIGPOLL,
syscall.SIGPROF, syscall.SIGPWR, syscall.SIGQUIT, syscall.SIGSEGV, syscall.SIGSTKFLT,
syscall.SIGSTOP, syscall.SIGSYS, syscall.SIGTERM, syscall.SIGTRAP, syscall.SIGTSTP,
syscall.SIGTTIN, syscall.SIGTTOU, syscall.SIGUNUSED, syscall.SIGURG, syscall.SIGUSR1,
syscall.SIGTTIN, syscall.SIGTTOU, syscall.SIGURG, syscall.SIGUSR1,
syscall.SIGUSR2, syscall.SIGVTALRM, syscall.SIGWINCH, syscall.SIGXCPU, syscall.SIGXFSZ,
}

Expand All @@ -27,7 +27,7 @@ func TestGotSignal(t *testing.T) {
true, false, true, true, false,
true, true, true, true, true,
true, true, true, true, true,
true, true, false, true, true,
true, true, true, true,
true, true, true, true, true,
}

Expand Down

0 comments on commit 7802993

Please sign in to comment.