Search Criteria
Package Details: grip 4.2.4-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/grip.git (read-only, click to copy) |
---|---|
Package Base: | grip |
Description: | A cd-player and ripper for the Gnome desktop |
Upstream URL: | http://sourceforge.net/projects/grip/ |
Licenses: | GPL |
Submitter: | jmsq |
Maintainer: | jmsq |
Last Packager: | jmsq |
Votes: | 6 |
Popularity: | 0.000001 |
First Submitted: | 2017-11-29 08:09 (UTC) |
Last Updated: | 2022-11-29 22:23 (UTC) |
Dependencies (7)
- cdparanoia (cdparanoia-overreadAUR)
- curl (curl-quiche-gitAUR, curl-http3-ngtcp2AUR, curl-gitAUR, curl-c-aresAUR)
- gtk2 (gtk2-maemoAUR, gtk2-patched-filechooser-icon-viewAUR)
- id3lib
- make (make-gitAUR) (make)
- pkgconfig (pkgconf-gitAUR, pkg-config-gitAUR, pkgconf) (make)
- yelp (optional) – to display the help and notices
Latest Comments
Konzertheld commented on 2021-06-02 00:58 (UTC)
@jmsq Confirmed, working, thanks!
jmsq commented on 2021-06-02 00:57 (UTC)
@Konzertheld makedepends() for pkgconfig and make have been added in 4.2.1-2.
Konzertheld commented on 2021-06-01 19:15 (UTC)
This package depends on pkgconf, which was not installed on my system.
pa314159 commented on 2020-05-06 22:18 (UTC)
Compilation fails with:
Atomisirsi commented on 2020-01-06 22:20 (UTC)
Starting with version 4.0.0, grip does not depend on vte any longer. The CPPFLAGS="-Wno-deprecated-declarations" is not needed any longer as grip uses the correct glib functions now.
Atomisirsi commented on 2019-10-04 20:42 (UTC)
I ran into two problems recently: 1. Two deprecated print functions have been removed from glib. I have patched this locally and will forward the patch to upstream. 2. Due to -Werror: GCC reports some errors about "deprecated-declarations". Adding CPPFLAGS="-Wno-deprecated-declarations" to make in PKGBUILD ignores those warnings.
patryk commented on 2018-08-28 16:58 (UTC) (edited on 2018-08-28 16:58 (UTC) by patryk)
Hi, I have compilation error like below:
"discedit.c: In function ‘SeparateFields’: discedit.c:497:3: error: ‘strncpy’ specified bound 80 equals destination size [-Werror=stringop-truncation] strncpy(spare,g_strstrip(tmp),80); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ grip.c: In function ‘DoLoadConfig’: grip.c:1014:15: error: ‘strncpy’ specified bound 256 equals destination size [-Werror=stringop-truncation] if(tok) strncpy(ginfo->proxy_server.name,tok,256); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors"
It looks like problem related to gcc 8.2 and could help path like :
strncpy(spare,g_strstrip(tmp),80); -> strncpy(spare,g_strstrip(tmp),79); if(tok) strncpy(ginfo->proxy_server.name,tok,256); -> if(tok) strncpy(ginfo->proxy_server.name,tok,255);
regards,