From owner-freebsd-questions@freebsd.org Fri Nov 1 09:41:03 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A68B61AEB36 for ; Fri, 1 Nov 2019 09:41:03 +0000 (UTC) (envelope-from ipluta@wp.pl) Received: from mx3.wp.pl (mx3.wp.pl [212.77.101.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 474HHy3528z40TY for ; Fri, 1 Nov 2019 09:41:01 +0000 (UTC) (envelope-from ipluta@wp.pl) Received: (wp-smtpd smtp.wp.pl 6441 invoked from network); 1 Nov 2019 10:40:58 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wp.pl; s=1024a; t=1572601258; bh=9VDLPNMVK1Nwz0SEkSvQoNvGmz53aswdsWCeWwJfsxE=; h=Subject:To:From; b=cAxCtAeL4DJzy8Xxz4q8u2IVlsZ+KySeRS3KqS7cg7MzUpQ8+u+20uZGBC7Pxti+0 RK7rpSzuH7x8wxMJyjyBbmsn09pkhlZPQyhnl+fq5g/yOEVcdn65Aw2ny9DyuNdgIR 6UtcIn4vujXRvt8N/kOhUYUb9258lwQYTHmJLots= Received: from bmb112.neoplus.adsl.tpnet.pl (HELO [10.0.0.83]) (ipluta@wp.pl@[83.28.221.112]) (envelope-sender ) by smtp.wp.pl (WP-SMTPD) with ECDHE-RSA-AES256-GCM-SHA384 encrypted SMTP for ; 1 Nov 2019 10:40:58 +0100 Subject: Re: Help wanted: Install of p5-JSON-Parse removes Perl ??? To: "Ronald F. Guilmette" , freebsd-questions@freebsd.org, freebsd-perl@freebsd.org References: <58259.1572577667@segfault.tristatelogic.com> From: "Ireneusz Pluta/wp.pl" Message-ID: <0d1e31bd-bd45-090f-9fc7-2f3efa3013f7@wp.pl> Date: Fri, 1 Nov 2019 10:40:52 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: <58259.1572577667@segfault.tristatelogic.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: pl X-WP-MailID: 333c02a98818bb271be9f42172c7e6a6 X-WP-AV: skaner antywirusowy Poczty Wirtualnej Polski X-WP-SPAM: NO 0000001 [geJA] X-Rspamd-Queue-Id: 474HHy3528z40TY X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=pass header.d=wp.pl header.s=1024a header.b=cAxCtAeL; dmarc=pass (policy=none) header.from=wp.pl; spf=pass (mx1.freebsd.org: domain of ipluta@wp.pl designates 212.77.101.10 as permitted sender) smtp.mailfrom=ipluta@wp.pl X-Spamd-Result: default: False [-2.00 / 15.00]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:212.77.96.0/19]; FREEMAIL_FROM(0.00)[wp.pl]; DKIM_TRACE(0.00)[wp.pl:+]; DMARC_POLICY_ALLOW(-0.50)[wp.pl,none]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; SUBJECT_ENDS_QUESTION(1.00)[]; FREEMAIL_ENVFROM(0.00)[wp.pl]; ASN(0.00)[asn:12827, ipnet:212.77.101.0/24, country:PL]; MID_RHS_MATCH_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[wp.pl.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; R_DKIM_ALLOW(-0.20)[wp.pl:s=1024a]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-perl@freebsd.org]; IP_SCORE_FREEMAIL(0.00)[]; IP_SCORE(0.00)[ip: (-8.27), ipnet: 212.77.101.0/24(-3.83), asn: 12827(-3.06), country: PL(0.07)]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[10.101.77.212.list.dnswl.org : 127.0.5.0]; RCVD_TLS_LAST(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2019 09:41:03 -0000 W dniu 2019-11-01 o 04:07, Ronald F. Guilmette pisze: > I have work > to do and now my Perl interpreter has disappeared. Was it somehow my > fault? Was I bad? I have tried to lead a good life, up until now anyway. > I have been kind to animals and small children. So what have I done wrong > that has caused my Perl interpreter to be disappeared on me for no > apparently good reason? If you really depend on Perl, don't use the "system" one, that is likely to be messed up with the pkg dependency hell. Use your own perl. Consider https://perlbrew.pl/ for managing it. Once you swith to it, use the: #!/usr/bin/env perl shebang in your perl scripts (not something like #!/usr/local/bin/perl)