Package Details: notepadqq-git 2.0.0.beta.r12.gd8000f25-1

Git Clone URL: https://aur.archlinux.org/notepadqq-git.git (read-only, click to copy)
Package Base: notepadqq-git
Description: Notepad++-like text editor for Linux
Upstream URL: https://notepadqq.com/
Licenses: GPL3
Conflicts: notepadqq
Provides: notepadqq
Submitter: Teklad
Maintainer: severach
Last Packager: severach
Votes: 40
Popularity: 0.000012
First Submitted: 2013-06-15 13:28 (UTC)
Last Updated: 2022-09-27 17:05 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

jakyote commented on 2019-09-25 05:22 (UTC)

this PKGBUILD seems to work for me, hicolor's pulled in by qt5-webengine now and namcap says qt5-websockets isn't required (not sure how it determines that, the github seems to say it is but it also seems to run fine without it), it is necessary for building though

pkgname=notepadqq-git
_pkgname=notepadqq
pkgver=1.4.8.r214.gfdb59add
pkgrel=1
pkgdesc="Notepad++-like editor for the Linux desktop"
arch=('i686' 'x86_64')
url="https://notepadqq.com/wp/"
license=('GPL3')
depends=('qt5-webengine' 'qt5-svg' 'uchardet' 'desktop-file-utils')
makedepends=('git' 'qt5-tools' 'qt5-websockets')
provides=('notepadqq')
conflicts=('notepadqq' 'notepadqq-legacy')
options=('!emptydirs')
source=("git://github.com/notepadqq/notepadqq.git")
sha1sums=('SKIP')

pkgver() {
  cd "${_pkgname}"
  set -o pipefail
  git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "${_pkgname}"
  ./configure --prefix /usr
  make
}

package() {
  cd "${_pkgname}"
  make INSTALL_ROOT="${pkgdir}" install
}

tinywrkb commented on 2019-06-25 10:50 (UTC)

@eschwartz thanks.

eschwartz commented on 2019-06-12 19:21 (UTC)

@tinywrkb I fixed your comment, the python-markdown parser uses triple backticks for code blocks -- not indentation.

DarkShadow44 commented on 2019-06-09 16:40 (UTC)

Update please? This is out of date for about half a year now.

severach commented on 2019-05-15 01:13 (UTC)

@flamusdiu: I can maintain this if it's too much trouble.

tinywrkb commented on 2019-02-07 11:59 (UTC) (edited on 2019-06-12 19:20 (UTC) by eschwartz)

Please update the PGKBUILD with the following ($ git apply patch_file), tested in a clean chroot.
Edit: note that the markdown parser here added angle brackets <> to the url in the attached code.

diff --git a/PKGBUILD b/PKGBUILD
index 326e221..df1f5d5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,15 @@

 pkgname=notepadqq-git
 _pkgname=notepadqq
-pkgver=1.0.1.r23.g82d223c
+pkgver=1.4.8.r186.ge6e1ac37
 pkgrel=1
 pkgdesc="A Linux clone of Notepad++"
 arch=('i686' 'x86_64')
-url="http://notepadqq.altervista.org/wp/"
+url="https://notepadqq.com/"
 license=('GPL3')
-depends=('qt5-webkit>5.2' 'qt5-svg>5.2' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('git' 'qt5-tools>5.2')
+depends=('qt5-webengine' 'qt5-websockets' 'qt5-svg' 'hicolor-icon-theme' 'desktop-file-utils' 'uchardet')
+makedepends=('git' 'qt5-tools')
+optdepend=('nodejs: nodejs extensions support')
 provides=('notepadqq')
 conflicts=('notepadqq-bin' 'notepadqq' 'notepadqq-common' 'notepadqq-src')
 install=${_pkgname}.install

severach commented on 2018-10-21 04:01 (UTC) (edited on 2018-10-21 04:02 (UTC) by severach)

depends+=('uchardet' 'qt5-webengine')
makedepends+=('qt5-websockets')

flamusdiu commented on 2018-06-18 21:30 (UTC) (edited on 2019-06-12 19:17 (UTC) by eschwartz)

Getting this at the moment:

RCC: Error in 'resources.qrc': Cannot find file 'icons/notepadqq/index.theme'
make[1]: *** [Makefile:775: ../../out/build_data/qrc_resources.cpp] Error 1
make[1]: Leaving directory '/home/arch/notepadqq-git/src/notepadqq/src/ui'
make: *** [Makefile:46: sub-src-ui-make_first] Error 2

Looks like the files are in the right place, so not sure what's going on at this time. I'll have to keep look at it.

severach commented on 2018-06-09 01:31 (UTC) (edited on 2018-06-21 01:55 (UTC) by severach)

Project ERROR: Unknown module(s) in QT: webenginewidgets websockets. qt5-websockets fixes one.

qt5-webengine fixes the other.

mocobe1111 commented on 2018-05-19 18:21 (UTC)

qt5-websockets should be a dependency