summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-12-11 01:16:17 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-12-11 04:33:41 -0600
commit3b0721e01962981b7a2f7aab640bcb1266d3bb00 (patch)
treef81087c9cc0588abfc3f7c795ff87bd29c5c4c70 /user
parent286c02f41ebcbdef36acc5524fdc646a74b64630 (diff)
parentff3f68c920d19d62cf10ae8f1f2f57173adc5e4c (diff)
downloadpackages-3b0721e01962981b7a2f7aab640bcb1266d3bb00.tar.gz
packages-3b0721e01962981b7a2f7aab640bcb1266d3bb00.tar.bz2
packages-3b0721e01962981b7a2f7aab640bcb1266d3bb00.tar.xz
packages-3b0721e01962981b7a2f7aab640bcb1266d3bb00.zip
Merge LXQt packages from @Aerdan
Diffstat (limited to 'user')
-rw-r--r--user/libfm-qt/APKBUILD17
-rw-r--r--user/liblxqt/APKBUILD4
-rw-r--r--user/libqtxdg/APKBUILD4
-rw-r--r--user/lximage-qt/APKBUILD10
-rw-r--r--user/lxqt-about/APKBUILD41
-rw-r--r--user/lxqt-admin/APKBUILD6
-rw-r--r--user/lxqt-config/APKBUILD47
-rw-r--r--user/lxqt-desktop/APKBUILD27
-rw-r--r--user/lxqt-desktop/org.adelie-linux.about-lxqt.desktop8
-rw-r--r--user/lxqt-globalkeys/APKBUILD47
-rw-r--r--user/lxqt-l10n/APKBUILD4
-rw-r--r--user/lxqt-notificationd/APKBUILD44
-rw-r--r--user/lxqt-openssh-askpass/APKBUILD6
-rw-r--r--user/lxqt-policykit/APKBUILD6
-rw-r--r--user/lxqt-powermanagement/APKBUILD4
-rw-r--r--user/lxqt-qtplugin/APKBUILD6
-rw-r--r--user/lxqt-runner/APKBUILD44
-rw-r--r--user/lxqt-session/APKBUILD6
-rw-r--r--user/lxqt-sudo/APKBUILD6
-rw-r--r--user/muparser/APKBUILD39
-rw-r--r--user/muparser/muparser-buildsystem.patch114
-rw-r--r--user/pcmanfm-qt/APKBUILD10
-rw-r--r--user/qterminal/APKBUILD6
-rw-r--r--user/qtermwidget/APKBUILD7
24 files changed, 460 insertions, 53 deletions
diff --git a/user/libfm-qt/APKBUILD b/user/libfm-qt/APKBUILD
index f69e6a700..ccf7a2fe0 100644
--- a/user/libfm-qt/APKBUILD
+++ b/user/libfm-qt/APKBUILD
@@ -1,19 +1,18 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=libfm-qt
-pkgver=0.11.2
+pkgver=0.12.0
pkgrel=0
pkgdesc="Qt library for file management and bindings for libfm"
url="http://lxqt.org"
arch="all"
license="LGPL-2.1+"
depends=""
-depends_dev="libfm-dev menu-cache-dev"
+depends_dev="libfm-dev menu-cache-dev libexif-dev"
makedepends="cmake extra-cmake-modules lxqt-build-tools qt5-qtx11extras-dev qt5-qttools-dev $depends_dev"
install=""
subpackages="$pkgname-dev"
-source="https://github.com/lxde/libfm-qt/releases/download/$pkgver/libfm-qt-$pkgver.tar.xz
- libfm-qt-0.11.2-const-fixes.patch"
+source="https://github.com/lxde/libfm-qt/releases/download/$pkgver/libfm-qt-$pkgver.tar.xz"
builddir="$srcdir/libfm-qt-$pkgver"
build() {
@@ -21,6 +20,7 @@ build() {
if [ "$CBUILD" != "$CHOST" ]; then
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
fi
+ mkdir -p build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
@@ -29,19 +29,18 @@ build() {
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_C_FLAGS="$CFLAGS" \
-DPULL_TRANSLATIONS=False \
- ${CMAKE_CROSSOPTS}
+ ${CMAKE_CROSSOPTS} ..
make
}
check() {
- cd "$builddir"
+ cd "$builddir/build"
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
}
package() {
- cd "$builddir"
+ cd "$builddir/build"
make DESTDIR="$pkgdir" install
}
-sha512sums="f31ec46bb7b6aa98bdbf619dba6d18f6180603a88ef841d7330565dab9d604714406075ab20d35c8356ff93eca84478d98e835f2057f5d4cc0339fa448f05570 libfm-qt-0.11.2.tar.xz
-80a92f55832bd69ad9c7b8e14e72fc2c5a0f8d659cc60efca23eb29577180ac9c11b931a500262d4e6ebb290af28effa71ec6255ed77660f7fb14e6ff455fa45 libfm-qt-0.11.2-const-fixes.patch"
+sha512sums="5c6aa4341672ff7c9d992cf248cff8c8e7f4eaa6e76ed9cc0655bc1a7dcb1cc7768136bb7509c2326a23d93159fa4496151fe284b9129503c03a11c852a60c43 libfm-qt-0.12.0.tar.xz"
diff --git a/user/liblxqt/APKBUILD b/user/liblxqt/APKBUILD
index 9ba79a4d1..4ca240cf8 100644
--- a/user/liblxqt/APKBUILD
+++ b/user/liblxqt/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=liblxqt
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Core LXQt library"
url="http://lxqt.org"
@@ -40,5 +40,5 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="c300ff6497e73d6a447b2d3ac14338cfa3e07aefafcce84dbcf22578e5d4370a1f9a5350d7a88db1f2668649f5b503378a97fbb39a238cb777e180025587eb66 liblxqt-0.11.1.tar.xz
+sha512sums="63c6c7ca89dafa19242bfd62787af4711ad40369ba848191a5fc51693cf2a5b2d6684d613587d73c824a14d919c44699b440c66d37c51d776def258232736595 liblxqt-0.12.0.tar.xz
f81766a330ef0d5404f4723003ea486725588e0dda93d7784d31ed0ff8a59b17b764bd6df89b5da14318210585fc42d9d046ed0b2db6b52cb2e450daad7e0cd0 versioning.patch"
diff --git a/user/libqtxdg/APKBUILD b/user/libqtxdg/APKBUILD
index edde815e9..f7b50bf9f 100644
--- a/user/libqtxdg/APKBUILD
+++ b/user/libqtxdg/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=libqtxdg
-pkgver=3.0.0
+pkgver=3.1.0
pkgrel=0
pkgdesc="Qt5-based library implementing the XDG spec"
url="http://lxqt.org"
@@ -45,4 +45,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="de3ca26c1f682f3ec3409dd81a397ec573f981ac71e7eab6f410bba18df7d45c6e0d7a037990cccd04901eda8de99aa059c5e090c26f59b560b7f61a4630ae23 libqtxdg-3.0.0.tar.xz"
+sha512sums="58c02b804a5fac38e13cfd0ea5b9c5dc547d2f0a4324ac2f8d62d6050164f3f19edf48c5466a227fc3439f76436db4535ae1855dc21c4d92fe086c89267754fd libqtxdg-3.1.0.tar.xz"
diff --git a/user/lximage-qt/APKBUILD b/user/lximage-qt/APKBUILD
index a47a76c4b..6e7df9bb2 100644
--- a/user/lximage-qt/APKBUILD
+++ b/user/lximage-qt/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lximage-qt
-pkgver=0.5.1
+pkgver=0.6.0
pkgrel=0
pkgdesc="Image viewer & screenshot tool for LXQt"
url="http://lxqt.org"
@@ -9,11 +9,10 @@ arch="all"
license="GPL-2.0+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools libfm-qt-dev libexif-dev qt5-qtx11extras-dev qt5-qttools-dev qt5-qtsvg-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools libfm-qt-dev>=0.12.0 libexif-dev qt5-qtx11extras-dev qt5-qttools-dev qt5-qtsvg-dev kwindowsystem-dev $depends_dev"
install=""
subpackages=""
-source="https://github.com/lxde/lximage-qt/releases/download/$pkgver/lximage-qt-$pkgver.tar.xz
- lximage-qt-0.5.1-const-iterator-fix.patch"
+source="https://github.com/lxde/lximage-qt/releases/download/$pkgver/lximage-qt-$pkgver.tar.xz"
builddir="$srcdir/lximage-qt-$pkgver"
# no tests
options="!check"
@@ -45,5 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="d74adacfc11dee3795db73f813aabcefb95dcf7f93a51dc4e76a8855aa903218fa36876ac835a9f4ac8b3a640f658e20eee8bda033126919251d7dfd2b4466f9 lximage-qt-0.5.1.tar.xz
-62733b0603aa43b8f3d111441ddeea47392c3ae96b967bfd6878ebc3a524bd442acb9e2c5357cafe66e2f082ee15e6e6a4d3e46e2ad15227b33ef08abe2d1a1f lximage-qt-0.5.1-const-iterator-fix.patch"
+sha512sums="13136ac165af8e68d33dcada815110b360cbf47f46e1861a9a6b9eee46ae3898ea298eb4c549ec1a603dd1473c0f5224552b1db602bd02202eccde910ea6bd23 lximage-qt-0.6.0.tar.xz"
diff --git a/user/lxqt-about/APKBUILD b/user/lxqt-about/APKBUILD
new file mode 100644
index 000000000..5e25d2947
--- /dev/null
+++ b/user/lxqt-about/APKBUILD
@@ -0,0 +1,41 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-about
+pkgver=0.12.0
+pkgrel=0
+pkgdesc="Dialog window providing information about LXQt and the system it runs on."
+url="http://lxqt.org"
+arch="all"
+license="LGPL-2.1+"
+depends=""
+makedepends="cmake extra-cmake-modules qt5-qttools-dev kwindowsystem-dev lxqt-build-tools liblxqt-dev>=0.12.0"
+install=""
+source="https://github.com/lxde/lxqt-about/releases/download/$pkgver/lxqt-about-$pkgver.tar.xz"
+builddir="$srcdir/lxqt-about-$pkgver"
+# no tests
+options="!check"
+
+build() {
+ cd "$builddir"
+ if [ "$CBUILD" != "$CHOST" ]; then
+ CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
+ fi
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
+ -DLXQT_VERSION="0.11.1" \
+ ${CMAKE_CROSSOPTS}
+ make
+}
+
+package() {
+ cd "$builddir"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="31f35dc70d9738739a5d28cfa0d0ff3991534b2f4d91ba579ed0898a6b797b48a1c3728f1b92ef92204124c48e4d20ef358f22e1aaffd5a430a5a97702b8db07 lxqt-about-0.12.0.tar.xz"
diff --git a/user/lxqt-admin/APKBUILD b/user/lxqt-admin/APKBUILD
index b9f8d2a18..e0355c2f9 100644
--- a/user/lxqt-admin/APKBUILD
+++ b/user/lxqt-admin/APKBUILD
@@ -1,13 +1,13 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-admin
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Administrative tools for LXQt"
url="http://lxqt.org"
arch="all"
license="LGPL-2.1+"
-depends=""
+depends="lxqt-policykit"
depends_dev=""
makedepends="cmake extra-cmake-modules qt5-qttools-dev kwindowsystem-dev lxqt-build-tools liblxqt-dev polkit-qt-1-dev $depends_dev"
install=""
@@ -39,4 +39,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="87464f4566d3080eb6d066756ae8da1420a2c93863c02d1abe6443d7b76438aadd3689d82677dbc0286f4b088b602bcb0c4bc2e82e380db4ead2992625852dc7 lxqt-admin-0.11.1.tar.xz"
+sha512sums="4d321d1d4b2b04d8315645a3383a312de1bf1695be42632446c674b174d7ad7249223a66576471947103f5e360a3cb6ae6d30501981fcc89b003d145948c43b4 lxqt-admin-0.12.0.tar.xz"
diff --git a/user/lxqt-config/APKBUILD b/user/lxqt-config/APKBUILD
new file mode 100644
index 000000000..32b46b9a6
--- /dev/null
+++ b/user/lxqt-config/APKBUILD
@@ -0,0 +1,47 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-config
+pkgver=0.12.0
+pkgrel=0
+pkgdesc="Collection of tools for configuring LXQt and the underlying system."
+url="http://lxqt.org"
+arch="all"
+license="LGPL-2.1+"
+depends=""
+depends_dev=""
+makedepends="cmake extra-cmake-modules liblxqt-dev>=0.12.0 lxqt-build-tools libxcursor-dev qt5-qtsvg-dev qt5-qttools-dev kwindowsystem-dev libkscreen-dev $depends_dev"
+subpackages="$pkgname-dev"
+install=""
+source="https://github.com/lxde/lxqt-config/releases/download/$pkgver/lxqt-config-$pkgver.tar.xz"
+builddir="$srcdir/lxqt-config-$pkgver"
+# no tests
+options="!check"
+
+build() {
+ cd "$builddir"
+ if [ "$CBUILD" != "$CHOST" ]; then
+ CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
+ fi
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
+ ${CMAKE_CROSSOPTS}
+ make -j1
+}
+
+check() {
+ cd "$builddir"
+ CTEST_OUTPUT_ON_FAILURE=TRUE ctest
+}
+
+package() {
+ cd "$builddir"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="c2140b37577692e06da492da183d59565140b380ec42881a80e76df88d14a67c9424314a8e01335cc99a84262c8011e8bacb5704386c352e794517edf049c58f lxqt-config-0.12.0.tar.xz"
diff --git a/user/lxqt-desktop/APKBUILD b/user/lxqt-desktop/APKBUILD
new file mode 100644
index 000000000..1cc486c90
--- /dev/null
+++ b/user/lxqt-desktop/APKBUILD
@@ -0,0 +1,27 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-desktop
+pkgver=0.12.0
+pkgrel=0
+arch="noarch"
+pkgdesc="Complete LXQt desktop"
+url="https://lxqt.org"
+license="NCSA"
+options="!check" # meta package, no tests needed.
+depends="breeze breeze-icons oxygen ttf-liberation xorg-server dbus-x11 openbox lxqt-panel lxqt-runner qterminal pcmanfm-qt lxqt-sudo lxqt-session lxqt-powermanagement lxqt-policykit lxqt-openssh-askpass lxqt-notificationd lxqt-globalkeys lxqt-config lxqt-admin lxqt-about lximage-qt lxqt-themes pavucontrol-qt compton-conf"
+makedepends=""
+install=""
+subpackages=""
+source="org.adelie-linux.about-lxqt.desktop"
+builddir="$srcdir/$pkgname-$pkgver"
+
+build() {
+ cd "$srcdir"
+}
+
+package() {
+ cd "$srcdir"
+ install -D -m644 "$srcdir"/org.adelie-linux.about-lxqt.desktop \
+ "$pkgdir"/usr/share/applications/org.adelie-linux.about-lxqt.desktop
+}
+sha512sums="e954a41cad44cad7ef3a7695c28396540556ee7bc374ee00f95c4117988d84f6989de7a030ddf11e426b895577e392100f8c5696f0cc3fdc03c2500498580af0 org.adelie-linux.about-lxqt.desktop"
diff --git a/user/lxqt-desktop/org.adelie-linux.about-lxqt.desktop b/user/lxqt-desktop/org.adelie-linux.about-lxqt.desktop
new file mode 100644
index 000000000..cc73b0d00
--- /dev/null
+++ b/user/lxqt-desktop/org.adelie-linux.about-lxqt.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Type=Application
+Version=1.0
+Name=About LXQt
+Comment=Learn about the LXQt desktop
+Icon=dialog-information
+Categories=LXQt
+Exec=xdg-open https://lxqt.org
diff --git a/user/lxqt-globalkeys/APKBUILD b/user/lxqt-globalkeys/APKBUILD
new file mode 100644
index 000000000..4853ebc07
--- /dev/null
+++ b/user/lxqt-globalkeys/APKBUILD
@@ -0,0 +1,47 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-globalkeys
+pkgver=0.12.0
+pkgrel=0
+pkgdesc="Daemon and configuration utility for global shortcuts in LXQt."
+url="http://lxqt.org"
+arch="all"
+license="LGPL-2.1+"
+depends=""
+depends_dev=""
+makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+install=""
+subpackages="$pkgname-dev"
+source="https://github.com/lxde/lxqt-globalkeys/releases/download/$pkgver/lxqt-globalkeys-$pkgver.tar.xz"
+builddir="$srcdir/lxqt-globalkeys-$pkgver"
+# no tests
+options="!check"
+
+build() {
+ cd "$builddir"
+ if [ "$CBUILD" != "$CHOST" ]; then
+ CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
+ fi
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
+ ${CMAKE_CROSSOPTS}
+ make
+}
+
+check() {
+ cd "$builddir"
+ CTEST_OUTPUT_ON_FAILURE=TRUE ctest
+}
+
+package() {
+ cd "$builddir"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="896d2c4e8e9b1d674be76bd5be52ee0356c31a61cc911d7b2cd56b3ad6aaad60563322ac3d90301ccaf65859044a8aeefd711ba2dfadfeba7810cf62acbff1ac lxqt-globalkeys-0.12.0.tar.xz"
diff --git a/user/lxqt-l10n/APKBUILD b/user/lxqt-l10n/APKBUILD
index 2e5f97efb..0402b9027 100644
--- a/user/lxqt-l10n/APKBUILD
+++ b/user/lxqt-l10n/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-l10n
-pkgver=0.11.99
+pkgver=0.12.0
pkgrel=0
pkgdesc="Localization files for LXQt"
url="http://lxqt.org"
@@ -36,4 +36,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="02c3edb4a6c43d90e06a44b761f318cb32fa9908985a0b39a0024d18fc1d31f9e9190ebf15672b2f7aac77bd565aac6306bce9fada0848acf555bc548eab4e96 lxqt-l10n-0.11.99.tar.xz"
+sha512sums="3012c25214e10bdbd262bd68a18c77eef6b2e5a0426ef82283150e4dd7b6f271080b95e4e7221235cf43fb430928359aeb95942a570e9ce8913ac5e61328efe9 lxqt-l10n-0.12.0.tar.xz"
diff --git a/user/lxqt-notificationd/APKBUILD b/user/lxqt-notificationd/APKBUILD
new file mode 100644
index 000000000..8a91eeb05
--- /dev/null
+++ b/user/lxqt-notificationd/APKBUILD
@@ -0,0 +1,44 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-notificationd
+pkgver=0.12.0
+pkgrel=0
+pkgdesc="Daemon for notifications in LXQt."
+url="http://lxqt.org"
+arch="all"
+license="LGPL-2.1+"
+depends=""
+depends_dev=""
+makedepends="cmake extra-cmake-modules liblxqt-dev>=0.12.0 lxqt-build-tools qt5-qttools-dev kwindowsystem-dev $depends_dev"
+install=""
+source="https://github.com/lxde/lxqt-notificationd/releases/download/$pkgver/lxqt-notificationd-$pkgver.tar.xz"
+builddir="$srcdir/lxqt-notificationd-$pkgver"
+
+build() {
+ cd "$builddir"
+ if [ "$CBUILD" != "$CHOST" ]; then
+ CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
+ fi
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
+ ${CMAKE_CROSSOPTS}
+ make
+}
+
+check() {
+ cd "$builddir"
+ CTEST_OUTPUT_ON_FAILURE=TRUE ctest
+}
+
+package() {
+ cd "$builddir"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="89243c011b8d5a96d3f407a71d14a8c6c8792cded1d92dd442991b1acf73deb884e0ef668a2806e0348f95affbb408f913e61355c84ba406d20f43fedaf2285a lxqt-notificationd-0.12.0.tar.xz"
diff --git a/user/lxqt-openssh-askpass/APKBUILD b/user/lxqt-openssh-askpass/APKBUILD
index ceccaf625..4dc3032bd 100644
--- a/user/lxqt-openssh-askpass/APKBUILD
+++ b/user/lxqt-openssh-askpass/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-openssh-askpass
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Graphical LXQt utility for querying for passwords on behalf of SSH agents"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="LGPL-2.1+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev>=0.12.0 qt5-qttools-dev kwindowsystem-dev $depends_dev"
install=""
subpackages=""
source="https://github.com/lxde/lxqt-openssh-askpass/releases/download/$pkgver/lxqt-openssh-askpass-$pkgver.tar.xz"
@@ -44,4 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="573840a16c9645979327af5448c628caad33a56b1d941d5b6a57e03f687666763faf997b85385befc4ceef9a4a6b5ea41fb6230da4efa2c7b56a34add5718d57 lxqt-openssh-askpass-0.11.1.tar.xz"
+sha512sums="8ac47e7cb2ba8d5c9b47fed3aee531b4a9b08a94d6b76651ee250699a6fad4765c27e94fd6f8e3aa7c59e2d9ea271641cd31db2e6611002d53e8cc037ae2ddf6 lxqt-openssh-askpass-0.12.0.tar.xz"
diff --git a/user/lxqt-policykit/APKBUILD b/user/lxqt-policykit/APKBUILD
index 5ac04325e..5e3751320 100644
--- a/user/lxqt-policykit/APKBUILD
+++ b/user/lxqt-policykit/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-policykit
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="PolicyKit agent for LXQT"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="LGPL-2.1+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules liblxqt-dev lxqt-build-tools qt5-qttools-dev kwindowsystem-dev polkit-qt-1-dev $depends_dev"
+makedepends="cmake extra-cmake-modules liblxqt-dev>=0.12.0 lxqt-build-tools qt5-qttools-dev kwindowsystem-dev polkit-qt-1-dev $depends_dev"
install=""
subpackages=""
source="https://github.com/lxde/lxqt-policykit/releases/download/$pkgver/lxqt-policykit-$pkgver.tar.xz"
@@ -44,4 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="55c9b0e01b1dc1080c79ec6e2baca4b8262fcb772c4654cf0168c5fe7ee37c1f0624d13be42541f4398ae8db7a7f76ed55a9f624c239b9110893cdb914078fda lxqt-policykit-0.11.1.tar.xz"
+sha512sums="42502c3e8364266f4532941a38872c40255fcbf2df70aac06d731992216b7b59e03a34f8d2d31bf61e36f47bfff93ef1a81f64ef5a4f5ace881597eb3f948a1e lxqt-policykit-0.12.0.tar.xz"
diff --git a/user/lxqt-powermanagement/APKBUILD b/user/lxqt-powermanagement/APKBUILD
index d7d6b7667..2f0fbebd7 100644
--- a/user/lxqt-powermanagement/APKBUILD
+++ b/user/lxqt-powermanagement/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-powermanagement
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Power management utilities for LXQt"
url="http://lxqt.org"
@@ -42,4 +42,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="4e75075bee9c5d1daedfa001a0e3c4743cb21342c4eec663965e408e4d0ffee7d1ddf6db298bfae4337d6f75127c9f31f054f09231df5b6284247d755033bf1f lxqt-powermanagement-0.11.1.tar.xz"
+sha512sums="a4e607cb69945b2b85131e2f0209185b1322fa4b19de3d950b73f681052f4eb3fdb5b29a70c7df9baed7e1ae79793d433cb5b3fec42133e86fd645aa4e8e11d4 lxqt-powermanagement-0.12.0.tar.xz"
diff --git a/user/lxqt-qtplugin/APKBUILD b/user/lxqt-qtplugin/APKBUILD
index b1f2b5561..789ea58df 100644
--- a/user/lxqt-qtplugin/APKBUILD
+++ b/user/lxqt-qtplugin/APKBUILD
@@ -1,14 +1,14 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-qtplugin
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Qt plugin for platform integration with LXQt"
url="http://lxqt.org"
arch="all"
license="LGPL-2.1+"
depends=""
-makedepends="cmake libdbusmenu-qt-dev liblxqt-dev qt5-qttools-dev lxqt-build-tools"
+makedepends="cmake extra-cmake-modules lxqt-build-tools libdbusmenu-qt-dev liblxqt-dev libfm-qt-dev qt5-qttools-dev"
install=""
subpackages=""
source="https://github.com/lxde/lxqt-qtplugin/releases/download/$pkgver/lxqt-qtplugin-$pkgver.tar.xz"
@@ -41,4 +41,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="573cfbf5d1b85b6141bb7145b622edf6f1497cc62fca775078bbac6002d9fb1a7eb63bedaeecf0d050da0bad0c983ae0ce69d06687a2e804b0c31b742753dee1 lxqt-qtplugin-0.11.1.tar.xz"
+sha512sums="ea060e600ab5c19e43bcbf77c17797f77050fbd7a532b7ff3fa3d77005064c59b0e553f3dd6819ca4206056af709cea9a8ad892c37454191f6f9ddc509f3f119 lxqt-qtplugin-0.12.0.tar.xz"
diff --git a/user/lxqt-runner/APKBUILD b/user/lxqt-runner/APKBUILD
new file mode 100644
index 000000000..c31018af2
--- /dev/null
+++ b/user/lxqt-runner/APKBUILD
@@ -0,0 +1,44 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
+pkgname=lxqt-runner
+pkgver=0.12.0
+pkgrel=0
+pkgdesc="Qt-based application launcher for LXQt"
+url="http://lxqt.org"
+arch="all"
+license="LGPL-2.1+"
+depends=""
+depends_dev=""
+makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev muparser-dev kwindowsystem-dev menu-cache-dev lxqt-globalkeys-dev qt5-qttools-dev qt5-qtsvg-dev $depends_dev"
+install=""
+source="https://github.com/lxde/lxqt-runner/releases/download/$pkgver/lxqt-runner-$pkgver.tar.xz"
+builddir="$srcdir/lxqt-runner-$pkgver"
+
+build() {
+ cd "$builddir"
+ if [ "$CBUILD" != "$CHOST" ]; then
+ CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
+ fi
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
+ ${CMAKE_CROSSOPTS}
+ make
+}
+
+check() {
+ cd "$builddir"
+ CTEST_OUTPUT_ON_FAILURE=TRUE ctest
+}
+
+package() {
+ cd "$builddir"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="637996fc5a0ea3384603a2ec6bb65bd94136519342ab6e129bf48fc0b028980697afc4ba9a69eef179603569f39062d7ff9e8bfc93f24a0444280a8729418bd5 lxqt-runner-0.12.0.tar.xz"
diff --git a/user/lxqt-session/APKBUILD b/user/lxqt-session/APKBUILD
index e70853245..f4edc933c 100644
--- a/user/lxqt-session/APKBUILD
+++ b/user/lxqt-session/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-session
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Session management utilities for LXQt"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="LGPL-2.1+"
depends="xdg-user-dirs"
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev eudev-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev>=0.12.0 eudev-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
install=""
subpackages="$pkgname-doc"
source="https://github.com/lxde/lxqt-session/releases/download/$pkgver/lxqt-session-$pkgver.tar.xz"
@@ -42,4 +42,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="0ce9adc1210f457e11466ddc4b4d6197534512721f6b2bcc25dd2b384a21a0ca723eab66bcc9f9bbb6efc377a12954d74f2e7bfa32b4a333788a89048d077776 lxqt-session-0.11.1.tar.xz"
+sha512sums="035954e684ea7ccc6f9a681150aaa482963b57fb4c97595448af170e9f01b2e60dc890ea08a3fdb81548035bbda1d4564e44b7997ff036ffa5ed77b5cbe7aaab lxqt-session-0.12.0.tar.xz"
diff --git a/user/lxqt-sudo/APKBUILD b/user/lxqt-sudo/APKBUILD
index 8a7df75ed..035dd12ba 100644
--- a/user/lxqt-sudo/APKBUILD
+++ b/user/lxqt-sudo/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=lxqt-sudo
-pkgver=0.11.1
+pkgver=0.12.0
pkgrel=0
pkgdesc="Graphical LXQt utility for sudo/su"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="LGPL-2.1+"
depends="sudo"
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev qt5-qtbase-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools liblxqt-dev>=0.12.0 qt5-qtbase-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
install=""
subpackages="$pkgname-doc"
source="https://github.com/lxde/lxqt-sudo/releases/download/$pkgver/lxqt-sudo-$pkgver.tar.xz"
@@ -44,4 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="54d1449e62489f540d4d54898c44779b8af7618ac2a7252115e5a4eb28f6e1bfc8e04f5cfa11d76a3b8b08bdf6e8e751ae460d12eaf0c7fc8e25b39aa6e76d0f lxqt-sudo-0.11.1.tar.xz"
+sha512sums="14a2dd325b3ce125431135ed1a39b9c0deb1a0fa143271f69d199d22fbe30a83d9147c7714871a4c9157128cc2da4af1a90a9215c7df09295cfe8dc511fbaedd lxqt-sudo-0.12.0.tar.xz"
diff --git a/user/muparser/APKBUILD b/user/muparser/APKBUILD
new file mode 100644
index 000000000..d17f539cd
--- /dev/null
+++ b/user/muparser/APKBUILD
@@ -0,0 +1,39 @@
+# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
+# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
+pkgname=muparser
+pkgver=2.2.5
+pkgrel=0
+pkgdesc="a fast math parser library"
+url="http://beltoforion.de/article.php?a=muparser"
+arch="all"
+license="MIT"
+depends=""
+makedepends="cmake"
+install=""
+subpackages="$pkgname-dev"
+source="$pkgname-$pkgver.tar.gz::https://github.com/beltoforion/$pkgname/archive/v$pkgver.tar.gz
+ muparser-buildsystem.patch"
+builddir="$srcdir/$pkgname-$pkgver"
+options="!check"
+
+build() {
+ cd "$builddir/build"
+
+ cmake \
+ -DBUILD_SHARED_LIBS=ON \
+ -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DCMAKE_VERBOSE_MAKEFILE=ON \
+ $cmake_opts \
+ ../
+ make
+}
+
+package() {
+ cd "$builddir/build"
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="d89380ebdc0ce91d0ea38fe43419ab6ed06c47d352b9ee20e1edcce48337b464366153493e0241c373ba2880a8b419fb9541e56cda0d14915daf9b98136ee682 muparser-2.2.5.tar.gz
+2acdf0bb2db7d11583ea4512d0422cc5ac577f074de7f0dbc28df879f821c6904a6bda5c9a68f2836459623544cb7af69a7fa664788d8cae98f83adaac3ae3a2 muparser-buildsystem.patch"
diff --git a/user/muparser/muparser-buildsystem.patch b/user/muparser/muparser-buildsystem.patch
new file mode 100644
index 000000000..bd7faa991
--- /dev/null
+++ b/user/muparser/muparser-buildsystem.patch
@@ -0,0 +1,114 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+new file mode 100644
+index 0000000..3912058
+--- /dev/null
++++ b/CMakeLists.txt
+@@ -0,0 +1,91 @@
++# CMake based on work from @xantares
++cmake_minimum_required(VERSION 3.1)
++project(muParserProject)
++
++include(CTest)
++enable_testing()
++
++# Bump versions on release
++set(MUPARSER_VERSION_MAJOR 2)
++set(MUPARSER_VERSION_MINOR 2)
++set(MUPARSER_VERSION_PATCH 5)
++set(MUPARSER_VERSION ${MUPARSER_VERSION_MAJOR}.${MUPARSER_VERSION_MINOR}.${MUPARSER_VERSION_PATCH})
++
++# Build options
++option(ENABLE_SAMPLES "Build the samples" ON)
++option(ENABLE_OPENMP "Enable OpenMP for multithreading" OFF)
++
++if(ENABLE_OPENMP)
++ find_package(OpenMP REQUIRED)
++ set(CMAKE_CXX_FLAGS "${OpenMP_CXX_FLAGS} ${CMAKE_CXX_FLAGS}")
++ set(CMAKE_SHARED_LIBRARY_CXX_FLAGS "${OpenMP_CXX_FLAGS} ${CMAKE_SHARED_LIBRARY_CXX_FLAGS}")
++endif()
++
++include_directories("${CMAKE_SOURCE_DIR}/include")
++add_library(muparser
++ src/muParserBase.cpp
++ src/muParserBytecode.cpp
++ src/muParserCallback.cpp
++ src/muParser.cpp
++ src/muParserDLL.cpp
++ src/muParserError.cpp
++ src/muParserInt.cpp
++ src/muParserTest.cpp
++ src/muParserTokenReader.cpp
++)
++target_compile_definitions(muparser PRIVATE MUPARSERLIB_EXPORTS)
++if(ENABLE_OPENMP)
++ target_compile_definitions(muparser PRIVATE MUP_USE_OPENMP)
++endif()
++set_target_properties(muparser PROPERTIES
++ VERSION ${MUPARSER_VERSION}
++ SOVERSION ${MUPARSER_VERSION_MAJOR}
++)
++
++# Install the export set for use with the install-tree
++export(TARGETS muparser FILE "${CMAKE_BINARY_DIR}/muparser-targets.cmake")
++
++if(ENABLE_SAMPLES)
++ # the C example does not compile at the moment, because definitions must be
++ # inside external "C" { } to avoid name mangling.
++ #add_executable(example2 samples/example2/example2.c)
++ #target_link_libraries(example2 muparser)
++
++ add_executable(example1 samples/example1/example1.cpp)
++ target_link_libraries(example1 muparser)
++ add_test(base example1)
++endif()
++
++install(TARGETS muparser DESTINATION lib)
++install(FILES
++ include/muParserBase.h
++ include/muParserBytecode.h
++ include/muParserCallback.h
++ include/muParserDef.h
++ include/muParserDLL.h
++ include/muParserError.h
++ include/muParserFixes.h
++ include/muParser.h
++ include/muParserInt.h
++ include/muParserStack.h
++ include/muParserTemplateMagic.h
++ include/muParserTest.h
++ include/muParserToken.h
++ include/muParserTokenReader.h
++ DESTINATION include
++)
++
++# Define variables for the pkg-config file
++# The GNUInstallDirs defines ${CMAKE_INSTALL_DATAROOTDIR}
++# See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html
++include(GNUInstallDirs)
++set(PACKAGE_NAME muparser)
++configure_file(
++ "${CMAKE_SOURCE_DIR}/build/autoconf/muparser.pc.cmakein"
++ "${CMAKE_BINARY_DIR}/muparser.pc"
++ @ONLY
++)
++install(
++ FILES "${CMAKE_BINARY_DIR}/muparser.pc"
++ DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
++)
+diff --git a/build/autoconf/muparser.pc.cmakein b/build/autoconf/muparser.pc.cmakein
+new file mode 100644
+index 0000000..be535ff
+--- /dev/null
++++ b/build/autoconf/muparser.pc.cmakein
+@@ -0,0 +1,11 @@
++prefix=@CMAKE_INSTALL_PREFIX@
++exec_prefix=${prefix}
++libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
++includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
++
++Name: @PACKAGE_NAME@
++Description: Mathematical expressions parser library
++Version: @MUPARSER_VERSION@
++Requires:
++Libs: -L${libdir} -lmuparser
++Cflags: -I${includedir}
diff --git a/user/pcmanfm-qt/APKBUILD b/user/pcmanfm-qt/APKBUILD
index 616be857a..2d2c3afcb 100644
--- a/user/pcmanfm-qt/APKBUILD
+++ b/user/pcmanfm-qt/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=pcmanfm-qt
-pkgver=0.11.3
+pkgver=0.12.0
pkgrel=0
pkgdesc="File manager and desktop icon manager for LXQt"
url="http://lxqt.org"
@@ -9,11 +9,10 @@ arch="all"
license="GPL-2.0+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools libfm-qt-dev liblxqt-dev qt5-qtx11extras-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools libfm-qt-dev>=0.12.0 liblxqt-dev qt5-qtx11extras-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
install=""
subpackages="$pkgname-doc"
-source="https://github.com/lxde/pcmanfm-qt/releases/download/$pkgver/pcmanfm-qt-$pkgver.tar.xz
- pcmanfm-qt-0.11.3-const-iterator-fixes.patch"
+source="https://github.com/lxde/pcmanfm-qt/releases/download/$pkgver/pcmanfm-qt-$pkgver.tar.xz"
builddir="$srcdir/pcmanfm-qt-$pkgver"
# no tests
options="!check"
@@ -45,5 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="168012e022da30d4c2821e34f47372fae421b8b400cc3b2b0c16046f31bbdcb08814d0dd2ea2f0b615fafee4ac8af53ffa5fc0ceb170ccaa29468eec8b30de6d pcmanfm-qt-0.11.3.tar.xz
-127eca77c12c2b32b6106ae71b306d8d5fd85d8a2a3c25742f230054cfd7940f43f8d7dda5cc8009cae12a46adb62a6037af9dea0bb00b36b680d249b9e3278c pcmanfm-qt-0.11.3-const-iterator-fixes.patch"
+sha512sums="78a75ba6211407c55dbf1f0fc2f307d7444a512b65a732fb4c9c51634f465968443340b999dee8d2aa1d6344bcc1affd80e1b867980d269df69580c102037d95 pcmanfm-qt-0.12.0.tar.xz"
diff --git a/user/qterminal/APKBUILD b/user/qterminal/APKBUILD
index 82f3ee641..a982fd03a 100644
--- a/user/qterminal/APKBUILD
+++ b/user/qterminal/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=qterminal
-pkgver=0.7.1
+pkgver=0.8.0
pkgrel=0
pkgdesc="Qt-based terminal for LXQt"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="GPL-2.0+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules lxqt-build-tools qtermwidget-dev qt5-qttools-dev kwindowsystem-dev $depends_dev"
+makedepends="cmake extra-cmake-modules lxqt-build-tools>=0.4.0 qtermwidget-dev>=0.8.0 qt5-qttools-dev kwindowsystem-dev $depends_dev"
install=""
subpackages=""
source="https://github.com/lxde/qterminal/releases/download/$pkgver/qterminal-$pkgver.tar.xz"
@@ -44,4 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="45f83a4179a90379678b7875de386e04c77505d89d8c0c447a0892a279bc1776d0847a54683d43af085bcb306cc0e4d0858f1c49dc6e0e08f549d7350584625d qterminal-0.7.1.tar.xz"
+sha512sums="c2046727900bfa8f389a90a38c3843131f324af0b2f52810966f5df624c74fee31c8825b7bd86d0b44c896d276fff6ffbf17dd9796143f5e3940b4ba33dd98af qterminal-0.8.0.tar.xz"
diff --git a/user/qtermwidget/APKBUILD b/user/qtermwidget/APKBUILD
index 42d6400ae..33bce47db 100644
--- a/user/qtermwidget/APKBUILD
+++ b/user/qtermwidget/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=qtermwidget
-pkgver=0.7.1
+pkgver=0.8.0
pkgrel=0
pkgdesc="A Qt-based terminal widget, used in QTerminal"
url="http://lxqt.org"
@@ -9,7 +9,7 @@ arch="all"
license="GPL-2.0+"
depends=""
depends_dev=""
-makedepends="cmake extra-cmake-modules qt5-qtbase-dev lxqt-build-tools $depends_dev"
+makedepends="cmake extra-cmake-modules qt5-qtbase-dev qt5-qttools-dev lxqt-build-tools $depends_dev"
install=""
subpackages="$pkgname-dev"
source="https://github.com/lxde/qtermwidget/releases/download/$pkgver/qtermwidget-$pkgver.tar.xz"
@@ -29,6 +29,7 @@ build() {
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_C_FLAGS="$CFLAGS" \
+ -DPULL_TRANSLATIONS=False \
${CMAKE_CROSSOPTS}
make
}
@@ -43,4 +44,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-sha512sums="a8660ca5355103cf9d9f72ec5213f3c04d02dff44ceaa26297960def07335596eba6b125a7b3ca1a02f8c19a99edffdee68c57ff0c3f357cc3df149d3e9c5c99 qtermwidget-0.7.1.tar.xz"
+sha512sums="2e1354b457d49ae2ad37479259549b279f8bb381ce6bce2d18eb3f845af615e796a9d0bd143156b485a1b2abeffc83e686d85f9ee157611b20c8c1bb3254fe82 qtermwidget-0.8.0.tar.xz"