From unknown Sun Jun 22 07:59:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39311] [PATCH] gnu: Add guix-vim. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 27 Jan 2020 17:22:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39311 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39311@debbugs.gnu.org Cc: Efraim Flashner X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158014567432536 (code B ref -1); Mon, 27 Jan 2020 17:22:01 +0000 Received: (at submit) by debbugs.gnu.org; 27 Jan 2020 17:21:14 +0000 Received: from localhost ([127.0.0.1]:58893 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iw84Y-0008Si-6q for submit@debbugs.gnu.org; Mon, 27 Jan 2020 12:21:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:36782) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iw84W-0008SZ-0e for submit@debbugs.gnu.org; Mon, 27 Jan 2020 12:21:13 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45970) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iw84U-0008EP-Pv for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:11 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_20,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iw84T-00025C-P3 for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:10 -0500 Received: from flashner.co.il ([178.62.234.194]:43090) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iw84T-00024D-JI for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:09 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 467B7402E6; Mon, 27 Jan 2020 17:21:08 +0000 (UTC) From: Efraim Flashner Date: Mon, 27 Jan 2020 19:20:32 +0200 Message-Id: <20200127172032.25825-1-efraim@flashner.co.il> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: 0.3 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) * gnu/packages/vim.scm (guix-vim): New variable. --- gnu/packages/vim.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index b5952e3e21..a2d715dc1c 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -938,3 +938,45 @@ through its msgpack-rpc API.") =20 (define-public python2-pynvim (package-with-python2 python-pynvim)) + +(define-public guix-vim + (package + (name "guix-vim") + (version "0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/Efraim/guix.vim") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1f8h8m96fqh3f9hy87spgh9kdqzyxl11n9s3rywvyq5xhn489bnk"))= )) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (vimfiles (string-append out "/share/vim/vimfiles")) + (compiler (string-append vimfiles "/compiler")) + (doc (string-append vimfiles "/doc")) + (indent (string-append vimfiles "/indent")) + (ftdetect (string-append vimfiles "/ftdetect")) + (ftplugin (string-append vimfiles "/ftplugin")) + (syntax (string-append vimfiles "/syntax"))) + (copy-recursively "compiler" compiler) + (copy-recursively "doc" doc) + (copy-recursively "indent" indent) + (copy-recursively "ftdetect" ftdetect) + (copy-recursively "ftplugin" ftplugin) + (copy-recursively "syntax" syntax) + #t)))))) + (home-page "https://gitlab.com/Efraim/guix.vim") + (synopsis "Guix integration in Vim") + (description "This package provides support for GNU Guix in Vim.") + (license license:vim))) --=20 2.25.0 From unknown Sun Jun 22 07:59:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39311] [PATCH] gnu: Add guix-vim. Resent-From: Ricardo Wurmus Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 27 Jan 2020 22:29:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39311 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 39311@debbugs.gnu.org Received: via spool by 39311-submit@debbugs.gnu.org id=B39311.158016411328368 (code B ref 39311); Mon, 27 Jan 2020 22:29:01 +0000 Received: (at 39311) by debbugs.gnu.org; 27 Jan 2020 22:28:33 +0000 Received: from localhost ([127.0.0.1]:59204 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iwCrw-0007NU-UL for submit@debbugs.gnu.org; Mon, 27 Jan 2020 17:28:33 -0500 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iwCru-0007NL-Ru for 39311@debbugs.gnu.org; Mon, 27 Jan 2020 17:28:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1580164108; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=RQzDsLXl3kyawcOehgAK3hWdZKtYmP9DM0zZN6nPLrE=; b=bPTA0jcGxWiikAig11hjGrmV3eY44jDnxnSx/TBDWWGK1CBSxaYn+PGyod9LM6RT FkYMr5K2ocigkp8pgcUaZgabZlajMRUGWSHzwVvtCOGTP/1TICOwwKLQFmjWPUycEF2 q0guFEX19ubI+VwDZE/8Y0h4l+ESyXuRCI0hYh7I= Received: from localhost (p54AD4CBA.dip0.t-ipconnect.de [84.173.76.186]) by mx.zohomail.com with SMTPS id 1580164104138665.8253866092751; Mon, 27 Jan 2020 14:28:24 -0800 (PST) References: <20200127172032.25825-1-efraim@flashner.co.il> User-agent: mu4e 1.2.0; emacs 26.3 From: Ricardo Wurmus In-reply-to: <20200127172032.25825-1-efraim@flashner.co.il> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Mon, 27 Jan 2020 23:28:20 +0100 Message-ID: <87v9owttyz.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Efraim, > * gnu/packages/vim.scm (guix-vim): New variable. > --- > gnu/packages/vim.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 42 insertions(+) > > diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm > index b5952e3e21..a2d715dc1c 100644 > --- a/gnu/packages/vim.scm > +++ b/gnu/packages/vim.scm > @@ -938,3 +938,45 @@ through its msgpack-rpc API.") >=20=20 > (define-public python2-pynvim > (package-with-python2 python-pynvim)) > + > +(define-public guix-vim Looks like we usually prefix vim extensions with =E2=80=9Cvim-=E2=80=9D, so= should this be =E2=80=9Cvim-guix=E2=80=9D instead=E2=80=A6? > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (vimfiles (string-append out "/share/vim/vimfiles")) > + (compiler (string-append vimfiles "/compiler")) > + (doc (string-append vimfiles "/doc")) > + (indent (string-append vimfiles "/indent")) > + (ftdetect (string-append vimfiles "/ftdetect")) > + (ftplugin (string-append vimfiles "/ftplugin")) > + (syntax (string-append vimfiles "/syntax"))) > + (copy-recursively "compiler" compiler) > + (copy-recursively "doc" doc) > + (copy-recursively "indent" indent) > + (copy-recursively "ftdetect" ftdetect) > + (copy-recursively "ftplugin" ftplugin) > + (copy-recursively "syntax" syntax) > + #t)))))) The repetition here tickles me a little. How about this instead=E2=80=A6? (for-each (lambda (dir) (copy-recursively dir (string-append vimfiles "/" dir))) '("compiler" "doc" "indent" "ftdetect" "ftplugin" "syntax")) --=20 Ricardo From unknown Sun Jun 22 07:59:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Efraim Flashner Subject: bug#39311: closed (Re: [bug#39311] [PATCH] gnu: Add guix-vim.) Message-ID: References: <20200128074317.GX1603@E5400> <20200127172032.25825-1-efraim@flashner.co.il> X-Gnu-PR-Message: they-closed 39311 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 39311@debbugs.gnu.org Date: Tue, 28 Jan 2020 07:44:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1580197441-22416-1" This is a multi-part message in MIME format... ------------=_1580197441-22416-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #39311: [PATCH] gnu: Add guix-vim. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 39311@debbugs.gnu.org. --=20 39311: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D39311 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1580197441-22416-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 39311-done) by debbugs.gnu.org; 28 Jan 2020 07:43:58 +0000 Received: from localhost ([127.0.0.1]:59398 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iwLXR-0005pB-Lk for submit@debbugs.gnu.org; Tue, 28 Jan 2020 02:43:57 -0500 Received: from flashner.co.il ([178.62.234.194]:57186) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iwLXQ-0005ox-1Z for 39311-done@debbugs.gnu.org; Tue, 28 Jan 2020 02:43:56 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 02B9940357; Tue, 28 Jan 2020 07:43:48 +0000 (UTC) Date: Tue, 28 Jan 2020 09:43:17 +0200 From: Efraim Flashner To: Ricardo Wurmus Subject: Re: [bug#39311] [PATCH] gnu: Add guix-vim. Message-ID: <20200128074317.GX1603@E5400> References: <20200127172032.25825-1-efraim@flashner.co.il> <87v9owttyz.fsf@elephly.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="dnBRaVjvtun1Q0Od" Content-Disposition: inline In-Reply-To: <87v9owttyz.fsf@elephly.net> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 39311-done Cc: 39311-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --dnBRaVjvtun1Q0Od Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 27, 2020 at 11:28:20PM +0100, Ricardo Wurmus wrote: >=20 > Hi Efraim, >=20 > > * gnu/packages/vim.scm (guix-vim): New variable. > > --- > > gnu/packages/vim.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 42 insertions(+) > > > > diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm > > index b5952e3e21..a2d715dc1c 100644 > > --- a/gnu/packages/vim.scm > > +++ b/gnu/packages/vim.scm > > @@ -938,3 +938,45 @@ through its msgpack-rpc API.") > > =20 > > (define-public python2-pynvim > > (package-with-python2 python-pynvim)) > > + > > +(define-public guix-vim >=20 > Looks like we usually prefix vim extensions with =E2=80=9Cvim-=E2=80=9D, = so should this > be =E2=80=9Cvim-guix=E2=80=9D instead=E2=80=A6? Good call >=20 > > + (replace 'install > > + (lambda* (#:key outputs #:allow-other-keys) > > + (let* ((out (assoc-ref outputs "out")) > > + (vimfiles (string-append out "/share/vim/vimfiles"= )) > > + (compiler (string-append vimfiles "/compiler")) > > + (doc (string-append vimfiles "/doc")) > > + (indent (string-append vimfiles "/indent")) > > + (ftdetect (string-append vimfiles "/ftdetect")) > > + (ftplugin (string-append vimfiles "/ftplugin")) > > + (syntax (string-append vimfiles "/syntax"))) > > + (copy-recursively "compiler" compiler) > > + (copy-recursively "doc" doc) > > + (copy-recursively "indent" indent) > > + (copy-recursively "ftdetect" ftdetect) > > + (copy-recursively "ftplugin" ftplugin) > > + (copy-recursively "syntax" syntax) > > + #t)))))) >=20 > The repetition here tickles me a little. How about this instead=E2=80=A6? >=20 > (for-each (lambda (dir) > (copy-recursively dir (string-append vimfiles "/" dir))) > '("compiler" "doc" "indent" "ftdetect" "ftplugin" "syntax")) This will also be good if we ever get around to making a vim-build-system. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --dnBRaVjvtun1Q0Od Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl4v5hUACgkQQarn3Mo9 g1F1zA//d3wErRKUrme+bDP2EhkLlBSzJeZO33GEoQzEik5b8TtWRUnWHLwv7p74 3R14jrOjdqtMXFw9Evgm3sQzpta9Z3QFIHb3dPp/PAI5m59SRdcIYuiTNpeKWmY3 Jf519eA+9epCMSrea2BtI8OhpGuL8stCpD5j0JTsCgrbDh9Rg1gGPejx4NCjNZks 9Ms6ytjcDAcd8LyvIpOry9s6z/VsgGCUVzsSk1xI+UXHks7HimnNKDYLYLMp8oCN zCMdlc5/px3lxWYcx7audUqmfCtVmrkHm3F5w4cx0mj87ydXu9wXcg3g9oL0IMQ1 fnRe75ZcAKKfAl/SiiaXcejSo0w0FlDqBzRtzLyUUKUMUg+gZHg/7xSwHr+LA9ak 2cuHOwCgoKEukGA9MsOn58jhQ34BKG10oSjjpIG79F9IQsurZegjDDMH604ZO5Gu Mvs9fLAE2MG1ZgcZBet+AVW1T88pbeMHlGG98SGCnO0iEXikoR4JQwBwLFjlW8nq wqCYy7g4Z9hqxprx077s35r9loSyfd3BCjpygS226VR6MmlbDrvOiIaCoxn8G321 VqcTGbWZ5Bge75RPiEe6YH54YKuEyXMMmyvP7f67zJEmog4VSUXLLbRqcue8NdM7 c5RGXmcUhgkQ4EvrzyJqplwevXNDXTYICKQabAgsE/RKvwQ9QdM= =+bGl -----END PGP SIGNATURE----- --dnBRaVjvtun1Q0Od-- ------------=_1580197441-22416-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Jan 2020 17:21:14 +0000 Received: from localhost ([127.0.0.1]:58893 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iw84Y-0008Si-6q for submit@debbugs.gnu.org; Mon, 27 Jan 2020 12:21:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:36782) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iw84W-0008SZ-0e for submit@debbugs.gnu.org; Mon, 27 Jan 2020 12:21:13 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45970) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iw84U-0008EP-Pv for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:11 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_20,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iw84T-00025C-P3 for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:10 -0500 Received: from flashner.co.il ([178.62.234.194]:43090) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iw84T-00024D-JI for guix-patches@gnu.org; Mon, 27 Jan 2020 12:21:09 -0500 Received: from localhost (unknown [141.226.13.108]) by flashner.co.il (Postfix) with ESMTPSA id 467B7402E6; Mon, 27 Jan 2020 17:21:08 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] gnu: Add guix-vim. Date: Mon, 27 Jan 2020 19:20:32 +0200 Message-Id: <20200127172032.25825-1-efraim@flashner.co.il> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 178.62.234.194 X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) * gnu/packages/vim.scm (guix-vim): New variable. --- gnu/packages/vim.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index b5952e3e21..a2d715dc1c 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -938,3 +938,45 @@ through its msgpack-rpc API.") =20 (define-public python2-pynvim (package-with-python2 python-pynvim)) + +(define-public guix-vim + (package + (name "guix-vim") + (version "0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/Efraim/guix.vim") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1f8h8m96fqh3f9hy87spgh9kdqzyxl11n9s3rywvyq5xhn489bnk"))= )) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (vimfiles (string-append out "/share/vim/vimfiles")) + (compiler (string-append vimfiles "/compiler")) + (doc (string-append vimfiles "/doc")) + (indent (string-append vimfiles "/indent")) + (ftdetect (string-append vimfiles "/ftdetect")) + (ftplugin (string-append vimfiles "/ftplugin")) + (syntax (string-append vimfiles "/syntax"))) + (copy-recursively "compiler" compiler) + (copy-recursively "doc" doc) + (copy-recursively "indent" indent) + (copy-recursively "ftdetect" ftdetect) + (copy-recursively "ftplugin" ftplugin) + (copy-recursively "syntax" syntax) + #t)))))) + (home-page "https://gitlab.com/Efraim/guix.vim") + (synopsis "Guix integration in Vim") + (description "This package provides support for GNU Guix in Vim.") + (license license:vim))) --=20 2.25.0 ------------=_1580197441-22416-1--