Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-02-05 | Use rpmSigTag enum for signature tags everywhere, more or less.. | Panu Matilainen | 6 | -22/+52 | |
2008-02-05 | Use rpmTagType always now that it's available everywhere | Panu Matilainen | 28 | -137/+142 | |
- 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 | Couple of missed type abstractions | Panu Matilainen | 2 | -2/+2 | |
2008-02-05 | Yet another typedef for transaction ID, use where spotted | Panu Matilainen | 12 | -22/+23 | |
- most remaining [u]int16|32 uses are indexes and such, ie actual numbers | |||||
2008-02-05 | Use rpm_flag_t for header generic bitfields (file flags etc) | Panu Matilainen | 7 | -24/+28 | |
- additionally use rpmfileAtts / rpmVerifyFlags consistently where appropriate | |||||
2008-02-05 | rpm5.org: free 5 bits for rpmfc coloring expansion | Panu Matilainen | 1 | -18/+26 | |
- also fixes an overlap between RPMFC_LIBTOOL and RPMFC_MONO which we had and were out of bits already | |||||
2008-02-05 | Couple of int -> rpmVSFlags type corrections | Panu Matilainen | 2 | -2/+2 | |
2008-02-05 | Doxygen bits for rpmtypes, much to do still | Panu Matilainen | 1 | -9/+28 | |
2008-02-05 | Adjust potfiles from rpmlibprov removal, update... | Panu Matilainen | 24 | -2435/+2434 | |
2008-02-05 | A missed color type in rpmds header | Panu Matilainen | 1 | -1/+1 | |
2008-02-05 | Split non-cli verify bits from rpmcli to separate header | Panu Matilainen | 4 | -76/+100 | |
2008-02-05 | More rpm-headerdata types: rpm_dev_t and rpm_ino_t, use where spotted | Panu Matilainen | 5 | -9/+11 | |
- both hardwired to 32bit internally | |||||
2008-02-05 | Add rpm_rdev_t type for rdev entries | Panu Matilainen | 6 | -9/+10 | |
- rdev is 16bit whereas dev is 32bit, eww... | |||||
2008-02-05 | Add rpm_mode_t type, use where spotted | Panu Matilainen | 10 | -26/+27 | |
- bring the types under some sort of control, previously mixture of int16_t, uint16_t and unsigned short was used.. | |||||
2008-02-05 | Add rpm_color_t type for rpm color bits, use where spotted | Panu Matilainen | 20 | -71/+73 | |
2008-02-05 | Port some rpmds improvements from rpm5.org | Panu Matilainen | 8 | -163/+195 | |
- 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 | 8 | -118/+1 | |
- we don't support relocated x86 on ppc in qemu either... | |||||
2008-02-05 | Use helper function to eliminate some copy-paste code | Panu Matilainen | 1 | -75/+42 | |
2008-02-04 | Remove double documention for exported header functions | Panu Matilainen | 1 | -209/+0 | |
2008-02-04 | Rip the useless header method vectors | Panu Matilainen | 5 | -732/+86 | |
2008-02-04 | Make check-programs build again, assorted type-fiddlings.. | Panu Matilainen | 7 | -8/+8 | |
2008-02-04 | Add rpm_time_t type for time types (in headers), use where spotted | Panu Matilainen | 14 | -20/+21 | |
- easy to spot, easy to change... - time_t size can vary, header data needs fixed size | |||||
2008-02-04 | Add rpm_off_t type for file size types, use where spotted | Panu Matilainen | 27 | -49/+51 | |
- 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 | 18 | -49/+48 | |
- 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-02-03 | Use rpmTag etc enums for rpmTagGet*() functions | Panu Matilainen | 2 | -15/+15 | |
2008-02-03 | Stuff signature tags to rpmtag.h along with other tags, add enum typedef | Panu Matilainen | 2 | -19/+19 | |
2008-02-01 | Fix platform dir creation, doh | Panu Matilainen | 1 | -2/+1 | |
2008-02-01 | Update translations for a change.. | Panu Matilainen | 23 | -13664/+13664 | |
2008-02-01 | Move platform specific macros under RPMCONFIGDIR/platform/ | Panu Matilainen | 3 | -16/+18 | |
- reduce the clutter in RPMCONFIGDIR, nicer for packaging too.. | |||||
2008-02-01 | Ditch the "system" %_topdir, default to ~/rpmbuild instead | Panu Matilainen | 3 | -49/+2 | |
- building as root should be discouraged and /usr/src for building stuff is horribly wrong anyway | |||||
2008-02-01 | Don't close GPG/PGP stdin to avoid harmless warning (rhbz#197602) | Panu Matilainen | 1 | -2/+0 | |
- patch from rpm5.org | |||||
2008-02-01 | Avoid silly fixed size buffer in urlhelper | Panu Matilainen | 1 | -1/+3 | |
2008-02-01 | Allocate macro buffers dynamically | Panu Matilainen | 1 | -45/+67 | |
- avoids some entirely needless overflow cases - somewhat similarly to rpm5.org but use heap instead of stack | |||||
2008-02-01 | Allocate various macro buffers from heap not stack | Panu Matilainen | 1 | -14/+19 | |
2008-02-01 | Define + use MACROBUFSIZ for macro expansion buffer size | Panu Matilainen | 1 | -8/+10 | |
- double the buffer size while at it... | |||||
2008-02-01 | Macro shell expansion fixes (rhbz#431009) | Panu Matilainen | 1 | -2/+5 | |
2008-01-30 | Add rpmtypes to doxygen, with todo reminders.. | Panu Matilainen | 3 | -0/+7 | |
2008-01-30 | Include spring-cleaning | Panu Matilainen | 75 | -184/+186 | |
- 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 | 14 | -40/+42 | |
2008-01-30 | Use headerIsSource() instead of doing it manually | Panu Matilainen | 1 | -1/+1 | |
2008-01-30 | rpmlib.h mass eviction | Panu Matilainen | 78 | -59/+100 | |
- explicitly include what's really needed instead - document remaining uses | |||||
2008-01-30 | Move HGE and related prototypes to header.h | Panu Matilainen | 2 | -75/+75 | |
2008-01-30 | Move rpmTagType stuff to rpmtag.h now that they can move | Panu Matilainen | 5 | -49/+54 | |
2008-01-30 | Stick rpmCallbackType to rpmtypes too.. | Panu Matilainen | 2 | -4/+4 | |
2008-01-30 | Add missing system includes | Panu Matilainen | 2 | -0/+4 | |
2008-01-30 | Uninline headerFreeData() | Panu Matilainen | 2 | -12/+12 | |
2008-01-30 | Stick relocation struct to rpmfi, typedef to rpmtypes... | Panu Matilainen | 3 | -8/+9 | |
2008-01-30 | Move FD_t to rpmtypes.h, used all over .. | Panu Matilainen | 2 | -4/+3 | |
2008-01-30 | Move rpmRC definition to rpmtypes | Panu Matilainen | 2 | -11/+11 | |
- lot of places drag in rpmlib.h just for that... | |||||
2008-01-30 | rpmgi.h doesn't need rpmte and rpmts headers, implementation does | Panu Matilainen | 2 | -2/+1 | |