From 87cf046b84f153a9e35fb3d248c50479312076a5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 25 May 2011 18:37:55 -0700 Subject: counter_tick: respect incrementing param always Every package install must have a unique counter, since a slotmove update can move two packages into the same SLOT and in that case it's important that both packages have different COUNTER metadata. --- pym/portage/dbapi/vartree.py | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) (limited to 'pym') diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 62a233258..47952e777 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -812,27 +812,31 @@ class vardbapi(dbapi): def counter_tick_core(self, myroot=None, incrementing=1, mycpv=None): """ This method will grab the next COUNTER value and record it back - to the global file. Returns new counter value. + to the global file. Note that every package install must have + a unique counter, since a slotmove update can move two packages + into the same SLOT and in that case it's important that both + packages have different COUNTER metadata. @param myroot: ignored, self._eroot is used instead @param mycpv: ignored + @rtype: int + @returns: new counter value """ myroot = None mycpv = None self.lock() try: counter = self.get_counter_tick_core() - 1 - if self._cached_counter != counter: - if incrementing: - #increment counter - counter += 1 - # update new global counter file - try: - write_atomic(self._counter_path, str(counter)) - except InvalidLocation: - self.settings._init_dirs() - write_atomic(self._counter_path, str(counter)) - self._cached_counter = counter + if incrementing: + #increment counter + counter += 1 + # update new global counter file + try: + write_atomic(self._counter_path, str(counter)) + except InvalidLocation: + self.settings._init_dirs() + write_atomic(self._counter_path, str(counter)) + self._cached_counter = counter finally: self.unlock() -- cgit v1.2.3-1-g7c22