[Python-apps-commits] r11637 - in packages/mercurial/branches/wheezy/debian/patches (5 files)

vicho at users.alioth.debian.org vicho at users.alioth.debian.org
Sun Dec 21 18:52:33 UTC 2014


    Date: Sunday, December 21, 2014 @ 18:52:32
  Author: vicho
Revision: 11637

Add DEP-3 headers

Modified:
  packages/mercurial/branches/wheezy/debian/patches/from_upstream__darwin_omit_ignorable_codepoints_when_normcaseing_a_file_path.patch
  packages/mercurial/branches/wheezy/debian/patches/from_upstream__encoding_add_hfsignoreclean_to_clean_out_HFS-ignored_characters.patch
  packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_Windows_shortname_aliases.patch
  packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_codepoints_ignored_on_OS_X.patch
  packages/mercurial/branches/wheezy/debian/patches/from_upstream__test-casefolding_t_demonstrate_a_bug_with_HFS_ignoring_some_codepoints.patch

Modified: packages/mercurial/branches/wheezy/debian/patches/from_upstream__darwin_omit_ignorable_codepoints_when_normcaseing_a_file_path.patch
===================================================================
--- packages/mercurial/branches/wheezy/debian/patches/from_upstream__darwin_omit_ignorable_codepoints_when_normcaseing_a_file_path.patch	2014-12-21 18:35:04 UTC (rev 11636)
+++ packages/mercurial/branches/wheezy/debian/patches/from_upstream__darwin_omit_ignorable_codepoints_when_normcaseing_a_file_path.patch	2014-12-21 18:52:32 UTC (rev 11637)
@@ -1,15 +1,11 @@
-# HG changeset patch
-# User Augie Fackler <raf at durin42.com>
-# Date 1418753230 18000
-#      Tue Dec 16 13:07:10 2014 -0500
-# Branch stable
-# Node ID 7a5bcd471f2ef302613b8551a79081d46d04be6e
-# Parent  885bd7c5c7e3efc10081c09c11e538a3fa19ace4
-darwin: omit ignorable codepoints when normcase()ing a file path
+Origin: http://selenic.com/repo/hg-stable/rev/7a5bcd471f2e
+Description: darwin: omit ignorable codepoints when normcase()ing a file path
+ This lets us avoid some nasty case collision problems in OS X with
+ invisible codepoints.
+ .
+ This is a fix for CVE-2014-9390
+Applied-Upstream: 3.2.3
 
-This lets us avoid some nasty case collision problems in OS X with
-invisible codepoints.
-
 --- a/mercurial/posix.py
 +++ b/mercurial/posix.py
 @@ -191,7 +191,9 @@ if sys.platform == 'darwin':

Modified: packages/mercurial/branches/wheezy/debian/patches/from_upstream__encoding_add_hfsignoreclean_to_clean_out_HFS-ignored_characters.patch
===================================================================
--- packages/mercurial/branches/wheezy/debian/patches/from_upstream__encoding_add_hfsignoreclean_to_clean_out_HFS-ignored_characters.patch	2014-12-21 18:35:04 UTC (rev 11636)
+++ packages/mercurial/branches/wheezy/debian/patches/from_upstream__encoding_add_hfsignoreclean_to_clean_out_HFS-ignored_characters.patch	2014-12-21 18:52:32 UTC (rev 11637)
@@ -1,19 +1,15 @@
-# HG changeset patch
-# User Augie Fackler <raf at durin42.com>
-# Date 1418753201 18000
-#      Tue Dec 16 13:06:41 2014 -0500
-# Branch stable
-# Node ID 885bd7c5c7e3efc10081c09c11e538a3fa19ace4
-# Parent  035434b407be60e5ae7a0da56f9d7a187a6bef5a
-encoding: add hfsignoreclean to clean out HFS-ignored characters
+Origin: http://selenic.com/repo/hg-stable/rev/885bd7c5c7e3
+Description: encoding: add hfsignoreclean to clean out HFS-ignored characters
+ According to Apple Technote 1150 (unavailable from Apple as far as I
+ can tell, but archived in several places online), HFS+ ignores sixteen
+ specific unicode runes when doing path normalization. We need to
+ handle those cases, so this function lets us efficiently strip the
+ offending characters from a UTF-8 encoded string (which is the only
+ way it seems to matter on OS X.)
+ .
+ This is a fix for CVE-2014-9390
+Applied-Upstream: 3.2.3
 
