From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vs1-xe31.google.com (mail-vs1-xe31.google.com [IPv6:2607:f8b0:4864:20::e31]) by sourceware.org (Postfix) with ESMTPS id E6C6E3858025 for ; Fri, 27 Nov 2020 02:34:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E6C6E3858025 Received: by mail-vs1-xe31.google.com with SMTP id j140so1817968vsd.4 for ; Thu, 26 Nov 2020 18:34:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=5ppTMeiA554XdXCGz2bKOiTENhcX0RmufJVMmSwlgdc=; b=Wi82JIgW505y+MepZQKRjygLiiRL1B3w/zQO+vlKCG9nRdaAsTVLrKuviMWOHroxhD XhXCA/05VB9LCn1bw9evREjePtj+c4d83XkGyLqzq+ZTnHA9zNIotm2UeY2ESEGyZGs7 cmcKsqZXNItOu73uzS/y5ffm+WX6zmEvxwG4O2FLE2mr4+EjCIksxTNKyvV8+Hu/HPO1 rU6AbJRUpwRVLJCX/lKx470mKZF7pqPv8zzPf7sTrGuXspka73EJiB++H9/YDGNxYrBs 0kaBQEgDRUKpGZNo91EJR9DZVc4XkixZ4YDsRz4V2s++xK8teK3orEiSVc+ySVnt7Ncp Scjw== X-Gm-Message-State: AOAM530qYNEAsiSlnAj1R3Tmzc6ymb9V04b4jK86wcbXeuuoq2m67bo5 /61CtDJ2D2q8jpgymHenpFxdRUhgJ7av9I6LieHTQ9lyXFMZ1w== X-Google-Smtp-Source: ABdhPJyR59tzHCDLDx1XuWZZ8sasD7EjxvTnTtqg1Q5gsRdDFIW4k5rij+MFwijKFhwCRaCHibXNfbRbV2lOmQO4cZ0= X-Received: by 2002:a67:e189:: with SMTP id e9mr3775787vsl.7.1606444493193; Thu, 26 Nov 2020 18:34:53 -0800 (PST) MIME-Version: 1.0 From: Jameson Nash Date: Thu, 26 Nov 2020 21:34:37 -0500 Message-ID: Subject: missing dependency for git-email? To: cygwin@cygwin.com X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2020 02:34:55 -0000 I installed git-email, but once installed it says it's missing a required dependency: ``` $ git send-email --dry-run BUG: The 'Mail::Address' module is not here, but NO_PERL_CPAN_FALLBACKS was set! Git needs this Perl module from the CPAN, and will by default ship with a copy of it. This Git was built with NO_PERL_CPAN_FALLBACKS, meaning that whoever built it promised to provide this module. You're seeing this error because they broke that promise, and we can't load our fallback version, since we were asked not to install it. If you're seeing this error and didn't package Git yourself the package you're using is broken, or your system is broken. This error won't appear if Git is built without NO_PERL_CPAN_FALLBACKS (instead we'll use our fallback version of the module). at /usr/share/perl5/Git/LoadCPAN.pm line 76. BEGIN failed--compilation aborted at /usr/share/perl5/Git/LoadCPAN/Mail/Address.pm line 8. Compilation failed in require at /usr/libexec/git-core/git-send-email line 37. BEGIN failed--compilation aborted at /usr/libexec/git-core/git-send-email line 37. ``` This is provided by the `perl-MailTools` cygwin package. Thanks!