pdfgrep-users Mailing List for pdfgrep (Page 2)
Brought to you by:
rootzlevel
You can subscribe to this list here.
2012 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(3) |
Sep
(1) |
Oct
(2) |
Nov
(3) |
Dec
(2) |
2015 |
Jan
(2) |
Feb
(1) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Pierdamiano V. <pve...@gm...> - 2013-07-14 18:38:41
|
Hi there! This tool is fantastic and would love to know if could be available also in .apk for Android Terminal users? Even having a GUI version would be fun to use and could gain a broader attention. Thanks allot for the great tool I'm using in Linux. Regards -- Pierdamiano |
From: Florian S. <fl...@fr...> - 2012-08-04 14:00:33
|
On 03.08.2012 21:25, Hans-Peter Deifel wrote: > Hi all, > > here is a quick announcement that the git master branch of pdfgrep now > requires asciidoc to build the manpage. I have updated the gentoo live ebuild to reflect the latest changes: https://gitorious.org/flow-s-ebuilds/flow-s-ebuilds/commits/master Get the live ebuilds from gitorious or just by 'layman -a flow'. - Florian |
From: Hans-Peter D. <hpd...@gm...> - 2012-08-03 19:23:36
|
Hi all, here is a quick announcement that the git master branch of pdfgrep now requires asciidoc to build the manpage. NOTE: This only concerns git users. The release tarballs will still contain a prebuilt manpage. In particular, distributors don't have to adjust the dependencies of their packages (except if they are live-packages, of course). Regards, HP |
From: Hans-Peter D. <hpd...@gm...> - 2012-02-24 20:00:07
|
Hi, Thanks for the patches, I applied them both verbatim. On Do, Feb 23 2012, Tim Mooney wrote: > Also, my first attempt to send email to the list using the address in > the README resulted in a bounce; apparently the "lists." portion of > the sourceforge address is needed. My bad. Fixed. > One other note: configure.ac checks for various headers, but the includes > in pdfgrep.cc generally aren't wrapped with a "#ifdef HAVE_HEADER_H". > Being it's already doing the work of checking, it would be easy to add > those. I can submit a patch if people are interested in that. You're right, the checks are useless right now. However, simply wrapping each include with #ifdef doesn't cut it either, as long as we don't have an alternative header for the function declarations we need. I'll look into that when I find the time. Thanks again! Hans-Peter -- Hans-Peter Deifel pdfgrep maintainer |
From: Tim M. <Tim...@nd...> - 2012-02-23 19:00:02
|
[I'm not subscribed to pdfgrep-users, so if this makes it by moderation and there are replies, please Cc: me. Thanks. Also, my first attempt to send email to the list using the address in the README resulted in a bounce; apparently the "lists." portion of the sourceforge address is needed.] I recently built pdfgrep 1.3.0 on x86_64-sun-solaris2.10 with the no-cost Oracle Studio 12.2 toolchain. I needed two small patches to complete the build. 1) The Studio C++ compiler complains about an overloading ambiguity here: "pdfgrep.cc", line 197: Error: Overloading ambiguity between "std::log10(double)" and "std::log10(float)". I chose to cast the integer argument to double to avoid the ambiguity. 2) Under Solaris, the define for TIOCGWINSZ is not in ioctl.h or any of the other header files that pdfgrep.cc includes: it's in termios.h. That's probably true of other commercial UNIX platforms with a strong Sys V heritage. "pdfgrep.cc", line 330: Error: In this declaration "ws" is of an incomplete type "winsize". "pdfgrep.cc", line 332: Error: TIOCGWINSZ is not defined. "pdfgrep.cc", line 332: Error: The type "winsize" is incomplete. "pdfgrep.cc", line 332: Error: The type "winsize" is incomplete. "pdfgrep.cc", line 333: Error: The type "winsize" is incomplete. "pdfgrep.cc", line 333: Error: The type "winsize" is incomplete. The fix was to check for termios.h and include it if present. Both patches are included inline below my sig, as I wasn't certain if the mailing list allowed attachments. One other note: configure.ac checks for various headers, but the includes in pdfgrep.cc generally aren't wrapped with a "#ifdef HAVE_HEADER_H". Being it's already doing the work of checking, it would be easy to add those. I can submit a patch if people are interested in that. Thanks! Tim -- Tim Mooney Tim...@nd... Enterprise Computing & Infrastructure 701-231-1076 (Voice) Room 242-J6, IACC Building 701-231-8541 (Fax) North Dakota State University, Fargo, ND 58105-5164 diff -u pdfgrep-1.3.0.orig/pdfgrep.cc pdfgrep-1.3.0/pdfgrep.cc --- pdfgrep-1.3.0.orig/pdfgrep.cc 2012-02-13 10:27:48.000000000 -0600 +++ pdfgrep-1.3.0/pdfgrep.cc 2012-02-22 12:38:37.706322192 -0600 @@ -194,7 +194,7 @@ if (outconf.filename) length += 1 + filename.size(); if (outconf.pagenum) - length += 1 + (int)log10(i); + length += 1 + (int)log10( (double)i); length += match[0].rm_eo - match[0].rm_so; diff -ur pdfgrep-1.3.0.orig/configure.ac pdfgrep-1.3.0/configure.ac --- pdfgrep-1.3.0.orig/configure.ac 2012-02-13 15:13:31.000000000 -0600 +++ pdfgrep-1.3.0/configure.ac 2012-02-22 12:41:57.941879174 -0600 @@ -5,7 +5,7 @@ AC_PROG_CXX AC_PROG_CC -AC_CHECK_HEADERS([stdlib.h string.h unistd.h sys/ioctl.h getopt.h]) +AC_CHECK_HEADERS([stdlib.h string.h unistd.h sys/ioctl.h getopt.h termios.h]) AC_FUNC_MALLOC AC_FUNC_REALLOC diff -ur pdfgrep-1.3.0.orig/pdfgrep.cc pdfgrep-1.3.0/pdfgrep.cc --- pdfgrep-1.3.0.orig/pdfgrep.cc 2012-02-13 10:27:48.000000000 -0600 +++ pdfgrep-1.3.0/pdfgrep.cc 2012-02-22 12:41:35.613456732 -0600 @@ -42,6 +42,11 @@ #include <unac.h> #endif +#ifdef HAVE_TERMIOS_H +/* for TIOCGWINSZ on some platforms */ +#include <termios.h> +#endif + #include <memory> #include "output.h" -- Tim Mooney Tim...@nd... Enterprise Computing & Infrastructure 701-231-1076 (Voice) Room 242-J6, IACC Building 701-231-8541 (Fax) North Dakota State University, Fargo, ND 58105-5164 |
From: Hans-Peter D. <hpd...@gm...> - 2012-02-14 19:33:58
|
Hi empty list, I'm happy to announce the release of pdfgrep-1.3.0. Changes include: - Experimental support for libunac (removing accents and ligatures before search) - Recursive search [--recursive] (by Mahmut Gundes) - Don't use colors on dumb terminals - A few minor bug fixes - Use poppler-cpp instead of the poppler core library (by Pino Toscano) Thanks to everyone who contributed to this release. Pdfgrep is available through git at http://gitorious.org/pdfgrep or as tarball at https://sourceforge.net/projects/pdfgrep/files/. Hans-Peter -- Hans-Peter Deifel pdfgrep maintainer |