Guest User

bsnes-qt5 conflicts

a guest
Dec 11th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.42 KB | None | 0 0
  1. [Fri Dec 11 12:19:05] (nepeta@idiotbox ~/git/bsnes-qt5)
  2. $ makepkg -sri
  3. ==> Making package: bsnes-qt5 115-2 (Fri Dec 11 12:38:47 2020)
  4. ==> Checking runtime dependencies...
  5. ==> Checking buildtime dependencies...
  6. ==> Retrieving sources...
  7. -> Downloading v115.tar.gz...
  8. % Total % Received % Xferd Average Speed Time Time Time Current
  9. Dload Upload Total Spent Left Speed
  10. 100 121 100 121 0 0 438 0 --:--:-- --:--:-- --:--:-- 438
  11. 100 4048k 0 4048k 0 0 2417k 0 --:--:-- 0:00:01 --:--:-- 4795k
  12. -> Found package.patch
  13. ==> Validating source files with sha256sums...
  14. v115.tar.gz ... Passed
  15. package.patch ... Passed
  16. ==> Extracting sources...
  17. -> Extracting v115.tar.gz with bsdtar
  18. ==> Starting prepare()...
  19. patching file bsnes/GNUmakefile
  20. Hunk #1 succeeded at 1 with fuzz 2.
  21. patching file bsnes/target-bsnes/GNUmakefile
  22. ==> Starting build()...
  23. make: Entering directory '/home/nepeta/git/bsnes-qt5/src/bsnes-115/bsnes'
  24. Compiling ../hiro/qt/qt.moc ...
  25. Compiling ../hiro/hiro.cpp ...
  26. In file included from ../hiro/core/../qt/platform.cpp:8,
  27. from ../hiro/core/core.cpp:19,
  28. from ../hiro/hiro.cpp:5:
  29. ../hiro/core/../qt/font.cpp: In static member function 'static hiro::Size hiro::pFont::size(const QFont&, const nall::string&)':
  30. ../hiro/core/../qt/font.cpp:14:67: warning: 'int QFontMetrics::width(const QString&, int) const' is deprecated: Use QFontMetrics::horizontalAdvance [-Wdeprecated-declarations]
  31. 14 | maxWidth = max(maxWidth, metrics.width(QString::fromUtf8(line)));
  32. | ^
  33. In file included from /usr/include/qt/QtGui/QtGui:26,
  34. from ../hiro/core/../qt/header.hpp:2,
  35. from ../hiro/core/core.cpp:6,
  36. from ../hiro/hiro.cpp:5:
  37. /usr/include/qt/QtGui/qfontmetrics.h:106:9: note: declared here
  38. 106 | int width(const QString &, int len = -1) const;
  39. | ^~~~~
  40. In file included from ../hiro/core/../qt/platform.cpp:10,
  41. from ../hiro/core/core.cpp:19,
  42. from ../hiro/hiro.cpp:5:
  43. ../hiro/core/../qt/monitor.cpp: In static member function 'static uint hiro::pMonitor::count()':
  44. ../hiro/core/../qt/monitor.cpp:6:47: warning: 'int QDesktopWidget::screenCount() const' is deprecated: Use QGuiApplication::screens() [-Wdeprecated-declarations]
  45. 6 | return QApplication::desktop()->screenCount();
  46. | ^
  47. In file included from /usr/include/qt/QtWidgets/QtWidgets:58,
  48. from ../hiro/core/../qt/header.hpp:4,
  49. from ../hiro/core/core.cpp:6,
  50. from ../hiro/hiro.cpp:5:
  51. /usr/include/qt/QtWidgets/qdesktopwidget.h:118:12: note: declared here
  52. 118 | inline int QDesktopWidget::screenCount() const
  53. | ^~~~~~~~~~~~~~
  54. In file included from ../hiro/core/../qt/platform.cpp:10,
  55. from ../hiro/core/core.cpp:19,
  56. from ../hiro/hiro.cpp:5:
  57. ../hiro/core/../qt/monitor.cpp: In static member function 'static hiro::Geometry hiro::pMonitor::geometry(uint)':
  58. ../hiro/core/../qt/monitor.cpp:18:68: warning: 'const QRect QDesktopWidget::screenGeometry(int) const' is deprecated: Use QGuiApplication::screens() [-Wdeprecated-declarations]
  59. 18 | QRect rectangle = QApplication::desktop()->screenGeometry(monitor);
  60. | ^
  61. In file included from /usr/include/qt/QtWidgets/QtWidgets:58,
  62. from ../hiro/core/../qt/header.hpp:4,
  63. from ../hiro/core/core.cpp:6,
  64. from ../hiro/hiro.cpp:5:
  65. /usr/include/qt/QtWidgets/qdesktopwidget.h:79:67: note: declared here
  66. 79 | T_DEPRECATED_X("Use QGuiApplication::screens()") const QRect screenGeometry(int screen = -1) const;
  67. | ^~~~~~~~~~~~~~
  68.  
  69. In file included from ../hiro/core/../qt/platform.cpp:10,
  70. from ../hiro/core/core.cpp:19,
  71. from ../hiro/hiro.cpp:5:
  72. ../hiro/core/../qt/monitor.cpp: In static member function 'static uint hiro::pMonitor::primary()':
  73. ../hiro/core/../qt/monitor.cpp:23:49: warning: 'int QDesktopWidget::primaryScreen() const' is deprecated: Use QGuiApplication::primaryScreen() [-Wdeprecated-declarations]
  74. 23 | return QApplication::desktop()->primaryScreen();
  75. | ^
  76. In file included from /usr/include/qt/QtWidgets/QtWidgets:58,
  77. from ../hiro/core/../qt/header.hpp:4,
  78. from ../hiro/core/core.cpp:6,
  79. from ../hiro/hiro.cpp:5:
  80. /usr/include/qt/QtWidgets/qdesktopwidget.h:73:65: note: declared here
  81. 73 | QT_DEPRECATED_X("Use QGuiApplication::primaryScreen()") int primaryScreen() const;
  82. | ^~~~~~~~~~~~~
  83.  
  84. In file included from ../hiro/core/../qt/platform.cpp:12,
  85. from ../hiro/core/core.cpp:19,
  86. from ../hiro/hiro.cpp:5:
  87. ../hiro/core/../qt/mouse.cpp: In static member function 'static bool hiro::pMouse::pressed(hiro::Mouse::Button)':
  88. ../hiro/core/../qt/mouse.cpp:14:52: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  89. 14 | case Mouse::Button::Middle: return buttons & Qt::MidButton;
  90. | ^~~~~~~~~
  91. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  92. from /usr/include/qt/QtCore/qstring.h:50,
  93. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  94. from /usr/include/qt/QtWidgets/qapplication.h:44,
  95. from /usr/include/qt/QtWidgets/QApplication:1,
  96. from ../hiro/core/../qt/header.hpp:1,
  97. from ../hiro/core/core.cpp:6,
  98. from ../hiro/hiro.cpp:5:
  99. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  100. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  101. | ^~~~~~~~~
  102. In file included from ../hiro/core/../qt/platform.cpp:20,
  103. from ../hiro/core/core.cpp:19,
  104. from ../hiro/hiro.cpp:5:
  105. ../hiro/core/../qt/window.cpp: In member function 'void hiro::pWindow::setBackgroundColor(hiro::Color)':
  106. ../hiro/core/../qt/window.cpp:104:69: warning: 'QPalette::Background' is deprecated: Use QPalette::Window instead [-Wdeprecated-declarations]
  107. 104 | c auto defaultColor = qtContainer->palette().color(QPalette::Background);
  108. | ^~~~~~~~~~
  109.  
  110. In file included from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:48,
  111. from /usr/include/qt/QtGui/QtGui:5,
  112. from ../hiro/core/../qt/header.hpp:2,
  113. from ../hiro/core/core.cpp:6,
  114. from ../hiro/hiro.cpp:5:
  115. /usr/include/qt/QtGui/qpalette.h:101:22: note: declared here
  116. 101 | Background Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::Window instead") = Window
  117. | ^~~~~~~~~~
  118. In file included from ../hiro/core/../qt/platform.cpp:20,
  119. from ../hiro/core/core.cpp:19,
  120. from ../hiro/hiro.cpp:5:
  121. ../hiro/core/../qt/window.cpp:104:69: warning: 'QPalette::Background' is deprecated: Use QPalette::Window instead [-Wdeprecated-declarations]
  122. 104 | c auto defaultColor = qtContainer->palette().color(QPalette::Background);
  123. | ^~~~~~~~~~
  124.  
  125. In file included from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:48,
  126. from /usr/include/qt/QtGui/QtGui:5,
  127. from ../hiro/core/../qt/header.hpp:2,
  128. from ../hiro/core/core.cpp:6,
  129. from ../hiro/hiro.cpp:5:
  130. /usr/include/qt/QtGui/qpalette.h:101:22: note: declared here
  131. 101 | Background Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::Window instead") = Window
  132. | ^~~~~~~~~~
  133. In file included from ../hiro/core/../qt/platform.cpp:20,
  134. from ../hiro/core/core.cpp:19,
  135. from ../hiro/hiro.cpp:5:
  136. ../hiro/core/../qt/window.cpp:107:30: warning: 'QPalette::Background' is deprecated: Use QPalette::Window instead [-Wdeprecated-declarations]
  137. 107 | palette.setColor(QPalette::Background, CreateColor(color, defaultColor));
  138. | ^~~~~~~~~~
  139. In file included from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:48,
  140. from /usr/include/qt/QtGui/QtGui:5,
  141. from ../hiro/core/../qt/header.hpp:2,
  142. from ../hiro/core/core.cpp:6,
  143. from ../hiro/hiro.cpp:5:
  144. /usr/include/qt/QtGui/qpalette.h:101:22: note: declared here
  145. 101 | Background Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::Window instead") = Window
  146. | ^~~~~~~~~~
  147. In file included from ../hiro/core/../qt/platform.cpp:20,
  148. from ../hiro/core/core.cpp:19,
  149. from ../hiro/hiro.cpp:5:
  150. ../hiro/core/../qt/window.cpp:107:30: warning: 'QPalette::Background' is deprecated: Use QPalette::Window instead [-Wdeprecated-declarations]
  151. 107 | palette.setColor(QPalette::Background, CreateColor(color, defaultColor));
  152. | ^~~~~~~~~~
  153. In file included from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:48,
  154. from /usr/include/qt/QtGui/QtGui:5,
  155. from ../hiro/core/../qt/header.hpp:2,
  156. from ../hiro/core/core.cpp:6,
  157. from ../hiro/hiro.cpp:5:
  158. /usr/include/qt/QtGui/qpalette.h:101:22: note: declared here
  159. 101 | Background Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::Window instead") = Window
  160. | ^~~~~~~~~~
  161. In file included from ../hiro/core/../qt/platform.cpp:36,
  162. from ../hiro/core/core.cpp:19,
  163. from ../hiro/hiro.cpp:5:
  164. ../hiro/core/../qt/widget/canvas.cpp: In member function 'virtual void hiro::QtCanvas::mousePressEvent(QMouseEvent*)':
  165. ../hiro/core/../qt/widget/canvas.cpp:123:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  166. 123 | case Qt::MidButton: p.self().doMousePress(Mouse::Button::Middle); break;
  167. | ^~~~~~~~~
  168. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  169. from /usr/include/qt/QtCore/qstring.h:50,
  170. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  171. from /usr/include/qt/QtWidgets/qapplication.h:44,
  172. from /usr/include/qt/QtWidgets/QApplication:1,
  173. from ../hiro/core/../qt/header.hpp:1,
  174. from ../hiro/core/core.cpp:6,
  175. from ../hiro/hiro.cpp:5:
  176. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  177. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  178. | ^~~~~~~~~
  179. In file included from ../hiro/core/../qt/platform.cpp:36,
  180. from ../hiro/core/core.cpp:19,
  181. from ../hiro/hiro.cpp:5:
  182. ../hiro/core/../qt/widget/canvas.cpp: In member function 'virtual void hiro::QtCanvas::mouseReleaseEvent(QMouseEvent*)':
  183. ../hiro/core/../qt/widget/canvas.cpp:131:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  184. 131 | case Qt::MidButton: p.self().doMouseRelease(Mouse::Button::Middle); break;
  185. | ^~~~~~~~~
  186. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  187. from /usr/include/qt/QtCore/qstring.h:50,
  188. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  189. from /usr/include/qt/QtWidgets/qapplication.h:44,
  190. from /usr/include/qt/QtWidgets/QApplication:1,
  191. from ../hiro/core/../qt/header.hpp:1,
  192. from ../hiro/core/core.cpp:6,
  193. from ../hiro/hiro.cpp:5:
  194. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  195. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  196. | ^~~~~~~~~
  197. In file included from ../hiro/core/../qt/platform.cpp:42,
  198. from ../hiro/core/core.cpp:19,
  199. from ../hiro/hiro.cpp:5:
  200. ../hiro/core/../qt/widget/hex-edit.cpp: In member function 'virtual void hiro::QtHexEdit::wheelEvent(QWheelEvent*)':
  201. ../hiro/core/../qt/widget/hex-edit.cpp:274:25: warning: 'Qt::Orientation QWheelEvent::orientation() const' is deprecated: Use angleDelta() [-Wdeprecated-declarations]
  202. 274 | if(event->orientation() == Qt::Vertical) {
  203. | ^
  204. In file included from /usr/include/qt/QtGui/qtextlayout.h:49,
  205. from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:45,
  206. from /usr/include/qt/QtGui/QtGui:5,
  207. from ../hiro/core/../qt/header.hpp:2,
  208. from ../hiro/core/core.cpp:6,
  209. from ../hiro/hiro.cpp:5:
  210. /usr/include/qt/QtGui/qevent.h:222:28: note: declared here
  211. 222 | inline Qt::Orientation orientation() const { return qt4O; }
  212. | ^~~~~~~~~~~
  213. In file included from ../hiro/core/../qt/platform.cpp:42,
  214. from ../hiro/core/core.cpp:19,
  215. from ../hiro/hiro.cpp:5:
  216. ../hiro/core/../qt/widget/hex-edit.cpp:275:34: warning: 'int QWheelEvent::delta() const' is deprecated: Use angleDelta() [-Wdeprecated-declarations]
  217. 275 | signed offset = event->delta() < 0 ? +1 : -1;
  218. | ^
  219. In file included from /usr/include/qt/QtGui/qtextlayout.h:49,
  220. from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:45,
  221. from /usr/include/qt/QtGui/QtGui:5,
  222. from ../hiro/core/../qt/header.hpp:2,
  223. from ../hiro/core/core.cpp:6,
  224. from ../hiro/hiro.cpp:5:
  225. /usr/include/qt/QtGui/qevent.h:219:16: note: declared here
  226. 219 | inline int delta() const { return qt4D; }
  227. | ^~~~~
  228. In file included from ../hiro/core/../qt/platform.cpp:42,
  229. from ../hiro/core/core.cpp:19,
  230. from ../hiro/hiro.cpp:5:
  231. ../hiro/core/../qt/widget/hex-edit.cpp: In member function 'virtual bool hiro::QtHexEditScrollBar::event(QEvent*)':
  232. ../hiro/core/../qt/widget/hex-edit.cpp:284:32: warning: 'Qt::Orientation QWheelEvent::orientation() const' is deprecated: Use angleDelta() [-Wdeprecated-declarations]
  233. 284 | if(wheelEvent->orientation() == Qt::Vertical) {
  234. | ^
  235. In file included from /usr/include/qt/QtGui/qtextlayout.h:49,
  236. from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:45,
  237. from /usr/include/qt/QtGui/QtGui:5,
  238. from ../hiro/core/../qt/header.hpp:2,
  239. from ../hiro/core/core.cpp:6,
  240. from ../hiro/hiro.cpp:5:
  241. /usr/include/qt/QtGui/qevent.h:222:28: note: declared here
  242. 222 | inline Qt::Orientation orientation() const { return qt4O; }
  243. | ^~~~~~~~~~~
  244. In file included from ../hiro/core/../qt/platform.cpp:42,
  245. from ../hiro/core/core.cpp:19,
  246. from ../hiro/hiro.cpp:5:
  247. ../hiro/core/../qt/widget/hex-edit.cpp:285:41: warning: 'int QWheelEvent::delta() const' is deprecated: Use angleDelta() [-Wdeprecated-declarations]
  248. 285 | signed offset = wheelEvent->delta() < 0 ? +1 : -1;
  249. | ^
  250. In file included from /usr/include/qt/QtGui/qtextlayout.h:49,
  251. from /usr/include/qt/QtGui/qabstracttextdocumentlayout.h:45,
  252. from /usr/include/qt/QtGui/QtGui:5,
  253. from ../hiro/core/../qt/header.hpp:2,
  254. from ../hiro/core/core.cpp:6,
  255. from ../hiro/hiro.cpp:5:
  256. /usr/include/qt/QtGui/qevent.h:219:16: note: declared here
  257. 219 | inline int delta() const { return qt4D; }
  258. | ^~~~~
  259. In file included from ../hiro/core/../qt/platform.cpp:45,
  260. from ../hiro/core/core.cpp:19,
  261. from ../hiro/hiro.cpp:5:
  262. ../hiro/core/../qt/widget/label.cpp: In member function 'virtual void hiro::QtLabel::mousePressEvent(QMouseEvent*)':
  263. ../hiro/core/../qt/widget/label.cpp:46:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  264. 46 | case Qt::MidButton: p.self().doMousePress(Mouse::Button::Middle); break;
  265. | ^~~~~~~~~
  266. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  267. from /usr/include/qt/QtCore/qstring.h:50,
  268. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  269. from /usr/include/qt/QtWidgets/qapplication.h:44,
  270. from /usr/include/qt/QtWidgets/QApplication:1,
  271. from ../hiro/core/../qt/header.hpp:1,
  272. from ../hiro/core/core.cpp:6,
  273. from ../hiro/hiro.cpp:5:
  274. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  275. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  276. | ^~~~~~~~~
  277. In file included from ../hiro/core/../qt/platform.cpp:45,
  278. from ../hiro/core/core.cpp:19,
  279. from ../hiro/hiro.cpp:5:
  280. ../hiro/core/../qt/widget/label.cpp: In member function 'virtual void hiro::QtLabel::mouseReleaseEvent(QMouseEvent*)':
  281. ../hiro/core/../qt/widget/label.cpp:54:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  282. 54 | case Qt::MidButton: p.self().doMouseRelease(Mouse::Button::Middle); break;
  283. | ^~~~~~~~~
  284. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  285. from /usr/include/qt/QtCore/qstring.h:50,
  286. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  287. from /usr/include/qt/QtWidgets/qapplication.h:44,
  288. from /usr/include/qt/QtWidgets/QApplication:1,
  289. from ../hiro/core/../qt/header.hpp:1,
  290. from ../hiro/core/core.cpp:6,
  291. from ../hiro/hiro.cpp:5:
  292. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  293. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  294. | ^~~~~~~~~
  295. In file included from ../hiro/core/../qt/platform.cpp:59,
  296. from ../hiro/core/core.cpp:19,
  297. from ../hiro/hiro.cpp:5:
  298. ../hiro/core/../qt/widget/viewport.cpp: In member function 'virtual void hiro::QtViewport::mousePressEvent(QMouseEvent*)':
  299. ../hiro/core/../qt/widget/viewport.cpp:57:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  300. 57 | case Qt::MidButton: p.self().doMousePress(Mouse::Button::Middle); break;
  301. | ^~~~~~~~~
  302. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  303. from /usr/include/qt/QtCore/qstring.h:50,
  304. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  305. from /usr/include/qt/QtWidgets/qapplication.h:44,
  306. from /usr/include/qt/QtWidgets/QApplication:1,
  307. from ../hiro/core/../qt/header.hpp:1,
  308. from ../hiro/core/core.cpp:6,
  309. from ../hiro/hiro.cpp:5:
  310. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  311. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  312. | ^~~~~~~~~
  313. In file included from ../hiro/core/../qt/platform.cpp:59,
  314. from ../hiro/core/core.cpp:19,
  315. from ../hiro/hiro.cpp:5:
  316. ../hiro/core/../qt/widget/viewport.cpp: In member function 'virtual void hiro::QtViewport::mouseReleaseEvent(QMouseEvent*)':
  317. ../hiro/core/../qt/widget/viewport.cpp:65:12: warning: 'Qt::MidButton' is deprecated: MidButton is deprecated. Use MiddleButton instead [-Wdeprecated-declarations]
  318. 65 | case Qt::MidButton: p.self().doMouseRelease(Mouse::Button::Middle); break;
  319. | ^~~~~~~~~
  320. In file included from /usr/include/qt/QtCore/qbytearray.h:45,
  321. from /usr/include/qt/QtCore/qstring.h:50,
  322. from /usr/include/qt/QtCore/qcoreapplication.h:44,
  323. from /usr/include/qt/QtWidgets/qapplication.h:44,
  324. from /usr/include/qt/QtWidgets/QApplication:1,
  325. from ../hiro/core/../qt/header.hpp:1,
  326. from ../hiro/core/core.cpp:6,
  327. from ../hiro/hiro.cpp:5:
  328. /usr/include/qt/QtCore/qnamespace.h:132:9: note: declared here
  329. 132 | MidButton Q_DECL_ENUMERATOR_DEPRECATED_X("MidButton is deprecated. Use MiddleButton instead") = MiddleButton,
  330. | ^~~~~~~~~
  331. In file included from ../hiro/core/../qt/platform.cpp:61,
  332. from ../hiro/core/core.cpp:19,
  333. from ../hiro/hiro.cpp:5:
  334. ../hiro/core/../qt/application.cpp: In static member function 'static bool hiro::pApplication::pendingEvents()':
  335. ../hiro/core/../qt/application.cpp:26:24: warning: 'static bool QCoreApplication::hasPendingEvents()' is deprecated [-Wdeprecated-declarations]
  336. 26 | return QApplication::hasPendingEvents();
  337. | ^~~~~~~~~~~~~~~~
  338. In file included from /usr/include/qt/QtWidgets/qapplication.h:44,
  339. from /usr/include/qt/QtWidgets/QApplication:1,
  340. from ../hiro/core/../qt/header.hpp:1,
  341. from ../hiro/core/core.cpp:6,
  342. from ../hiro/hiro.cpp:5:
  343. /usr/include/qt/QtCore/qcoreapplication.h:129:31: note: declared here
  344. 129 | QT_DEPRECATED static bool hasPendingEvents();
  345. | ^~~~~~~~~~~~~~~~
  346. In file included from ../hiro/core/../qt/platform.cpp:61,
  347. from ../hiro/core/core.cpp:19,
  348. from ../hiro/hiro.cpp:5:
  349. ../hiro/core/../qt/application.cpp:26:41: warning: 'static bool QCoreApplication::hasPendingEvents()' is deprecated [-Wdeprecated-declarations]
  350. 26 | return QApplication::hasPendingEvents();
  351. | ^
  352. In file included from /usr/include/qt/QtWidgets/qapplication.h:44,
  353. from /usr/include/qt/QtWidgets/QApplication:1,
  354. from ../hiro/core/../qt/header.hpp:1,
  355. from ../hiro/core/core.cpp:6,
  356. from ../hiro/hiro.cpp:5:
  357. /usr/include/qt/QtCore/qcoreapplication.h:129:31: note: declared here
  358. 129 | QT_DEPRECATED static bool hasPendingEvents();
  359. | ^~~~~~~~~~~~~~~~
  360. Compiling ../ruby/ruby.cpp ...
  361. Compiling ../libco/libco.c ...
  362. Compiling emulator/emulator.cpp ...
  363. Compiling filter/filter.cpp ...
  364. Compiling lzma/lzma.cpp ...
  365. Compiling sfc/interface/interface.cpp ...
  366. Compiling sfc/system/system.cpp ...
  367. Compiling sfc/controller/controller.cpp ...
  368. Compiling sfc/cartridge/cartridge.cpp ...
  369. Compiling sfc/memory/memory.cpp ...
  370. Compiling sfc/cpu/cpu.cpp ...
  371. Compiling sfc/smp/smp.cpp ...
  372. Compiling sfc/dsp/dsp.cpp ...
  373. Compiling sfc/ppu/ppu.cpp ...
  374. Compiling sfc/ppu-fast/ppu.cpp ...
  375. Compiling sfc/expansion/expansion.cpp ...
  376. Compiling sfc/coprocessor/coprocessor.cpp ...
  377. Compiling sfc/slot/slot.cpp ...
  378. Compiling gb/Core/apu.c ...
  379. Compiling gb/Core/camera.c ...
  380. Compiling gb/Core/display.c ...
  381. Compiling gb/Core/gb.c ...
  382. Compiling gb/Core/joypad.c ...
  383. Compiling gb/Core/mbc.c ...
  384. Compiling gb/Core/memory.c ...
  385. Compiling gb/Core/printer.c ...
  386. Compiling gb/Core/random.c ...
  387. Compiling gb/Core/rewind.c ...
  388. Compiling gb/Core/save_state.c ...
  389. Compiling gb/Core/sgb.c ...
  390. Compiling gb/Core/sm83_cpu.c ...
  391. Compiling gb/Core/symbol_hash.c ...
  392. Compiling gb/Core/timing.c ...
  393. Compiling processor/arm7tdmi/arm7tdmi.cpp ...
  394. Compiling processor/spc700/spc700.cpp ...
  395. Compiling processor/wdc65816/wdc65816.cpp ...
  396. Compiling target-bsnes/bsnes.cpp ...
  397. Compiling target-bsnes/program/program.cpp ...
  398. Compiling target-bsnes/input/input.cpp ...
  399. Compiling target-bsnes/presentation/presentation.cpp ...
  400. Compiling target-bsnes/settings/settings.cpp ...
  401. Compiling target-bsnes/tools/tools.cpp ...
  402. Compiling target-bsnes/resource/resource.cpp ...
  403. Linking out/bsnes ...
  404. make: Leaving directory '/home/nepeta/git/bsnes-qt5/src/bsnes-115/bsnes'
  405. ==> Entering fakeroot environment...
  406. ==> Starting package()...
  407. make: Entering directory '/home/nepeta/git/bsnes-qt5/src/bsnes-115/bsnes'
  408. Linking out/bsnes ...
  409. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/bin/
  410. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/applications/
  411. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/icons/
  412. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/
  413. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/Database/
  414. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/Firmware/
  415. mkdir -p /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/Shaders/
  416. cp out/bsnes /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/bin/bsnes
  417. cp target-bsnes/resource/bsnes.desktop /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/applications/bsnes.desktop
  418. cp target-bsnes/resource/bsnes.png /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/icons/bsnes.png
  419. cp Database/* /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/Database/
  420. cp -r ../shaders/* /home/nepeta/git/bsnes-qt5/pkg/bsnes-qt5/usr/share/bsnes/Shaders/
  421. make: Leaving directory '/home/nepeta/git/bsnes-qt5/src/bsnes-115/bsnes'
  422. ==> Tidying install...
  423. -> Removing libtool files...
  424. -> Purging unwanted files...
  425. -> Removing static library files...
  426. -> Stripping unneeded symbols from binaries and libraries...
  427. -> Compressing man and info pages...
  428. ==> Checking for packaging issues...
  429. ==> Creating package "bsnes-qt5"...
  430. -> Generating .PKGINFO file...
  431. -> Generating .BUILDINFO file...
  432. -> Generating .MTREE file...
  433. -> Compressing package...
  434. ==> Leaving fakeroot environment.
  435. ==> Finished making: bsnes-qt5 115-2 (Fri Dec 11 12:48:21 2020)
  436. ==> Installing package bsnes-qt5 with pacman -U...
  437. [sudo] password for nepeta:
  438. loading packages...
  439. resolving dependencies...
  440. looking for conflicting packages...
  441.  
  442. Packages (1) bsnes-qt5-115-2
  443.  
  444. Total Installed Size: 14.71 MiB
  445.  
  446. :: Proceed with installation? [Y/n]
  447. (1/1) checking keys in keyring [#######################] 100%
  448. (1/1) checking package integrity [#######################] 100%
  449. (1/1) loading package files [#######################] 100%
  450. (1/1) checking for file conflicts [#######################] 100%
  451. error: failed to commit transaction (conflicting files)
  452. bsnes-qt5: /usr/bin/bsnes exists in filesystem (owned by bsnes-hd)
  453. bsnes-qt5: /usr/share/applications/bsnes.desktop exists in filesystem (owned by bsnes-hd)
  454. bsnes-qt5: /usr/share/bsnes/Database/BS Memory.bml exists in filesystem (owned by bsnes-hd)
  455. bsnes-qt5: /usr/share/bsnes/Database/Cheat Codes.bml exists in filesystem (owned by bsnes-hd)
  456. bsnes-qt5: /usr/share/bsnes/Database/Sufami Turbo.bml exists in filesystem (owned by bsnes-hd)
  457. bsnes-qt5: /usr/share/bsnes/Database/Super Famicom.bml exists in filesystem (owned by bsnes-hd)
  458. bsnes-qt5: /usr/share/bsnes/Shaders/AANN.shader/AANN.fs exists in filesystem (owned by bsnes-hd)
  459. bsnes-qt5: /usr/share/bsnes/Shaders/AANN.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  460. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Geom.shader/crt-geom.fs exists in filesystem (owned by bsnes-hd)
  461. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Geom.shader/crt-geom.vs exists in filesystem (owned by bsnes-hd)
  462. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Geom.shader/curvature.fs exists in filesystem (owned by bsnes-hd)
  463. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Geom.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  464. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/blur_horiz.fs exists in filesystem (owned by bsnes-hd)
  465. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/blur_horiz.vs exists in filesystem (owned by bsnes-hd)
  466. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/blur_vert.fs exists in filesystem (owned by bsnes-hd)
  467. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/blur_vert.vs exists in filesystem (owned by bsnes-hd)
  468. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/gauss_horiz.fs exists in filesystem (owned by bsnes-hd)
  469. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/gauss_horiz.vs exists in filesystem (owned by bsnes-hd)
  470. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/gauss_vert.fs exists in filesystem (owned by bsnes-hd)
  471. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/gauss_vert.vs exists in filesystem (owned by bsnes-hd)
  472. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/lanczos_horiz.fs exists in filesystem (owned by bsnes-hd)
  473. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/lanczos_horiz.vs exists in filesystem (owned by bsnes-hd)
  474. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/linearize.fs exists in filesystem (owned by bsnes-hd)
  475. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/linearize.vs exists in filesystem (owned by bsnes-hd)
  476. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  477. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/resolve.fs exists in filesystem (owned by bsnes-hd)
  478. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/resolve.vs exists in filesystem (owned by bsnes-hd)
  479. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/threshold.fs exists in filesystem (owned by bsnes-hd)
  480. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Glow.shader/threshold.vs exists in filesystem (owned by bsnes-hd)
  481. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Lottes.shader/bloompass.fs exists in filesystem (owned by bsnes-hd)
  482. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Lottes.shader/bloompass.vs exists in filesystem (owned by bsnes-hd)
  483. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Lottes.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  484. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Lottes.shader/scanpass.fs exists in filesystem (owned by bsnes-hd)
  485. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Lottes.shader/scanpass.vs exists in filesystem (owned by bsnes-hd)
  486. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-approx.fs exists in filesystem (owned by bsnes-hd)
  487. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-approx.vs exists in filesystem (owned by bsnes-hd)
  488. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-horizontal-reconstitute.fs exists in filesystem (owned by bsnes-hd)
  489. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-horizontal-reconstitute.vs exists in filesystem (owned by bsnes-hd)
  490. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-vertical.fs exists in filesystem (owned by bsnes-hd)
  491. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/bloom-vertical.vs exists in filesystem (owned by bsnes-hd)
  492. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/blur9fast-horizontal.fs exists in filesystem (owned by bsnes-hd)
  493. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/blur9fast-horizontal.vs exists in filesystem (owned by bsnes-hd)
  494. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/blur9fast-vertical.fs exists in filesystem (owned by bsnes-hd)
  495. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/blur9fast-vertical.vs exists in filesystem (owned by bsnes-hd)
  496. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/brightpass.fs exists in filesystem (owned by bsnes-hd)
  497. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/brightpass.vs exists in filesystem (owned by bsnes-hd)
  498. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/first-pass-linearize-crt-gamma-bob-fields.fs exists in filesystem (owned by bsnes-hd)
  499. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/first-pass-linearize-crt-gamma-bob-fields.vs exists in filesystem (owned by bsnes-hd)
  500. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/geometry-aa-last-pass.fs exists in filesystem (owned by bsnes-hd)
  501. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/geometry-aa-last-pass.vs exists in filesystem (owned by bsnes-hd)
  502. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  503. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/mask-resize-horizontal.fs exists in filesystem (owned by bsnes-hd)
  504. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/mask-resize-horizontal.vs exists in filesystem (owned by bsnes-hd)
  505. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/mask-resize-vertical.fs exists in filesystem (owned by bsnes-hd)
  506. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/mask-resize-vertical.vs exists in filesystem (owned by bsnes-hd)
  507. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/scanlines-horizontal-apply-mask.fs exists in filesystem (owned by bsnes-hd)
  508. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/scanlines-horizontal-apply-mask.vs exists in filesystem (owned by bsnes-hd)
  509. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/scanlines-vertical-interlacing.fs exists in filesystem (owned by bsnes-hd)
  510. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/scanlines-vertical-interlacing.vs exists in filesystem (owned by bsnes-hd)
  511. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearApertureGrille15Wide8And5d5Spacing.png exists in filesystem (owned by bsnes-hd)
  512. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearApertureGrille15Wide8And5d5SpacingResizeTo64.png exists in filesystem (owned by bsnes-hd)
  513. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearShadowMask.png exists in filesystem (owned by bsnes-hd)
  514. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearShadowMaskEDP.png exists in filesystem (owned by bsnes-hd)
  515. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearShadowMaskEDPResizeTo64.png exists in filesystem (owned by bsnes-hd)
  516. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearShadowMaskResizeTo64.png exists in filesystem (owned by bsnes-hd)
  517. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacing.png exists in filesystem (owned by bsnes-hd)
  518. bsnes-qt5: /usr/share/bsnes/Shaders/CRT-Royale.shader/textures/TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacingResizeTo64.png exists in filesystem (owned by bsnes-hd)
  519. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass1.fs exists in filesystem (owned by bsnes-hd)
  520. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass2.fs exists in filesystem (owned by bsnes-hd)
  521. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass2.vs exists in filesystem (owned by bsnes-hd)
  522. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass3.fs exists in filesystem (owned by bsnes-hd)
  523. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass4.fs exists in filesystem (owned by bsnes-hd)
  524. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/GTU-pass4.vs exists in filesystem (owned by bsnes-hd)
  525. bsnes-qt5: /usr/share/bsnes/Shaders/GTU.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  526. bsnes-qt5: /usr/share/bsnes/Shaders/LCD-cgwg.shader/lcd-grid.fs exists in filesystem (owned by bsnes-hd)
  527. bsnes-qt5: /usr/share/bsnes/Shaders/LCD-cgwg.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  528. bsnes-qt5: /usr/share/bsnes/Shaders/LCD-cgwg.shader/motion-blur.fs exists in filesystem (owned by bsnes-hd)
  529. bsnes-qt5: /usr/share/bsnes/Shaders/MDAPT-Dedithering.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  530. bsnes-qt5: /usr/share/bsnes/Shaders/MDAPT-Dedithering.shader/mdapt-pass1.fs exists in filesystem (owned by bsnes-hd)
  531. bsnes-qt5: /usr/share/bsnes/Shaders/MDAPT-Dedithering.shader/mdapt-pass2.fs exists in filesystem (owned by bsnes-hd)
  532. bsnes-qt5: /usr/share/bsnes/Shaders/MDAPT-Dedithering.shader/mdapt-pass3.fs exists in filesystem (owned by bsnes-hd)
  533. bsnes-qt5: /usr/share/bsnes/Shaders/MDAPT-Dedithering.shader/mdapt-pass4.fs exists in filesystem (owned by bsnes-hd)
  534. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC-MAME.shader/mame-ntsc.fs exists in filesystem (owned by bsnes-hd)
  535. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC-MAME.shader/mame-ntsc.vs exists in filesystem (owned by bsnes-hd)
  536. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC-MAME.shader/mame-postproc.fs exists in filesystem (owned by bsnes-hd)
  537. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC-MAME.shader/mame-postproc.vs exists in filesystem (owned by bsnes-hd)
  538. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC-MAME.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  539. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC.shader/gaussian-scanlines.fs exists in filesystem (owned by bsnes-hd)
  540. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  541. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC.shader/ntsc-pass1.fs exists in filesystem (owned by bsnes-hd)
  542. bsnes-qt5: /usr/share/bsnes/Shaders/NTSC.shader/ntsc-pass2.fs exists in filesystem (owned by bsnes-hd)
  543. bsnes-qt5: /usr/share/bsnes/Shaders/PAL-Composite.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  544. bsnes-qt5: /usr/share/bsnes/Shaders/PAL-Composite.shader/pal-r57shell.fs exists in filesystem (owned by bsnes-hd)
  545. bsnes-qt5: /usr/share/bsnes/Shaders/Pixellate.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  546. bsnes-qt5: /usr/share/bsnes/Shaders/Pixellate.shader/pixellate.fs exists in filesystem (owned by bsnes-hd)
  547. bsnes-qt5: /usr/share/bsnes/Shaders/Retro.shader/gamma.fs exists in filesystem (owned by bsnes-hd)
  548. bsnes-qt5: /usr/share/bsnes/Shaders/Retro.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  549. bsnes-qt5: /usr/share/bsnes/Shaders/Retro.shader/retro.fs exists in filesystem (owned by bsnes-hd)
  550. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/advanced-aa.fs exists in filesystem (owned by bsnes-hd)
  551. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/advanced-aa.vs exists in filesystem (owned by bsnes-hd)
  552. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  553. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass0.fs exists in filesystem (owned by bsnes-hd)
  554. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass0.vs exists in filesystem (owned by bsnes-hd)
  555. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass1.fs exists in filesystem (owned by bsnes-hd)
  556. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass1.vs exists in filesystem (owned by bsnes-hd)
  557. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass2.fs exists in filesystem (owned by bsnes-hd)
  558. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass2.vs exists in filesystem (owned by bsnes-hd)
  559. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass3.fs exists in filesystem (owned by bsnes-hd)
  560. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass3.vs exists in filesystem (owned by bsnes-hd)
  561. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass4.fs exists in filesystem (owned by bsnes-hd)
  562. bsnes-qt5: /usr/share/bsnes/Shaders/ScaleFX.shader/scalefx-pass4.vs exists in filesystem (owned by bsnes-hd)
  563. bsnes-qt5: /usr/share/bsnes/Shaders/Sharp-Bilinear.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  564. bsnes-qt5: /usr/share/bsnes/Shaders/Sharp-Bilinear.shader/sharp-bilinear.fs exists in filesystem (owned by bsnes-hd)
  565. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/custom-jinc2-sharper.fs exists in filesystem (owned by bsnes-hd)
  566. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  567. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/super-2xbr-3d-pass0.fs exists in filesystem (owned by bsnes-hd)
  568. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/super-2xbr-3d-pass1.fs exists in filesystem (owned by bsnes-hd)
  569. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/super-2xbr-3d-pass2.fs exists in filesystem (owned by bsnes-hd)
  570. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-480p.shader/super-2xbr-3d-pass2.vs exists in filesystem (owned by bsnes-hd)
  571. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/custom-jinc2-sharper.fs exists in filesystem (owned by bsnes-hd)
  572. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  573. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/super-4xbr-3d-pass0.fs exists in filesystem (owned by bsnes-hd)
  574. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/super-4xbr-3d-pass1.fs exists in filesystem (owned by bsnes-hd)
  575. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/super-4xbr-3d-pass2.fs exists in filesystem (owned by bsnes-hd)
  576. bsnes-qt5: /usr/share/bsnes/Shaders/xBR-mode7-960p.shader/super-4xbr-3d-pass3.fs exists in filesystem (owned by bsnes-hd)
  577. bsnes-qt5: /usr/share/bsnes/Shaders/xBRZ.shader/fxaa.fs exists in filesystem (owned by bsnes-hd)
  578. bsnes-qt5: /usr/share/bsnes/Shaders/xBRZ.shader/manifest.bml exists in filesystem (owned by bsnes-hd)
  579. bsnes-qt5: /usr/share/bsnes/Shaders/xBRZ.shader/xBRZ-Freescale-p0.fs exists in filesystem (owned by bsnes-hd)
  580. bsnes-qt5: /usr/share/bsnes/Shaders/xBRZ.shader/xBRZ-Freescale-p1.fs exists in filesystem (owned by bsnes-hd)
  581. bsnes-qt5: /usr/share/icons/bsnes.png exists in filesystem (owned by bsnes-hd)
  582. Errors occurred, no packages were upgraded.
  583. ==> WARNING: Failed to install built package(s).
  584. [Fri Dec 11 12:48:50] (nepeta@idiotbox ~/git/bsnes-qt5)
  585. $
Add Comment
Please, Sign In to add comment