Markos Chandras (hwoarang | 1 Jul 2009 01:03
Picon
Favicon
Gravatar

gentoo-x86 commit in dev-util/qt-creator: ChangeLog qt-creator-1.2.0.ebuild qt-creator-1.2.0-r1.ebuild

hwoarang    09/06/30 23:03:01

  Modified:             ChangeLog
  Removed:              qt-creator-1.2.0.ebuild qt-creator-1.2.0-r1.ebuild
  Log:
  Remove old ebuilds
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-util/qt-creator/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qt-creator/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qt-creator/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qt-creator/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/qt-creator/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	30 Jun 2009 20:57:33 -0000	1.20
+++ ChangeLog	30 Jun 2009 23:03:01 -0000	1.21
 <at>  <at>  -1,6 +1,10  <at>  <at> 
 # ChangeLog for dev-util/qt-creator
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/qt-creator/ChangeLog,v 1.20 2009/06/30 20:57:33
fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/qt-creator/ChangeLog,v 1.21 2009/06/30 23:03:01
hwoarang Exp $
(Continue reading)

Zac Medico (zmedico | 1 Jul 2009 01:03
Picon
Favicon
Gravatar

portage r13749 - main/trunk/pym/_emerge

Author: zmedico
Date: 2009-06-30 23:03:34 +0000 (Tue, 30 Jun 2009)
New Revision: 13749

Modified:
   main/trunk/pym/_emerge/depgraph.py
Log:
Fix depgraph._resolve to do old-style virtual matches against package.provided
when there is no other choice.

Modified: main/trunk/pym/_emerge/depgraph.py
===================================================================
--- main/trunk/pym/_emerge/depgraph.py	2009-06-30 22:49:24 UTC (rev 13748)
+++ main/trunk/pym/_emerge/depgraph.py	2009-06-30 23:03:34 UTC (rev 13749)
 <at>  <at>  -1358,6 +1358,7  <at>  <at> 
 		myroot = self._frozen_config.target_root
 		pkgsettings = self._frozen_config.pkgsettings[myroot]
 		pprovideddict = pkgsettings.pprovideddict
+		virtuals = pkgsettings.getvirtuals()
 		for arg in self._dynamic_config._initial_arg_list:
 			for atom in arg.set:
 				self._frozen_config.spinner.update()
 <at>  <at>  -1383,6 +1384,22  <at>  <at> 
 					pkg, existing_node = self._select_package(
 						myroot, atom, onlydeps=onlydeps)
 					if not pkg:
+						pprovided_match = False
+						for virt_choice in virtuals.get(atom.cp, []):
+							expanded_atom = portage.dep.Atom(
+								atom.replace(atom.cp,
(Continue reading)

Zac Medico (zmedico | 1 Jul 2009 01:22
Picon
Favicon
Gravatar

portage r13750 - in main/trunk/pym: _emerge portage

Author: zmedico
Date: 2009-06-30 23:22:52 +0000 (Tue, 30 Jun 2009)
New Revision: 13750

Modified:
   main/trunk/pym/_emerge/create_world_atom.py
   main/trunk/pym/portage/__init__.py
Log:
Always use dep_getkey() when using profile virtuals values, since at least
/profiles/base/virtuals contains an atom with an operator (virtual/pam maps
to >=sys-libs/pam-0.78).

Modified: main/trunk/pym/_emerge/create_world_atom.py
===================================================================
--- main/trunk/pym/_emerge/create_world_atom.py	2009-06-30 23:03:34 UTC (rev 13749)
+++ main/trunk/pym/_emerge/create_world_atom.py	2009-06-30 23:22:52 UTC (rev 13750)
 <at>  <at>  -89,7 +89,8  <at>  <at> 
 			# pulled in by update or depclean.
 			providers = portdb.mysettings.getvirtuals().get(
 				portage.dep_getkey(system_atom))
-			if providers and len(providers) == 1 and providers[0] == cp:
+			if providers and len(providers) == 1 and \
+				portage.dep_getkey(providers[0]) == cp:
 				return None
 	return new_world_atom

Modified: main/trunk/pym/portage/__init__.py
===================================================================
--- main/trunk/pym/portage/__init__.py	2009-06-30 23:03:34 UTC (rev 13749)
+++ main/trunk/pym/portage/__init__.py	2009-06-30 23:22:52 UTC (rev 13750)
(Continue reading)

Zac Medico (zmedico | 1 Jul 2009 01:26
Picon
Favicon
Gravatar

portage r13751 - main/trunk/pym/portage

Author: zmedico
Date: 2009-06-30 23:26:36 +0000 (Tue, 30 Jun 2009)
New Revision: 13751

Modified:
   main/trunk/pym/portage/__init__.py
Log:
Remove obsolete blocker expansion code from _expand_new_virtuals.

Modified: main/trunk/pym/portage/__init__.py
===================================================================
--- main/trunk/pym/portage/__init__.py	2009-06-30 23:22:52 UTC (rev 13750)
+++ main/trunk/pym/portage/__init__.py	2009-06-30 23:26:36 UTC (rev 13751)
 <at>  <at>  -6945,9 +6945,6  <at>  <at> 
 			newsplit.append(x)
 			continue
 		match_atom = x
-		if isblocker:
-			match_atom = x.lstrip("!")
-			isblocker = x[:-len(match_atom)]
 		pkgs = []
 		matches = portdb.match(match_atom)
 		# Use descending order to prefer higher versions.
 <at>  <at>  -6998,17 +6995,10  <at>  <at> 
 			if not mycheck[0]:
 				raise portage.exception.ParseError(
 					"%s: %s '%s'" % (y[0], mycheck[1], depstring))
-			if isblocker:
-				virtual_atoms = [atom for atom in mycheck[1] \
-					if not atom.startswith("!")]
(Continue reading)

Picon
Favicon

gentoo-x86 commit in games-engines/frobtads: frobtads-0.12.ebuild Manifest

mr_bones_    09/07/01 00:00:15

  Modified:             Manifest
  Removed:              frobtads-0.12.ebuild
  Log:
  old
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.4                  games-engines/frobtads/Manifest

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/frobtads/Manifest?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/frobtads/Manifest?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/frobtads/Manifest?r1=1.3&r2=1.4

Index: Manifest
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/frobtads/Manifest,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Manifest	8 May 2009 05:11:48 -0000	1.3
+++ Manifest	1 Jul 2009 00:00:15 -0000	1.4
 <at>  <at>  -1,10 +1,6  <at>  <at> 
-DIST frobtads-0.12.tar.gz 1509225 RMD160 6e88266e922e71018145ac8534a386a800952a4a SHA1
84be7fbf2d2927ad97766778f22dafe873b6284f SHA256 f4700ec0d47a33d7d99a488318afe8d44b53f62a5e94f35a628e76f909483cbc
 DIST frobtads-0.13.tar.gz 1513088 RMD160 016c2d0af44560802d8ed8822b4599af1d68e20f SHA1
2a03ebba5a0332dda6e2413ff950b9c079437f96 SHA256 0996f1453cc6b650e108d58e762037f25c4ecf5f4d784bbc52d7316b1ff69a29
-DIST frobtads-t2compiler-0.12.tar.gz 130671 RMD160 7f3410a6d5f21a9a2b6e4ee0a5dfb9d88f252f91
SHA1 718c7513d0f30947075e70afd9cefed4e481665c SHA256 d9cf1b255c2b9cb153ffd04184b46be16de54373bafc458acc573ffe57c4c1b8
(Continue reading)

Picon
Favicon

gentoo-x86 commit in games-engines/scummvm: scummvm-0.13.0.ebuild Manifest

mr_bones_    09/07/01 00:01:51

  Modified:             Manifest
  Removed:              scummvm-0.13.0.ebuild
  Log:
  old
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.101                games-engines/scummvm/Manifest

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/Manifest?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/Manifest?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/Manifest?r1=1.100&r2=1.101

Index: Manifest
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/Manifest,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- Manifest	26 May 2009 06:48:54 -0000	1.100
+++ Manifest	1 Jul 2009 00:01:51 -0000	1.101
 <at>  <at>  -1,19 +1,7  <at>  <at> 
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
 AUX scummvm-0.13.1-glibc210.patch 331 RMD160 e92dd2e61440bcc28e7e09f8e3b328ddcff13aa8 SHA1
e6f5b557fd3df667e41abc74f0de615755349aaa SHA256 0c6454d9b21ae52ffac30cc43348647eb822670824214d312e1e77f346e8b635
 DIST scummvm-0.12.0.tar.bz2 5984412 RMD160 872646df24e8881f05902b11e9ca2ea3262b4d88 SHA1
(Continue reading)

Zac Medico (zmedico | 1 Jul 2009 02:27
Picon
Favicon
Gravatar

portage r13752 - main/trunk/pym/_emerge

Author: zmedico
Date: 2009-07-01 00:27:38 +0000 (Wed, 01 Jul 2009)
New Revision: 13752

Modified:
   main/trunk/pym/_emerge/depgraph.py
Log:
Fix depgraph._serialize_tasks so it never performa a needless uninstall task
when a package in the same slot is scheduled to replace it.

Modified: main/trunk/pym/_emerge/depgraph.py
===================================================================
--- main/trunk/pym/_emerge/depgraph.py	2009-06-30 23:26:36 UTC (rev 13751)
+++ main/trunk/pym/_emerge/depgraph.py	2009-07-01 00:27:38 UTC (rev 13752)
 <at>  <at>  -2877,28 +2877,16  <at>  <at> 
 					ignore_priority = priority_range.ignore_priority[i]
 					nodes = get_nodes(ignore_priority=ignore_priority)
 					if nodes:
-						# If there is a mix of uninstall nodes with other
-						# types, save the uninstall nodes for later since
-						# sometimes a merge node will render an uninstall
-						# node unnecessary (due to occupying the same slot),
-						# and we want to avoid executing a separate uninstall
-						# task in that case.
+						# If there is a mixuture of merges and uninstalls,
+						# do the uninstalls first.
 						if len(nodes) > 1:
 							good_uninstalls = []
-							with_some_uninstalls_excluded = []
 							for node in nodes:
(Continue reading)

Zac Medico (zmedico | 1 Jul 2009 02:28
Picon
Favicon
Gravatar

portage r13753 - main/trunk/pym/_emerge

Author: zmedico
Date: 2009-07-01 00:28:28 +0000 (Wed, 01 Jul 2009)
New Revision: 13753

Modified:
   main/trunk/pym/_emerge/depgraph.py
Log:
Fix typo from previous commit.

Modified: main/trunk/pym/_emerge/depgraph.py
===================================================================
--- main/trunk/pym/_emerge/depgraph.py	2009-07-01 00:27:38 UTC (rev 13752)
+++ main/trunk/pym/_emerge/depgraph.py	2009-07-01 00:28:28 UTC (rev 13753)
 <at>  <at>  -2877,7 +2877,7  <at>  <at> 
 					ignore_priority = priority_range.ignore_priority[i]
 					nodes = get_nodes(ignore_priority=ignore_priority)
 					if nodes:
-						# If there is a mixuture of merges and uninstalls,
+						# If there is a mixture of merges and uninstalls,
 						# do the uninstalls first.
 						if len(nodes) > 1:
 							good_uninstalls = []

Picon
Favicon

gentoo-x86 commit in games-engines/freesci: freesci-0.3.5.ebuild Manifest

mr_bones_    09/07/01 01:43:47

  Modified:             Manifest
  Removed:              freesci-0.3.5.ebuild
  Log:
  old
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.41                 games-engines/freesci/Manifest

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/freesci/Manifest?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/freesci/Manifest?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/freesci/Manifest?r1=1.40&r2=1.41

Index: Manifest
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/freesci/Manifest,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- Manifest	13 Jun 2009 16:42:20 -0000	1.40
+++ Manifest	1 Jul 2009 01:43:47 -0000	1.41
 <at>  <at>  -1,17 +1,5  <at>  <at> 
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
 AUX freesci-0.6.4-glibc2.10.patch 1079 RMD160 ffeb305ec9aa15b8aa41ce6100d258ea621a235a SHA1
cdb51e2efb0db5b4556d3d8065f4e777639656d6 SHA256 1b8e716a3c8131a8003b13560bf01ccf1e179bbe892c7bccdad4c421f6d87647
-DIST freesci-0.3.5.tar.bz2 1022657 RMD160 da6674d12c15016a7822e7b18491b65b441fdb19 SHA1
(Continue reading)

Robin H. Johnson (robbat2 | 1 Jul 2009 03:52
Picon
Favicon
Gravatar

gentoo commit in xml/htdocs/proj/en/perl: outdated-cpan-packages.xml

robbat2     09/07/01 01:52:20

  Modified:             outdated-cpan-packages.xml
  Log:
  Automated update of outdated-cpan-packages.xml

Revision  Changes    Path
1.1416               var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml

file : http://sources.gentoo.org/viewcvs.py//var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml?rev=1.1416&view=markup
plain: http://sources.gentoo.org/viewcvs.py//var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml?rev=1.1416&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py//var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml?r1=1.1415&r2=1.1416

Index: outdated-cpan-packages.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml,v
retrieving revision 1.1415
retrieving revision 1.1416
diff -p -w -b -B -u -u -r1.1415 -r1.1416
--- outdated-cpan-packages.xml	30 Jun 2009 17:52:22 -0000	1.1415
+++ outdated-cpan-packages.xml	1 Jul 2009 01:52:20 -0000	1.1416
 <at>  <at>  -1,6 +1,6  <at>  <at> 
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml,v
1.1415 2009/06/30 17:52:22 robbat2 Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/perl/outdated-cpan-packages.xml,v
1.1416 2009/07/01 01:52:20 robbat2 Exp $ -->

 <!-- Do Not Translate !! -->
(Continue reading)


Gmane