Date: Saturday, May 6, 2023 @ 10:00:55
  Author: arojas
Revision: 1458965

archrelease: copy trunk to community-staging-x86_64

Added:
  iaito/repos/community-staging-x86_64/
  iaito/repos/community-staging-x86_64/PKGBUILD
    (from rev 1458964, iaito/trunk/PKGBUILD)
  iaito/repos/community-staging-x86_64/no-rpath.patch
    (from rev 1458964, iaito/trunk/no-rpath.patch)

----------------+
 PKGBUILD       |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 no-rpath.patch |   13 +++++++++++++
 2 files changed, 67 insertions(+)

Copied: iaito/repos/community-staging-x86_64/PKGBUILD (from rev 1458964, 
iaito/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2023-05-06 10:00:55 UTC (rev 1458965)
@@ -0,0 +1,54 @@
+# 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=805db97abdd453592021b0b4e812d6a806914fd5
+_transcommit=e66b3a962a7fc7dfd730764180011ecffbb206bf
+pkgver=5.8.4
+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' 'python'
+         'pyside2' 'python-shiboken2' 'graphviz' 'gcc-libs')
+makedepends=('git' '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#commit=${_transcommit}";
+        no-rpath.patch)
+sha512sums=('SKIP'
+            'SKIP'
+            
'242eb0c73e2dda645f620cf8ae4039ea8fb9e25ddca6ec3507c100f4193e4ee3e2ae11269a5b2cfec47f15e99769b27f8262ba30c088e017cffaef756d6ee464')
+b2sums=('SKIP'
+        'SKIP'
+        
'b433afbb858d001a6909cb49f5cc42bc85f6bb185a7508f8dd42c4258b7b6ae44d4436b4e2e3f9c272d6e7b97d760510d719eaccd10e20cda2cac544cd9765f4')
+
+pkgver() {
+  cd iaito
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cp -r iaito-translations iaito/src/translations
+  patch -d iaito -Np1 < no-rpath.patch
+}
+
+build() {
+  cd iaito
+  ./configure --prefix=/usr
+  mkdir build
+  cd build
+  qmake-qt5 ../src PREFIX=/usr
+  make
+}
+
+package() {
+  cd iaito
+  make -C build INSTALL_ROOT="$pkgdir" install
+  make DESTDIR="$pkgdir" PREFIX=/usr install-translations install-man
+}
+
+# vim: ts=2 sw=2 et:

Copied: iaito/repos/community-staging-x86_64/no-rpath.patch (from rev 1458964, 
iaito/trunk/no-rpath.patch)
===================================================================
--- community-staging-x86_64/no-rpath.patch                             (rev 0)
+++ community-staging-x86_64/no-rpath.patch     2023-05-06 10:00:55 UTC (rev 
1458965)
@@ -0,0 +1,13 @@
+--- a/src/Iaito.pro    2023-02-25 13:23:28.079000069 +0100
++++ b/src/Iaito.pro    2023-02-25 13:24:01.778894647 +0100
+@@ -11,10 +11,6 @@
+ 
+ CONFIG += sdk_no_version_check
+ 
+-unix:QMAKE_RPATHDIR += /usr/local/lib
+-unix:QMAKE_LFLAGS_RPATH=
+-unix:QMAKE_LFLAGS += "-Wl,-rpath,/usr/local/lib"
+-
+ # build with thread-sanitizer
+ # unix:QMAKE_LFLAGS += "-fsanitize=thread"
+ # QMAKE_CXXFLAGS += -fsanitize=thread

Reply via email to