aboutsummaryrefslogtreecommitdiffstats
path: root/abbrevURL
diff options
context:
space:
mode:
Diffstat (limited to 'abbrevURL')
-rwxr-xr-xabbrevURL13
1 files changed, 13 insertions, 0 deletions
diff --git a/abbrevURL b/abbrevURL
index 98e0117..59ef2b0 100755
--- a/abbrevURL
+++ b/abbrevURL
@@ -35,5 +35,18 @@ str = str:gsub("https?://jira.suse.com/browse/(%a+)", "jsc#%1")
str = str:gsub("https?://bugs.python.org/issue(%d+)", "bpo#%1")
str = str:gsub("https?://bugs.launchpad.net/.+/%+bug/(%d+)", "lp#%1")
str = str:gsub("https?://www.python.org/dev/peps/pep%-(%d+)/?", "pep#%1")
+str = str:gsub("https?://svn.boost.org/trac/boost/(%d+)", "boost#%1")
+str = str:gsub("https?://rt.cpan.org/Public/(%d+)", "RT#%1")
+str = str:gsub("https?://bugs.debian.org/(%d+)", "deb#%1")
+str = str:gsub("https?://bugs.freedesktop.org/(%d+)", "fdo#%1")
+str = str:gsub("https?://gitlab.freedesktop.org/(%a+)/issues/(%d+)", "glfo#%1#%2")
+str = str:gsub("https?://gcc.gnu.org/bugzilla/(%d+)", "gcc#%1")
+str = str:gsub("https?://gitlab.gnome.org/(%a+)/issues/(%d+)", "glgo#%1#%2")
+str = str:gsub("https?://bugs.kde.org/(%d+)", "kde#%1")
+str = str:gsub("https?://api.github.com/repos/openSUSE/open-build-service/issues/(%d+)", "obs#%1")
+str = str:gsub("https?://api.github.com/repos/openSUSE/obs-build/issues/(%d+)", "build#%1")
+str = str:gsub("https?://api.github.com/repos/openSUSE/osc/issues/(%d+)", "osc#%1")
+str = str:gsub("https?://progress.opensuse.org/issues/(%d+)", "poo#%1")
+str = str:gsub("https?://developerbugs.linux-foundation.org/(%d+)", "lf#%1")
print(str)