Update timestamps in headers of modified files.
authorZac Medico <zmedico@gentoo.org>
Mon, 2 May 2011 03:42:24 +0000 (20:42 -0700)
committerZac Medico <zmedico@gentoo.org>
Mon, 2 May 2011 03:42:24 +0000 (20:42 -0700)
13 files changed:
man/emerge.1
man/repoman.1
pym/_emerge/DepPriority.py
pym/_emerge/DepPriorityNormalRange.py
pym/_emerge/DepPrioritySatisfiedRange.py
pym/_emerge/Dependency.py
pym/_emerge/UnmergeDepPriority.py
pym/_emerge/emergelog.py
pym/_emerge/resolver/backtracking.py
pym/portage/tests/resolver/ResolverPlayground.py
pym/portage/tests/resolver/test_autounmask.py
pym/portage/tests/resolver/test_rebuild.py
runtests.sh

index fc7ed61a979130d871780c1b3e5e85ad5b8f0c5a..3dcd20cf52a9a7b4f2243d348fd45327660abfb9 100644 (file)
@@ -1,4 +1,4 @@
-.TH "EMERGE" "1" "Apr 2011" "Portage VERSION" "Portage"
+.TH "EMERGE" "1" "May 2011" "Portage VERSION" "Portage"
 .SH "NAME"
 emerge \- Command\-line interface to the Portage system
 .SH "SYNOPSIS"
index 4bb50337ad299182b0439f1334beca7dd3fde838..3d4cc5304d2f1b40ce93ab97b653e6c3a63f6ffe 100644 (file)
@@ -1,4 +1,4 @@
-.TH "REPOMAN" "1" "Feb 2011" "Portage VERSION" "Portage"
+.TH "REPOMAN" "1" "May 2011" "Portage VERSION" "Portage"
 .SH NAME
 repoman \- Gentoo's program to enforce a minimal level of quality assurance in packages added to the portage tree
 .SH SYNOPSIS
index b08ffe583f2db5092ffb84d7b1f907131ccc0aad..252a81e822974050f62754c90142dda01b174361 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from _emerge.AbstractDepPriority import AbstractDepPriority
index 808c9504b693d12fda038d3fe8f18f030ccfcc4b..86395549ffee612599bc0fbcc4e963612e139260 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from _emerge.DepPriority import DepPriority
index 589afde3caa0ac7c38c76ffd2f09c278756a586d..7fa2f09778c1923a9de8bd0338388ce8c9358e43 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from _emerge.DepPriority import DepPriority
index d5d519d97dec5550ceb52d36169980f804f2206d..0f746b66f99c77375a20d98e9d7bf98a3331009c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from _emerge.DepPriority import DepPriority
index db4836e5428b943de72af90d4dd7b25b58797065..43166006fe64c7f5b0f72425272cf15069e7a9e8 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from _emerge.AbstractDepPriority import AbstractDepPriority
index dde662ead9c79cc056b9c5bba48da8f3db50aed1..f30356ea1ba2e688b059fa517bcb5cc50a1c1be5 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from __future__ import print_function
index f00e6ca194aeab9e1df8e5368562e266a9209728..3c40bd8df5c27e8cc540b92a0bb93fcf401ee492 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2010 Gentoo Foundation
+# Copyright 2010-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 import copy
index 276b193b88b7e0da7188ccdced565938cb41efb8..c3540c939df929e4b97e7feee415e5ef9700d891 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2010 Gentoo Foundation
+# Copyright 2010-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from itertools import permutations
index bd3a5f99ea93b0923b774d2aa37e8e6faee47450..027eb33266bf79dca5d954a9a274121e5bf493ec 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2010 Gentoo Foundation
+# Copyright 2010-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from portage.tests import TestCase
index 2185bf791634132d906c95c8e14096837ec22510..9a9e2eeadbe6054c02dee876d82bbea2d8050ccb 100644 (file)
@@ -1,3 +1,6 @@
+# Copyright 2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
 from portage.tests import TestCase
 from portage.tests.resolver.ResolverPlayground import (ResolverPlayground,
        ResolverPlaygroundTestCase)
index 668701cc61d095237008d21499c4b5357c9ab97e..11aec60f52eaf6f692f5764fc7cc77ed9b907b64 100755 (executable)
@@ -1,4 +1,6 @@
 #!/bin/bash
+# Copyright 2010-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
 
 PYTHON_VERSIONS="2.6 2.7 3.1 3.2 3.3"