From patchwork Thu Sep 23 11:36:09 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 13908 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 83862BDC71 for ; Thu, 23 Sep 2021 11:36:16 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E05DA6918C; Thu, 23 Sep 2021 13:36:15 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rKMPgi0d"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id B935569189 for ; Thu, 23 Sep 2021 13:36:14 +0200 (CEST) Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 46A4B45E for ; Thu, 23 Sep 2021 13:36:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1632396974; bh=4HeKHL6tWMT2sji0LKANGLG1BHCiqw0XXWbwdEGEtMw=; h=From:To:Subject:Date:From; b=rKMPgi0dwbP3Mi+9XkvPRBVwf+f7ttWdmxdQhTWFjq3+roT3y0ANHtRD/TVZe6b1A Kyo/c5nYuAtf8FTbBST0HVwyfydVeuY1/bS2k9ggVYyy9lwdGvG5fE5as5tn5hUDLF N8NnavLltxNRUyrpuB9fhS1noj/h9hHtMxKZX55Y= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Thu, 23 Sep 2021 14:36:09 +0300 Message-Id: <20210923113609.29623-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2] libcamera: Standardize URLs to git repositories X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" When the libcamera project was started, we had no public git tree hosted on git.libcamera.org. The problem has been addressed a while ago, and the git.linuxtv.org libcamera repository is now a mirror of the main git tree. The mirror is useful to benefit from the linuxtv.org automated compile tests, but it can also confuse users who don't know where the official version is. To try and clarify this, use the git.libcamera.org URL consistently through the project. This doesn't void the validatity of the linuxtv.org repository which will continue to mirror the libcamera.org repository. Signed-off-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Paul Elder --- Documentation/contributing.rst | 11 +++++++---- Documentation/guides/application-developer.rst | 10 +++++----- README.rst | 2 +- .../gentoo/media-libs/libcamera/libcamera-9999.ebuild | 2 +- 4 files changed, 14 insertions(+), 11 deletions(-) base-commit: 2cc4303b172a76ac5b431c4fb4df8a083f7d3fcf diff --git a/Documentation/contributing.rst b/Documentation/contributing.rst index 6da82bac4f96..b192c3b43153 100644 --- a/Documentation/contributing.rst +++ b/Documentation/contributing.rst @@ -30,14 +30,17 @@ Source Code ----------- libcamera is in early stages of development, and no releases are available yet. -The source code is available from the project's `git tree`_, hosted by `LinuxTV`_. +The source code is available from the project's `git tree`_. .. code-block:: shell - $ git clone git://linuxtv.org/libcamera.git + $ git clone https://git.libcamera.org/libcamera/libcamera.git -.. _git tree: https://git.linuxtv.org/libcamera.git/ -.. _LinuxTV: https://linuxtv.org/ +.. _git tree: https://git.libcamera.org/libcamera/libcamera.git/ + +A mirror is also hosted on `LinuxTV`_. + +.. _LinuxTV: https://git.linuxtv.org/libcamera.git/ Issue Tracker ------------- diff --git a/Documentation/guides/application-developer.rst b/Documentation/guides/application-developer.rst index 84e522c01c85..ae28c96b5aca 100644 --- a/Documentation/guides/application-developer.rst +++ b/Documentation/guides/application-developer.rst @@ -469,7 +469,7 @@ instance. An example of how to write image data to disk is available in the `FileSink class`_ which is a part of the ``cam`` utility application in the libcamera repository. -.. _FileSink class: https://git.linuxtv.org/libcamera.git/tree/src/cam/file_sink.cpp +.. _FileSink class: https://git.libcamera.org/libcamera/libcamera.git/tree/src/cam/file_sink.cpp With the handling of this request completed, it is possible to re-use the buffers by adding them to a new ``Request`` instance with their matching @@ -575,12 +575,12 @@ which is also the official build system of the libcamera library. Make sure both ``meson`` and ``libcamera`` are installed in your system. Please refer to your distribution documentation to install meson and install the most -recent version of libcamera from the git repository at `Linux TV`_. You would -also need to install the ``pkg-config`` tool to correctly identify the -libcamera.so object install location in the system. +recent version of libcamera from the `git repository`_. You would also need to +install the ``pkg-config`` tool to correctly identify the libcamera.so object +install location in the system. .. _Meson build system: https://mesonbuild.com/ -.. _Linux TV: https://git.linuxtv.org/libcamera.git/ +.. _git repository: https://git.libcamera.org/libcamera/libcamera.git/ Dependencies ~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 6eb25c708180..a0cc45978b0b 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ To fetch the sources, build and install: :: - git clone git://linuxtv.org/libcamera.git + git clone https://git.libcamera.org/libcamera/libcamera.git cd libcamera meson build ninja -C build install diff --git a/package/gentoo/media-libs/libcamera/libcamera-9999.ebuild b/package/gentoo/media-libs/libcamera/libcamera-9999.ebuild index ca216c0ae909..65619e07d4ae 100644 --- a/package/gentoo/media-libs/libcamera/libcamera-9999.ebuild +++ b/package/gentoo/media-libs/libcamera/libcamera-9999.ebuild @@ -8,7 +8,7 @@ inherit git-r3 meson python-any-r1 DESCRIPTION="Camera support library for Linux" HOMEPAGE="http://libcamera.org" -EGIT_REPO_URI="git://linuxtv.org/libcamera.git" +EGIT_REPO_URI="https://git.libcamera.org/libcamera/libcamera.git" EGIT_BRANCH="master" LICENSE="LGPL-2.1+"