From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 12 Sep 2024 14:20:18 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1soio7-003n1v-0Q for lore@lore.pengutronix.de; Thu, 12 Sep 2024 14:20:18 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1soio6-0003Ur-8Q; Thu, 12 Sep 2024 14:20:18 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1soigF-0002gD-AI; Thu, 12 Sep 2024 14:12:11 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1soigE-007NT3-Tb; Thu, 12 Sep 2024 14:12:10 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1soigE-00BHQt-2p; Thu, 12 Sep 2024 14:12:10 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 12 Sep 2024 14:12:10 +0200 Message-Id: <20240912121210.2688612-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240910084829.3240452-1-lapeddk@gmail.com> References: <20240910084829.3240452-1-lapeddk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] pyserial3: Version bump 3.4 -> 3.5 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Lars Pedersen Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 77953b206fdc927fb6e9a46e9c1e925bba106ecd. Michael [sent from post-receive hook] On Thu, 12 Sep 2024 14:12:10 +0200, Lars Pedersen wrote: > * License year has been updated > * Fixed package naming > * Updated URL to pypi mirror > > Signed-off-by: Lars Pedersen > Message-Id: <20240910084829.3240452-1-lapeddk@gmail.com> > [mol: fix installing miniterm] > Signed-off-by: Michael Olbrich > > diff --git a/rules/pyserial3.make b/rules/pyserial3.make > index 4770e7e1d320..3f766b75bdf3 100644 > --- a/rules/pyserial3.make > +++ b/rules/pyserial3.make > @@ -15,16 +15,16 @@ PACKAGES-$(PTXCONF_PYSERIAL3) += pyserial3 > # > # Paths and names > # > -PYSERIAL3_VERSION := 3.4 > -PYSERIAL3_MD5 := fc00727ed9cf3a31b7a296a4d42f6afc > -PYSERIAL3 := v$(PYSERIAL3_VERSION) > +PYSERIAL3_VERSION := 3.5 > +PYSERIAL3_MD5 := 1cf25a76da59b530dbfc2cf99392dc83 > +PYSERIAL3 := pyserial-$(PYSERIAL3_VERSION) > PYSERIAL3_SUFFIX := tar.gz > -PYSERIAL3_URL := https://github.com/pyserial/pyserial/archive/v$(PYSERIAL3_VERSION).$(PYSERIAL3_SUFFIX) > +PYSERIAL3_URL := $(call ptx/mirror-pypi, pyserial, $(PYSERIAL3).$(PYSERIAL3_SUFFIX)) > PYSERIAL3_SOURCE := $(SRCDIR)/$(PYSERIAL3).$(PYSERIAL3_SUFFIX) > PYSERIAL3_DIR := $(BUILDDIR)/$(PYSERIAL3) > PYSERIAL3_LICENSE := BSD-3-Clause > PYSERIAL3_LICENSE_FILES := \ > - file://LICENSE.txt;md5=d476d94926db6e0008a5b3860d1f5c0d > + file://LICENSE.txt;md5=520e45e59fc2cf94aa53850f46b86436 > > # ---------------------------------------------------------------------------- > # Extract > @@ -71,8 +71,8 @@ $(STATEDIR)/pyserial3.targetinstall: > done > > ifdef PTXCONF_PYSERIAL3_MINITERM > - $(call install_copy, pyserial3, 0, 0, 0755, \ > - $(PYSERIAL3_PKGDIR)/usr/bin/miniterm.py, /usr/bin/miniterm3.py) > + $(call install_copy, pyserial3, 0, 0, 0755, -, \ > + /usr/bin/pyserial-miniterm) > endif > > @$(call install_finish, pyserial3)