From 1183b0f428e3dd74d959e561d44492717a3828c8 Mon Sep 17 00:00:00 2001 From: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> Date: Thu, 3 Sep 2015 17:27:26 -0400 Subject: [PATCH] remove packaging files Use packaging branch for this. Issue: #80006 Change-Id: I14660c3a850a586040d1dacb5e195e722d5cef6a --- .packer.yml | 57 ----------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .packer.yml diff --git a/.packer.yml b/.packer.yml deleted file mode 100644 index 137453af..00000000 --- a/.packer.yml +++ /dev/null @@ -1,57 +0,0 @@ -osx: - type: osx - info: - name: ring - version: nightly - release: 1 - brew_deps: - - automake - - libtool - - gettext - - yasm - - autoconf - - pkg-config - - qt5 - - llvm --with-clang --with-asan - commands: - - echo "Deamon" - - git clone https://gerrit-ring.savoirfairelinux.com/ring-daemon ring-daemon - - cd ring-daemon - - cd contrib - - mkdir native - - cd native - - ../bootstrap - - make -j3 - - cd ../../ - - ./autogen.sh - - ./configure --without-alsa --without-pulse --without-dbus --prefix=%(prefix_path)s - - make install -j1 - - cd .. - - echo "LRC" - - export CMAKE_PREFIX_PATH=/usr/local/Cellar/qt5/5.4.0 - - git clone https://gerrit-ring.savoirfairelinux.com/ring-lrc.git ring-lrc - - cd ring-lrc - - mkdir build - - cd build - - cmake .. -DCMAKE_INSTALL_PREFIX=%(prefix_path)s -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/local/opt/llvm/bin/clang -DCMAKE_CXX_COMPILER=/usr/local/opt/llvm/bin/clang++ - - make install -j1 - - cd ../../ - - echo "Client" - - git clone https://gerrit-ring.savoirfairelinux.com/ring-client-macosx ring-client-macosx - - cd ring-client-macosx - - git submodule init - - git submodule update - - cd sparkle/Sparkle - - export BUILDDIR=$(pwd) - - make release - - mv Build/Products/Release/Sparkle.framework ../ - - cd ../../ - - mkdir build - - cd build - - export CMAKE_PREFIX_PATH=/usr/local/Cellar/qt5/5.4.0 - - cmake ../ -DCMAKE_INSTALL_PREFIX=%(prefix_path)s -DRING_VERSION=$(date "+%%Y%%m%%d") - - make install -j1 - - cpack -G DragNDrop Ring - transfer: - files: - - ring-client-macosx/build/Ring.dmg -- GitLab