Skip to content

Commit 9075b3b

Browse files
committed
3.2
1 parent 36b3ac2 commit 9075b3b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.SRCINFO

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgbase = redpanda-cpp
22
pkgdesc = A fast, lightweight, open source, and cross platform C/C++/GNU Assembly IDE
3-
pkgver = 3.1
3+
pkgver = 3.2
44
pkgrel = 1
55
url = https://github.com/royqh1979/RedPanda-CPP
66
arch = i686
@@ -11,20 +11,21 @@ pkgbase = redpanda-cpp
1111
arch = armv7h
1212
arch = aarch64
1313
arch = riscv64
14+
arch = loong64
1415
license = GPL3
15-
makedepends = qt5-tools
16+
makedepends = qt6-tools
1617
makedepends = imagemagick
1718
makedepends = librsvg
18-
depends = qt5-base
19-
depends = qt5-svg
19+
depends = qt6-base
20+
depends = qt6-svg
2021
depends = gcc
2122
depends = gdb
2223
depends = astyle
2324
optdepends = clang: C/C++ compiler (alternative)
24-
source = RedPanda-CPP-3.1.tar.gz::https://github.com/royqh1979/RedPanda-CPP/archive/refs/tags/v3.1.tar.gz
25+
source = RedPanda-CPP-3.2.tar.gz::https://github.com/royqh1979/RedPanda-CPP/archive/refs/tags/v3.2.tar.gz
2526
source = compiler_hint.lua
26-
sha256sums = 96a3c5883de50ed42dc0000b654050c1043da411d85c48877e63ffc71382093a
27-
sha256sums = 207f409d93100575e1d01842475880f6a78f095680246d98e61e72d272671448
27+
sha256sums = dc2267d793a553373a78c8a4624e908fab9bc1624c3abd12da5a1278d58219f7
28+
sha256sums = 6f887af50757c2ec7d57806b78119e0271c424db2119fbc62d111c2122c06b0c
2829
optdepends_x86_64 = mingw-w64-gcc: Windows C/C++ compiler
2930
optdepends_x86_64 = wine: run Windows executable
3031
optdepends_x86_64 = aarch64-linux-gnu-gcc: AArch64 C/C++ compiler

PKGBUILD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
_pkgname=RedPanda-CPP
22
pkgname=${_pkgname,,}
3-
pkgver=3.1
3+
pkgver=3.2
44
pkgrel=1
55
pkgdesc='A fast, lightweight, open source, and cross platform C/C++/GNU Assembly IDE'
6-
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64' 'riscv64')
6+
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64' 'riscv64' 'loong64')
77
url="https://github.com/royqh1979/$_pkgname"
88
license=('GPL3')
9-
depends=(qt5-base qt5-svg gcc gdb astyle)
10-
makedepends=(qt5-tools imagemagick librsvg)
9+
depends=(qt6-base qt6-svg gcc gdb astyle)
10+
makedepends=(qt6-tools imagemagick librsvg)
1111
optdepends=(
1212
'clang: C/C++ compiler (alternative)'
1313
)
@@ -22,8 +22,8 @@ source=(
2222
"$_pkgname-$pkgver.tar.gz::https://github.com/royqh1979/$_pkgname/archive/refs/tags/v$pkgver.tar.gz"
2323
'compiler_hint.lua'
2424
)
25-
sha256sums=('96a3c5883de50ed42dc0000b654050c1043da411d85c48877e63ffc71382093a'
26-
'207f409d93100575e1d01842475880f6a78f095680246d98e61e72d272671448')
25+
sha256sums=('dc2267d793a553373a78c8a4624e908fab9bc1624c3abd12da5a1278d58219f7'
26+
'6f887af50757c2ec7d57806b78119e0271c424db2119fbc62d111c2122c06b0c')
2727

2828
prepare() {
2929
sed -i '/CONFIG += ENABLE_LUA_ADDON/ { s/^#\s*// }' "$srcdir/$_pkgname-$pkgver/RedPandaIDE/RedPandaIDE.pro"
@@ -32,7 +32,7 @@ prepare() {
3232
build() {
3333
mkdir redpanda-build
3434
cd redpanda-build
35-
qmake \
35+
qmake6 \
3636
PREFIX='/usr' \
3737
LIBEXECDIR='/usr/lib' \
3838
"$srcdir/$_pkgname-$pkgver/Red_Panda_CPP.pro"

compiler_hint.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ end
146146

147147
function main()
148148
local arch = C_System.osArch()
149-
local libexecDir = C_System.appLibexecDir()
150149
local lang = C_Desktop.language()
151150

152151
local compilerList = {}

0 commit comments

Comments
 (0)