aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update copyrightsFabian Groffen2018-04-051-1/+1
|
* fix signedness warningsFabian Groffen2018-03-231-2/+3
|
* Fix -Wmaybe-uninitialized.Robin H. Johnson2017-11-261-1/+1
| | | | | | | | | | | | | In file included from include_applets.h:13:0, from main.c:1485: qgrep.c: In function ‘qgrep_main’: qgrep.c:212:5: warning: ‘dentry’ may be used uninitialized in this function [-Wmaybe-uninitialized] if (*cat_dirent_pt == NULL || *cat_dir_pt == NULL) ^ qgrep.c:245:17: note: ‘dentry’ was declared here struct dirent *dentry; Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* drop _q_static and standardize func prototypes a bitMike Frysinger2016-12-281-18/+17
|
* usage: add an extended text sectionv0.63Mike Frysinger2016-03-271-1/+1
| | | | | | Many applets now are so complicated that a single line of text isn't sufficient to describe all of its capabilities/nuances. Allow them to pass in an arbitrary string of data to contain examples.
* clean up old debug statementsMike Frysinger2015-12-161-3/+0
| | | | | | Much of this debug output has outlived its usefulness now that the code has stabilized. Clean it all up to make the debug builds way less noisy and keep from breaking the tests.
* qgrep/quse: add multiple overlay supportMike Frysinger2015-11-271-176/+190
| | | | | | | This is a pretty straight forward extension. The code hasn't seen any clean ups in the process (although it probably should). URL: https://bugs.gentoo.org/553260
* qgrep/qpkg: use the cache file givenMike Frysinger2015-05-191-2/+2
| | | | | The qgrep code needs a rework to avoid chdir assumptions, but that's much larger than fixing the cache file name, so punt for later.
* build: convert all cvs references to gitMike Frysinger2014-03-091-4/+2
|
* kill off more spurious/useless parensMike Frysinger2012-10-281-7/+7
|
* Fix compiler warnings for signedness.v0.11Robin H. Johnson2012-08-131-3/+3
|
* add xregcomp helpersMike Frysinger2011-10-031-16/+5
|
* combine the portroot/portvdb chdirs to avoid leading slash issues in portvdb ↵Mike Frysinger2011-03-171-4/+5
| | | | itself
* constify more stringsMike Frysinger2011-02-211-3/+3
|
* - update headersNed Ludd2010-04-071-5/+5
|
* introduce and use xchdir()Mike Frysinger2010-01-131-8/+5
|
* - update copyright headersv0.1.27Ned Ludd2007-05-241-5/+5
|
* - whitespace cleanupsNed Ludd2007-05-231-3/+2
|
* fix size warningsMike Frysinger2007-04-081-3/+3
|
* - src.style fixupsNed Ludd2007-04-051-5/+4
|
* - TGL is at it again. kicking asses and coding patches.. Bug 173005Ned Ludd2007-04-021-27/+127
|
* - shorten names with argsNed Ludd2007-03-261-10/+10
|
* - This commit adds -A/-B options for qgrep (context lines) from TGL bug 172240Ned Ludd2007-03-261-30/+227
|
* - Misc enhancements for qgrep. TGL bug 171374Ned Ludd2007-03-261-18/+166
|
* - add a -s/--skip-comments option to qgrep. TGL bug 170797Ned Ludd2007-03-171-5/+14
|
* add a -E/--eclass option to qgrep. TGL bug 170795Ned Ludd2007-03-171-13/+36
|
* fix style/whitespaceMike Frysinger2006-11-091-3/+3
|
* - update reinitialize_metacache code so -mr or -rm work. rename all variable ↵Ned Ludd2006-02-121-3/+3
| | | | to quse_all in quse applet. change globbing support to use glob64. Allow envvar CACHE_EBUILD_FILE to override PORTDIR/.ebuild.x (requested by genone)
* define stub functions for now since the weak handling is broken when ↵Mike Frysinger2006-01-261-2/+4
| | | | building as a PIE
* use the APPLET_ define style to enable/disable applets as solar was doing beforeMike Frysinger2006-01-251-3/+3
|
* touchup how we declare/include applets so that many steps can be automatedMike Frysinger2006-01-241-10/+4
|
* - make some applets optional for embedded systems where one might not have a ↵Ned Ludd2006-01-071-2/+12
| | | | full PORTDIR=
* update copyright yearsMike Frysinger2006-01-051-5/+5
|
* define our own _Q_PATH_MAX rather than relying on _POSIX_PATH_MAX/PATH_MAXMike Frysinger2005-12-301-3/+3
|
* - added qatom and removed the need for the applets enumNed Ludd2005-12-111-3/+3
|
* Now qgrep -Hc works and the output is the same as from grep.Petteri Räty2005-11-261-3/+3
|
* Changed the capitalisation of help messages to match the common options.Petteri Räty2005-11-261-7/+7
|
* Added --with-filename option to qgrepPetteri Räty2005-11-261-11/+16
|
* define rcsid strings as constMike Frysinger2005-11-241-2/+2
|
* - added per applet rcsidNed Ludd2005-11-061-1/+2
|
* - add new applet qgrep. grep alike util for ebuilds. New global -Q flag to ↵Ned Ludd2005-11-061-0/+113
suppress warnings and errors. Reworked quse_describe_flag() to take a 3rd arg, this allows us to reuse the function for other things. equery u <pkgspec> comes to mind. Update all the manpages.