Package Details: commafeed-postgresql 5.11.1-1

Git Clone URL: https://aur.archlinux.org/commafeed.git (read-only, click to copy)
Package Base: commafeed
Description: Google Reader inspired self-hosted personal RSS reader (native standalone version)
Upstream URL: https://github.com/Athou/commafeed
Licenses: Apache-2.0
Submitter: dcelasun
Maintainer: dcelasun
Last Packager: dcelasun
Votes: 2
Popularity: 0.27
First Submitted: 2025-02-21 12:58 (UTC)
Last Updated: 2025-09-22 06:22 (UTC)

Dependencies (1)

Required by (0)

Sources (4)

Latest Comments

dcelasun commented on 2025-08-14 05:17 (UTC)

Sorry, no idea. You might want to ask on the forums.

tuqueque commented on 2025-08-14 01:39 (UTC) (edited on 2025-08-14 01:40 (UTC) by tuqueque)

@dcelasun I imagine with the command:

mkarchchroot $CHROOT/root base-devel

you meant:

mkarchroot $CHROOT/root base-devel

Other than that, I spent a small amount of time "learning" about chroot to more or less understand what we're doing here... and I imagine we're just building commafeed in a "clean" and isolated environment to see if we get any issues.

The problem I'm getting is in the command:

arch-nspawn $CHROOT/root pacman -Syu

For some reason Pacman can't get the repository databases for "core" and "multilib":

:: Synchronizing package databases...
 core.db failed to download
 extra is up to date
 multilib.db failed to download
error: failed retrieving file 'multilib.db' from mirrors.cicku.me : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirrors.cicku.me : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirror.xenyth.net : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from mirror.xenyth.net : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirror.csclub.uwaterloo.ca : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from mirror.csclub.uwaterloo.ca : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from mirrors.dotsrc.org : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from manjaro.mirror.wearetriple.com : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirrors.dotsrc.org : The requested URL returned error: 404
error: failed retrieving file 'core.db' from manjaro.mirror.wearetriple.com : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from mirror.netcologne.de : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirror.netcologne.de : The requested URL returned error: 404
error: failed retrieving file 'core.db' from mirror.mobinhost.com : The requested URL returned error: 404
error: failed retrieving file 'multilib.db' from mirror.mobinhost.com : The requested URL returned error: 404
error: failed to synchronize all databases (failed to retrieve some files)

I tried several things, but nothing worked, I don't know what's going on there (yes, I can run "sudo pacman -Syu" in my system without any issues).

Once again, any tips? Sorry for the inconveniences.

dcelasun commented on 2025-08-10 15:20 (UTC)

@tuqueque like I said, building in a clean chroot should help. Quick guide off the top of my head:

$ pacman -S devtools
$ git clone https://aur.archlinux.org/commafeed.git
$ cd commafeed
$ mkdir chroot
$ export CHROOT=$(pwd)/chroot
$ mkarchchroot $CHROOT/root base-devel
$ arch-nspawn $CHROOT/root pacman -Syu
$ makechrootpkg -c -r $CHROOT

If this also fails, please share the error message and I'll take a look.

tuqueque commented on 2025-08-10 15:09 (UTC)

@dcelasun I installed commafeed in my desktop PC, the same PC where I run the "client" (http://0.0.0.0:8082)... I've been running it for a couple of months now without problems, but for some reason this AUR update throws me the error I showed when compiling commafeed...

Any tips?... Is there anything I can do to get more info on the cause of the problem?

BTW, I'm running Manjaro, kernel 6.16.0rc6-1

dcelasun commented on 2025-08-09 05:42 (UTC)

@tuqueque It builds fine for me locally and also on CI. Maybe try in a clean chroot?

tuqueque commented on 2025-08-08 22:36 (UTC) (edited on 2025-08-08 22:37 (UTC) by tuqueque)

Hello, when I try to update to this latest version of commafeed-h2, during the compile process I get this error:

[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for CommaFeed 5.11.0:
[INFO] 
[INFO] CommaFeed .......................................... SUCCESS [  0.001 s]
[INFO] CommaFeed Client ................................... FAILURE [  8.505 s]
[INFO] CommaFeed Server ................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  8.978 s
[INFO] Finished at: 2025-08-08T17:19:18-05:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.15.1:npm (npm run build) on project commafeed-client: Failed to run task: 'npm run build' failed. org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :commafeed-client
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: commafeed-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
commafeed-h2 - exit status 4

Any tips? Thank you in advance.