From d6fd66b52f5a4b458c3bd3976c35fc619d6c4d1e Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Tue, 20 Jan 2026 10:50:33 +0100 Subject: [PATCH] chore: remove obsolete and broken blueprint for inkscape we used o install inkscape in binary package on Windows Signed-off-by: Matthieu Gallien --- binary/_win/info.ini | 3 -- binary/_win/inkscape/blacklist.txt | 65 ------------------------------ binary/_win/inkscape/inkscape.py | 27 ------------- 3 files changed, 95 deletions(-) delete mode 100644 binary/_win/info.ini delete mode 100644 binary/_win/inkscape/blacklist.txt delete mode 100644 binary/_win/inkscape/inkscape.py diff --git a/binary/_win/info.ini b/binary/_win/info.ini deleted file mode 100644 index b4738bc..0000000 --- a/binary/_win/info.ini +++ /dev/null @@ -1,3 +0,0 @@ -[General] -platforms = windows -pathOverride = binary diff --git a/binary/_win/inkscape/blacklist.txt b/binary/_win/inkscape/blacklist.txt deleted file mode 100644 index 6087af7..0000000 --- a/binary/_win/inkscape/blacklist.txt +++ /dev/null @@ -1,65 +0,0 @@ -# blacklist - -# general -manifest/.* -.*\.exp -.*\.pdb -.*\.la -.*\.nsis -.*\.prl - -# multiple docs -doc/.* -share/man/.* -man/.* -share/xml/.* -share/locale/.* - -# cmake stuff -share/apps/cmake/.* - -# Unused Qt modules -qml/QtWebChannel -qml/QtWebKit -qml/QtTest -qml/Qt3D -qml/QtWebView -qml/QtBluetooth -qml/QtCharts -qml/QtGamepad -qml/QtCanvas3D -qml/QtDataVisualization -qml/QtLocation -qml/QtNfc - -# unrelated -dev-utils/.* -share/dbus-1/services/.* -share/pkgconfig/.* - -# cleanup breeze stuff -share/wallpapers/.* -share/icons/Breeze_Snow/.* -share/icons/breeze-dark/.* - -# cut the big oxygen icons: this can lead to errors though if used!!!! -share/icons/oxygen/64x64/.* -share/icons/oxygen/128x128/.* -share/icons/oxygen/256x256/.* - -# doubled qt dlls -lib/[^/]*\.dll -# more qt leftovers -translations/.* -phrasebooks/.* -mkspecs/.* - -# unneeded stuff from bin\ -bin/qt\.conf -bin/syncqt\.pl - -NEWS.md -README.md -Run Inkscape !.bat -Run Inkscape and create debug trace.bat -Run Inkscape with GTK Inspector.bat diff --git a/binary/_win/inkscape/inkscape.py b/binary/_win/inkscape/inkscape.py deleted file mode 100644 index 08af7bb..0000000 --- a/binary/_win/inkscape/inkscape.py +++ /dev/null @@ -1,27 +0,0 @@ -import shutil - -import info -from Package.BinaryPackageBase import * - - -class subinfo(info.infoclass): - def setTargets(self): - self.targets["1.1"] = f"https://inkscape.org/gallery/item/26934/inkscape-1.1-x64.7z" - self.targetInstSrc["1.1"] = f"inkscape" - self.webpage = "https://inkscape.org/" - self.description = "A powerful, free design tool" - - self.defaultTarget = "1.1" - - def setDependencies(self): - self.buildDependencies["virtual/base"] = None - - -class Package(BinaryPackageBase): - def __init__(self): - BinaryPackageBase.__init__(self) - - def install(self): - utils.mergeTree(self.sourceDir(), os.path.join(self.installDir())) - - return True