aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
Commit message (Collapse)AuthorAgeFilesLines
* comment out unused codeChristophe Fergeau2009-08-101-0/+2
|
* remove no longer used SPEC_VERIFY constantPer Øyvind Karlsen2009-08-051-2/+0
|
* disttag & distepoch isn't utf8…Per Øyvind Karlsen2009-08-041-2/+2
|
* cast (es-s) to U32 (as the hv_fetch prototype expects) rather than casting ↵Per Øyvind Karlsen2009-08-041-1/+1
| | | | strlen(s) to signed
* remove unused variableChristophe Fergeau2009-07-271-1/+0
|
* add support for %disttag & %distepochPer Øyvind Karlsen2009-07-261-0/+18
|
* just use (void) rather than assign rpmtsFree() since it seems to cause ↵Per Øyvind Karlsen2009-07-261-15/+15
| | | | crashy behaviour certain places...
* oops, put back line that accidentally got removed in the previous commit…Per Øyvind Karlsen2009-07-261-0/+1
|
* enable and fix additional (-Wextra) warningsPer Øyvind Karlsen2009-07-261-13/+12
|
* fix gcc warnings about values not being usedPer Øyvind Karlsen2009-07-261-26/+26
|
* * clean out compatibility code for older rpm versions that's not reallyPer Øyvind Karlsen2009-07-261-102/+29
| | | | | | supported anymore anyways and move out as much as possible rpm5.org compatibility code out of URPM into new rpm46compat.h @ rpm5.org
* Removed forgotten debugging logsChristophe Fergeau2009-05-111-2/+0
|
* Introduce get_gpg_fingerprint XS functionChristophe Fergeau2009-05-111-0/+36
|
* (verify_signature) make checking urpmi signatures works in chrooted environmentsThierry Vignaud2009-03-051-2/+3
| | | | | | (especially important for installer where there's no rpmdb in / (really /var/lib/rpm) and thus no keys to check against)
* - fix bad free() (thanks to glibc for detecting it)Pascal Rigaux2008-12-151-4/+4
|
* - fix scriptlet failing:Pascal Rigaux2008-12-121-2/+2
| | | | | adapt to librpm4.6, rpmtsSetRootDir(ts, "") is forbidden
* - adapt to rpm 4.6 changes:Pascal Rigaux2008-12-091-11/+16
| | | | | | | - headerNextIterator -> headerNext - headerAddEntry -> headerPut - headerModifyEntry -> headerMod
* - adapt to rpm 4.6 changes: headerGetEntry -> headerGetPascal Rigaux2008-12-091-104/+112
|
* - adapt to some easy rpm 4.6 changes:Pascal Rigaux2008-12-091-31/+29
| | | | | | | | - headerSprintf -> headerFormat - headerAddEntry -> headerPutString - headerRemoveEntry -> headerDel - rpmProblemGetLong -> rpmProblemGetDiskNeed
* free the iterator *after* usePascal Rigaux2008-12-091-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 rpmVerifySignaturePascal Rigaux2008-12-091-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 Rigaux2008-12-091-30/+2
|
* adapt types to rpm-4.6.xPascal Rigaux2008-12-091-56/+58
|
* fix rpmRelocation usage with rpm 5.2Per Øyvind Karlsen2008-12-081-2/+13
|
* - $trans->run can now return both the translated errors, and some parsablePascal Rigaux2008-10-141-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 Karlsen2008-10-141-1/+1
|
* fix build with rpm5.org HEADPer Øyvind Karlsen2008-10-101-5/+11
|
* - handle flag "replacefiles"Pascal Rigaux2008-10-071-0/+2
|
* add filelinktos() & dirnames() to URPM::PackagePer Øyvind Karlsen2008-07-181-0/+16
|
* ensure that initSourceHeader gets run for rpm5.org, otherwise querying of ↵Per Øyvind Karlsen2008-07-171-0/+2
| | | | spec files won't work
* fix build with rpm5.org HEADPer Øyvind Karlsen2008-07-141-0/+9
|
* - add traverse_tag_find()Pascal Rigaux2008-07-041-0/+43
|
* create rpmtag_from_string() out of Db_traverse_tagPascal Rigaux2008-07-011-15/+19
|
* - fix urpmi wrongly considering epochless conflicts to match any epoch in aPascal Rigaux2008-06-171-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 reopenedPer Øyvind Karlsen2008-04-141-25/+30
|
* update authors and copyright noticPascal Rigaux2008-04-101-1/+1
|
* revert unneeded commit for nowtopic/3.12Pascal Rigaux2008-03-251-28/+25
|
* fix a typo in a comment </pedanticlamer>Per Øyvind Karlsen2008-03-191-1/+1
|
* make URPM more portable by using standard %{_target_vendor} & %{_target_cpu} ↵Per Øyvind Karlsen2008-03-191-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 Karlsen2008-03-191-25/+25
| | | | frequently confuses me ;p
* improve rpm version detectionPer Øyvind Karlsen2008-03-191-26/+29
| | | | | really fix callback size for rpm5.org versions
* ouch, add back 'case RPMPROB_DISKNODES:' removed by mistake :/Per Øyvind Karlsen2008-03-061-0/+1
|
* revert back to long long since they're of same size anyways and we avoid ↵Per Øyvind Karlsen2008-03-061-3/+3
| | | | warnings that way :)
* simplify as pixel suggestedPer Øyvind Karlsen2008-03-061-13/+3
| | | | | use uint64_t in stead of unsigned long long (which is really the same, but nicer and more consistent with rpm5:)
* minor cosmeticsPer Øyvind Karlsen2008-03-031-3/+1
|
* move compatibility wrapper to rpm5.org upstreamPer Øyvind Karlsen2008-03-031-4/+3
|
* do better "detection" of callback size without having to define it in ↵Per Øyvind Karlsen2008-03-011-7/+5
| | | | Makefile (inspired by apt)
* rpm 4.5 and newer uses unsigned long long ulong1 in stead of unsigned long ↵Per Øyvind Karlsen2008-02-291-1/+8
| | | | ulong1 for rpmProblemGetLong, therefore use %lld in stead of %ld
* fix assignment from incompatible pointer type in Urpm_list_rpm_tag for rpm5Per Øyvind Karlsen2008-02-291-0/+4
|
* be sure to use same data type for check_flagPer Øyvind Karlsen2008-02-291-3/+3
|