summaryrefslogtreecommitdiff
path: root/dpkg-split
AgeCommit message (Collapse)AuthorFilesLines
2009-09-06Use m_output instead of checking printing functions return codeGuillem Jover1-15/+19
Cleans up the code. And as a side effect, we get rid of bogus checks for EOF, which should have been checking for negative return values.
2009-09-06Use m_output instead of fflush, ferror and werrGuillem Jover3-5/+5
2009-08-15Use AM_CPPFLAGS instead of deprecated INCLUDES in Makefile.am filesGuillem Jover1-1/+1
2009-08-13Use MD5HASHLEN instead of literalsGuillem Jover2-7/+9
2009-07-15Disable default automake preprocessor include pathsGuillem Jover6-16/+20
Tell automake not to add “-I.” to the preprocessor flags, to avoid file collisions with system headers. Re-add the path where config.h is located. Namespace and use bracketed file inclusions for libdpkg headers, and use quoted inclusions for program headers.
2009-07-15libdpkg: Rename dpkg-i18n.h to i18n.hGuillem Jover5-5/+5
2009-07-15libdpkg: Move C language definition macros to macros.hGuillem Jover1-1/+1
2009-07-15libdpkg: Rename and namespace compiler attributesGuillem Jover1-3/+3
Prefix them all with DPKG_ATTR_, and use shorter but still meaningful names.
2009-07-15Move libraries to subdirectories under lib/Guillem Jover1-3/+4
This will allow to use the same include path than the future system one, for example “#include <dpkg/dpkg.h>”. It also unclutters the source topdir.
2009-07-13dpkg-split: Properly check error condition on open when splittingGuillem Jover1-1/+2
2009-07-12Remove unused assert.h includesGuillem Jover1-1/+0
2009-06-26dpkg-split: Use the correct units (KiB) when referring to partsizeGuillem Jover1-1/+1
2009-06-19Use NUL character instead of 0Guillem Jover3-6/+7
2009-03-27Global review of error checking associated to strtol functionsRaphael Hertzog2-1/+3
Several calls to strtol() or strtoul() are not followed by a proper check that ensures that they have parsed an integer value (and not an empty string).
2009-01-23Cleanup .gitignore filesGuillem Jover1-4/+0
Move common ignore matches to the top-level .gitignore. Force directory matching by adding a trailing /. Remove unused matches (enoent). Add missing matches (t.tmp and autom4te.cache/).
2009-01-04libdpkg: Move macros from dpkg.h to more specialized headersGuillem Jover1-0/+4
2009-01-03libdpkg: Move basusage from ehandle to myoptGuillem Jover1-0/+1
To reduce inter-dependencies due to usage of printforhelp.
2008-12-09Mark strings for translationGuillem Jover3-14/+18
2008-12-09Improve internerr output messages and print the invalid valueGuillem Jover1-1/+2
2008-09-14libdpkg: Move loadcfgfile from standard_startup to its callersGuillem Jover1-1/+1
2008-09-14libdpkg: Move myopt from standard_startup to each program mainGuillem Jover4-1/+6
2008-09-14libdpkg: Do not pass any argument to standard_shutdownGuillem Jover1-1/+1
2008-09-14libcompat: Add new compat.h headerGuillem Jover5-0/+5
2008-09-14Move locale.h inclusion and locale setup to each program mainGuillem Jover1-0/+8
2008-09-14libdpkg: Move gettext related definitions to a new dpkg-i18n.hGuillem Jover5-0/+10
2008-06-30Switch to use UTF-8 copyright symbol and add missing onesGuillem Jover6-6/+6
Some 'Copyright <year>' entries didn't have a copyright symbol. Add it and switch the rest from '(C)' to '©', but we don't do this on program output which for now should remain pure ascii.
2008-05-24Coalesce similar badusage() strings for translationGuillem Jover3-3/+8
2008-05-24Use sizeof_array instead of ad-hoc calculationGuillem Jover1-1/+2
2008-05-19Fix link order when using libcompat.a and libintl.aGuillem Jover1-2/+2
Place them after libdpkg.a. Based on a patch by Martin Koeppe. Closes: #481805
2008-03-11Move command line common option utilities to lib/myopt-util.cGuillem Jover1-11/+6
2008-02-04Use functions from libcompat when those are not provided by the systemGuillem Jover1-1/+5
2008-01-21Use external gettext intl libraryGuillem Jover1-1/+1
When porting to other systems without gettext functionality, other applications might need it as well, so either use --with-libintl-prefix for a global library, or disable NLS support.
2008-01-16Use NULL instead of 0Guillem Jover2-2/+4
2008-01-07Fix signed vs unsigned value comparisonsGuillem Jover1-3/+3
Those were making some code to never be executed. This fixes most of the bugs introduced with commit ea93ed48c17445d01b67f3fa8a20a5a644a89e5b.
2007-08-14Adjust string to get it merged with a similar one.Guillem Jover1-1/+1
2007-08-10Add *.o to .gitignore.Guillem Jover1-0/+1
2007-05-08Add missing svn:ignore entries.Guillem Jover1-0/+2
2007-03-20Update svn:ignore attributes.Guillem Jover1-0/+2
2006-06-17Set all svn:ignore.Guillem Jover1-0/+1
2006-06-02Disambiguate error message about conflicting command line actions byGuillem Jover1-1/+2
providing both long and short option names. Based on a suggestion by Josip Rodin. Closes: #45575
2006-05-02Split usage strings to make it easier for translators when those change.Guillem Jover1-18/+24
Closes: #323957
2006-02-12Remove all the generated files so we don't need to track changes in them.Frank Lichtenheld1-524/+0
These were actually commited accidently by importing from the source package and not an arch checkout
2006-02-06Cleanup and unify program usage and version output, make it more i18nGuillem Jover1-25/+31
friendly. Fix wrong gettext usage with interparsed macros. Thanks to Changwoo Ryu for noticing. Closes: #23791
2006-01-22When linking statically, explicitly add libsepol, even if its only aGuillem Jover1-3/+1
transitive library. The proper fix should come with a pkg-config file. Based on a patch by Bart Martens <bart.martens@advalvas.be>.
2006-01-18Actually import 1.13.11.1, not 1.13.11, D'oh!Frank Lichtenheld1-2/+2
2005-06-12dpkg (1.13.9) unstable; urgency=lowScott James Remnant1-11/+7
The "On like Donkey Kong" Release. * Only open the log file when we first need to write to it, this avoids the need to suppress errors when not root which fakeroot defeated anyway. * Stop dpkg-source clobbering an existing .orig directory during unpacking. Closes: #21236. * Allow an alternate output directory to be specified to dpkg-source by giving a second argument to -x. Closes: #246802, #282323. * Added .arch-inventory to default diff ignore regexp. Closes: #304297. SELinux support (Manoj Srivastava): * On SELinux-enabled systems, try to set the security context when the package is unpacked. Closes: #193653, #249496, #307139. * Added build-dependancy on libselinux1-dev. Improvements to dpkg-source (Brendan O'Dea): * Support unpacking of "Wig And Pen" (Format 2.0) source packages. * Multiple pristine upstream tarballs allowed. * Native and upstream tarballs may be bzip2-compressed instead of gzip, as may the debian diff or tarball. * Unsupported format error fixed to output the unsupported format rather than the supported one. Closes: #156317. -- Scott James Remnant <scott@netsplit.com> Sun, 12 Jun 2005 15:52:43 +0100
2005-03-11dpkg (1.13.1.0.1) experimental; urgency=lowScott James Remnant9-0/+1617
* Bin-MU; recompile against Debian unstable, to make dselect actually installable. -- Scott James Remnant <scott@netsplit.com> Fri, 11 Mar 2005 09:00:14 +0000