Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-01-25 | Don't reset target when reading included rpmrc's. | Panu Matilainen | 1 | -0/+2 | |
Doesn't seem to break anything and fixes rhbz#232429 AFAICT... | |||||
2008-01-25 | Bandaid patch for truncated error message in russian (mdvbz#31680) | Panu Matilainen | 1 | -1/+1 | |
Just up the stupid static reservation "high enuff" for now. asprintf() would be nice here but it's not at all portable, revisit later. | |||||
2008-01-25 | Permit conflicting ghost files | Panu Matilainen | 1 | -0/+3 | |
Patch from Pascal Rigaux | |||||
2008-01-19 | Add support for Geode CPU (rhbz#428979) | Panu Matilainen | 2 | -1/+29 | |
Patch from Dennis Gilmore | |||||
2008-01-10 | And *really* skip the leading % in --define, double duh :) | Panu Matilainen | 1 | -3/+4 | |
2008-01-10 | Fix thinko in macroname underscore conversion, duh | Panu Matilainen | 1 | -3/+3 | |
2008-01-09 | Implementation of triggerprein scriptlets. | Panu Matilainen | 2 | -4/+12 | |
Ported from rpm5.org work of Jeff Johnson to 4.4.x by Pascal Rigaux, further adopted to fit HEAD... | |||||
2008-01-09 | Avoid access(2) quirks querying symlinks, lstat(2) instead (#60288) | Panu Matilainen | 1 | -17/+10 | |
Ported from rpm5.org work of Jeff Johnson | |||||
2008-01-09 | Handle spaces in file path arguments correctly (#217258) | Panu Matilainen | 2 | -2/+7 | |
Ported from rpm5.org work of Jeff Johnson with some differences: - place into rpmfileutil instead of rpmgi as it's more generic than just rpmgi - rename rpmgiEscapeSpaces -> rpmEscapeSpaces - return char *, not const char * as the return string must be freed by caller | |||||
2008-01-09 | Convert '-' to '_' within --define macro names (#124995) | Panu Matilainen | 1 | -3/+14 | |
Patch derived from rpm5.org of Jeff Johnson | |||||
2008-01-07 | Set a default 0022 umask value always (#83006) | Panu Matilainen | 1 | -0/+4 | |
Patch derived from rpm5.org work of Jeff Johnson | |||||
2008-01-07 | Don't unlink non-temporary file in FSM_UNDO (rhbz#223931) | Panu Matilainen | 2 | -5/+7 | |
Ported from rpm5.org work of Jeff Johnson. | |||||
2008-01-02 | Revert rpmfi bits from 01cd03ea8f8a | Panu Matilainen | 1 | -3/+3 | |
- nasty breakage from new signedness mismatches.. | |||||
2008-01-02 | Signedness consistency in rpmfi interface vs internal structures | Panu Matilainen | 2 | -24/+24 | |
2008-01-02 | Avoid compressFilelist() stack overflow in pathological cases | Panu Matilainen | 1 | -3/+6 | |
- allocate dirNames etc arrays on heap, not stack - the arrays can be rather large and alloca isn't very friendly when it fails... | |||||
2008-01-02 | Assorted int -> size_t corrections for string lengths | Panu Matilainen | 8 | -24/+25 | |
2008-01-02 | Use size_t, not int for header format padding args | Panu Matilainen | 1 | -8/+8 | |
2007-12-19 | Add rpm_data_t (and _constdata_t) for header data, use everywhere | Panu Matilainen | 17 | -151/+151 | |
- consistent, easy to grep for and change... - bogus consts removed where spotted | |||||
2007-12-19 | Const-pedantry here and there... | Panu Matilainen | 2 | -5/+6 | |
2007-12-19 | Const pedantry | Panu Matilainen | 1 | -8/+10 | |
2007-12-31 | tgi doesnt need fts private include | Panu Matilainen | 1 | -2/+1 | |
2007-12-19 | Hum, NSS needs to be shut down too | Panu Matilainen | 1 | -0/+4 | |
- some ~80 bytes are still leaked apparently from somewhere within nss/nspr | |||||
2007-12-19 | Ordering fix (don't use RPMSENSE_PREREQ) from Pascal Rigaux | Panu Matilainen | 1 | -1/+1 | |
2007-12-18 | Drop bogus const from rpmReadPackageManifest argvptr | Panu Matilainen | 2 | -4/+4 | |
- it's malloced and needs freeing by the caller.. | |||||
2007-12-18 | One leftover reloc constfree.. | Panu Matilainen | 1 | -1/+1 | |
2007-12-18 | Remove bunch of bogus cli-related consts... | Panu Matilainen | 1 | -4/+4 | |
2007-12-18 | Remove bogus const from rpmInstallSource*() parameters | Panu Matilainen | 4 | -9/+9 | |
- spec and cookie are malloced and need to be freed by caller - unconst various other rpmQVK arguments & friends, no api exists to free them so caller needs to handle anyway | |||||
2007-12-18 | Use constfree for rpmts suggestions | Panu Matilainen | 1 | -1/+1 | |
- goes down to rpmal returning fnpykey which is declared as const.. check this later | |||||
2007-12-18 | Remove bogus const from rpmGlob argv return type | Panu Matilainen | 4 | -4/+4 | |
- it's malloced and must be freed by caller | |||||
2007-12-18 | Make fsm failedFile non-const like it really is | Panu Matilainen | 3 | -12/+14 | |
- callers need to free it so const is wrong - cast away the hardlink-hackery in fsm instead | |||||
2007-12-18 | Drop bogus const from zapRelation return | Panu Matilainen | 1 | -3/+3 | |
- the retval is malloced from rpmdsNewDNEVR() and must be freed by the caller | |||||
2007-12-18 | Drop bogus const from rpmts rootDir + curDir | Panu Matilainen | 1 | -2/+2 | |
2007-12-18 | Use constfree for fsm path, opath for now | Panu Matilainen | 1 | -19/+19 | |
- neither should really be const but they sometimes point to real const variables, sometimes not.. needs careful review | |||||
2007-12-18 | Drop const from fs mountpoint, contained within fs | Panu Matilainen | 1 | -1/+1 | |
2007-12-17 | Use constfree for rpmte internals for now | Panu Matilainen | 1 | -7/+7 | |
- the internals are exposed all over the tree... | |||||
2007-12-17 | Use constfree for rpmfi internals for now | Panu Matilainen | 1 | -15/+15 | |
- the internals are exposed all over the tree... | |||||
2007-12-17 | Remove const from rpmal dirInfo dirname | Panu Matilainen | 1 | -2/+4 | |
- add comments wrt needle dirName - those are actual const pointers to within rpmfi, must not free | |||||
2007-12-17 | Use constfree for psm failedFile for now | Panu Matilainen | 1 | -3/+7 | |
- failedFile is malloced by fsm, but removing the const from fsm gets a bit hairy as failed it's not always malloced (see changeset 4062:02b0c237b675) so we'd have const-disabling casts instead of freeing consts... | |||||
2007-12-17 | Unconst psm pkgURL and rpmio_flags members | Panu Matilainen | 1 | -2/+2 | |
- fully contained within psm | |||||
2007-12-17 | Make psm opaque, add minimal methods to cover internal needs | Panu Matilainen | 4 | -53/+104 | |
2007-12-17 | Drop bogus const from dnlFreeIterator() param | Panu Matilainen | 1 | -1/+1 | |
2007-12-17 | Drop bogus const from fsmFsPath() return type | Panu Matilainen | 1 | -6/+5 | |
- path is malloced and caller needs to free - additionally use size_t, not int for string size | |||||
2007-12-17 | transaction.c doesn't need fsm.h, rpmfi_internal does | Panu Matilainen | 2 | -1/+1 | |
2007-12-17 | Stick cpioMapFlags to fsm.h, they're only used by fsm.c | Panu Matilainen | 2 | -20/+20 | |
- allows FSM* typedefs to move to where they belong | |||||
2007-12-17 | Hide fsmIterator_s struct details, not needed outside fsm.c | Panu Matilainen | 2 | -11/+11 | |
2007-12-17 | Stuff hardLink_s inside fsm.c, add pointer typedef to fsm.h | Panu Matilainen | 2 | -17/+19 | |
- nothing outside fsm.c needs except for the declaration in fsm_s | |||||
2007-12-17 | badDeps is encapsulated within depends, doesn't need const | Panu Matilainen | 1 | -11/+2 | |
- remove ancient reference code | |||||
2007-12-16 | pgpReadPkts returns malloced memory, unconstify | Panu Matilainen | 1 | -1/+1 | |
2007-12-16 | Bogus const in temporary variables | Panu Matilainen | 1 | -2/+2 | |
2007-12-16 | Unconstify rpmrc internal tables | Panu Matilainen | 1 | -13/+13 | |
- not exposed outside rpmrc, "protection" buys nothing |