From ed40676841e317a2aafa04c4c804bb6043864740 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 26 Feb 2016 23:50:05 +0000 Subject: repo cleanup...drop old ebuilds, drop ebuilds already in portage tree --- .../python-report/files/bugs.kogaion.org.ini | 9 ---- .../python-report/files/bugs.rogentos.ro.ini | 9 ---- .../files/python-report-0.10-disable-rpm.patch | 20 -------- .../python-report-0.10-fix-version-detection.patch | 22 --------- .../python-report-0.10-kogaion-defaults.patch | 54 --------------------- .../files/python-report-0.23-disable-Werror.patch | 9 ---- .../files/python-report-0.23-disable-rpm.patch | 19 -------- .../files/python-report-0.23-kogaion-config.patch | 55 ---------------------- 8 files changed, 197 deletions(-) delete mode 100644 dev-python/python-report/files/bugs.kogaion.org.ini delete mode 100644 dev-python/python-report/files/bugs.rogentos.ro.ini delete mode 100644 dev-python/python-report/files/python-report-0.10-disable-rpm.patch delete mode 100644 dev-python/python-report/files/python-report-0.10-fix-version-detection.patch delete mode 100644 dev-python/python-report/files/python-report-0.10-kogaion-defaults.patch delete mode 100644 dev-python/python-report/files/python-report-0.23-disable-Werror.patch delete mode 100644 dev-python/python-report/files/python-report-0.23-disable-rpm.patch delete mode 100644 dev-python/python-report/files/python-report-0.23-kogaion-config.patch (limited to 'dev-python/python-report/files') diff --git a/dev-python/python-report/files/bugs.kogaion.org.ini b/dev-python/python-report/files/bugs.kogaion.org.ini deleted file mode 100644 index 2bb98c9c..00000000 --- a/dev-python/python-report/files/bugs.kogaion.org.ini +++ /dev/null @@ -1,9 +0,0 @@ -[bugs.rogentos.ro] -# template -template=bugzilla-template - -# rhbz url -bugzilla_host=bugs.rogentos.ro - -# rhbz login, a password is always asked. -# username=user@example.com diff --git a/dev-python/python-report/files/bugs.rogentos.ro.ini b/dev-python/python-report/files/bugs.rogentos.ro.ini deleted file mode 100644 index 2bb98c9c..00000000 --- a/dev-python/python-report/files/bugs.rogentos.ro.ini +++ /dev/null @@ -1,9 +0,0 @@ -[bugs.rogentos.ro] -# template -template=bugzilla-template - -# rhbz url -bugzilla_host=bugs.rogentos.ro - -# rhbz login, a password is always asked. -# username=user@example.com diff --git a/dev-python/python-report/files/python-report-0.10-disable-rpm.patch b/dev-python/python-report/files/python-report-0.10-disable-rpm.patch deleted file mode 100644 index 501bb703..00000000 --- a/dev-python/python-report/files/python-report-0.10-disable-rpm.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -Nurp python-report-0.10.orig/python/report/templates/bugzilla-template/__init__.py python-report-0.10/python/report/templates/bugzilla-template/__init__.py ---- python-report-0.10.orig/python/report/templates/bugzilla-template/__init__.py 2010-04-02 19:32:19.729109477 +0200 -+++ python-report-0.10/python/report/templates/bugzilla-template/__init__.py 2010-04-02 19:32:54.640917830 +0200 -@@ -106,7 +106,6 @@ import filer - def sendToBugzilla(component, signature, io, bzfiler, - optionsDict, fileName, fileDescription): - -- import rpmUtils.arch - - class BugzillaCommunicationException (Exception): - pass -@@ -204,7 +203,7 @@ def sendToBugzilla(component, signature, - bug = withBugzillaDo(bzfiler, lambda b: b.createbug(product=bzfiler.getproduct(), - component=component, - version=bzfiler.getversion(), -- platform=rpmUtils.arch.getBaseArch(), -+ # platform=rpmUtils.arch.getBaseArch(), - bug_severity="medium", - priority="medium", - op_sys="Linux", diff --git a/dev-python/python-report/files/python-report-0.10-fix-version-detection.patch b/dev-python/python-report/files/python-report-0.10-fix-version-detection.patch deleted file mode 100644 index d8f9b955..00000000 --- a/dev-python/python-report/files/python-report-0.10-fix-version-detection.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Nurp python-report-0.10.orig//python/report/templates/bugzilla-template/filer.py python-report-0.10/python/report/templates/bugzilla-template/filer.py ---- python-report-0.10.orig//python/report/templates/bugzilla-template/filer.py 2010-04-13 23:08:08.849090647 +0200 -+++ python-report-0.10/python/report/templates/bugzilla-template/filer.py 2010-04-13 23:09:20.799052132 +0200 -@@ -61,15 +61,11 @@ def getVersion(): - if os.path.exists(SYSTEM_VERSION_PATH): - file = open(SYSTEM_VERSION_PATH, "r") - content = file.read() -- if content.find("Rawhide") > -1: -- return "rawhide" -- -- clist = content.split(" ") -- i = clist.index("release") -- return clist[i+1] -+ file.close() -+ return content.strip().split()[-1] - else: - # default to rawhide -- return "rawhide" -+ return "unknown" - - class LoginError(Exception): - """An error occurred while logging into the bug reporting system.""" diff --git a/dev-python/python-report/files/python-report-0.10-kogaion-defaults.patch b/dev-python/python-report/files/python-report-0.10-kogaion-defaults.patch deleted file mode 100644 index cc158652..00000000 --- a/dev-python/python-report/files/python-report-0.10-kogaion-defaults.patch +++ /dev/null @@ -1,54 +0,0 @@ -diff -Nurp python-report-0.10.orig/python/report/templates/bugzilla-template/__init__.py python-report-0.10/python/report/templates/bugzilla-template/__init__.py ---- python-report-0.10.orig/python/report/templates/bugzilla-template/__init__.py 2010-04-02 18:46:19.862030189 +0200 -+++ python-report-0.10/python/report/templates/bugzilla-template/__init__.py 2010-04-02 18:56:47.102924468 +0200 -@@ -55,10 +55,10 @@ def displayURL(optionsDict): - def bugURL(optionsDict): - if 'bugURL' in optionsDict: - return optionsDict["bugURL"] -- host = "bugzilla.redhat.com" -+ host = "bugs.rogentos.ro" - if 'bugzilla_host' in optionsDict: - host = optionsDict["bugzilla_host"] -- return "https://" + host + "/xmlrpc.cgi" -+ return "http://" + host + "/xmlrpc.cgi" - - def report(signature, io, optionsDict): - if not io: -@@ -130,8 +130,8 @@ def sendToBugzilla(component, signature, - - try: - if not bzfiler: -- bzfiler = filer.BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi", -- "http://bugzilla.redhat.com", -+ bzfiler = filer.BugzillaFiler("http://bugs.rogentos.ro/xmlrpc.cgi", -+ "http://bugs.rogentos.ro", - filer.getVersion(), filer.getProduct()) - - if not bzfiler or not bzfiler.supportsFiling() or not bzfiler.bugUrl: -diff -Nurp python-report-0.10.orig/python/report/templates/RHEL-template/__init__.py python-report-0.10/python/report/templates/RHEL-template/__init__.py ---- python-report-0.10.orig/python/report/templates/RHEL-template/__init__.py 2010-04-02 18:46:19.862030189 +0200 -+++ python-report-0.10/python/report/templates/RHEL-template/__init__.py 2010-04-02 18:56:33.214921519 +0200 -@@ -55,10 +55,10 @@ def displayURL(optionsDict): - def bugURL(optionsDict): - if optionsDict.has_key("bugURL"): - return optionsDict["bugURL"] -- host = "bugzilla.redhat.com" -+ host = "bugs.rogentos.ro" - if optionsDict.has_key("bugzilla_host"): - host = optionsDict["bugzilla_host"] -- return "https://" + host + "/xmlrpc.cgi" -+ return "http://" + host + "/xmlrpc.cgi" - - def report(signature, io, optionsDict): - if not io: -@@ -131,8 +131,8 @@ def sendToBugzilla( component, hashmarke - - try: - if not bzfiler: -- bzfiler = filer.BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi", -- "http://bugzilla.redhat.com", -+ bzfiler = filer.BugzillaFiler("http://bugs.rogentos.ro/xmlrpc.cgi", -+ "http://bugs.rogentos.ro", - filer.getVersion(), filer.getProduct()) - - if not bzfiler or not bzfiler.supportsFiling() or not bzfiler.bugUrl: diff --git a/dev-python/python-report/files/python-report-0.23-disable-Werror.patch b/dev-python/python-report/files/python-report-0.23-disable-Werror.patch deleted file mode 100644 index e4bdc909..00000000 --- a/dev-python/python-report/files/python-report-0.23-disable-Werror.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -1,5 +1,5 @@ - AC_INIT([report], [0.23]) --AM_INIT_AUTOMAKE([-Wall -Werror foreign]) -+AM_INIT_AUTOMAKE([-Wall foreign]) - AC_PROG_CC - AC_PROG_CXX - AC_PROG_LIBTOOL diff --git a/dev-python/python-report/files/python-report-0.23-disable-rpm.patch b/dev-python/python-report/files/python-report-0.23-disable-rpm.patch deleted file mode 100644 index 4a110930..00000000 --- a/dev-python/python-report/files/python-report-0.23-disable-rpm.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/python/report/plugins/bugzilla/__init__.py -+++ b/python/report/plugins/bugzilla/__init__.py -@@ -115,8 +115,6 @@ import filer - def sendToBugzilla(component, signature, io, bzfiler, - optionsDict, fileName, fileDescription): - -- import rpmUtils.arch -- - class BugzillaCommunicationException (Exception): - pass - -@@ -298,7 +296,6 @@ def sendToBugzilla(component, signature, - product=bzfiler.getproduct(), - component=component, - version=bzfiler.getversion(), -- platform=rpmUtils.arch.getBaseArch(), - bug_severity="medium", - priority="medium", - op_sys="Linux", diff --git a/dev-python/python-report/files/python-report-0.23-kogaion-config.patch b/dev-python/python-report/files/python-report-0.23-kogaion-config.patch deleted file mode 100644 index dcc99773..00000000 --- a/dev-python/python-report/files/python-report-0.23-kogaion-config.patch +++ /dev/null @@ -1,55 +0,0 @@ ---- a/etc/Makefile.am -+++ b/etc/Makefile.am -@@ -1,11 +1,9 @@ - nobase_dist_sysconf_DATA = \ --report.d/bugzilla.redhat.com.conf \ --report.d/RHEL-bugzilla.redhat.com.conf \ -+report.d/bugs.rogentos.ro.conf \ - report.conf \ - report.d/ftp.conf \ - report.d/scp.conf \ - report.d/localsave.conf \ --report.d/strata-test.conf \ --report.d/RHEL.conf -+report.d/strata-test.conf - - dist_man_MANS = report.conf.5 ---- a/etc/report.d/bugs.rogentos.ro.conf -+++ b/etc/report.d/bugs.rogentos.ro.conf -@@ -0,0 +1,7 @@ -+[bugs.rogentos.ro] -+# plugin -+plugin=bugzilla -+ -+# rhbz url -+bugzilla_host=bugs.rogentos.ro -+ ---- a/python/report/plugins/bugzilla/__init__.py -+++ b/python/report/plugins/bugzilla/__init__.py -@@ -1,5 +1,5 @@ - """ -- A Report plugin to send a report to bugzilla.redhat.com. -+ A Report plugin to send a report to bugs.rogentos.ro. - Copyright (C) 2009 Red Hat, Inc - - Author(s): Gavin Romig-Koch -@@ -54,7 +54,7 @@ def displayURL(optionsDict): - def bugURL(optionsDict): - if 'bugURL' in optionsDict: - return optionsDict["bugURL"] -- host = "bugzilla.redhat.com" -+ host = "bugs.rogentos.ro" - if 'bugzilla_host' in optionsDict: - host = optionsDict["bugzilla_host"] - return "https://" + host + "/xmlrpc.cgi" -@@ -149,8 +149,8 @@ def sendToBugzilla(component, signature, - else: - version = filer.getVersion() - -- bzfiler = filer.BugzillaFiler("https://bugzilla.redhat.com/xmlrpc.cgi", -- "http://bugzilla.redhat.com", -+ bzfiler = filer.BugzillaFiler("https://bugs.rogentos.ro/xmlrpc.cgi", -+ "http://bugs.rogentos.ro", - version, product) - - if not bzfiler or not bzfiler.supportsFiling() or not bzfiler.bugUrl: -- cgit v1.2.3