Package Details: kanboard 1.2.35-1

Git Clone URL: https://aur.archlinux.org/kanboard.git (read-only, click to copy)
Package Base: kanboard
Description: Simple visual task board
Upstream URL: http://kanboard.org/
Licenses: MIT
Submitter: pschmitt
Maintainer: PreparationH67
Last Packager: PreparationH67
Votes: 19
Popularity: 0.024072
First Submitted: 2014-10-31 10:43 (UTC)
Last Updated: 2024-03-30 18:28 (UTC)

Latest Comments

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

PreparationH67 commented on 2017-10-10 15:01 (UTC)

Upstream was updated to pull from Github and the PGP key check was added.

dopsi commented on 2017-10-09 09:26 (UTC)

I can't download the source from kanboard.net. I have created a patch for the PKGBUILD, which also check the PGP signature. The patch is available here: https://static.dopsi.ch/0001-Various-improvements.patch From 03a80e3d6d6413a64cbd56bd52040372b2f25be4 Mon Sep 17 00:00:00 2001 From: Simon Doppler <dopsi@dopsi.ch> Date: Mon, 9 Oct 2017 11:22:03 +0200 Subject: [PATCH] Various improvements * Use source from github * Verify source with PGP --- PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 847ae09..b82dd50 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -14,7 +14,8 @@ backup=('etc/webapps/kanboard/config.php' 'etc/webapps/kanboard/kanboard-apache. 'etc/webapps/kanboard/kanboard-nginx-subdir.conf') install="$pkgname.install" options=(!strip) -source=("http://kanboard.net/kanboard-$pkgver.zip" +source=("https://github.com/kanboard/kanboard/releases/download/v1.0.47/kanboard-$pkgver.zip" + "https://github.com/kanboard/kanboard/releases/download/v1.0.47/kanboard-$pkgver.zip.asc" "kanboard-apache.conf" "kanboard-nginx.conf" "kanboard-nginx-subdir.conf" @@ -38,9 +39,11 @@ package() { } sha256sums=('27562939faa5b77a04b7183c5c445bcbf48bab43e108eb0e52730e1816e01c89' + 'SKIP' '6eb379e74f744d95a930c90ae7744cb8236501bdcd24c7efb6a2eaf1a857204f' '62853c973e5b0718ceae5dbeb76b478bb218ce89d732e66a5eef1c7c258ea4b4' '5fdf81a69cda8c3c813e5d21f62d4112264645c95d376d7b31dae4573724930a' '0efff866815a47329767bb00482f9fc1adff77a6e0e62889ea666ecd930d6f1d' '5353560c7664db99a2845a39750a2c5e62045083f7e3f835a198158faa809c64' 'b030b1655cfca20700faa5d3f4dac87bacc24e7070517af041f2ffb25ba46292') +validpgpkeys=('DCF1D3CBC1E43342116F760E112C718C894226ED') -- 2.14.2

krist commented on 2017-10-06 15:28 (UTC)

Have just upgrade to 1.0.47-1, looks good! Thank you!

PreparationH67 commented on 2017-10-04 21:57 (UTC)

Thanks for the feedback @krist. I'll apply the fixes you proposed and updating the package to the new release version in a day or 2. Sorry that I was not able to apply the changes sooner due to dealing with other problems.

krist commented on 2017-09-21 13:57 (UTC) (edited on 2017-10-06 15:29 (UTC) by krist)

Thanks for maintaining this package, it's much appreciated! Just two little things: The "WorkingDir" option in the systemd unit file for the cronjob needs to be changed to "WorkingDirectory" (systemd probably deprecated the shorthand recently?). The other thing: I see you're using install to copy some config files. Install makes files executable by default. It's not necessary in this case and even more so, systemd will complain about it. My journal contains lots of these: U Wed Sep 20 15:11:49 2017 4 init.scope systemd[1]: Configuration file /usr/lib/systemd/system/kanboard.timer is marked executable. Please remove executable permission bits. Proceeding anyway. Could you add this small change to have install set the right permissions? Thanks! diff -Nru kanboard/PKGBUILD kanboard~/PKGBUILD --- kanboard/PKGBUILD 2017-09-16 15:13:01.000000000 +0200 +++ kanboard~/PKGBUILD 2017-09-21 15:47:57.000000000 +0200 @@ -27,13 +27,13 @@ mkdir -p ${pkgdir}/usr/lib/systemd/system mkdir -p ${pkgdir}/usr/share/licenses/kanboard cp -R ${srcdir}/${pkgname} ${pkgdir}/usr/share/webapps/${pkgname} - install -D "${srcdir}/kanboard-apache.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-apache.conf - install -D "${srcdir}/kanboard-nginx.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-nginx.conf - install -D "${srcdir}/kanboard-nginx-subdir.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-nginx-subdir.conf - install -D "${srcdir}/kanboard-cron" ${pkgdir}/etc/webapps/${pkgname}/kanboard-cron - install -D "${srcdir}/kanboard.service" ${pkgdir}/usr/lib/systemd/system/kanboard.service - install -D "${srcdir}/kanboard.timer" ${pkgdir}/usr/lib/systemd/system/kanboard.timer - install -D "${srcdir}/${pkgname}/LICENSE" ${pkgdir}/usr/share/licenses/kanboard/LICENSE + install -D -m 644 "${srcdir}/kanboard-apache.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-apache.conf + install -D -m 644 "${srcdir}/kanboard-nginx.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-nginx.conf + install -D -m 644 "${srcdir}/kanboard-nginx-subdir.conf" ${pkgdir}/etc/webapps/${pkgname}/kanboard-nginx-subdir.conf + install -D -m 644 "${srcdir}/kanboard-cron" ${pkgdir}/etc/webapps/${pkgname}/kanboard-cron + install -D -m 644 "${srcdir}/kanboard.service" ${pkgdir}/usr/lib/systemd/system/kanboard.service + install -D -m 644 "${srcdir}/kanboard.timer" ${pkgdir}/usr/lib/systemd/system/kanboard.timer + install -D -m 644 "${srcdir}/${pkgname}/LICENSE" ${pkgdir}/usr/share/licenses/kanboard/LICENSE cp ${pkgdir}/usr/share/webapps/${pkgname}/config.default.php ${pkgdir}/etc/webapps/${pkgname}/config.php }

dopsi commented on 2017-07-02 09:50 (UTC)

Since the last update, my KB install does not work anymore unless I symlink /usr/share/webapps/kanboard/config.php -> /etc/webapps/kanboard/config.php The involved lines are https://github.com/kanboard/kanboard/blob/master/app/common.php#L18 and https://github.com/kanboard/kanboard/blob/master/app/common.php#L24

PreparationH67 commented on 2017-06-29 14:56 (UTC)

@bg15407 Please follow the installation and setup instructions for Kanboard before trying to run the application. You need to make sure your PHP installation in configured to load pdo_sqlite module. More information can be found in kanboard's documentation: https://kanboard.net/documentation/installation

<deleted-account> commented on 2017-06-29 06:34 (UTC)

-- Unit kanboard.service has begun starting up. Jun 29 12:03:22 gayan-arch cli[7118]: PHP extension required: "pdo_sqlite" Jun 29 12:03:22 gayan-arch systemd[1]: kanboard.service: Main process exited, co Jun 29 12:03:22 gayan-arch systemd[1]: Failed to start Run kanboard's cron job. -- Subject: Unit kanboard.service has failed -- Defined-By: systemd Pls tell me how to open this app ??

PreparationH67 commented on 2017-06-28 19:15 (UTC) (edited on 2017-06-28 19:16 (UTC) by PreparationH67)

The cronjob exec line has been fixed and the instructions have been updated to include information about the systemd timer service included with the package.

<deleted-account> commented on 2017-06-28 04:45 (UTC)

Failed to start Run kanboard's cron job. Any one know howto get rid of thiserror and i really dnt know how to open this app pls help