From d3b9ae79a5f5a807147730264cdceec2107c9c77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Tue, 30 Aug 2016 10:28:18 +0200 Subject: [PATCH] [createiso] Remove unused script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pungi-createiso script should have been removed in f37a14fb, but was forgotten. The script is obsoleted by a new method in which ISOs are created. It's now broken as it calls methods that no longer exist. Signed-off-by: Lubomír Sedlář --- bin/pungi-createiso | 15 --------------- setup.py | 1 - 2 files changed, 16 deletions(-) delete mode 100755 bin/pungi-createiso diff --git a/bin/pungi-createiso b/bin/pungi-createiso deleted file mode 100755 index 46003bd4..00000000 --- a/bin/pungi-createiso +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python2 -# -*- coding: utf-8 -*- - -import os -import sys - -here = sys.path[0] -if here != '/usr/bin': - # Git checkout - sys.path[0] = os.path.dirname(here) - -import pungi.createiso - -if __name__ == '__main__': - pungi.createiso.main() diff --git a/setup.py b/setup.py index 171b762f..5a23a325 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,6 @@ setup( 'bin/comps_filter', 'bin/pungi', 'bin/pungi-config-validate', - 'bin/pungi-createiso', 'bin/pungi-fedmsg-notification', 'bin/pungi-koji', 'bin/pungi-make-ostree',