From patchwork Thu Nov 22 13:10:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 6 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 98FD060B12 for ; Thu, 22 Nov 2018 14:10:15 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0403E589; Thu, 22 Nov 2018 14:10:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1542892215; bh=eMVHzyHUecSGCYUJLb4LtPwrr+OKr0KmuOzm4esI9oM=; h=From:To:Cc:Subject:Date:From; b=KSxov++wRio9aywBgDXqdYsoR3wbKDk3NFYDeQEr4tX0XeNhFqTv+CxIy7rWcGz9p +1GhZES1wWmroCoP/j7t7gA3LcDJFK8c1TcAI9WwLvVOKnePCVvPcaGjJHOHh36ns8 Kyt8rLENStL3aqV0MbJHew7QSeH0h0BYlw5g3eJk= From: Kieran Bingham To: LibCamera Devel Date: Thu, 22 Nov 2018 13:10:07 +0000 Message-Id: <20181122131010.22085-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 Subject: [libcamera-devel] [PATCH 0/3] sphinx-documentation and initial CI X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Nov 2018 13:10:15 -0000 Introduce the sphinx-doc build integration and initial content. Gitlab CI is introduced to automatically test the build and generation of the documentation. Kieran Bingham (3): test: Register the initialisation test with meson CI: Provide initial automated testing Documentation: Introduce sphinx documentation .gitlab-ci.yml | 14 +++ Documentation/Makefile | 19 +++++ Documentation/conf.py | 173 ++++++++++++++++++++++++++++++++++++++ Documentation/hacking.rst | 42 +++++++++ Documentation/index.rst | 36 ++++++++ Documentation/meson.build | 20 +++++ meson.build | 6 ++ test/meson.build | 2 + 8 files changed, 312 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 Documentation/Makefile create mode 100644 Documentation/conf.py create mode 100644 Documentation/hacking.rst create mode 100644 Documentation/index.rst create mode 100644 Documentation/meson.build