public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/
  2014-08-19 14:01 [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/ Anthony G. Basile
@ 2014-08-03 12:37 ` Anthony G. Basile
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2014-08-03 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     8ecc1b4d926d7bb1e53d615f31691da67640d767
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  3 12:38:44 2014 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/
@ 2014-08-19 14:01 Anthony G. Basile
  2014-08-03 12:37 ` Anthony G. Basile
  0 siblings, 1 reply; 2+ messages in thread
From: Anthony G. Basile @ 2014-08-19 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     8ecc1b4d926d7bb1e53d615f31691da67640d767
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  3 12:38:44 2014 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-08-19 14:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-19 14:01 [gentoo-commits] proj/elfix:master commit in: scripts/, pocs/link-graph/__pycache__/ Anthony G. Basile
2014-08-03 12:37 ` Anthony G. Basile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox