* [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 @ 2026-07-17 6:19 Flaviu Nistor 2026-07-18 10:54 ` Julien Olivain via buildroot 0 siblings, 1 reply; 6+ messages in thread From: Flaviu Nistor @ 2026-07-17 6:19 UTC (permalink / raw) To: buildroot; +Cc: Flaviu Nistor, James Hilliard, Julien Olivain Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release on the project homepage, hence the bump to 0.7.2. Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> --- Changes in v2: - Fix error indicated by Julien Olivain when running make python-snappy-legal-info. - Link to v1: https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ package/python-snappy/python-snappy.hash | 4 ++-- package/python-snappy/python-snappy.mk | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package/python-snappy/python-snappy.hash b/package/python-snappy/python-snappy.hash index c4dbc72077..2f40b6c531 100644 --- a/package/python-snappy/python-snappy.hash +++ b/package/python-snappy/python-snappy.hash @@ -1,5 +1,5 @@ # md5, sha256 from https://pypi.org/pypi/python-snappy/json -md5 fc84cfa3526fba06d66f0d0b2e764300 python-snappy-0.6.1.tar.gz -sha256 b6a107ab06206acc5359d4c5632bd9b22d448702a79b3169b0c62e0fb808bb2a python-snappy-0.6.1.tar.gz +md5 04a4e58b0a932403bb285900e67c778d python_snappy-0.7.2.tar.gz +sha256 04bf182f9d9f67b7a846dae2f1df36180ceeee8d3380e4b6799deff5272c4978 python_snappy-0.7.2.tar.gz # Locally computed sha256 checksums sha256 d007cb05f143d99d16d5cd0d1bf291daf037adb36800344e440ec26edb938f9a LICENSE diff --git a/package/python-snappy/python-snappy.mk b/package/python-snappy/python-snappy.mk index e80aa861df..b1bd8ca6ca 100644 --- a/package/python-snappy/python-snappy.mk +++ b/package/python-snappy/python-snappy.mk @@ -4,8 +4,9 @@ # ################################################################################ -PYTHON_SNAPPY_VERSION = 0.6.1 -PYTHON_SNAPPY_SITE = https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 +PYTHON_SNAPPY_VERSION = 0.7.2 +PYTHON_SNAPPY_SOURCE = python_snappy-$(PYTHON_SNAPPY_VERSION).tar.gz +PYTHON_SNAPPY_SITE = https://files.pythonhosted.org/packages/cb/52/acd87583175fa930e4385f8a6164eb5909acd683c0e62ee01d41de8195a2 PYTHON_SNAPPY_SETUP_TYPE = setuptools PYTHON_SNAPPY_LICENSE = BSD-3-Clause PYTHON_SNAPPY_LICENSE_FILES = LICENSE -- 2.34.1 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 2026-07-17 6:19 [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 Flaviu Nistor @ 2026-07-18 10:54 ` Julien Olivain via buildroot 2026-07-20 13:33 ` Flaviu Nistor 0 siblings, 1 reply; 6+ messages in thread From: Julien Olivain via buildroot @ 2026-07-18 10:54 UTC (permalink / raw) To: Flaviu Nistor; +Cc: buildroot, James Hilliard Hi Flaviu, Thanks for the update. On 17/07/2026 08:19, Flaviu Nistor wrote: > Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release > on the project homepage, hence the bump to 0.7.2. > Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. > > Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> > --- > Changes in v2: > - Fix error indicated by Julien Olivain when running make > python-snappy-legal-info. > - Link to v1: > https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ > > package/python-snappy/python-snappy.hash | 4 ++-- > package/python-snappy/python-snappy.mk | 5 +++-- > 2 files changed, 5 insertions(+), 4 deletions(-) > [...] > diff --git a/package/python-snappy/python-snappy.mk > b/package/python-snappy/python-snappy.mk > index e80aa861df..b1bd8ca6ca 100644 > --- a/package/python-snappy/python-snappy.mk > +++ b/package/python-snappy/python-snappy.mk > @@ -4,8 +4,9 @@ > # > > ################################################################################ > > -PYTHON_SNAPPY_VERSION = 0.6.1 > -PYTHON_SNAPPY_SITE = > https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 > +PYTHON_SNAPPY_VERSION = 0.7.2 When building with the commands: cat >.config <<EOF BR2_aarch64=y BR2_TOOLCHAIN_EXTERNAL=y BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y BR2_PACKAGE_PYTHON3=y BR2_PACKAGE_PYTHON_SNAPPY=y EOF make olddefconfig make python-snappy The build fails with the error: ERROR Missing dependencies: cramjam>=2.6.0 It seems python-snappy was updated to switch from the snappy library to cramjam, since v0.7.0: https://github.com/intake/python-snappy/commit/277fb4a4b7e16b771f1ed1addde33feebd96c979 Cramjam is currently not included in Buildroot. So, I believe you will need to add it, and update this python-snappy bump to reflect that library change. I also suggest you write a Buildroot runtime test to make sure everything works. For the test, you can use the simple sequence such as: https://github.com/intake/python-snappy/blob/0.7.2/README.rst?plain=1#L50-L51 Could you send an updated patch series addressing those issues, please? > +PYTHON_SNAPPY_SOURCE = python_snappy-$(PYTHON_SNAPPY_VERSION).tar.gz > +PYTHON_SNAPPY_SITE = > https://files.pythonhosted.org/packages/cb/52/acd87583175fa930e4385f8a6164eb5909acd683c0e62ee01d41de8195a2 > PYTHON_SNAPPY_SETUP_TYPE = setuptools > PYTHON_SNAPPY_LICENSE = BSD-3-Clause > PYTHON_SNAPPY_LICENSE_FILES = LICENSE > -- > 2.34.1 Best regards, Julien. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 2026-07-18 10:54 ` Julien Olivain via buildroot @ 2026-07-20 13:33 ` Flaviu Nistor 2026-07-20 18:51 ` Julien Olivain via buildroot 0 siblings, 1 reply; 6+ messages in thread From: Flaviu Nistor @ 2026-07-20 13:33 UTC (permalink / raw) To: buildroot, Julien Olivain; +Cc: James Hilliard Hi Julien On 18/07/2026 13:54, Julien Olivain wrote: >Hi Flaviu, > >Thanks for the update. > >On 17/07/2026 08:19, Flaviu Nistor wrote: >> Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release >> on the project homepage, hence the bump to 0.7.2. >> Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. >> >> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >> --- >> Changes in v2: >> - Fix error indicated by Julien Olivain when running make >> python-snappy-legal-info. >> - Link to v1: >> https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ >> >> package/python-snappy/python-snappy.hash | 4 ++-- >> package/python-snappy/python-snappy.mk | 5 +++-- >> 2 files changed, 5 insertions(+), 4 deletions(-) >> >[...] >> diff --git a/package/python-snappy/python-snappy.mk >> b/package/python-snappy/python-snappy.mk >> index e80aa861df..b1bd8ca6ca 100644 >> --- a/package/python-snappy/python-snappy.mk >> +++ b/package/python-snappy/python-snappy.mk >> @@ -4,8 +4,9 @@ >> # >> >> ################################################################################ >> >> -PYTHON_SNAPPY_VERSION = 0.6.1 >> -PYTHON_SNAPPY_SITE = >> https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 >> +PYTHON_SNAPPY_VERSION = 0.7.2 > >When building with the commands: > >cat >.config <<EOF >BR2_aarch64=y >BR2_TOOLCHAIN_EXTERNAL=y >BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y >BR2_PACKAGE_PYTHON3=y >BR2_PACKAGE_PYTHON_SNAPPY=y >EOF >make olddefconfig >make python-snappy > >The build fails with the error: > >ERROR Missing dependencies: > cramjam>=2.6.0 > >It seems python-snappy was updated to switch from the snappy library >to cramjam, since v0.7.0: >https://github.com/intake/python-snappy/commit/277fb4a4b7e16b771f1ed1addde33feebd96c979 > >Cramjam is currently not included in Buildroot. So, I believe you will >need to add it, and update this python-snappy bump to reflect that >library change. > >I also suggest you write a Buildroot runtime test to make sure >everything works. For the test, you can use the simple sequence >such as: >https://github.com/intake/python-snappy/blob/0.7.2/README.rst?plain=1#L50-L51 > >Could you send an updated patch series addressing those issues, >please? First of all thanks a lot for the great support in guiding me and patience. For sure I will send a new patch series addressing the isseu, as soon as I have some time available. On my side, running the commands you provided fails even at installing toolchain-external-bootlin (2025.08-1), where look like a link can't be created. I'll have to make this work also on my side. >> +PYTHON_SNAPPY_SOURCE = python_snappy-$(PYTHON_SNAPPY_VERSION).tar.gz >> +PYTHON_SNAPPY_SITE = >> https://files.pythonhosted.org/packages/cb/52/acd87583175fa930e4385f8a6164eb5909acd683c0e62ee01d41de8195a2 >> PYTHON_SNAPPY_SETUP_TYPE = setuptools >> PYTHON_SNAPPY_LICENSE = BSD-3-Clause >> PYTHON_SNAPPY_LICENSE_FILES = LICENSE >> -- >> 2.34.1 > >Best regards, > >Julien. Best Regards, Flaviu _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 2026-07-20 13:33 ` Flaviu Nistor @ 2026-07-20 18:51 ` Julien Olivain via buildroot 2026-07-24 6:40 ` Flaviu Nistor 0 siblings, 1 reply; 6+ messages in thread From: Julien Olivain via buildroot @ 2026-07-20 18:51 UTC (permalink / raw) To: Flaviu Nistor; +Cc: James Hilliard, buildroot Hi Flaviu, On 20/07/2026 15:33, Flaviu Nistor wrote: > Hi Julien > > On 18/07/2026 13:54, Julien Olivain wrote: >> Hi Flaviu, >> >> Thanks for the update. >> >> On 17/07/2026 08:19, Flaviu Nistor wrote: >>> Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release >>> on the project homepage, hence the bump to 0.7.2. >>> Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. >>> >>> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >>> --- >>> Changes in v2: >>> - Fix error indicated by Julien Olivain when running make >>> python-snappy-legal-info. >>> - Link to v1: >>> https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ >>> >>> package/python-snappy/python-snappy.hash | 4 ++-- >>> package/python-snappy/python-snappy.mk | 5 +++-- >>> 2 files changed, 5 insertions(+), 4 deletions(-) >>> >> [...] >>> diff --git a/package/python-snappy/python-snappy.mk >>> b/package/python-snappy/python-snappy.mk >>> index e80aa861df..b1bd8ca6ca 100644 >>> --- a/package/python-snappy/python-snappy.mk >>> +++ b/package/python-snappy/python-snappy.mk >>> @@ -4,8 +4,9 @@ >>> # >>> >>> ################################################################################ >>> >>> -PYTHON_SNAPPY_VERSION = 0.6.1 >>> -PYTHON_SNAPPY_SITE = >>> https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 >>> +PYTHON_SNAPPY_VERSION = 0.7.2 >> >> When building with the commands: >> >> cat >.config <<EOF >> BR2_aarch64=y >> BR2_TOOLCHAIN_EXTERNAL=y >> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y >> BR2_PACKAGE_PYTHON3=y >> BR2_PACKAGE_PYTHON_SNAPPY=y >> EOF >> make olddefconfig >> make python-snappy >> >> The build fails with the error: >> >> ERROR Missing dependencies: >> cramjam>=2.6.0 >> >> It seems python-snappy was updated to switch from the snappy library >> to cramjam, since v0.7.0: >> https://github.com/intake/python-snappy/commit/277fb4a4b7e16b771f1ed1addde33feebd96c979 >> >> Cramjam is currently not included in Buildroot. So, I believe you will >> need to add it, and update this python-snappy bump to reflect that >> library change. >> >> I also suggest you write a Buildroot runtime test to make sure >> everything works. For the test, you can use the simple sequence >> such as: >> https://github.com/intake/python-snappy/blob/0.7.2/README.rst?plain=1#L50-L51 >> >> Could you send an updated patch series addressing those issues, >> please? > > First of all thanks a lot for the great support in guiding me and > patience. > For sure I will send a new patch series addressing the isseu, as soon > as I have > some time available. > On my side, running the commands you provided fails even at installing > toolchain-external-bootlin (2025.08-1), where look like a link can't be > created. > I'll have to make this work also on my side. The error you observe is most likely due to an "unclean" working directory. I believe you will just have to do a "make clean" first, then retry with the sequence I provided. >>> +PYTHON_SNAPPY_SOURCE = python_snappy-$(PYTHON_SNAPPY_VERSION).tar.gz >>> +PYTHON_SNAPPY_SITE = >>> https://files.pythonhosted.org/packages/cb/52/acd87583175fa930e4385f8a6164eb5909acd683c0e62ee01d41de8195a2 >>> PYTHON_SNAPPY_SETUP_TYPE = setuptools >>> PYTHON_SNAPPY_LICENSE = BSD-3-Clause >>> PYTHON_SNAPPY_LICENSE_FILES = LICENSE >>> -- >>> 2.34.1 >> >> Best regards, >> >> Julien. > > Best Regards, > Flaviu Best regards, Julien. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 2026-07-20 18:51 ` Julien Olivain via buildroot @ 2026-07-24 6:40 ` Flaviu Nistor 2026-07-24 13:19 ` Fiona Klute via buildroot 0 siblings, 1 reply; 6+ messages in thread From: Flaviu Nistor @ 2026-07-24 6:40 UTC (permalink / raw) To: Julien Olivain; +Cc: Flaviu Nistor, James Hilliard, buildroot Hi Julien On 20/07/2026 21:51, Julien Olivain wrote: >Hi Flaviu, > >On 20/07/2026 15:33, Flaviu Nistor wrote: >> Hi Julien >> >> On 18/07/2026 13:54, Julien Olivain wrote: >>> Hi Flaviu, >>> >>> Thanks for the update. >>> >>> On 17/07/2026 08:19, Flaviu Nistor wrote: >>>> Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release >>>> on the project homepage, hence the bump to 0.7.2. >>>> Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. >>>> >>>> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >>>> --- >>>> Changes in v2: >>>> - Fix error indicated by Julien Olivain when running make >>>> python-snappy-legal-info. >>>> - Link to v1: >>>> https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ >>>> >>>> package/python-snappy/python-snappy.hash | 4 ++-- >>>> package/python-snappy/python-snappy.mk | 5 +++-- >>>> 2 files changed, 5 insertions(+), 4 deletions(-) >>>> >>> [...] >>>> diff --git a/package/python-snappy/python-snappy.mk >>>> b/package/python-snappy/python-snappy.mk >>>> index e80aa861df..b1bd8ca6ca 100644 >>>> --- a/package/python-snappy/python-snappy.mk >>>> +++ b/package/python-snappy/python-snappy.mk >>>> @@ -4,8 +4,9 @@ >>>> # >>>> >>>> ################################################################################ >>>> >>>> -PYTHON_SNAPPY_VERSION = 0.6.1 >>>> -PYTHON_SNAPPY_SITE = >>>> https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 >>>> +PYTHON_SNAPPY_VERSION = 0.7.2 >>> >>> When building with the commands: >>> >>> cat >.config <<EOF >>> BR2_aarch64=y >>> BR2_TOOLCHAIN_EXTERNAL=y >>> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y >>> BR2_PACKAGE_PYTHON3=y >>> BR2_PACKAGE_PYTHON_SNAPPY=y >>> EOF >>> make olddefconfig >>> make python-snappy >>> >>> The build fails with the error: >>> >>> ERROR Missing dependencies: >>> cramjam>=2.6.0 >>> >>> It seems python-snappy was updated to switch from the snappy library >>> to cramjam, since v0.7.0: >> https://github.com/intake/python-snappy/commit/277fb4a4b7e16b771f1ed1addde33feebd96c979 >>> >>> Cramjam is currently not included in Buildroot. So, I believe you will >>> need to add it, and update this python-snappy bump to reflect that >>> library change. >>> >>> I also suggest you write a Buildroot runtime test to make sure >>> everything works. For the test, you can use the simple sequence >>> such as: >>> https://github.com/intake/python-snappy/blob/0.7.2/README.rst?plain=1#L50-L51 >>> >>> Could you send an updated patch series addressing those issues, >>> please? >> >> First of all thanks a lot for the great support in guiding me and >> patience. >> For sure I will send a new patch series addressing the isseu, as soon >> as I have >> some time available. >> On my side, running the commands you provided fails even at installing >> toolchain-external-bootlin (2025.08-1), where look like a link can't be >> created. >> I'll have to make this work also on my side. > >The error you observe is most likely due to an "unclean" working >directory. >I believe you will just have to do a "make clean" first, then retry with >the >sequence I provided. > That did the trick (make clean). I generated and tested a new patch series that now also added cramjam package and all is working fine. I even generated a QEMU image and tested inside the emulated that expected version is present and a simple py script using the python-snappy is working. I still have some issue with the python-snappy package tests since I have an error (segmentation fault) when running and I still can't find my bug. The test is simple, so I can't understand what is happening. Once I solve this I will send a different patch for the test. One more question: Since I added a new package and is not covered in the Developers list, should/can I add my self to that list in the future (for specific packages)? >>>> +PYTHON_SNAPPY_SOURCE = python_snappy-$(PYTHON_SNAPPY_VERSION).tar.gz >>>> +PYTHON_SNAPPY_SITE = >>>> https://files.pythonhosted.org/packages/cb/52/acd87583175fa930e4385f8a6164eb5909acd683c0e62ee01d41de8195a2 >>>> PYTHON_SNAPPY_SETUP_TYPE = setuptools >>>> PYTHON_SNAPPY_LICENSE = BSD-3-Clause >>>> PYTHON_SNAPPY_LICENSE_FILES = LICENSE >>>> -- >>>> 2.34.1 >>> >>> Best regards, >>> >>> Julien. >> >> Best Regards, >> Flaviu > >Best regards, > >Julien. Best regards, Flaviu _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 2026-07-24 6:40 ` Flaviu Nistor @ 2026-07-24 13:19 ` Fiona Klute via buildroot 0 siblings, 0 replies; 6+ messages in thread From: Fiona Klute via buildroot @ 2026-07-24 13:19 UTC (permalink / raw) To: Flaviu Nistor, Julien Olivain; +Cc: James Hilliard, buildroot Am 24.07.26 um 08:40 schrieb Flaviu Nistor: > Hi Julien > > On 20/07/2026 21:51, Julien Olivain wrote: >> Hi Flaviu, >> >> On 20/07/2026 15:33, Flaviu Nistor wrote: >>> Hi Julien >>> >>> On 18/07/2026 13:54, Julien Olivain wrote: >>>> Hi Flaviu, >>>> >>>> Thanks for the update. >>>> >>>> On 17/07/2026 08:19, Flaviu Nistor wrote: >>>>> Even if there is a 0.7.3 on Pypi, there is no 0.7.3 release >>>>> on the project homepage, hence the bump to 0.7.2. >>>>> Add also PYTHON_SNAPPY_SOURCE for correct package on Pypi. >>>>> >>>>> Signed-off-by: Flaviu Nistor <flaviu.nistor@gmail.com> >>>>> --- >>>>> Changes in v2: >>>>> - Fix error indicated by Julien Olivain when running make >>>>> python-snappy-legal-info. >>>>> - Link to v1: >>>>> https://lore.kernel.org/all/20260409152520.5894-1-flaviu.nistor@gmail.com/ >>>>> >>>>> package/python-snappy/python-snappy.hash | 4 ++-- >>>>> package/python-snappy/python-snappy.mk | 5 +++-- >>>>> 2 files changed, 5 insertions(+), 4 deletions(-) >>>>> >>>> [...] >>>>> diff --git a/package/python-snappy/python-snappy.mk >>>>> b/package/python-snappy/python-snappy.mk >>>>> index e80aa861df..b1bd8ca6ca 100644 >>>>> --- a/package/python-snappy/python-snappy.mk >>>>> +++ b/package/python-snappy/python-snappy.mk >>>>> @@ -4,8 +4,9 @@ >>>>> # >>>>> >>>>> ################################################################################ >>>>> >>>>> -PYTHON_SNAPPY_VERSION = 0.6.1 >>>>> -PYTHON_SNAPPY_SITE = >>>>> https://files.pythonhosted.org/packages/98/7a/44a24bad98335b2c72e4cadcdecf79f50197d1bab9f22f863a274f104b96 >>>>> +PYTHON_SNAPPY_VERSION = 0.7.2 >>>> >>>> When building with the commands: >>>> >>>> cat >.config <<EOF >>>> BR2_aarch64=y >>>> BR2_TOOLCHAIN_EXTERNAL=y >>>> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y >>>> BR2_PACKAGE_PYTHON3=y >>>> BR2_PACKAGE_PYTHON_SNAPPY=y >>>> EOF >>>> make olddefconfig >>>> make python-snappy >>>> >>>> The build fails with the error: >>>> >>>> ERROR Missing dependencies: >>>> cramjam>=2.6.0 >>>> >>>> It seems python-snappy was updated to switch from the snappy library >>>> to cramjam, since v0.7.0: >>> https://github.com/intake/python-snappy/commit/277fb4a4b7e16b771f1ed1addde33feebd96c979 >>>> >>>> Cramjam is currently not included in Buildroot. So, I believe you will >>>> need to add it, and update this python-snappy bump to reflect that >>>> library change. >>>> >>>> I also suggest you write a Buildroot runtime test to make sure >>>> everything works. For the test, you can use the simple sequence >>>> such as: >>>> https://github.com/intake/python-snappy/blob/0.7.2/README.rst?plain=1#L50-L51 >>>> >>>> Could you send an updated patch series addressing those issues, >>>> please? >>> >>> First of all thanks a lot for the great support in guiding me and >>> patience. >>> For sure I will send a new patch series addressing the isseu, as soon >>> as I have >>> some time available. >>> On my side, running the commands you provided fails even at installing >>> toolchain-external-bootlin (2025.08-1), where look like a link can't be >>> created. >>> I'll have to make this work also on my side. >> >> The error you observe is most likely due to an "unclean" working >> directory. >> I believe you will just have to do a "make clean" first, then retry with >> the >> sequence I provided. >> > > That did the trick (make clean). I generated and tested a new patch series that > now also added cramjam package and all is working fine. I even generated a QEMU > image and tested inside the emulated that expected version is present and a simple > py script using the python-snappy is working. > > I still have some issue with the python-snappy package tests since I have an error > (segmentation fault) when running and I still can't find my bug. The test is simple, > so I can't understand what is happening. Once I solve this I will send a different > patch for the test. > > One more question: Since I added a new package and is not covered in the Developers > list, should/can I add my self to that list in the future (for specific packages)? Yes. If you add a new package it's generally expected that you add yourself to DEVELOPERS for that package. And you can add yourself for other packages, if you want. That doesn't give any special privileges, it just tells people to CC you for relevant patches, and certain automated systems will send you warnings related to those packages (e.g. if tests fail, or an update is available). Best regards, Fiona _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-24 13:19 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-17 6:19 [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2 Flaviu Nistor 2026-07-18 10:54 ` Julien Olivain via buildroot 2026-07-20 13:33 ` Flaviu Nistor 2026-07-20 18:51 ` Julien Olivain via buildroot 2026-07-24 6:40 ` Flaviu Nistor 2026-07-24 13:19 ` Fiona Klute via buildroot
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox