pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: If revbump target overwrapped for two packages



On Tue, Nov 25, 2014 at 10:55:30PM +0900, Makoto Fujiwara wrote:
> Just a (primitive ?) question.
> 
> If I updated the package A. and finddepends A shows pool-A.
> If I updated the package B. and finddepends B shows pool-B.
> 
> And if pool-A and pool-B has overwrap.
> 
> It would be nice not revbump for each A and B, but merge
> the result of pool-A and pool-B and do rest of the procedure
> after finddepends.
> 
> Is it right ?
> 
> But comparing the cost of above to the too-many-PKGREVISION,
> increasing too many PKGVERSION's is trivial ?

I think you can just do:
           finddepends category/package1 | sort -u > allbump1
           finddepends category/package2 | sort -u > allbump2
	   cat allbump1 allbump2 | sort -u > allbump
	   rm allbump1 allbump2
and continue with the remaining steps as usual.
 Thomas


Home | Main Index | Thread Index | Old Index