-According to Apple Technote 1150 (unavailable from Apple as far as I
-can tell, but archived in several places online), HFS+ ignores sixteen
-specific unicode runes when doing path normalization. We need to
-handle those cases, so this function lets us efficiently strip the
-offending characters from a UTF-8 encoded string (which is the only
-way it seems to matter on OS X.)
-
 --- a/mercurial/encoding.py
 +++ b/mercurial/encoding.py
 @@ -8,6 +8,28 @@

Modified: packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_Windows_shortname_aliases.patch
===================================================================
--- packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_Windows_shortname_aliases.patch	2014-12-21 18:35:04 UTC (rev 11636)
+++ packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_Windows_shortname_aliases.patch	2014-12-21 18:52:32 UTC (rev 11637)
@@ -1,11 +1,7 @@
-# HG changeset patch
-# User Matt Mackall <mpm at selenic.com>
-# Date 1418933908 21600
-#      Thu Dec 18 14:18:28 2014 -0600
-# Branch stable
-# Node ID 6dad422ecc5adb63d9fa649eeb8e05a5f9bc4900
-# Parent  c02a05cc6f5e661b09b0b0c65ec7bc874e161f9c
-pathauditor: check for Windows shortname aliases
+Origin: http://selenic.com/repo/hg-stable/rev/6dad422ecc5a
+Description: pathauditor: check for Windows shortname aliases
+ This is a fix for CVE-2014-9390
+Applied-Upstream: 3.2.3
 
 --- a/tests/test-commit.t
 +++ b/tests/test-commit.t

Modified: packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_codepoints_ignored_on_OS_X.patch
===================================================================
--- packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_codepoints_ignored_on_OS_X.patch	2014-12-21 18:35:04 UTC (rev 11636)
+++ packages/mercurial/branches/wheezy/debian/patches/from_upstream__pathauditor_check_for_codepoints_ignored_on_OS_X.patch	2014-12-21 18:52:32 UTC (rev 11637)
@@ -1,11 +1,7 @@
-# HG changeset patch
-# User Augie Fackler <raf at durin42.com>
-# Date 1418753297 18000
-#      Tue Dec 16 13:08:17 2014 -0500
-# Branch stable
-# Node ID c02a05cc6f5e661b09b0b0c65ec7bc874e161f9c
-# Parent  7a5bcd471f2ef302613b8551a79081d46d04be6e
-pathauditor: check for codepoints ignored on OS X
+Origin: http://selenic.com/repo/hg-stable/rev/c02a05cc6f5e
+Description: pathauditor: check for codepoints ignored on OS X
+ This is a fix for CVE-2014-9390
+Applied-Upstream: 3.2.3
 
 --- a/tests/test-commit.t
 +++ b/tests/test-commit.t

Modified: packages/mercurial/branches/wheezy/debian/patches/from_upstream__test-casefolding_t_demonstrate_a_bug_with_HFS_ignoring_some_codepoints.patch
===================================================================
--- packages/mercurial/branches/wheezy/debian/patches/from_upstream__test-casefolding_t_demonstrate_a_bug_with_HFS_ignoring_some_codepoints.patch	2014-12-21 18:35:04 UTC (rev 11636)
+++ packages/mercurial/branches/wheezy/debian/patches/from_upstream__test-casefolding_t_demonstrate_a_bug_with_HFS_ignoring_some_codepoints.patch	2014-12-21 18:52:32 UTC (rev 11637)
@@ -1,11 +1,7 @@
-# HG changeset patch
-# User Augie Fackler <raf at durin42.com>
-# Date 1418330569 18000
-#      Thu Dec 11 15:42:49 2014 -0500
-# Branch stable
-# Node ID 035434b407be60e5ae7a0da56f9d7a187a6bef5a
-# Parent  6f53629ad2733199ae2194bfb33569cf7b2fef1d
-test-casefolding.t: demonstrate a bug with HFS+ ignoring some codepoints
+Origin: http://selenic.com/repo/hg-stable/rev/035434b407be
+Description: test-casefolding.t: demonstrate a bug with HFS+ ignoring some codepoints
+ This is a fix for CVE-2014-9390
+Applied-Upstream: 3.2.3
 
 --- a/tests/test-casefolding.t
 +++ b/tests/test-casefolding.t




More information about the Python-apps-commits mailing list