From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 24 Sep 2023 07:45:29 +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.94.2) (envelope-from ) id 1qkHvu-008zqp-UP for lore@lore.pengutronix.de; Sun, 24 Sep 2023 07:45:29 +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 1qkHvt-0008Ru-Cj; Sun, 24 Sep 2023 07:45:29 +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 1qkHur-0006gL-LI; Sun, 24 Sep 2023 07:44:25 +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 1qkHur-008ZES-8a; Sun, 24 Sep 2023 07:44:25 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1qkHur-000Vdr-0i; Sun, 24 Sep 2023 07:44:25 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sun, 24 Sep 2023 07:44:25 +0200 Message-Id: <20230924054425.121624-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230903183958.724911-2-christian.melki@t2data.com> References: <20230903183958.724911-2-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] alsa-utils: Version bump. 1.2.9 -> 1.2.10 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: Christian Melki 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 8cda3821c55405cc69b7a0db69de47601ef14bb6. Michael [sent from post-receive hook] On Sun, 24 Sep 2023 07:44:25 +0200, Christian Melki wrote: > Mostly bugfixes. > https://github.com/alsa-project/alsa-utils/releases/tag/v1.2.10 > > * Forward patch, but fix some fuzz. > > Signed-off-by: Christian Melki > Message-Id: <20230903183958.724911-2-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/patches/alsa-utils-1.2.9/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch b/patches/alsa-utils-1.2.10/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch > similarity index 94% > rename from patches/alsa-utils-1.2.9/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch > rename to patches/alsa-utils-1.2.10/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch > index 2298f0037eae..6f4fe5848cf6 100644 > --- a/patches/alsa-utils-1.2.9/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch > +++ b/patches/alsa-utils-1.2.10/0001-alsactl-info.c-fix-conditionals-on-__ALSA_PCM_H-and-.patch > @@ -31,7 +31,7 @@ Signed-off-by: Thomas Petazzoni > 1 file changed, 10 insertions(+), 4 deletions(-) > > diff --git a/alsactl/info.c b/alsactl/info.c > -index 3e4b9486d720..af55206b8484 100644 > +index 1d648d870381..aeff16babb19 100644 > --- a/alsactl/info.c > +++ b/alsactl/info.c > @@ -22,9 +22,9 @@ > @@ -94,9 +94,9 @@ index 3e4b9486d720..af55206b8484 100644 > +#ifdef __ALSA_RAWMIDI_H > first = true; > if (err >= 0) > - err = rawmidi_device_list(ctl, SND_PCM_STREAM_PLAYBACK, &first); > + err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_INPUT, &first); > if (err >= 0) > - err = rawmidi_device_list(ctl, SND_PCM_STREAM_CAPTURE, &first); > + err = rawmidi_device_list(ctl, SND_RAWMIDI_STREAM_OUTPUT, &first); > +#endif > > if (err >= 0) > diff --git a/patches/alsa-utils-1.2.9/series b/patches/alsa-utils-1.2.10/series > similarity index 100% > rename from patches/alsa-utils-1.2.9/series > rename to patches/alsa-utils-1.2.10/series > diff --git a/rules/alsa-utils.make b/rules/alsa-utils.make > index 2d7162144eab..46d110823c7f 100644 > --- a/rules/alsa-utils.make > +++ b/rules/alsa-utils.make > @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_ALSA_UTILS) += alsa-utils > # > # Paths and names > # > -ALSA_UTILS_VERSION := 1.2.9 > -ALSA_UTILS_MD5 := 095a31a5924695a7cc5b40f9574ba85e > +ALSA_UTILS_VERSION := 1.2.10 > +ALSA_UTILS_MD5 := 4fc281a85abb74d6c29363fb0ba2c7b8 > ALSA_UTILS := alsa-utils-$(ALSA_UTILS_VERSION) > ALSA_UTILS_SUFFIX := tar.bz2 > ALSA_UTILS_URL := \