[arch-commits] Commit in monero-gui/repos/community-x86_64 (4 files)

Kpcyrd kpcyrd at archlinux.org
Thu Jan 2 19:11:25 UTC 2020


    Date: Thursday, January 2, 2020 @ 19:11:25
  Author: kpcyrd
Revision: 546530

archrelease: copy trunk to community-x86_64

Added:
  monero-gui/repos/community-x86_64/PKGBUILD
    (from rev 546529, monero-gui/trunk/PKGBUILD)
  monero-gui/repos/community-x86_64/no-avx2.patch
    (from rev 546529, monero-gui/trunk/no-avx2.patch)
Deleted:
  monero-gui/repos/community-x86_64/PKGBUILD
  monero-gui/repos/community-x86_64/no-avx2.patch

---------------+
 PKGBUILD      |   82 ++++++++++++++++++++++++++++----------------------------
 no-avx2.patch |   26 ++++++++---------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-01-02 19:11:10 UTC (rev 546529)
+++ PKGBUILD	2020-01-02 19:11:25 UTC (rev 546530)
@@ -1,41 +0,0 @@
-# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
-
-pkgname=monero-gui
-pkgver=0.15.0.3
-pkgrel=1
-pkgdesc="QT GUI wallet for Monero: the secure, private, untraceable peer-to-peer currency"
-license=('BSD')
-arch=('x86_64')
-url="https://getmonero.org/"
-depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 'hidapi' 'unbound'
-    'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg')
-makedepends=('git' 'cmake' 'boost' 'qt5-tools')
-source=(
-    "${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver}"
-    "git+https://github.com/monero-project/monero.git"
-    "no-avx2.patch"
-)
-sha512sums=('SKIP'
-            'SKIP'
-            'SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  git submodule init
-  git config submodule.monero.url "$srcdir/monero"
-  git submodule update
-  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
-}
-
-build() {
-  cd "${pkgname}"
-  QT_SELECT=5 ./build.sh
-}
-
-package() {
-  cd "${pkgname}"
-  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero-gui/repos/community-x86_64/PKGBUILD (from rev 546529, monero-gui/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-01-02 19:11:25 UTC (rev 546530)
@@ -0,0 +1,41 @@
+# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
+
+pkgname=monero-gui
+pkgver=0.15.0.3
+pkgrel=2
+pkgdesc="QT GUI wallet for Monero: the secure, private, untraceable peer-to-peer currency"
+license=('BSD')
+arch=('x86_64')
+url="https://getmonero.org/"
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 'hidapi' 'unbound'
+    'qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'qt5-xmlpatterns')
+makedepends=('git' 'cmake' 'boost' 'qt5-tools')
+source=(
+    "${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver}"
+    "git+https://github.com/monero-project/monero.git"
+    "no-avx2.patch"
+)
+sha512sums=('SKIP'
+            'SKIP'
+            'SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.monero.url "$srcdir/monero"
+  git submodule update
+  patch --forward --strip=1 --input="${srcdir}/no-avx2.patch"
+}
+
+build() {
+  cd "${pkgname}"
+  QT_SELECT=5 ./build.sh
+}
+
+package() {
+  cd "${pkgname}"
+  install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: no-avx2.patch
===================================================================
--- no-avx2.patch	2020-01-02 19:11:10 UTC (rev 546529)
+++ no-avx2.patch	2020-01-02 19:11:25 UTC (rev 546530)
@@ -1,13 +0,0 @@
-diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
-index 90d0408..4f5bb91 100755
---- a/get_libwallet_api.sh
-+++ b/get_libwallet_api.sh
-@@ -158,7 +158,7 @@ elif [ "$platform" == "linux64" ]; then
-     elif [ "$STATIC" == true ]; then
-         cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
-     else
--        cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
-+        cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D ARCH="default" -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
-     fi
- 
- ## LINUX 32

Copied: monero-gui/repos/community-x86_64/no-avx2.patch (from rev 546529, monero-gui/trunk/no-avx2.patch)
===================================================================
--- no-avx2.patch	                        (rev 0)
+++ no-avx2.patch	2020-01-02 19:11:25 UTC (rev 546530)
@@ -0,0 +1,13 @@
+diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
+index 90d0408..4f5bb91 100755
+--- a/get_libwallet_api.sh
++++ b/get_libwallet_api.sh
+@@ -158,7 +158,7 @@ elif [ "$platform" == "linux64" ]; then
+     elif [ "$STATIC" == true ]; then
+         cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+     else
+-        cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
++        cmake -D CMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -D ARCH="default" -D BUILD_TAG="linux-x64" -D BUILD_GUI_DEPS=ON $BUILD_TREZOR_FLAGS -D CMAKE_INSTALL_PREFIX="$MONERO_DIR"  ../..
+     fi
+ 
+ ## LINUX 32



More information about the arch-commits mailing list