Package Details: plasma5-runners-symbols 1.1.0-2

Git Clone URL: https://aur.archlinux.org/plasma5-runners-symbols.git (read-only, click to copy)
Package Base: plasma5-runners-symbols
Description: A little krunner plugin (Plasma 5) to retrieve unicode symbols, or any other string, based on a corresponding keyword
Upstream URL: https://github.com/domschrei/krunner-symbols
Keywords: kde krunner plasma5
Licenses: GPL
Submitter: domschrei
Maintainer: domschrei (termuellinator)
Last Packager: termuellinator
Votes: 15
Popularity: 0.055849
First Submitted: 2016-03-09 22:37 (UTC)
Last Updated: 2023-10-23 06:52 (UTC)

Latest Comments

MarsSeed commented on 2024-04-23 18:33 (UTC) (edited on 2024-04-24 10:11 (UTC) by MarsSeed)

Actually the last stable release is from 2020.

Please submit this dead package for deletion.

Also it is unnecessary, because KDE Plasma's krunner already ships with a built-in symbol lookup module.

MarsSeed commented on 2024-03-27 19:14 (UTC) (edited on 2024-04-23 17:04 (UTC) by MarsSeed)

Upstream is abandoned for more than 2 years, and this no longer works on KDE Plasma 6.

And1G commented on 2023-10-20 16:57 (UTC)

Some KDE Frameworks packages changed their names and now are suffixed with 5, most likely to prepare for version 6. Builds and installs with these changes:

diff --git a/PKGBUILD b/PKGBUILD
index fd4ec5d..fe1e3d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: Dominik Schreiber <dev@dominikschreiber.de>
 pkgname=plasma5-runners-symbols
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A little krunner plugin (Plasma 5) to retrieve unicode symbols, or any other string, based on a corresponding keyword"
 arch=('x86_64')
 url="https://github.com/domschrei/krunner-symbols"
 license=('GPL')
-depends=('krunner' 'qt5-base' 'ki18n')
+depends=('krunner5' 'qt5-base' 'ki18n5')
 makedepends=('cmake' 'extra-cmake-modules' 'kdelibs4support')
 optdepends=()
 source=("${pkgname}-${pkgver}.tar.gz::https://github.com/domschrei/krunner-symbols/archive/${pkgver}.tar.gz")

insiderser commented on 2023-10-20 09:16 (UTC)

Not able to upgrade dependencies since today:

looking for conflicting packages...
error: failed to prepare transaction (could not satisfy dependencies)
:: installing krunner5 (5.111.0-1) breaks dependency 'krunner' required by plasma5-runners-jetbrains-runner
:: installing krunner5 (5.111.0-1) breaks dependency 'krunner' required by plasma5-runners-symbols
:: installing ki18n5 (5.111.0-1) breaks dependency 'ki18n' required by plasma5-runners-symbols
 -> error refreshing databases - exit status 1

malcolm commented on 2021-02-17 02:28 (UTC)

thanks @And1G

And1G commented on 2021-01-07 23:59 (UTC)

Updated PKGBUILD for 1.1.0 according to your build script:

# Maintainer: Dominik Schreiber <dev@dominikschreiber.de>
pkgname=plasma5-runners-symbols
pkgver=1.1.0
pkgrel=1
pkgdesc="A little krunner plugin (Plasma 5) to retrieve unicode symbols, or any other string, based on a corresponding keyword"
arch=('x86_64')
url="https://github.com/domschrei/krunner-symbols"
license=('GPL')
groups=()
depends=('krunner' 'qt5-base' 'ki18n')
makedepends=('cmake' 'extra-cmake-modules' 'kdelibs4support')
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/domschrei/krunner-symbols/archive/${pkgver}.tar.gz")
noextract=()

prepare() {
  mkdir -p build
}

build() {
  cd build

  # Get correct installation directories
  prefix=$(kf5-config --prefix) 
  loc_plugin=$(kf5-config --qt-plugins|sed 's.^'"$prefix"'/..')
  loc_desktop=$(kf5-config --path services|awk -F ':' '{print $NF}'|sed 's.^'"$prefix"'/..')
  loc_config=share/config

  cmake ../krunner-symbols-${pkgver} \
    -DCMAKE_INSTALL_PREFIX=$prefix \
    -DLOCATION_PLUGIN=$loc_plugin \
    -DLOCATION_DESKTOP=$loc_desktop \
    -DLOCATION_CONFIG=$loc_config \
    -DCMAKE_BUILD_TYPE=Release
  make
}

package() {
  cd build
  make install DESTDIR="${pkgdir}"
}

sha256sums=('f7f2094f0df142bf7f40e68e12feeeeacf8cf2659431f71eea3f74b36775852c')

naraesk commented on 2018-01-25 12:29 (UTC)

update would be nice :-)