This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From a86617b06b6fe9409be8c78aff97acc1f16bf6e5 Mon Sep 17 00:00:00 2001 | |
From: Matt Broadstone <[email protected]> | |
Date: Mon, 11 Apr 2016 09:41:00 -0400 | |
Subject: [PATCH 3/3] fix v8 pkg_install-include for cross compile | |
--- | |
mk/support/pkg/v8.sh | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/mk/support/pkg/v8.sh b/mk/support/pkg/v8.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From ac0218f9015461b5edf4d4e1fc54d8ef032e9717 Mon Sep 17 00:00:00 2001 | |
From: Matt Broadstone <[email protected]> | |
Date: Mon, 11 Apr 2016 09:40:00 -0400 | |
Subject: [PATCH 2/4] configure v8 without snapshot for cross compile | |
--- | |
mk/support/pkg/v8.sh | 8 +++++++- | |
1 file changed, 7 insertions(+), 1 deletion(-) | |
diff --git a/mk/support/pkg/v8.sh b/mk/support/pkg/v8.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 4370589c5b579206e3ad9d9d82e0b424fb9a68cd Mon Sep 17 00:00:00 2001 | |
From: Matt Broadstone <[email protected]> | |
Date: Mon, 11 Apr 2016 09:38:48 -0400 | |
Subject: [PATCH 1/3] wrap compiler env variables in quotes | |
--- | |
mk/support/pkg/v8.sh | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/mk/support/pkg/v8.sh b/mk/support/pkg/v8.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUMMARY = "RethinkDB is an open source distributed database system for the realtime web." | |
LICENSE = "AGPL-3.0" | |
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=5e7ac215b3ae3a8526781664de7a8282" | |
SRC_URI = " \ | |
https://download.rethinkdb.com/dist/rethinkdb-2.3.0.tgz \ | |
file://0001-wrap-compiler-env-variables-in-quotes.patch \ | |
file://0002-configure-v8-without-snapshot-for-cross-compile.patch \ | |
file://0003-fix-v8-pkg_install-include-for-cross-compile.patch \ | |
file://0004-remove-no-registry-flag-for-npm-install.patch \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const _ = require('lodash'), | |
Promise = require('bluebird'), | |
amqp = require('.'); | |
const config = { | |
address: 'amqp://192.168.1.6', | |
receiverLinkPrefix: 'test-queue' | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const _ = require('lodash'), | |
Promise = require('bluebird'), | |
amqp = require('.'), | |
config = require('./test/integration/servicebus/eventhubs/config'); | |
var errorHandler = (partitionId, err) => console.warn(`==> RX ERROR (${partitionId}): ${err}`); | |
var messagesCounter = 0; | |
var messageHandler = (partitionId, msg) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="grid"></require> | |
<require from="column"></require> | |
<au-grid view-model.ref="grid" rows.bind="people" class="table table-condensed table-bordered"> | |
<au-column header="first name"> | |
<compose view="first-name-view.html"></compose> | |
</au-column> | |
<au-column header="last name"> | |
<compose view-model="last-name" model.bind="row"></compose> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUMMARY = "The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs" | |
LICENSE = "GPLv2" | |
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |
SRC_URI = "http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.5.6.tar.gz" | |
SRC_URI[md5sum] = "4544b80018ddc5c39ed395363a582228" | |
SRC_URI[sha256sum] = "167595fe76eb5497c3a1ffe396b6300155d0cbe46d06824a710099ca1ae1b8bd" | |
S = "${WORKDIR}/spl-${PV}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="my-list"></require> | |
<require from="my-list-element"></require> | |
<my-list> | |
<my-list-element>one</my-list-element> | |
<my-list-element>two</my-list-element> | |
<my-list-element>three</my-list-element> | |
<my-list-element>four</my-list-element> | |
<my-list-element>five</my-list-element> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="my-list"></require> | |
<require from="my-list-element"></require> | |
<my-list> | |
<my-list-element>one</my-list-element> | |
<my-list-element>two</my-list-element> | |
<my-list-element>three</my-list-element> | |
</my-list> | |
</template> |