[icestorm] 53/75: Improved icebox_vlog -P for new iCEcube2

Ruben Undheim rubund-guest at moszumanska.debian.org
Wed Oct 7 15:52:09 UTC 2015


This is an automated email from the git hooks/post-receive script.

rubund-guest pushed a commit to branch master
in repository icestorm.

commit 935621a18d0f50cae7fcb1589bf69ab3e8cf0a68
Author: Clifford Wolf <clifford at clifford.at>
Date:   Wed Aug 26 15:32:52 2015 +0200

    Improved icebox_vlog -P for new iCEcube2
---
 icebox/icebox_vlog.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/icebox/icebox_vlog.py b/icebox/icebox_vlog.py
index f70b66f..feb1023 100755
--- a/icebox/icebox_vlog.py
+++ b/icebox/icebox_vlog.py
@@ -95,10 +95,11 @@ for o, a in opts:
                     p = line[1]
                     if o == "-P":
                         p = p.lower()
-                        p = p.replace("_ibuf", "")
-                        p = p.replace("_obuft", "")
-                        p = p.replace("_obuf", "")
-                        p = p.replace("_gb_io", "")
+                        p = re.sub(r"_ibuf$", "", p)
+                        p = re.sub(r"_obuft$", "", p)
+                        p = re.sub(r"_obuf$", "", p)
+                        p = re.sub(r"_gb_io$", "", p)
+                        p = re.sub(r"_pad(_[0-9]+|)$", r"\1", p)
                     portnames.add(p)
                     if not re.match(r"[a-zA-Z_][a-zA-Z0-9_]*$", p):
                         p = "\\%s " % p

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/icestorm.git



More information about the debian-science-commits mailing list