neochat: initial commit, version 24.02.1

This commit is contained in:
Tim Biermann 2024-04-07 16:30:35 +02:00
parent 96cd01b059
commit b518ef9322
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 77 additions and 0 deletions

45
neochat/.footprint Normal file
View File

@ -0,0 +1,45 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/neochat
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/org.kde.neochat.desktop
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/org.kde.neochat.svg
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/org.kde.neochat.tray.svg
drwxr-xr-x root/root usr/share/knotifications6/
-rw-r--r-- root/root usr/share/knotifications6/neochat.notifyrc
drwxr-xr-x root/root usr/share/krunner/
drwxr-xr-x root/root usr/share/krunner/dbusplugins/
-rw-r--r-- root/root usr/share/krunner/dbusplugins/plasma-runner-neochat.desktop
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/ca/
drwxr-xr-x root/root usr/share/man/ca/man1/
-rw-r--r-- root/root usr/share/man/ca/man1/neochat.1
drwxr-xr-x root/root usr/share/man/es/
drwxr-xr-x root/root usr/share/man/es/man1/
-rw-r--r-- root/root usr/share/man/es/man1/neochat.1
drwxr-xr-x root/root usr/share/man/it/
drwxr-xr-x root/root usr/share/man/it/man1/
-rw-r--r-- root/root usr/share/man/it/man1/neochat.1
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/neochat.1.gz
drwxr-xr-x root/root usr/share/man/nl/
drwxr-xr-x root/root usr/share/man/nl/man1/
-rw-r--r-- root/root usr/share/man/nl/man1/neochat.1
drwxr-xr-x root/root usr/share/man/sv/
drwxr-xr-x root/root usr/share/man/sv/man1/
-rw-r--r-- root/root usr/share/man/sv/man1/neochat.1
drwxr-xr-x root/root usr/share/man/tr/
drwxr-xr-x root/root usr/share/man/tr/man1/
-rw-r--r-- root/root usr/share/man/tr/man1/neochat.1
drwxr-xr-x root/root usr/share/man/uk/
drwxr-xr-x root/root usr/share/man/uk/man1/
-rw-r--r-- root/root usr/share/man/uk/man1/neochat.1
drwxr-xr-x root/root usr/share/metainfo/
-rw-r--r-- root/root usr/share/metainfo/org.kde.neochat.appdata.xml
drwxr-xr-x root/root usr/share/qlogging-categories6/
-rw-r--r-- root/root usr/share/qlogging-categories6/neochat.categories

5
neochat/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3vnWvJFZlYcAtwYxXDTtYxC6r0GjOoSc0RHLp3LLNpPrCRRXLjsIHz5lgelSs4tr/kZ232GBIOPC6050GR8GUw0=
SHA256 (Pkgfile) = 6d0675b24df79bb36f53b06d6d8534203148877e6bd7dbe9b0fdc90040e152ac
SHA256 (.footprint) = 9dbe22a38948a765f1c9a2b79ca708109da689ef7dde572a27c29279b8179cbb
SHA256 (neochat-24.02.1.tar.xz) = 05b6dfa24b791bb229f108a738270764888ab585413dfed8f3fa3d312fb7fdc6

27
neochat/Pkgfile Normal file
View File

@ -0,0 +1,27 @@
# Description: a chat app that lets you take full advantage of the Matrix network
# URL: https://apps.kde.org/neochat/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: cmark kio kirigami-addons kitemmodels kquickcharts kquickimageeditor kstatusnotifieritem libquotient prison qcoro qqc2-desktop-style qt6-location qt6-webview syntax-highlighting
name=neochat
version=24.02.1
release=1
source=(https://download.kde.org/stable/release-service/$version/src/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_INSTALL_LIBEXECDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/locale
}
# vim: set ts=4 et: