From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50097) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1imFMe-0002TL-5K for guix-patches@gnu.org; Tue, 31 Dec 2019 06:07:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1imFMc-0003IG-Tx for guix-patches@gnu.org; Tue, 31 Dec 2019 06:07:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:56070) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1imFMc-0003HR-OV for guix-patches@gnu.org; Tue, 31 Dec 2019 06:07:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1imFMc-0007LN-IS for guix-patches@gnu.org; Tue, 31 Dec 2019 06:07:02 -0500 Subject: [bug#38827] [PATCH] gnu: Add gitlab-runner. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:48295) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1imFMI-0002Om-91 for guix-patches@gnu.org; Tue, 31 Dec 2019 06:06:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1imFMF-0001fY-V9 for guix-patches@gnu.org; Tue, 31 Dec 2019 06:06:42 -0500 Received: from mail-wr1-x429.google.com ([2a00:1450:4864:20::429]:45222) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1imFMF-0001bS-Mv for guix-patches@gnu.org; Tue, 31 Dec 2019 06:06:39 -0500 Received: by mail-wr1-x429.google.com with SMTP id j42so34874572wrj.12 for ; Tue, 31 Dec 2019 03:06:39 -0800 (PST) References: <20191231091757.69869-1-r.majd@pantherx.org> From: Mathieu Othacehe In-reply-to: <20191231091757.69869-1-r.majd@pantherx.org> Date: Tue, 31 Dec 2019 12:06:36 +0100 Message-ID: <87imlwsqir.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38827@debbugs.gnu.org Cc: r.majd@pantherx.org Hello! > +;;; Copyright =C2=A9 2020 Reza Alizadeh Majd You are a bit early :) > +(define-public gitlab-runner > + (package > + (name "gitlab-runner") > + (version "12.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://gitlab.com/gitlab-org/gitlab-runner= /-/archive/v" > + version "/gitlab-runner-v" version ".tar.gz"= )) > + (sha256 (base32 "1gb3mflz57niyyn4kj5l4m1g2sa2w4cn8gig5dfr04ns9w9= kj8jr")))) Those lines are above the column limit. > + (build-system go-build-system) > + (arguments '(#:import-path "gitlab.com/gitlab-org/gitlab-runner")) > + (home-page "https://docs.gitlab.com/runner/") > + (synopsis "GitLab Runner") > + (description "GitLab Runner is the open source project that is used > +to run your jobs and send the results back to GitLab.") No need to mention it is open source, otherwise, it wouldn't be here. You could also elaborate a bit. Could you send an updated version ? Thanks, Mathieu