Search Criteria
Notice: Undefined variable: name in /srv/http/vhosts/aur-dev.archlinux.org/public/web/lib/pkgfuncs.inc.php on line 248
Package Details: newsbeuter-git 1747.f6eba7c-1
Git Clone URL: | https://aur-dev.archlinux.org/newsbeuter-git.git (read-only) |
---|---|
Package Base: | newsbeuter-git |
Description: | A RSS feed reader for the text console with special Podcast support. |
Upstream URL: | http://www.newsbeuter.org |
Licenses: | |
Conflicts: | |
Submitter: | Atsutane |
Maintainer: | The-Compiler |
Last Packager: | The-Compiler |
Votes: | 34 |
Popularity: | 0.927079 |
First Submitted: | 2009-01-02 00:01 |
Last Updated: | 2015-11-12 08:07 |
Dependencies (11)
- curl (curl-http2-git, curl-git, curl-http2)
- json-c
- libxml2 (libxml2-linenum)
- sqlite3 (sqlite)
- stfl
- asciidoc (asciidoc-fake, asciidoc-git) (make)
- docbook-xsl (make)
- git (git-git) (make)
- pkgconfig (pkgconf-git, pkg-config) (make)
- swig (swig-git) (make)
- ruby (ruby1.8, rubinius-ruby) (optional)
Latest Comments
1 2 Next › Last »
The-Compiler commented on 2015-11-12 08:08
The package is fixed again (by removing the patch) now - sorry for the delay!
klesk commented on 2015-10-27 19:30
I get following error;
==> Starting prepare()...
patching file config.sh
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- saving rejects to file config.sh.rej
==> ERROR: A failure occurred in prepare().
Aborting...
==> ERROR: Makepkg was unable to build newsbeuter-git.
The-Compiler commented on 2015-09-18 17:00
Should be fixed now - thanks!
Dragonlord commented on 2015-09-18 16:49
I guess you can reuse these:
https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/newsbeuter
The-Compiler commented on 2015-09-18 11:18
There is an upstream bug here:
http://code.google.com/p/newsbeuter/issues/detail?id=365&sort=-id
I'll write a patch with the suggested solution and update the package later today.
tomxtobin commented on 2015-09-18 11:15
I can't run or rebuild newsbeuter-git since the update to ncurses 6:
$ makepkg
==> Making package: newsbeuter-git 1710.c085077-1 (Fri Sep 18 07:13:37 EDT 2015)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning newsbeuter git repo...
Cloning into bare repository '/home/tomxtobin/repo/aur/newsbeuter-git/newsbeuter'...
remote: Counting objects: 12443, done.
remote: Compressing objects: 100% (34/34), done.
remote: Total 12443 (delta 18), reused 0 (delta 0), pack-reused 12409
Receiving objects: 100% (12443/12443), 9.01 MiB | 1.64 MiB/s, done.
Resolving deltas: 100% (6885/6885), done.
Checking connectivity... done.
==> Validating source files with sha1sums...
newsbeuter ... Skipped
==> Extracting sources...
-> Creating working copy of newsbeuter git repo...
Cloning into 'newsbeuter'...
done.
==> Starting pkgver()...
==> Updated version: newsbeuter-git 1728.e425e3e-1
==> Starting build()...
Checking for package sqlite3... found
Checking for package libcurl... found
Checking for package libxml-2.0... found
Checking for package stfl... found
Checking for package json... not found
Checking for package json-c... found
Checking for package ncursesw5 using ncursesw5-config... not found
You need package ncursesw in order to compile this program.
Please make sure it is installed.
You can download ncursesw from here:
Checking for package libcrypto... found
One or more dependencies couldn't be found. Please install
these packages and retry compilation.
==> ERROR: A failure occurred in build().
Aborting...
The-Compiler commented on 2015-08-18 14:53
Same here - unfortuntely I don't have the time to track this down. Thanks for the link, I subscribed there.
mykhal commented on 2015-08-18 14:50
It memory-leaks as hell, for me. The same with official archlinux package (version 2.9 currently).
Here is an interesting related discussion: https://github.com/akrennmair/newsbeuter/issues/119
dustball commented on 2015-07-25 16:17
There's a bug currently which resets all your podcasts to not read. I've mailed the maintainers and this is what I got back:
The bug was introduced in 1427bdb.
Current git + this patch fixes it.
diff --git a/src/controller.cpp b/src/controller.cpp
index 4147909..ad7358b 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -721,7 +721,6 @@ void controller::reload(unsigned int pos, unsigned int max, bool unattended, cur
if (newfeed->items().size() > 0) {
std::lock_guard<std::mutex> feedslock(feeds_mutex);
save_feed(newfeed, pos);
- enqueue_items(newfeed);
newfeed->clear_items();
@@ -730,6 +729,7 @@ void controller::reload(unsigned int pos, unsigned int max, bool unattended, cur
feed->set_tags(urlcfg->get_tags(oldfeed->rssurl()));
feed->set_order(oldfeed->get_order());
feeds[pos] = feed;
+ enqueue_items(feed);
oldfeed->clear_items();
louipc commented on 2015-03-12 20:54
Please remove the sed line. Use `make prefix=/usr` instead.