Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Flaviu Nistor <flaviu.nistor@gmail.com>
To: Julien Olivain <ju.o@free.fr>
Cc: Flaviu Nistor <flaviu.nistor@gmail.com>,
	James Hilliard <james.hilliard1@gmail.com>,
	buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v2] package/python-snappy: bump version to 0.7.2
Date: Thu, 30 Jul 2026 10:52:25 +0300	[thread overview]
Message-ID: <20260730075225.5131-1-flaviu.nistor@gmail.com> (raw)
In-Reply-To: <20260724064006.216995-1-flaviu.nistor@gmail.com>

On 27/07/2026 9:40, Flaviu Nistor wrote:
>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.
>

Even do I have send a working v3, please discard it since I have now send a v4 that
contains also the patch for a working test (see below) and a more clean version for
the other files.

>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.
>

I had to spend a lot of time to understand what was happening. As I sad, same content
of the test was working inside qemu for aarch64 and x86_64. The problem was that running
the test is using as default armv5, 32 bits. This was causing a segmentation fault
at the beginning of the test when snappy was imported, which was actually caused by snappy
importing cramjam. Look like it is not working for amrv5, 32 bits.
This is now reflected in Config.in file for the package.

>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)?
>

Thanks Fiona Klute for the clarification! 

>>>>> +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

      parent reply	other threads:[~2026-07-30  7:52 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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
2026-07-30  7:52         ` Flaviu Nistor [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260730075225.5131-1-flaviu.nistor@gmail.com \
    --to=flaviu.nistor@gmail.com \
    --cc=buildroot@buildroot.org \
    --cc=james.hilliard1@gmail.com \
    --cc=ju.o@free.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox