summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)AuthorFilesLines
2009-09-16Rename Dpkg::Cdata into Dpkg::ControlRaphaël Hertzog10-13/+13
Update all scripts and modules to use the new module names.
2009-09-16Rename Dpkg::Control in Dpkg::Control::InfoRaphaël Hertzog10-20/+20
Update all scripts and modules to use the new module names.
2009-09-15Make the build silent by defaultGuillem Jover1-2/+3
Make it verbose when building the Debian packages.
2009-09-06Update German scripts translationHelge Kreutzmann1-3/+3
Update to 467t.
2009-09-06Regenerate .pot files and merge .po files with themGuillem Jover7-1054/+959
2009-09-06Add Multi-Arch to the list of known binary package fields for dpkg-devSteve Langasek2-2/+2
2009-09-06Unify and mark strings for translationGuillem Jover7-11/+11
2009-08-27Update Swedish translation.Peter Krefting1-87/+96
po/sv.po: Update to 973t0f0u. scripts/po/sv.po: Update to 476t0f0u.
2009-08-26Dpkg::Shlibs::SymbolFile: cache the minimum version for a particular sonameJiri Palecek1-3/+13
Afer profiling, I discovered that dpkg-shlibdeps spent a large part of his time in the get_smallest_version() version. This patch improves the performance by caching the resulting value.
2009-08-26Use double instead of single quotes to allow backticks to expandGuillem Jover1-1/+2
Missed in commit 5e83d054b1a790d49bc88e3dd0e8fbb872d51d8f.
2009-08-26Add missing files in EXTRA_DISTGuillem Jover1-0/+1
Missed in commits a27d14c4423c44b400764c99b669824f4ba6e9a1 and 6c785595d189f65a59284796a9b1f60f16686e85.
2009-08-19Update german scripts translationHelge Kreutzmann1-81/+88
Update to 476t.
2009-08-19Merged changesChristian Perrier9-34/+120
2009-08-19Updated Russian translationsYuri Kozlov1-251/+209
2009-08-16dpkg-source/dpkg-genchanges: split long Binary: field valuesRaphael Hertzog2-0/+4
2009-08-16dpkg-scansources: implement --extra-overrideRaphaël Hertzog1-0/+31
2009-08-16dpkg-scanpackages: rename --extraoverride into --extra-overrideRaphaël Hertzog1-6/+8
Also fix the help output to be properly indented and fix load_extra_override() to use its parameter.
2009-08-16Use backticks instead of non-portable make $(shell ...) functionGuillem Jover1-1/+1
The backticks are treated like text, until the shell expands them, thus making this solution portable.
2009-08-15dpkg-architecture: finish support of DEB_{HOST,BUILD}_ARCH_{BITS,ENDIAN}Raphaël Hertzog1-4/+4
Enhanced cputable to describe the new columns. Let dpkg-dev depend on dpkg (>= 1.15.4) to ensure that we have an updated cputable (and so that a versioned build-dependency on dpkg-dev is enough to use this new feature). Document the new variables in the manual page dpkg-architecture(1).
2009-08-15dpkg-architecture: Add support for bits and endianness variablesGuillem Jover2-1/+23
Add new DEB_(HOST|BUILD)_ARCH_(BITS|ENDIANNESS) variables to ease work for porters.
2009-08-15Update german scripts translationHelge Kreutzmann1-29/+31
Update to 476t.
2009-08-15Add missing full stopHelge Kreutzmann1-1/+1
2009-08-14dpkg-scanpackages: add support for extra override fileRaphaël Hertzog1-2/+27
Based-on-patch-by: Robert Millan <rmh@aybabtu.com>
2009-08-14update-alternatives: add a missing mark for translationSven Joachim1-1/+1
2009-08-03Update Swedish translation.Peter Krefting1-120/+125
po/sv.po: Updated to 971t0f0u. man/po/sv.po: Update to 1608t0f0u. scripts/po/sv.po: Update to 476t0f0u.
2009-07-25update-alternatives: fix a warning messageRaphael Hertzog1-1/+1
Mention the correct slave link that can't be installed due to a conflicting file instead of quoting the master link.
2009-07-25Fix apply_patches() funtion of 3.0 (quilt) format to properly skip auto patchRaphael Hertzog1-2/+2
When quilt was used, it was applying the automatic patch even when $skip_auto was set to 1. This bug was introduced while fixing bug #518453 (commit ea1530fe45c8b1ad61d91c0791c53ecf363899bf).
2009-07-22Update german scripts translationHelge Kreutzmann1-24/+34
Update to 476t.
2009-07-21Merge branch 'master' of ssh://git.debian.org/git/dpkg/dpkgChristian Perrier2-3/+19
2009-07-21Completed French translation for scriptsChristian Perrier1-81/+88
2009-07-21Dpkg::Changelog: fix heuristic to identify correct start entryRaphael Hertzog2-3/+19
The heuristic to identify the version number that is most approaching was not working properly for the case where the version number was smaller than the oldest version (for example "0"). Add a non-regression test for this case. Also add supplementary warnings message so that people notice when the parameters are discarded.
2009-07-15Dpkg::Shlibs::SymbolFile::load(): use a single object reference everywhereRaphael Hertzog1-15/+14
Instead of keeping two variables synchronized (one being the ref of the other), use the reference everywhere. And simplify creation of the initial reference.
2009-07-15Replace local with my in SymbolFile::load() and use strict.Modestas Vainius1-3/+5
Rather than creating an alias with local, manually do $current_object_ref re-referencing. This allows to use 'my $object' and to enable 'use strict'. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
2009-07-15dpkg-gensymbols: improve diff label again.Modestas Vainius1-1/+4
Use "$source_file ($package $arch)". Signed-off-by: Modestas Vainius <modestas@vainius.eu>
2009-07-15Add new test case for symbols file parsingRaphael Hertzog3-1/+14
Ensure that an #include can change the name of the currently parsed library (ELF object).
2009-07-10Merge branch 'sid' (through tag '1.15.3.1')Guillem Jover2-2/+13
Conflicts: configure.ac debian/changelog
2009-07-08Fix wildcard support in symbol filesModestas Vainius2-2/+13
They were broken due to typo. Also add a test for wildcards. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
2009-07-05Update German scripts translationHelge Kreutzmann1-94/+87
Update to 474t.
2009-07-04Fix minor translation error in scripts/po/de.poHelge Kreutzmann1-2/+2
2009-07-03Replace install-info by a simple wrapper (or no-op command)Raphael Hertzog3-541/+1
In order to properly transition to GNU's install-info, dpkg's install-info is modified to be a simple wrapper around /usr/bin/install-info. That wrapper warns when the user explicitely calls /usr/sbin/install-info since the new install-info is in /usr/bin/. This wrapper is meant to be removed at some point when all references to /usr/sbin/install-info have gone (most probably in squeeze+1). Also remove the manual page since there's nothing to document any more and add a lintian override until the wrapper is removed. Reference: http://wiki.debian.org/Transitions/DpkgToGnuInstallInfo
2009-07-02Add dpkg-vendor to .gitignoreGuillem Jover1-0/+1
2009-07-01dpkg-scanpackages: Do not handle the Revision fieldGuillem Jover1-5/+0
This field has already been parsed and handled by “dpkg-deb -I”. The code is doubly useless, as additionally the version comparison is done before the Revision has been folded into the Version field.
2009-07-01dpkg-scanpackages: Do not remap obsolete fieldsGuillem Jover1-7/+0
Those fields have been remappedd already by “dpkg-deb -I”.
2009-07-01dpkg-scansources: Reduce variable scope in process_dscGuillem Jover1-7/+6
Move them closer to their actual usage.
2009-07-01dpkg-scansources: Switch to use Dpkg::CdataGuillem Jover1-205/+68
Use our modules instead of duplicating the .dsc parsing code. As a side effect it now handles properly bogus files.
2009-06-29dpkg-name: Do not handle Revision and Package_Revision fieldsGuillem Jover1-5/+0
Those fields have already been parsed and handled by “dpkg-deb -I”.
2009-06-29dpkg-name: Fix inverted logic when deciding to assume the architectureGuillem Jover1-1/+1
This gets triggered when the package does not have such field.
2009-06-29dpkg-name: Call _g instead of g_Guillem Jover1-1/+1
2009-06-27Add new scripts test cases to EXTRA_DISTGuillem Jover1-0/+2
2009-06-27Regenerate .pot files and merge .po files with themGuillem Jover7-1759/+1949