Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C158F200D0A for ; Wed, 4 Oct 2017 09:33:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C01DB1609E2; Wed, 4 Oct 2017 07:33:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 09E3B1609D6 for ; Wed, 4 Oct 2017 09:33:41 +0200 (CEST) Received: (qmail 45459 invoked by uid 500); 4 Oct 2017 07:33:40 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 45440 invoked by uid 99); 4 Oct 2017 07:33:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Oct 2017 07:33:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 86762E8F24; Wed, 4 Oct 2017 07:33:40 +0000 (UTC) From: SleuthKid To: dev@couchdb.apache.org Reply-To: dev@couchdb.apache.org References: In-Reply-To: Subject: [GitHub] couchdb-ci pull request #3: Add support for Debian 9 aka. stretch Content-Type: text/plain Message-Id: <20171004073340.86762E8F24@git1-us-west.apache.org> Date: Wed, 4 Oct 2017 07:33:40 +0000 (UTC) archived-at: Wed, 04 Oct 2017 07:33:42 -0000 Github user SleuthKid commented on a diff in the pull request: https://github.com/apache/couchdb-ci/pull/3#discussion_r142598289 --- Diff: ansible/roles/spidermonkey/tasks/main.yml --- @@ -19,19 +19,30 @@ get_url: url: "http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz" dest: /tmp/js185-1.0.0.tar.gz + - name: unpack Spidermonkey 1.8.5 unarchive: src: /tmp/js185-1.0.0.tar.gz dest: /opt copy: no + +- name: patch source for debian9 build + patch: + src: "{{ role_path }}/files/fix-811665.patch" + basedir: /opt/js-1.8.5/ + strip: 1 + when: ansible_distribution == "Debian" --- End diff -- Done :+1: ---