Received: from mail-wr1-f41.google.com (mail-wr1-f41.google.com [209.85.221.41]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 38142782BB2 for <~alpine/devel@lists.alpinelinux.org>; Mon, 11 May 2020 07:03:12 +0000 (UTC) Received: by mail-wr1-f41.google.com with SMTP id e16so9452288wra.7 for <~alpine/devel@lists.alpinelinux.org>; Mon, 11 May 2020 00:03:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=sYH7D7RlQBoK0wdDHUcK1idw8xrM5OdE5KNQq/PWWzo=; b=KNCxRj5CYjgsIHbZUsL9+H2X2y/s+SUdnFDK+L69dc9mU0XghvFqv6JkPGUe+xz1j+ JssrvwIaRZUcXFwZiYVfjnaojFnYZw/HlW1m5xYILs5yznWFXA3+9PV7eTQDK/Bohh3n lUjkP6ynczVpqm7P1l2CIuw+QSD8hmDpzXfUhQVxp0aTtg9LqiI9C7kei/RZYVdO5FdA 3wuX67RLPfRAwvFhd/tGM0UECd2Thz5MsBYPYDivJl+yJH0XSSRwC8Tzqlf9hfoktlmF UcjzzYSUSZn8hr7euJxf6g/w+gS6ybjNxo+vmtR6b7OLalY4jq8e979ekXtAC/fmqc0Q rKaA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=sYH7D7RlQBoK0wdDHUcK1idw8xrM5OdE5KNQq/PWWzo=; b=j0ZO2aBKbW3bW28CVbFMNS+loi+8M6OjmizkKbUrBHqmNb90ViqqFMlsoFjCzxvBU2 4hbln3UEGjG3niPSVh4SR7sviDFoxIU3Fc5SwJPu5MiFuMECGo2Ga49iKEyP2RBqr7x1 o5QcWkYp1H/vLe2/J13nsTWPILheWjzJhRe0s0bkpE9pqvf6xF/rH0oh7alS94tGSNmp 7Nj2Kj/200Sh149fwVnf/+7h99OdkfWefxmpbSLzJyayjej9z8q8wm7wiQ61Mcqat5Do i7Ro+/F0FY210l5IpgtXuSyTlI79nBLHe2AYr5sE83Wq71Y0CFu/w71tacxhX5BWdjKj iEBg== X-Gm-Message-State: AGi0PuaQd17Xp2AhwjQBVD09Ft0d65d+DCIE2iYO9RZN2Kb64E/8DxjB 8yyjg33FuT8J4ryuwWoEYkQLmuvnzDw= X-Google-Smtp-Source: APiQypLL0I6VMNMm7UexTpHg628ByLUdLcEQqFv30tzYKGrrJ1/mN787J0KlVkDIkAQePLOoIuiyuA== X-Received: by 2002:a05:6000:146:: with SMTP id r6mr17839112wrx.9.1589180591474; Mon, 11 May 2020 00:03:11 -0700 (PDT) Received: from nuc.home (d.6.a.0.c.2.2.9.5.0.3.6.6.2.9.5.b.0.9.8.c.1.1.b.0.b.8.0.1.0.0.2.ip6.arpa. [2001:8b0:b11c:890b:5926:6305:922c:a6d]) by smtp.gmail.com with ESMTPSA id g6sm16355739wrw.34.2020.05.11.00.03.10 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 11 May 2020 00:03:10 -0700 (PDT) Date: Mon, 11 May 2020 08:03:08 +0100 From: Keith Maxwell To: Natanael Copa Cc: Fabian Affolter , Alpine develmopment <~alpine/devel@lists.alpinelinux.org> Subject: Re: ansible-lint package Message-ID: <20200511070308.GA24713@nuc.home> References: <20191128171101.5f46a241@ncopa-desktop.copa.dup.pw> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191128171101.5f46a241@ncopa-desktop.copa.dup.pw> Hello, Sorry to reply to a email from November, but we just implemented a solution. On Thu, Nov 28, 2019 at 05:11:01PM +0100, Natanael Copa wrote: > I updated ansible-lint package to 4.1.1a1 so it builds with python 3.8. > > It looks like upstream has removed the setup.py in favor of `pip > install`.[1] > > Do you (or someone else) know how we properly can package > this properly with pip? [2] We upgrade to 4.2 in 7699 [1] by adopting an approach from Arch Linux: ``` - python3 setup.py build + python3 -c "from setuptools import setup; setup();" build ``` > > Or should we simply remove the package, telling the users to use pip > install and let upstream deal with the user support? We had a discussion about this on the MR. I see a lot of value in keeping libraries with C extensions packaged as these require other build tools as well as pip. For example py3-ruamel.yaml.clib is an indirect dependency of ansible-lint. Python packaging and build tools are evolving, and I find this an interesting topic. [1]: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/7699 -- Kind Regards Keith Maxwell +44 (0)7816 540 534