Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - fix bad free() (thanks to glibc for detecting it) | Pascal Rigaux | 2008-12-15 | 1 | -4/+4 |
| | |||||
* | - fix scriptlet failing: | Pascal Rigaux | 2008-12-12 | 1 | -2/+2 |
| | | | | | adapt to librpm4.6, rpmtsSetRootDir(ts, "") is forbidden | ||||
* | - adapt to rpm 4.6 changes: | Pascal Rigaux | 2008-12-09 | 1 | -11/+16 |
| | | | | | | | - headerNextIterator -> headerNext - headerAddEntry -> headerPut - headerModifyEntry -> headerMod | ||||
* | - adapt to rpm 4.6 changes: headerGetEntry -> headerGet | Pascal Rigaux | 2008-12-09 | 1 | -104/+112 |
| | |||||
* | - adapt to some easy rpm 4.6 changes: | Pascal Rigaux | 2008-12-09 | 1 | -31/+29 |
| | | | | | | | | - headerSprintf -> headerFormat - headerAddEntry -> headerPutString - headerRemoveEntry -> headerDel - rpmProblemGetLong -> rpmProblemGetDiskNeed | ||||
* | free the iterator *after* use | Pascal Rigaux | 2008-12-09 | 1 | -2/+4 |
| | | | | | (otherwise it segfaults with 4.6.0-rc1, and i wonder how it worked before...) | ||||
* | do free the ts after user, this is especially needed since rpmVerifySignature | Pascal Rigaux | 2008-12-09 | 1 | -0/+1 |
| | | | | | | (wrongly) called in rpmReadPackageFile can open the rpmdb which won't get closed if ts is not closed | ||||
* | - drop list_rpm_tag() | Pascal Rigaux | 2008-12-09 | 1 | -30/+2 |
| | |||||
* | adapt types to rpm-4.6.x | Pascal Rigaux | 2008-12-09 | 1 | -56/+58 |
| | |||||
* | fix rpmRelocation usage with rpm 5.2 | Per Øyvind Karlsen | 2008-12-08 | 1 | -2/+13 |
| | |||||
* | - $trans->run can now return both the translated errors, and some parsable | Pascal Rigaux | 2008-10-14 | 1 | -5/+8 |
| | | | | | errors (useful for example to detect diskspace issues) | ||||
* | use rpmuint64_t rather than long long, we know that it should stay compatible:) | Per Øyvind Karlsen | 2008-10-14 | 1 | -1/+1 |
| | |||||
* | fix build with rpm5.org HEAD | Per Øyvind Karlsen | 2008-10-10 | 1 | -5/+11 |
| | |||||
* | - handle flag "replacefiles" | Pascal Rigaux | 2008-10-07 | 1 | -0/+2 |
| | |||||
* | add filelinktos() & dirnames() to URPM::Package | Per Øyvind Karlsen | 2008-07-18 | 1 | -0/+16 |
| | |||||
* | ensure that initSourceHeader gets run for rpm5.org, otherwise querying of ↵ | Per Øyvind Karlsen | 2008-07-17 | 1 | -0/+2 |
| | | | | spec files won't work | ||||
* | fix build with rpm5.org HEAD | Per Øyvind Karlsen | 2008-07-14 | 1 | -0/+9 |
| | |||||
* | - add traverse_tag_find() | Pascal Rigaux | 2008-07-04 | 1 | -0/+43 |
| | |||||
* | create rpmtag_from_string() out of Db_traverse_tag | Pascal Rigaux | 2008-07-01 | 1 | -15/+19 |
| | |||||
* | - fix urpmi wrongly considering epochless conflicts to match any epoch in a | Pascal Rigaux | 2008-06-17 | 1 | -1/+2 |
| | | | | | | | | | | | case when urpmi should upgrade a conflicting package to an actually non-conflicting version (cf epochless-conflict-with-promotion urpmi test) from Anssi. i tested various upgrades from some chroot with 2008.0, 2007.1, 2007.0, and it didn't change the result, so it should be quite safe :) | ||||
* | un-revert rpm5.org cosmetics now that cooker has reopened | Per Øyvind Karlsen | 2008-04-14 | 1 | -25/+30 |
| | |||||
* | update authors and copyright notic | Pascal Rigaux | 2008-04-10 | 1 | -1/+1 |
| | |||||
* | revert unneeded commit for nowtopic/3.12 | Pascal Rigaux | 2008-03-25 | 1 | -28/+25 |
| | |||||
* | fix a typo in a comment </pedanticlamer> | Per Øyvind Karlsen | 2008-03-19 | 1 | -1/+1 |
| | |||||
* | make URPM more portable by using standard %{_target_vendor} & %{_target_cpu} ↵ | Per Øyvind Karlsen | 2008-03-19 | 1 | -5/+5 |
| | | | | macros in stead of Mandriva specific %{_real_vendor} & (now dead) %{_real_arch} | ||||
* | change x,y check to y,x. More intuitive, for me at least, other order ↵ | Per Øyvind Karlsen | 2008-03-19 | 1 | -25/+25 |
| | | | | frequently confuses me ;p | ||||
* | improve rpm version detection | Per Øyvind Karlsen | 2008-03-19 | 1 | -26/+29 |
| | | | | | really fix callback size for rpm5.org versions | ||||
* | ouch, add back 'case RPMPROB_DISKNODES:' removed by mistake :/ | Per Øyvind Karlsen | 2008-03-06 | 1 | -0/+1 |
| | |||||
* | revert back to long long since they're of same size anyways and we avoid ↵ | Per Øyvind Karlsen | 2008-03-06 | 1 | -3/+3 |
| | | | | warnings that way :) | ||||
* | simplify as pixel suggested | Per Øyvind Karlsen | 2008-03-06 | 1 | -13/+3 |
| | | | | | use uint64_t in stead of unsigned long long (which is really the same, but nicer and more consistent with rpm5:) | ||||
* | minor cosmetics | Per Øyvind Karlsen | 2008-03-03 | 1 | -3/+1 |
| | |||||
* | move compatibility wrapper to rpm5.org upstream | Per Øyvind Karlsen | 2008-03-03 | 1 | -4/+3 |
| | |||||
* | do better "detection" of callback size without having to define it in ↵ | Per Øyvind Karlsen | 2008-03-01 | 1 | -7/+5 |
| | | | | Makefile (inspired by apt) | ||||
* | rpm 4.5 and newer uses unsigned long long ulong1 in stead of unsigned long ↵ | Per Øyvind Karlsen | 2008-02-29 | 1 | -1/+8 |
| | | | | ulong1 for rpmProblemGetLong, therefore use %lld in stead of %ld | ||||
* | fix assignment from incompatible pointer type in Urpm_list_rpm_tag for rpm5 | Per Øyvind Karlsen | 2008-02-29 | 1 | -0/+4 |
| | |||||
* | be sure to use same data type for check_flag | Per Øyvind Karlsen | 2008-02-29 | 1 | -3/+3 |
| | |||||
* | make sure to use same type (signess) in pack_rpm_header | Per Øyvind Karlsen | 2008-02-28 | 1 | -1/+1 |
| | |||||
* | - restore FILENAME_TAG in generated hdlist (to be compatible with older | Pascal Rigaux | 2008-02-28 | 1 | -0/+7 |
| | | | | | distros where ->filename can rely on it) (thanks to Nanar) | ||||
* | fix define of _RPMTAG_INTERNAL at right place and drop redundant include of ↵ | Per Øyvind Karlsen | 2008-02-28 | 1 | -1/+3 |
| | | | | rpmtag.h | ||||
* | add rpm5 wrapper functions, work in progress, URPM builds now at least :o) | Per Øyvind Karlsen | 2008-02-28 | 1 | -14/+3 |
| | |||||
* | do not mark as deprecated ->filename and URPM::Build::build_hdlist() | Pascal Rigaux | 2008-02-25 | 1 | -1/+0 |
| | |||||
* | adding filesize to synthesis on @info@ will break backward compatibility for | Pascal Rigaux | 2008-02-25 | 1 | -8/+12 |
| | | | | | no good reason, so switching to a new @filesize@ line | ||||
* | make ->filename work (again) on header | Pascal Rigaux | 2008-02-25 | 1 | -0/+6 |
| | |||||
* | - add filesize to synthesis, add ->filesize to get it, and add | Pascal Rigaux | 2008-02-25 | 1 | -3/+24 |
| | | | | | selected_size_filesize() to compute the sum | ||||
* | fix previous commit (XS comments are perl-style, not C-style) | Pascal Rigaux | 2008-02-25 | 1 | -2/+2 |
| | |||||
* | - do not add FILENAME_TAG and FILESIZE_TAG to hdlist anymore, | Pascal Rigaux | 2008-02-25 | 1 | -42/+7 |
| | | | | | | deprecate ->filename and ->header_filename, deprecate URPM::Build build_hdlist and parse_rpms_build_headers | ||||
* | RPM_CHAR_TYPE isn't used for rpm5, #ifndef it away | Per Øyvind Karlsen | 2008-01-17 | 1 | -0/+2 |
| | |||||
* | correct define for int_32 (rpm5) | Per Øyvind Karlsen | 2008-01-17 | 1 | -1/+1 |
| | |||||
* | more rpm5 work.. | Per Øyvind Karlsen | 2008-01-16 | 1 | -2/+13 |
| | |||||
* | start on work for rpm5 support | Per Øyvind Karlsen | 2008-01-16 | 1 | -0/+4 |
| |