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

Massimiliano Torromeo mtorromeo at archlinux.org
Wed Oct 26 15:08:22 UTC 2016


    Date: Wednesday, October 26, 2016 @ 15:08:21
  Author: mtorromeo
Revision: 193639

archrelease: copy trunk to community-x86_64

Added:
  sysdig/repos/community-x86_64/PKGBUILD
    (from rev 193638, sysdig/trunk/PKGBUILD)
  sysdig/repos/community-x86_64/sysdig.install
    (from rev 193638, sysdig/trunk/sysdig.install)
Deleted:
  sysdig/repos/community-x86_64/PKGBUILD
  sysdig/repos/community-x86_64/sysdig.install

----------------+
 PKGBUILD       |   92 +++++++++++++++++++++++++++----------------------------
 sysdig.install |   42 ++++++++++++-------------
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2016-10-26 15:08:05 UTC (rev 193638)
+++ PKGBUILD	2016-10-26 15:08:21 UTC (rev 193639)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Contribuitor: Alfredo Palhares <masterkorp at masterkorp.net>
-# Contribuitor: Christian Babeux <christian.babeux at 0x80.ca>
-
-pkgname=sysdig
-pkgver=0.11.0
-pkgrel=2
-pkgdesc="Open source system-level exploration and troubleshooting tool"
-arch=('i686' 'x86_64')
-url="http://www.sysdig.org/"
-license=('GPL2')
-depends=('dkms' 'jsoncpp' 'luajit' 'curl')
-makedepends=('cmake' 'pandoc')
-source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('59ae661c8eb33d00f31d33d48a908261bb4b0e2d001e1f40e16b5855fe46103b')
-install=$pkgname.install
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed 's|${DIR_ETC}/bash_completion.d|share/bash-completion/completions/|' \
-      -i scripts/CMakeLists.txt
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  rm -rf build
-  mkdir build
-  cd build
-  cmake .. \
-        -DCMAKE_BUILD_TYPE=Release \
-        -DCMAKE_INSTALL_PREFIX=/usr \
-        -DSYSDIG_VERSION=$pkgver \
-        -DUSE_BUNDLED_DEPS=OFF \
-        -DUSE_BUNDLED_JSONCPP=OFF \
-        -DUSE_BUNDLED_JQ=ON \
-        -DUSE_BUNDLED_B64=ON \
-        -DBUILD_DRIVER=OFF
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  cd build
-  make install DESTDIR="$pkgdir"
-}

Copied: sysdig/repos/community-x86_64/PKGBUILD (from rev 193638, sysdig/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2016-10-26 15:08:21 UTC (rev 193639)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Contribuitor: Alfredo Palhares <masterkorp at masterkorp.net>
+# Contribuitor: Christian Babeux <christian.babeux at 0x80.ca>
+
+pkgname=sysdig
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="Open source system-level exploration and troubleshooting tool"
+arch=('i686' 'x86_64')
+url="http://www.sysdig.org/"
+license=('GPL2')
+depends=('dkms' 'jsoncpp' 'luajit' 'curl' 'jq')
+makedepends=('cmake' 'pandoc')
+source=("https://github.com/draios/sysdig/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('8399cfb77e5f61a4d7aa0ef94ec79ab60afc11571f8604791e6378a90a14ce9e')
+install=$pkgname.install
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  sed 's|${DIR_ETC}/bash_completion.d|share/bash-completion/completions/|' \
+      -i scripts/CMakeLists.txt
+  sed "s/\tsinsp/\tsinsp crypto ssl/" \
+      -i userspace/sysdig/CMakeLists.txt
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  rm -rf build
+  mkdir build
+  cd build
+  cmake .. \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DSYSDIG_VERSION=$pkgver \
+        -DUSE_BUNDLED_DEPS=OFF \
+        -DUSE_BUNDLED_B64=ON \
+        -DBUILD_DRIVER=OFF
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  cd build
+  make install DESTDIR="$pkgdir"
+}

Deleted: sysdig.install
===================================================================
--- sysdig.install	2016-10-26 15:08:05 UTC (rev 193638)
+++ sysdig.install	2016-10-26 15:08:21 UTC (rev 193639)
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-post_install() {
-    dkms add sysdig/${1%%-*}
-  cat << EOF
-==> To build and install the necessary module run: dkms install sysdig/${1%%-*}
-==> To do this automatically at startup run: systemctl enable dkms.service
-EOF
-}
-
-pre_upgrade() {
-    pre_remove "$2"
-}
-
-post_upgrade() {
-    post_install "$1"
-}
-
-pre_remove() {
-    [ -n "${1%-*}" ] && dkms remove sysdig/${1%%-*} --all &>/dev/null || true
-}

Copied: sysdig/repos/community-x86_64/sysdig.install (from rev 193638, sysdig/trunk/sysdig.install)
===================================================================
--- sysdig.install	                        (rev 0)
+++ sysdig.install	2016-10-26 15:08:21 UTC (rev 193639)
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+post_install() {
+    dkms add sysdig/${1%%-*}
+  cat << EOF
+==> To build and install the necessary module run: dkms install sysdig/${1%%-*}
+==> To do this automatically at startup run: systemctl enable dkms.service
+EOF
+}
+
+pre_upgrade() {
+    pre_remove "$2"
+}
+
+post_upgrade() {
+    post_install "$1"
+}
+
+pre_remove() {
+    [ -n "${1%-*}" ] && dkms remove sysdig/${1%%-*} --all &>/dev/null || true
+}



More information about the arch-commits mailing list