diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-05 16:04:32 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-05 16:04:32 +0000 |
commit | 80e2af827e380198fea4e77583adf9a1bdde01dc (patch) | |
tree | e70d763eacb780ec5df333dd147126625768fb31 | |
parent | c39fe46257a560f41049d0d14267ea3f329bc544 (diff) | |
download | perl-URPM-80e2af827e380198fea4e77583adf9a1bdde01dc.tar perl-URPM-80e2af827e380198fea4e77583adf9a1bdde01dc.tar.gz perl-URPM-80e2af827e380198fea4e77583adf9a1bdde01dc.tar.bz2 perl-URPM-80e2af827e380198fea4e77583adf9a1bdde01dc.tar.xz perl-URPM-80e2af827e380198fea4e77583adf9a1bdde01dc.zip |
(Trans_run) drop support for repackage (non working since rpm-4.6 in 2009)
should have been done right after commit r251061 by pixel on Tue Jan
2009: "- drop urpmi.recover
(no more possible with rpm 4.6 which doesn't handle --repackage)"
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | URPM.xs | 8 |
2 files changed, 2 insertions, 8 deletions
@@ -1,3 +1,5 @@ +- drop support for repackage (non working since rpm-4.6 in 2009) + Version 4.15 - 26 September 2012 - API: @@ -2749,8 +2749,6 @@ Trans_run(trans, data, ...) raw_message = 1; } else if (len == 12 && !memcmp(s, "replacefiles", 12)) { if (SvIV(ST(i+1))) probFilter |= RPMPROB_FILTER_REPLACEOLDFILES | RPMPROB_FILTER_REPLACENEWFILES; - } else if (len == 9 && !memcmp(s, "repackage", 9)) { - if (SvIV(ST(i+1))) transFlags |= RPMTRANS_FLAG_REPACKAGE; } else if (len == 6 && !memcmp(s, "justdb", 6)) { if (SvIV(ST(i+1))) transFlags |= RPMTRANS_FLAG_JUSTDB; } else if (len == 10 && !memcmp(s, "ignorearch", 10)) { @@ -2772,12 +2770,6 @@ Trans_run(trans, data, ...) } } /* check macros */ - { - char *repa = rpmExpand("%_repackage_all_erasures", NULL); - if (repa && *repa && *repa != '0') - transFlags |= RPMTRANS_FLAG_REPACKAGE; - if (repa) free(repa); - } rpmtsSetFlags(trans->ts, transFlags); trans->ts = rpmtsLink(trans->ts); rpmtsSetNotifyCallback(trans->ts, rpmRunTransactions_callback, &td); |