summaryrefslogtreecommitdiff
path: root/dselect
AgeCommit message (Collapse)AuthorFilesLines
2010-11-19libdpkg: Rename informative to pkg_is_informativeGuillem Jover1-5/+7
2010-11-19libdpkg: Namespace package database functions with pkg_db_ prefixGuillem Jover2-5/+6
2010-11-19dselect: Use a function instead of a jump error handlerGuillem Jover1-7/+10
2010-11-19libdpkg: Rename print_error_fatal() to print_fatal_error()Guillem Jover1-1/+1
2010-11-19libdpkg: Refactor default error handler into new catch_fatal_error()Guillem Jover1-1/+1
2010-09-03Norwegian Bokmål translation update for dselect: 277tHans F. Nordhaug1-16/+14
2010-08-31Regenerate .pot files and merge .po files with themGuillem Jover31-32/+32
2010-08-21Regenerate .pot files and merge .po files with themRaphaël Hertzog31-32/+32
2010-08-13Regenerate .pot files and merge .po files with themGuillem Jover31-32/+32
2010-07-29Regenerate .pot files and merge .po files with themGuillem Jover31-32/+32
2010-07-16Fix file names in comment headerGuillem Jover2-2/+2
2010-06-27Regenerate .pot files and merge .po files with themGuillem Jover31-900/+900
2010-06-27Use consistent naming for linked lists membersGuillem Jover4-10/+11
Use next/prev instead of next/back (which would complement forward). Also move next to the end of member names and seprate it with an underscore, to simulate it being a sub struct member.
2010-06-27libdpkg: Remove 'valid' member from struct pkginfoperfileGuillem Jover3-48/+39
The two struct pkginfoperfile inside struct pkginfo are always valid, as blankpackage does a blankpackageperfile on each. So there's no actual need for the boolean member, neither for validity checks all over the place and possible subsequent redundant initializations. This is due to commit 5f100a01af636c14a600bf53b22e2ca3f2fcc546.
2010-05-24Regenerate .pot files and merge .po files with themRaphaël Hertzog31-2394/+2447
2010-05-19dselect: Fix variable usage after delete when using --debugGuillem Jover1-1/+1
2010-05-19dselect: Fix memory leak on inexistent method directoryGuillem Jover1-1/+4
2010-05-19build: Pass --previous to msgmerge with the new MSGMERGE_OPTIONS variableGuillem Jover1-0/+2
This new options got introduced in gettext 0.18, and helps significantly translators' work.
2010-05-19build: Require gettext 0.18Guillem Jover3-422/+1
Remove embedded gettext files from the repository, now properly installed by autopoint for all po/ directories. Add versioned Build-Depends.
2010-05-19Use bool instead of int wherever appropriateGuillem Jover9-54/+85
2010-05-19Merge branch 'sid' (through tag '1.15.7.1')Guillem Jover1-0/+4
Conflicts: debian/changelog
2010-05-19Ignore files for all autopoint managed po directoriesGuillem Jover1-0/+4
Starting with autopoint 0.18, it's able to find all po directories, and install missing templates. Ignore those newly appeared files.
2010-04-28Russian translation updatesChristian PERRIER1-25/+9
2010-04-21Regenerate .pot files and merge .po files with themGuillem Jover31-249/+250
2010-04-15dselect: treat unknown packages as known and marked for purgeRobert Luberda1-4/+6
This is a temporary work-around so that dselect doesn't try to reinstall packages of priority > standard that were removed or not installed. The complete solution (tracked in #551638) will involve storing the seen/not-seen information somewhere else than in the dpkg status database and ideally in a new database shared by all frontends.
2010-03-31Fix typo in German dselect translationSven Joachim1-3/+3
2010-03-25Update French dselect translationChristian PERRIER1-10/+6
2010-03-25dselect: Show dependency/conflicts resolution screen againGuillem Jover1-0/+5
Fix by switching the C++ code to use STL's min() and max() instead of preprocessor macros, to avoid multiple evaluation of arguments. Regression introduced in commit f426b031ac858fa30ace69959a43b61fb40f4be9. Closes: #574816 Based-on-patch-by: Robert Luberda <robert@debian.org>
2010-03-12Regenerate .pot files and merge .po files with themGuillem Jover1-10/+0
2010-03-12Update Catalan translationsGuillem Jover1-23/+13
2010-03-12Use License instead of Licence in stringsGuillem Jover13-13/+13
This removes almost duplicate strings for translation.
2010-03-11Spanish dselect translationChristian PERRIER1-69/+69
2010-03-08Update Swedish translation.Peter Krefting1-8/+5
dselect/po/sv.po: 277t0f0u. po/sv.po: 973t0f0u. scripts/po/sv.po: 496t0f0u.
2010-03-08Regenerate .pot files and merge .po files with themRaphaël Hertzog31-2580/+2534
2010-03-05Use while () instead for () when using package iteratorsGuillem Jover1-3/+3
The code looks more balanced this way.
2010-03-05Release the package iterators when doneGuillem Jover1-0/+2
This is a cause of memory leaks, but in these cases the program is about to exit anyway, so we do it for correctness.
2010-02-25German dselect translation updateSven Joachim1-84/+77
Update to 277t.
2010-02-25Remove --license and --licence options from toolsGuillem Jover1-5/+1
The options are pretty useless and non-standard. The user can surely cat a file from the installed package. In addition this option has not worked ever on non-Debian systems as it's relying on the GPL-2 file from the base-files Debian package. So remove it, and we get some code reduction as a nice side-effect.
2010-02-25Use Debian instead of Debian GNU/Linux when referring to the distributionGuillem Jover1-1/+1
2010-02-25dselect: Use m_strdup instead of unchecked malloc + strcpyGuillem Jover1-2/+2
This would cause a segfault in an OOM situation.
2010-02-19dselect: Do not shadow display member in packagelist::deselect_one_ofGuillem Jover2-4/+6
2010-02-19dselect: Remove bogus falliblesubprocess prototype and make it staticGuillem Jover2-4/+1
2010-02-19dselect: Use max/min instead of lesserint/greaterintGuillem Jover8-25/+20
2010-02-19dselect: Do not self shadow bind memberGuillem Jover1-10/+10
2010-02-19dselect: Do not shadow global thisname variableGuillem Jover2-9/+11
2010-02-19Mark several functions with DPKG_ATTR_NORETGuillem Jover1-2/+2
2010-02-19Move DPKG_ATTR annotations from static declaration to the definitionGuillem Jover1-4/+5
2010-01-28Use new command module instead of ad-hoc codeGuillem Jover1-32/+35
2010-01-28libdpkg: Rename varbuffree to varbuf_destroyGuillem Jover1-1/+1
The convention is for functions named free to deallocate the contents and the given pointer, while this one only deallocates the contents, so we rename it to make this distinction clear.
2009-12-31libdpkg: Rename m_fork to subproc_forkGuillem Jover1-1/+2
Also namespace cleanup function to subproc_fork_cleanup.