X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A5C863946C30 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1586186048; bh=jn6kcWA+5saVbWClIhHfAzPcgJon1+W0kUUiY8nBDdk=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=vqJIWTuqEOEXKsN0F4xi+90vFmwEbk9mNP35EWm+XFA+T6tnCOyK+eoU0RRNA23/A gzwlKCCzZpBdZmAg9EEcx86ujdFIY/tAFhZ369O9GteYERjhJYgOy0TkKJroJw4+Q1 uOa63/HF0UsLXljGlhXWXJDBYQe9B4Q2unc7Np9A= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 4C54F39450CB X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=ZeL6+RcqgQvZ+7BnCHhiaGqCSjtIHDa6XmyeEpF7vjg=; b=UCIrh2hV3mYGoRkWw2zTYvjBFXskus1O8SurlMhg55+t8GZ67RQ8xAIaBUwcXBAL2E FAaSfqf5ZCFCLOkmioWfJuRm6W4EizUDxTWbmKyU6lCIZCWr9r5Z/W7uWL77JrZvPMCx D+aGq+bnOzXVVXoKNimVlJEyFXZe9FFMD6wYKu9uvmwIwuCG5nocBjfuv9yLdB3CPMH6 +6D/vajR/46CnJ4GmC4aXgihaYOX4moT09/kHxjZ8LhUYmU2sTAKJPe3QfPMHAtum1HE EuvjLg84WZ9VNaCcLBu6XgNx3iR+8ZQr3IkWZ3D53p4dN7xdLCXrPK3amY9zp9wklPww CaQg== X-Gm-Message-State: AGi0Pub3yEAAnMM/UWKlL5Qe7yT+Rfu8NI7bsQWjReOcBC3iZm7Igw73 7M8nRlonMjo/LaK094G4ukQKh8Ogxu0MQA== X-Google-Smtp-Source: APiQypIQAbON1agNgv6A2CYwbBZDDOYKFqxQfJi+AbN9VwZeYqlIMadwJCr3uyk3THuZ9s5Ay5J+NA== X-Received: by 2002:adf:f6ce:: with SMTP id y14mr2536637wrp.352.1586186044059; Mon, 06 Apr 2020 08:14:04 -0700 (PDT) Subject: Re: Naming conventions for python packages To: cygwin AT cygwin DOT com References: Message-ID: <7d55ff77-8e40-fe35-3c3c-ae31fc6622c7@gmail.com> Date: Mon, 6 Apr 2020 17:14:01 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 MIME-Version: 1.0 In-Reply-To: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, 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 X-BeenThere: cygwin AT cygwin DOT 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: , From: Marco Atzeri via Cygwin Reply-To: Marco Atzeri Content-Type: text/plain; charset="utf-8"; Format="flowed" Errors-To: cygwin-bounces AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 036FEaIx030426 Am 06.04.2020 um 16:35 schrieb Åke Rehnman via Cygwin: > Hello all, > > Sorry if this question is covered somewhere else...  I did try googling... > > What are the naming conventions for python packages ? > > python2-libftdi1-1.4-1 > > or > > python27-libftdi1-1.4-1 > > or just > > python-libftdi1-1.4-1 > > Same for python 3: > > python3-libftdi1-1.4-1 > > or > > python3.6-libftdi1-1.4-1 > > > BR > > /Ake > I suggest python27-libftdi1-1.4-1 python36-libftdi1-1.4-1 assumimg your library is dependent from the shared lib of the same python package: $ cygcheck -l python36 | grep dll /usr/bin/libpython3.6m.dll .... $ cygcheck -l python27 | grep dll /usr/bin/libpython2.7.dll ... -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple