[arch-commits] Commit in iaito/repos/community-x86_64 (PKGBUILD PKGBUILD)

Antonio Rojas arojas at gemini.archlinux.org
Sat Aug 27 17:24:45 UTC 2022


    Date: Saturday, August 27, 2022 @ 17:24:45
  Author: arojas
Revision: 1284876

archrelease: copy trunk to community-x86_64

Added:
  iaito/repos/community-x86_64/PKGBUILD
    (from rev 1284875, iaito/trunk/PKGBUILD)
Deleted:
  iaito/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  115 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 58 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-08-27 17:24:36 UTC (rev 1284875)
+++ PKGBUILD	2022-08-27 17:24:45 UTC (rev 1284876)
@@ -1,57 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Maintainer: Santiago Torres-Arias <santiago[at]archlinux[dot]org>
-# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
-
-pkgname=iaito
-_gitcommit=7e7351b673abac2ce824b2b6e8d02ad6d67eac4d
-pkgver=5.7.0
-pkgrel=1
-pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
-url='https://github.com/radareorg/iaito'
-arch=('x86_64')
-license=('GPL3')
-depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 'python'
-         'pyside2' 'python-shiboken2' 'graphviz' 'gcc-libs' 'syntax-highlighting')
-makedepends=('git' 'cmake' 'ninja' 'shiboken2' 'qt5-tools')
-optdepends=('r2ghidra: ghidra decompiler plugin')
-replaces=('r2cutter')
-source=("git+https://github.com/radareorg/iaito#commit=${_gitcommit}"
-        "git+https://github.com/radareorg/iaito-translations")
-sha512sums=('SKIP'
-            'SKIP')
-b2sums=('SKIP'
-        'SKIP')
-
-pkgver() {
-  cd iaito
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd iaito
-  git config 'submodule.src/translations.url' "${srcdir}/iaito-translations"
-  git submodule update --init src/translations
-}
-
-build() {
-  cd iaito/src
-  cmake -B build \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=None \
-    -DIAITO_ENABLE_PYTHON=ON \
-    -DIAITO_ENABLE_PYTHON_BINDINGS=ON \
-    -DIAITO_USE_BUNDLED_RADARE2=OFF \
-    -DIAITO_USE_ADDITIONAL_RADARE2_PATHS=OFF \
-    -DIAITO_ENABLE_CRASH_REPORTS=OFF \
-    -DIAITO_ENABLE_GRAPHVIZ=ON \
-    -Wno-dev \
-    -G Ninja
-  ninja -C build
-}
-
-package() {
-  cd iaito
-  DESTDIR="${pkgdir}" ninja -C src/build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: iaito/repos/community-x86_64/PKGBUILD (from rev 1284875, iaito/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-08-27 17:24:45 UTC (rev 1284876)
@@ -0,0 +1,58 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Santiago Torres-Arias <santiago[at]archlinux[dot]org>
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=iaito
+_gitcommit=7e7351b673abac2ce824b2b6e8d02ad6d67eac4d
+pkgver=5.7.0
+pkgrel=2
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/iaito'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 'python'
+         'pyside2' 'python-shiboken2' 'graphviz' 'gcc-libs' 'syntax-highlighting')
+makedepends=('git' 'cmake' 'ninja' 'shiboken2' 'qt5-tools')
+optdepends=('r2ghidra: ghidra decompiler plugin')
+replaces=('r2cutter')
+source=("git+https://github.com/radareorg/iaito#commit=${_gitcommit}"
+        "git+https://github.com/radareorg/iaito-translations")
+sha512sums=('SKIP'
+            'SKIP')
+b2sums=('SKIP'
+        'SKIP')
+
+pkgver() {
+  cd iaito
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd iaito
+  git cherry-pick -n 1f9b0c2d69ad856499196e75906c0083e4db05de # Fix assert
+  git config 'submodule.src/translations.url' "${srcdir}/iaito-translations"
+  git submodule update --init src/translations
+}
+
+build() {
+  cd iaito/src
+  cmake -B build \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=None \
+    -DIAITO_ENABLE_PYTHON=ON \
+    -DIAITO_ENABLE_PYTHON_BINDINGS=ON \
+    -DIAITO_USE_BUNDLED_RADARE2=OFF \
+    -DIAITO_USE_ADDITIONAL_RADARE2_PATHS=OFF \
+    -DIAITO_ENABLE_CRASH_REPORTS=OFF \
+    -DIAITO_ENABLE_GRAPHVIZ=ON \
+    -Wno-dev \
+    -G Ninja
+  ninja -C build
+}
+
+package() {
+  cd iaito
+  DESTDIR="${pkgdir}" ninja -C src/build install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list