Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-04-10 | Just call legacyRetrofit() instead of combined compress + provide retrofits | Panu Matilainen | 1 | -5/+3 | |
2008-04-09 | Yet more url ripping - buildroot is never an url | Panu Matilainen | 1 | -2/+2 | |
- this is a bit nasty as it changes public interfaces but rename to make it explicit they're just plain paths, not urls | |||||
2008-04-07 | Eliminate several copy-paste hex converters, use pgpHexStr() instead | Panu Matilainen | 1 | -14/+7 | |
2008-04-03 | Shut up a few silly compiler warnings that have crept in | Panu Matilainen | 1 | -1/+1 | |
- missing cast in python header subscript - (false) warning about uninitialized variable, unused variable in rpmfc - missing include in rpmio | |||||
2008-03-18 | Minimal namespacing for locale-insensitive x*() string functions | Panu Matilainen | 2 | -2/+2 | |
2008-03-17 | Remove rollback support | Panu Matilainen | 1 | -128/+0 | |
- not possible to do reliably within rpm - effort is better wasted on investigating fs-level snapshots, which is way beyond rpm scope except for hooks to interact with the snapshot mechanism to communicate beginning/end of transaction and such | |||||
2008-02-05 | Mass convert (back) to rpmTag as it's usable everywhere now | Panu Matilainen | 8 | -20/+20 | |
- cast away a few cases where the enum usage causes ridiculous amount of compiler warnings from unhandled switch-cases | |||||
2008-02-05 | Use rpmTagType always now that it's available everywhere | Panu Matilainen | 1 | -4/+9 | |
- RPM_MASK_TYPE is not a datatype, move it out of the enum - add missing cases python header handling to shut up gcc | |||||
2008-02-05 | Yet another typedef for transaction ID, use where spotted | Panu Matilainen | 1 | -1/+1 | |
- most remaining [u]int16|32 uses are indexes and such, ie actual numbers | |||||
2008-02-05 | Couple of int -> rpmVSFlags type corrections | Panu Matilainen | 1 | -1/+1 | |
2008-02-05 | Add rpm_color_t type for rpm color bits, use where spotted | Panu Matilainen | 1 | -1/+1 | |
2008-02-05 | Port some rpmds improvements from rpm5.org | Panu Matilainen | 1 | -0/+33 | |
- rpmlib provides as rpmds, lose the special case hackery - new functions rpmdsRpmlib() and rpmdsSearch() + python bindings for them | |||||
2008-02-05 | Rip the horrible (ia64) autorelocate kludgery. RIP. | Panu Matilainen | 1 | -4/+0 | |
- we don't support relocated x86 on ppc in qemu either... | |||||
2008-02-04 | Make check-programs build again, assorted type-fiddlings.. | Panu Matilainen | 1 | -1/+1 | |
2008-02-04 | Add rpm_off_t type for file size types, use where spotted | Panu Matilainen | 1 | -1/+1 | |
- preliminaries for bumping up the max size, use rpm-specific type as off_t size varies, header data needs fixed size | |||||
2008-02-03 | Make rpmtag.h standalone, include from rpmtypes.h | Panu Matilainen | 1 | -1/+1 | |
- permits header.h to use the tag types - revert other includes back to header.h, more crazy #include churn... - rpmTagTable etc in header.h for now, don't really belong there but... | |||||
2008-01-30 | Include spring-cleaning | Panu Matilainen | 7 | -7/+6 | |
- put some consistency into include ordering - everything (apart from bits missed ;) is now ordered like this 1. "system.h" 2. other system includes 3. rpm public headers 4. rpm private headers 5. "debug.h" | |||||
2008-01-30 | Use rpmsenseFlags type for dependency flags everywhere (hopefully) | Panu Matilainen | 2 | -6/+6 | |
2008-01-30 | rpmlib.h mass eviction | Panu Matilainen | 11 | -12/+11 | |
- explicitly include what's really needed instead - document remaining uses | |||||
2007-12-19 | Add rpm_data_t (and _constdata_t) for header data, use everywhere | Panu Matilainen | 1 | -2/+2 | |
- consistent, easy to grep for and change... - bogus consts removed where spotted | |||||
2007-12-16 | Lone module-private const .. remove | Panu Matilainen | 1 | -1/+1 | |
2007-12-16 | Remove const from bunch of error message return types | Panu Matilainen | 1 | -1/+1 | |
- headerCheck(), rpmReadHeader() and rpmReadSignature() return malloced error messages the caller needs to free, shouldn't be const - adjust rpmdb hdrchk callbacks accordingly | |||||
2007-12-15 | Remove bogus const from rpmProblemString() return type | Panu Matilainen | 2 | -3/+9 | |
- its malloced so it needs to be freed - fix all users to actually free | |||||
2007-12-14 | Bogus const removal continued... | Panu Matilainen | 2 | -2/+2 | |
2007-12-14 | Bunch of const char* corrections | Panu Matilainen | 1 | -2/+3 | |
- functions returning string constants as char * etc... | |||||
2007-12-13 | Use rpm_tagtype_t everywhere for rpm (header) tagtype type | Panu Matilainen | 1 | -4/+4 | |
- typedef'ed as uint32_t, doesn't matter much but negative types dont exist - easy to grep, easy to change... - define RPM_FORCEFREE_TYPE instead of -1 "magic" for forcing headerFreeData (ugh), easier to grep for and change than "-1" | |||||
2007-12-13 | Use rpm_tag_t everywhere for rpm (header) tag type | Panu Matilainen | 9 | -23/+28 | |
- typedef'ed as int32_t for now, negative values used in some places for error cases - easy to grep, easy to change... - add RPMTAG_NOT_FOUND define, used in place of -1 "magic", | |||||
2007-12-13 | Use rpm_count_t everywhere for header data count | Panu Matilainen | 1 | -6/+7 | |
- typedef'ed as uint32_t as that's the key size limit imposed by BDB, relevant for RPM_BIN_TYPE - easy to change to whatever later on as it's now consistent everywhere | |||||
2007-12-11 | Register the new SCRIPT_ERROR callback value to python | Panu Matilainen | 1 | -0/+1 | |
2007-12-10 | Add python method for for retrieving (without setting) ts vsflags | Panu Matilainen | 1 | -0/+11 | |
2007-12-08 | Switch to <rpm/foo.h> style for public headers | Panu Matilainen | 22 | -32/+32 | |
- adjust include paths accordingly | |||||
2007-12-04 | Eliminate debug junk from the API | Panu Matilainen | 2 | -5/+5 | |
- add some helper macros to accomplish the same, easy to enable / disable as needed | |||||
2007-12-01 | Don't include idtx.h in rpmcli.h | Panu Matilainen | 1 | -0/+1 | |
- nothing needs it there, include directly where needed instead | |||||
2007-11-30 | Move logging related macros rpmlog, adjust includes | Panu Matilainen | 1 | -0/+1 | |
2007-11-29 | Lose python fts | Panu Matilainen | 5 | -563/+0 | |
- nothing uses it - hardly "rpm" functionality | |||||
2007-11-29 | Avoid building rpmdebug-py | Panu Matilainen | 2 | -5/+0 | |
2007-11-29 | Lose the useless rpmrc python stuff, group macro handling to rpmmacro-py | Panu Matilainen | 7 | -439/+83 | |
2007-11-27 | Drop extra include paths from python too | Panu Matilainen | 3 | -5/+1 | |
2007-11-27 | Move rpmfiBuildFNames() to rpmfi now that it's possible | Panu Matilainen | 1 | -1/+1 | |
2007-11-27 | Move legacy%#¤%#¤ to librpm now that it can move.. | Panu Matilainen | 1 | -1/+1 | |
2007-11-27 | Remove long since dead fields from python header objects | Panu Matilainen | 1 | -18/+0 | |
2007-11-23 | Remove unnecessary paths from python includepath | Panu Matilainen | 1 | -4/+2 | |
- no private includes from lib and build are needed - document rpmdb and rpmio private needs | |||||
2007-11-23 | Move the xstr*() string variants from rpmio.h to rpmstring.h | Panu Matilainen | 2 | -0/+2 | |
2007-11-23 | Use #include <x.h> syntax to include public headers. | Ralf Corsépius | 21 | -27/+27 | |
2007-11-22 | Add -I$(top_builddir)/include/rpm to AM_CPPFLAGS. | Ralf Corsépius | 1 | -1/+1 | |
2007-11-07 | Remove bunch of unnecessary misc.h includes, document others | Panu Matilainen | 1 | -1/+0 | |
2007-11-07 | Remove .splintrc's in the tree | Panu Matilainen | 1 | -94/+0 | |
2007-11-02 | Use NSS instead of beecrypt for encryption (Tomas Mraz) | Panu Matilainen | 1 | -2/+2 | |
2007-10-31 | Disable python available package mechanism for now at least. | Panu Matilainen | 1 | -4/+17 | |
- need saner available mechanism to resurrect, OTOH nothing appears to use it anymore - last remaining RPMTS_INTERNAL offender... | |||||
2007-10-29 | Remove unnecessary includes | Panu Matilainen | 2 | -5/+0 | |