From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5ABFA138A2F for ; Tue, 19 Aug 2014 14:01:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A264AE0913; Tue, 19 Aug 2014 14:01:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 062E7E0913 for ; Tue, 19 Aug 2014 14:01:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31EEB34025E for ; Tue, 19 Aug 2014 14:01:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89F8F3900 for ; Tue, 19 Aug 2014 14:01:46 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1407069524.8ecc1b4d926d7bb1e53d615f31691da67640d767.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/ X-VCS-Repository: proj/elfix X-VCS-Files: pocs/link-graph/__pycache__/link_graph.cpython-33.pyc scripts/revdep-pax X-VCS-Directories: scripts/ pocs/link-graph/__pycache__/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8ecc1b4d926d7bb1e53d615f31691da67640d767 X-VCS-Branch: master Date: Tue, 19 Aug 2014 14:01:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6f9d7844-d51c-4a6e-a075-3cb190fdc684 X-Archives-Hash: c08ffd0596425f16eba13ee0258cbe64 commit: 8ecc1b4d926d7bb1e53d615f31691da67640d767 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Aug 3 12:38:44 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Aug 3 12:38:44 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=8ecc1b4d scripts/revdep-pax: rename 'maps' -> 'graph' --- pocs/link-graph/__pycache__/link_graph.cpython-33.pyc | Bin 6588 -> 0 bytes scripts/revdep-pax | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc b/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc deleted file mode 100644 index 400f22e..0000000 Binary files a/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc and /dev/null differ diff --git a/scripts/revdep-pax b/scripts/revdep-pax index 2d9de16..a718fd6 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -43,7 +43,7 @@ def get_input(prompt): return raw_input(prompt) -class LinkMap: +class LinkGraph: def __init__(self): """ Put all the NEEDED.ELF.2 files for all installed packages @@ -203,7 +203,7 @@ class LinkMap: return object_reverse_linkings - def get_maps(self): + def get_graph(self): """ Generate the full forward and reverse links using the above functions """ # After get_object_needed() and get_soname_needed(), both object_linkings and @@ -231,7 +231,7 @@ def print_problems(sonames_missing_library): def run_forward(verbose): (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() sonames_missing_library = [] @@ -279,7 +279,7 @@ def run_forward(verbose): def run_reverse(verbose, executable_only): (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() shell_path = os.getenv('PATH').split(':') @@ -402,7 +402,7 @@ def run_elf(elf, verbose, mark, allyes): return (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() mismatched_libraries = [] @@ -465,7 +465,7 @@ def run_soname(name, verbose, use_soname, mark, allyes, executable_only): shell_path = os.getenv('PATH').split(':') (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_maps() if use_soname: soname = name From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F3AF91391DB for ; Sun, 3 Aug 2014 12:37:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05EB9E08CD; Sun, 3 Aug 2014 12:37:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D45CE08CD for ; Sun, 3 Aug 2014 12:37:14 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD88033FD8A for ; Sun, 3 Aug 2014 12:37:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 73EC118810 for ; Sun, 3 Aug 2014 12:37:12 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1407069524.8ecc1b4d926d7bb1e53d615f31691da67640d767.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/ X-VCS-Repository: proj/elfix X-VCS-Files: pocs/link-graph/__pycache__/link_graph.cpython-33.pyc scripts/revdep-pax X-VCS-Directories: scripts/ pocs/link-graph/__pycache__/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8ecc1b4d926d7bb1e53d615f31691da67640d767 X-VCS-Branch: master Date: Sun, 3 Aug 2014 12:37:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ab349c63-7fcc-45ab-8871-4b49d0fe80bd X-Archives-Hash: 99f80b8d2dbe021fa08a7dad18fe2190 Message-ID: <20140803123712.HUWDYlH3jkcJpey6WLQZpthm9sWrFZTAY1WQAZxGL1M@z> commit: 8ecc1b4d926d7bb1e53d615f31691da67640d767 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Aug 3 12:38:44 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Aug 3 12:38:44 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=8ecc1b4d scripts/revdep-pax: rename 'maps' -> 'graph' --- pocs/link-graph/__pycache__/link_graph.cpython-33.pyc | Bin 6588 -> 0 bytes scripts/revdep-pax | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc b/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc deleted file mode 100644 index 400f22e..0000000 Binary files a/pocs/link-graph/__pycache__/link_graph.cpython-33.pyc and /dev/null differ diff --git a/scripts/revdep-pax b/scripts/revdep-pax index 2d9de16..a718fd6 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -43,7 +43,7 @@ def get_input(prompt): return raw_input(prompt) -class LinkMap: +class LinkGraph: def __init__(self): """ Put all the NEEDED.ELF.2 files for all installed packages @@ -203,7 +203,7 @@ class LinkMap: return object_reverse_linkings - def get_maps(self): + def get_graph(self): """ Generate the full forward and reverse links using the above functions """ # After get_object_needed() and get_soname_needed(), both object_linkings and @@ -231,7 +231,7 @@ def print_problems(sonames_missing_library): def run_forward(verbose): (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() sonames_missing_library = [] @@ -279,7 +279,7 @@ def run_forward(verbose): def run_reverse(verbose, executable_only): (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() shell_path = os.getenv('PATH').split(':') @@ -402,7 +402,7 @@ def run_elf(elf, verbose, mark, allyes): return (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_graph() mismatched_libraries = [] @@ -465,7 +465,7 @@ def run_soname(name, verbose, use_soname, mark, allyes, executable_only): shell_path = os.getenv('PATH').split(':') (object_linkings, object_reverse_linkings, - library2soname, soname2library) = LinkMap().get_maps() + library2soname, soname2library) = LinkGraph().get_maps() if use_soname: soname = name