• [gentoo-user] problem installing confluent-kafka from guru

    From Anatoly Oreshkin@21:1/5 to All on Tue Feb 22 08:10:01 2022
    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository.
    To install it I have performed the following steps in command line:

    1. sudo emerge app-eselect/eselect-repository
    2. sudo mkdir /etc/portage/repos.conf
    3. sudo eselect repository enable guru
    4. sudo emaint sync -r guru; emerge --sync
    5. cat > /etc/portage/package.accept_keywords/confluent-kafka <<EOF dev-python/confluent-kafka ~amd64
    dev-python/fastavro ~amd64
    dev-python/favro ~amd64
    dev-python/avro ~amd64
    net-misc/kafka-bin ~amd64
    EOF
    6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g' /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild


    7. sudo emerge dev-python/confluent-kafka

    Everything is OK. The package dev-python/confluent-kafka is installed.

    emerge --search dev-python/confluent-kafka
    [ Results for search key : dev-python/confluent-kafka ]
    Searching...

    * dev-python/confluent-kafka
    Latest version available: 1.7.0
    Latest version installed: 1.7.0
    Size of files: 101 KiB
    Homepage: https://pypi.org/project/confluent-kafka https://github.com/confluentinc/confluent-kafka-python
    Description: Confluent's Kafka Python Client
    License: Apache-2.0
    Then I have tried to install dev-python/confluent-kafka using SaltStack.
    Here is init.sls for installing dev-python/confluent-kafka:

    # install eselect-repository
    app-eselect/eselect-repository:
    pkg:
    - installed
    - names:
    - app-eselect/eselect-repository
    /etc/portage/repos.conf:
    file.directory:
    - name: /etc/portage/repos.conf
    - user: root
    - group: root
    - mode: 755
    - require:
    - app-eselect/eselect-repository
    # add GURU repository
    add_guru:
    cmd.run:
    - name: eselect repository enable guru; emaint sync -r guru; emerge
    --sync
    - require:
    - /etc/portage/repos.conf

    dev-libs/librdkafka:
    pkg:
    - installed
    - name:
    - dev-libs/librdkafka

    /etc/portage/package.accept_keywords/confluent-kafka:
    file.managed:
    - create: True
    - contents:
    - dev-python/confluent-kafka ~amd64
    - dev-python/fastavro ~amd64
    - dev-python/favro ~amd64
    - dev-python/avro ~amd64
    - net-misc/kafka-bin ~amd64


    # modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild confluent-kafka-1.7.0.ebuild:
    cmd.run:
    - name: sed -i 's/python3_8/python3_9/g' /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild
    - require:
    - add_guru
    - /etc/portage/package.accept_keywords/confluent-kafka


    dev-python/confluent-kafka:
    pkg:
    - installed
    - name: dev-python/confluent-kafka
    - require:
    - confluent-kafka-1.7.0.ebuild
    - dev-libs/librdkafka
    - add_guru


    I've received the error while installing dev-python/confluent-kafka:

    The following package(s) were not found, and no possible matches were found
    in the package db: dev-python/confluent-kafka.

    However guru repository is added to my gentoo installation and
    dev-python/confluent-kafka is available.
    So I can install dev-python/confluent-kafka in command line by command:

    sudo emerge dev-python/confluent-kafka

    or just once more rerunning SaltStack init.sls

    What may be the reason ? Any ideas, hints ?
    Thank you.

    <div dir="ltr">Hello,<br><br>I am a newbie to Gentoo.<br>As end user I am  using package confluent-kafka from guru repository.<br>To install it I have performed the following steps in command line:<br><br>1. sudo emerge app-eselect/eselect-repository<br>
    2. sudo mkdir /etc/portage/repos.conf<br>3. sudo eselect repository enable guru<br>4. sudo emaint sync -r guru;  emerge --sync<br>5. cat &gt; /etc/portage/package.accept_keywords/confluent-kafka &lt;&lt;EOF<br>dev-python/confluent-kafka ~amd64<br>dev-
    python/fastavro ~amd64<br>dev-python/favro ~amd64<br>dev-python/avro ~amd64<br>net-misc/kafka-bin ~amd64<br>EOF<br>6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_
    COMPAT=( python3_9 )<br>sed -i &#39;s/python3_8/python3_9/g&#39; /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br><br><br>7. sudo emerge  dev-python/confluent-kafka<br><br>Everything is OK. The package dev-python/confluent-
    kafka is installed.<br><br>emerge --search dev-python/confluent-kafka<br>[ Results for search key : dev-python/confluent-kafka ]<br>Searching...<br><br>*  dev-python/confluent-kafka<br>     Latest version available: 1.7.0<br>     Latest version
    installed: 1.7.0<br>     Size of files: 101 KiB<br>     Homepage:      <a href="https://pypi.org/project/confluent-kafka">https://pypi.org/project/confluent-kafka</a> <a href="https://github.com/confluentinc/confluent-kafka-python">https://
    github.com/confluentinc/confluent-kafka-python</a><br>     Description:   Confluent&#39;s Kafka Python Client<br>     License:       Apache-2.0<br>Then I have tried to install dev-python/confluent-kafka using SaltStack.<br>Here is init.sls for
    installing dev-python/confluent-kafka:<br><br># install eselect-repository<br>app-eselect/eselect-repository:<br> pkg:<br>   - installed<br>   - names:<br>     - app-eselect/eselect-repository<br>/etc/portage/repos.conf:<br> file.directory:<br> 
     - name: /etc/portage/repos.conf<br>   - user: root<br>   - group: root<br>   - mode: 755<br>   - require:<br>     - app-eselect/eselect-repository<br># add GURU repository<br>add_guru:<br> cmd.run:<br>   - name: eselect repository enable
    guru; emaint sync -r guru;  emerge --sync<br>   - require:   <br>     - /etc/portage/repos.conf<br><br>dev-libs/librdkafka:<br> pkg:<br>   - installed<br>   - name:<br>     - dev-libs/librdkafka<br><br>/etc/portage/package.accept_keywords/
    confluent-kafka:<br> file.managed:<br>   - create: True<br>   - contents:<br>     - dev-python/confluent-kafka ~amd64<br>     - dev-python/fastavro ~amd64<br>     - dev-python/favro ~amd64<br>     - dev-python/avro ~amd64<br>     -
    net-misc/kafka-bin ~amd64<br><br><br># modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>confluent-kafka-1.7.0.ebuild:<br> cmd.run:  <br>   - name:  sed -i &#39;s/python3_8/python3_9/g&#39; /var/db/repos/guru/dev-
    python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>   - require:<br>     - add_guru<br><div>     - /etc/portage/package.accept_keywords/confluent-kafka</div><div><br><br>dev-python/confluent-kafka:<br> pkg:<br>   - installed<br>   - name:
    dev-python/confluent-kafka<br>   - require:<br>     - confluent-kafka-1.7.0.ebuild<br>     - dev-libs/librdkafka<br>     - add_guru<br><br><br>I&#39;ve received the error while installing dev-python/confluent-kafka:<br><br>The following
    package(s) were not found, and no possible matches were found in the package db: dev-python/confluent-kafka.<br><br>However guru repository  is added to my gentoo installation and  dev-python/confluent-kafka is available.<br>So I can install dev-python/
    confluent-kafka in command line  by command:<br><br>sudo emerge  dev-python/confluent-kafka</div><div><br>or just once more rerunning SaltStack init.sls<br><br>What may be the reason ?  Any ideas, hints ?<br>Thank you.</div><div><br></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Matt Connell (Gmail)@21:1/5 to Anatoly Oreshkin on Tue Feb 22 15:50:01 2022
    On Tue, 2022-02-22 at 10:02 +0300, Anatoly Oreshkin wrote:
    The following package(s) were not found, and no possible matches were
    found in the package db: dev-python/confluent-kafka.

    I've never used a gentoo system with salt stack, but I had a thought.
    Salt can be picky with package names sometimes.

    Try specifying the package name this way, with the repository
    explicitly specified:

    dev-python/confluent-kafka::guru

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Anatoly Oreshkin@21:1/5 to All on Wed Feb 23 09:30:01 2022
    Hi,
    Unfortunately specifying dev-python/confluent-kafka::guru hasn't helped.
    I've received the same error message:
    ID: dev-python/confluent-kafka
    Function: pkg.installed
    Name: dev-python/confluent-kafka::guru
    Result: False
    Comment: The following package(s) were not found, and no possible
    matches were found in the package db: dev-pyt
    hon/confluent-kafka::guru


    Started: 08:23:53.928495
    Duration: 61.712 ms
    Changes:





    вт, 22 февр. 2022 г. в 17:42, Matt Connell (Gmail) < matthewdconnell@gmail.com>:

    On Tue, 2022-02-22 at 10:02 +0300, Anatoly Oreshkin wrote:
    The following package(s) were not found, and no possible matches were
    found in the package db: dev-python/confluent-kafka.

    I've never used a gentoo system with salt stack, but I had a thought.
    Salt can be picky with package names sometimes.

    Try specifying the package name this way, with the repository
    explicitly specified:

    dev-python/confluent-kafka::guru





    <div dir="ltr"><div>Hi, <br></div><div>Unfortunately specifying dev-python/confluent-kafka::guru hasn&#39;t helped.</div><div>I&#39;ve received the same error message:</div><div><span style="font-family:monospace"><span style="color:rgb(0,0,0);background-
    color:rgb(255,255,255)">    </span><span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">      ID: dev-python/confluent-kafka</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br>    <span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">Function: pkg.installed</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br>    <span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">    Name: dev-python/confluent-kafka::guru</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br>    <span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">  Result: False</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br>    <span style="color:rgb(178,24,24);background-color:rgb(255,255,255)"> Comment: The following package(s) were not found, and no possible matches were found in the package db: dev-pyt</span><br>hon/confluent-kafka::guru          
                                                                                     <span style="color:rgb(0,0,0);background-color:rgb(255,255,255)"> </span><br>    <span
    style="color:rgb(178,24,24);background-color:rgb(255,255,255)"> Started: 08:23:53.928495</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br>    <span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">Duration: 61.712 ms</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br><span style="color:rgb(178,24,24);background-color:rgb(255,255,255)">     Changes:   </span><br><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">
    </span><br><br></span></div><div><br></div><div><br></div><div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">вт, 22 февр. 2022 г. в 17:42, Matt Connell (Gmail) &lt;<a href="mailto:matthewdconnell@gmail.com">
    matthewdconnell@gmail.com</a>&gt;:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Tue, 2022-02-22 at 10:02 +0300, Anatoly Oreshkin wrote:<br>
    &gt; The following package(s) were not found, and no possible matches were<br> &gt; found in the package db: dev-python/confluent-kafka.<br>

    I&#39;ve never used a gentoo system with salt stack, but I had a thought. <br> Salt can be picky with package names sometimes.<br>

    Try specifying the package name this way, with the repository<br>
    explicitly specified:<br>

    dev-python/confluent-kafka::guru<br>



    </blockquote></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Matt Connell (Gmail)@21:1/5 to Anatoly Oreshkin on Wed Feb 23 23:00:01 2022
    On Wed, 2022-02-23 at 11:28 +0300, Anatoly Oreshkin wrote:
    Unfortunately specifying dev-python/confluent-kafka::guru hasn't
    helped.

    Unfortunately I don't have any better ideas. I've had more problems
    with the pkg.installed state than any other single thing in Salt.

    If you states don't need to be extended to other platforms, you could
    just resort to cmd.run again. Seems you're already doing that with
    emaint anyway.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Anatoly Oreshkin@21:1/5 to All on Thu Feb 24 08:00:01 2022
    To work around my problem I've changed state dev-python/confluent-kafka to
    this variant:

    dev-python/confluent-kafka:
    cmd.run:
    - name: emerge dev-python/confluent-kafka
    - require:
    - confluent-kafka-1.7.0.ebuild
    - dev-libs/librdkafka
    - add_guru

    It works !
    Thanks.



    чт, 24 февр. 2022 г. в 00:55, Matt Connell (Gmail) < matthewdconnell@gmail.com>:

    On Wed, 2022-02-23 at 11:28 +0300, Anatoly Oreshkin wrote:
    Unfortunately specifying dev-python/confluent-kafka::guru hasn't
    helped.

    Unfortunately I don't have any better ideas. I've had more problems
    with the pkg.installed state than any other single thing in Salt.

    If you states don't need to be extended to other platforms, you could
    just resort to cmd.run again. Seems you're already doing that with
    emaint anyway.




    <div dir="ltr"><div>To work around my problem I&#39;ve changed state dev-python/confluent-kafka to this variant:<br></div><div><br></div><div>dev-python/confluent-kafka:<br>  cmd.run:<br>    - name: emerge dev-python/confluent-kafka<br>    - require:
    <br>      - confluent-kafka-1.7.0.ebuild<br>      - dev-libs/librdkafka<br>      - add_guru</div><div><br></div><div>It works !</div><div>Thanks.<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="
    gmail_attr">чт, 24 февр. 2022 г. в 00:55, Matt Connell (Gmail) &lt;<a href="mailto:matthewdconnell@gmail.com">matthewdconnell@gmail.com</a>&gt;:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(
    204,204,204);padding-left:1ex">On Wed, 2022-02-23 at 11:28 +0300, Anatoly Oreshkin wrote:<br>
    &gt; Unfortunately specifying dev-python/confluent-kafka::guru hasn&#39;t<br> &gt; helped.<br>

    Unfortunately I don&#39;t have any better ideas.  I&#39;ve had more problems<br>
    with the pkg.installed state than any other single thing in Salt.<br>

    If you states don&#39;t need to be extended to other platforms, you could<br> just resort to cmd.run again.  Seems you&#39;re already doing that with<br> emaint anyway.<br>


    </blockquote></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Alessandro Barbieri@21:1/5 to All on Sat Feb 26 01:50:01 2022
    Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin < anatoly.oreshkin@gmail.com> ha scritto:

    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository.
    To install it I have performed the following steps in command line:
    [...]
    6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g' /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild


    sorry but you can't do this, you have to stick with python3.8
    I plan to update the openstack packages next month after I graduate

    <div dir="ltr"><div dir="ltr">Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style=
    "margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<br><br>I am a newbie to Gentoo.<br>As end user I am  using package confluent-kafka from guru repository.<br>To install it I have performed the
    following steps in command line:<br>[...]<br>6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )<br>sed -i &#39;s/python3_8/python3_9/g&#39; /var/
    db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br></div></blockquote><div><br></div><div>sorry but you can&#39;t do this, you have to stick with python3.8</div><div>I plan to update the openstack packages
    next month after I graduate<br></div></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Anatoly Oreshkin@21:1/5 to All on Sun Feb 27 10:40:02 2022
    сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri <lssndrbarbieri@gmail.com
    :

    Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin < anatoly.oreshkin@gmail.com> ha scritto:

    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository.
    To install it I have performed the following steps in command line:
    [...]
    6. modify
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >> change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g'
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >>

    sorry but you can't do this, you have to stick with python3.8
    I plan to update the openstack packages next month after I graduate



    If I don't change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=(
    python3_9 ) then
    I will not able to install dev-python/confluent-kafka using emerge.

    By the way what is the link between openstack packages and dev-python/confluent-kafka ?

    <div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri &lt;<a href="mailto:lssndrbarbieri@gmail.com">lssndrbarbieri@gmail.com</a>&gt;:<br></div><
    blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com"
    target="_blank">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<br><br>I am a
    newbie to Gentoo.<br>As end user I am  using package confluent-kafka from guru repository.<br>To install it I have performed the following steps in command line:<br>[...]<br>6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.
    ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )<br>sed -i &#39;s/python3_8/python3_9/g&#39; /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br></div></blockquote><div><br></div><div>sorry but
    you can&#39;t do this, you have to stick with python3.8</div><div>I plan to update the openstack packages
    next month after I graduate<br></div></div></div></blockquote><div><br></div><div><br></div><div>If I don&#39;t change  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )  then</div><div>I will not able to install dev-python/confluent-
    kafka using emerge.<br></div><div><br></div><div>By the way what is the link between openstack packages  and dev-python/confluent-kafka ?</div><div><br></div><div><br></div><div><br></div><div></div></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Alessandro Barbieri@21:1/5 to All on Tue Mar 1 01:20:01 2022
    Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin <anatoly.oreshkin@gmail.com> ha scritto:



    сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri < lssndrbarbieri@gmail.com>:

    Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin <
    anatoly.oreshkin@gmail.com> ha scritto:

    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository.
    To install it I have performed the following steps in command line:
    [...]
    6. modify
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >>> change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g'
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >>>

    sorry but you can't do this, you have to stick with python3.8
    I plan to update the openstack packages next month after I graduate



    If I don't change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=(
    python3_9 ) then
    I will not able to install dev-python/confluent-kafka using emerge.


    This isn't true, I can install it as-is in my system and in my test chroot.
    You have to set your python targets to python3.8


    By the way what is the link between openstack packages and dev-python/confluent-kafka ?


    confluent-kafka is a test dependency



    <div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><blockquote class="gmail_
    quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri &lt;<a href="
    mailto:lssndrbarbieri@gmail.com" target="_blank" rel="noreferrer">lssndrbarbieri@gmail.com</a>&gt;:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="
    ltr">Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com" target="_blank" rel="noreferrer">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><div class="gmail_quote"><blockquote class="gmail_
    quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<br><br>I am a newbie to Gentoo.<br>As end user I am  using package confluent-kafka from guru repository.<br>To install it I have
    performed the following steps in command line:<br>[...]<br>6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )<br>sed -i &#39;s/python3_8/python3_9/
    g&#39; /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br></div></blockquote><div><br></div><div>sorry but you can&#39;t do this, you have to stick with python3.8</div><div>I plan to update the openstack packages
    next month after I graduate<br></div></div></div></blockquote><div><br></div><div><br></div><div>If I don&#39;t change  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )  then</div><div>I will not able to install dev-python/confluent-
    kafka using emerge.<br></div><div></div></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">This isn&#39;t true, I can install it as-is in my system and in my test chroot.</div><div dir="auto">You have to set your python
    targets to python3.8</div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div><br></div><div>
    By the way what is the link between openstack packages  and dev-python/confluent-kafka ?</div></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">confluent-kafka is a test dependency</div><div dir="auto"><div class="gmail_
    quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div></div></div></div>
    </blockquote></div></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Anatoly Oreshkin@21:1/5 to All on Tue Mar 1 16:30:01 2022
    вт, 1 мар. 2022 г. в 03:18, Alessandro Barbieri <lssndrbarbieri@gmail.com>:

    Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin <anatoly.oreshkin@gmail.com>
    ha scritto:



    сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri <
    lssndrbarbieri@gmail.com>:

    Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin <
    anatoly.oreshkin@gmail.com> ha scritto:

    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository.
    To install it I have performed the following steps in command line:
    [...]
    6. modify
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >>>> change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g'
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild >>>>

    sorry but you can't do this, you have to stick with python3.8
    I plan to update the openstack packages next month after I graduate



    If I don't change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=(
    python3_9 ) then
    I will not able to install dev-python/confluent-kafka using emerge.


    This isn't true, I can install it as-is in my system and in my test chroot. You have to set your python targets to python3.8


    The version of python installed in my local gentoo installation is
    localhost ~ # python3 --version
    Python 3.9.9

    therefore I changed PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=(
    python3_9 )
    What is wrong with changing PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 ) ?
    I have tested confluent-kafka installed with python3_9 and i works !

    Nevertheless I have followed your advice.
    As far as I understood you I did the following steps:

    1. Created the file /etc/portage/package.use/confluent-kafka: dev-python/confluent-kafka PYTHON_TARGETS: -* python3_8

    2. emerge --autounmask-write dev-python/confluent-kafka

    Autounmask changes successfully written.

    * IMPORTANT: config file '/etc/portage/package.use/grub' needs updating.
    * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS
    * sections of the emerge man page to learn how to update config files.

    3. etc-update
    The following is the list of files which need updating, each
    configuration file is followed by a list of possible replacement files.
    1) /etc/portage/package.use/grub (1)
    Please select a file to edit by entering the corresponding number.
    (don't use -3, -5, -7 or -9 if you're unsure what to do)
    (-1 to exit) (-3 to auto merge all files)
    (-5 to auto-merge AND not use 'mv -i')
    (-7 to discard all updates)
    (-9 to discard all updates AND not use 'rm -i'):
    -3
    Replacing /etc/portage/package.use/grub with /etc/portage/package.use/._cfg0000_grub
    mv: overwrite '/etc/portage/package.use/grub'? yes
    Exiting: Nothing left to do; exiting. :)

    4. emerge --autounmask-write dev-python/confluent-kafka
    ...
    running install_scripts
    * Using python3.8 in global scope
    * python3_8: running distutils-r1_run_phase distutils-r1_python_install_all >>> Completed installing dev-python/confluent-kafka-1.7.0 into /var/tmp/portage/dev-python/confluent-kafka-1.7.0/image
    ...
    Installing (42 of 42) dev-python/confluent-kafka-1.7.0::guru

    Recording dev-python/confluent-kafka in "world" favorites file...
    Auto-cleaning packages...

    No outdated packages were found on your system.

    Now package dev-python/confluent-kafka with python 3.8 is installed

    emerge --search confluent-kafka
    dev-python/confluent-kafka
    Latest version available: 1.7.0
    Latest version installed: 1.7.0
    Size of files: 101 KiB
    Homepage: https://pypi.org/project/confluent-kafka https://github.com/confluentinc/confluent-kafka-python
    Description: Confluent's Kafka Python Client
    License: Apache-2.0

    Is this correct ?



















    By the way what is the link between openstack packages and
    dev-python/confluent-kafka ?


    confluent-kafka is a test dependency


    <div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">вт, 1 мар. 2022 г. в 03:18, Alessandro Barbieri &lt;<a href="mailto:lssndrbarbieri@gmail.com">lssndrbarbieri@gmail.com</a>&gt;:<br></div><
    blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin &lt;<a href=
    "mailto:anatoly.oreshkin@gmail.com" target="_blank">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="
    ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri &lt;<a href="mailto:lssndrbarbieri@gmail.com" rel="noreferrer" target="_blank">lssndrbarbieri@gmail.com</a>&gt;:<br></
    <blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@
    gmail.com" rel="noreferrer" target="_blank">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir=
    "ltr">Hello,<br><br>I am a newbie to Gentoo.<br>As end user I am  using package confluent-kafka from guru repository.<br>To install it I have performed the following steps in command line:<br>[...]<br>6. modify /var/db/repos/guru/dev-python/confluent-
    kafka/confluent-kafka-1.7.0.ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )<br>sed -i &#39;s/python3_8/python3_9/g&#39; /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br></div></blockquote><div>
    <br></div><div>sorry but you can&#39;t do this, you have to stick with python3.8</div><div>I plan to update the openstack packages
    next month after I graduate<br></div></div></div></blockquote><div><br></div><div><br></div><div>If I don&#39;t change  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )  then</div><div>I will not able to install dev-python/confluent-
    kafka using emerge.<br></div><div></div></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">This isn&#39;t true, I can install it as-is in my system and in my test chroot.</div><div dir="auto">You have to set your python
    targets to python3.8</div><div dir="auto"><br></div></div></blockquote><div><br></div><div>The version of python installed in my local gentoo installation is</div><div>localhost ~ # python3 --version<br>Python 3.9.9</div><div><br></div><div>therefore I
    changed  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )</div><div>What is wrong with changing PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 ) ?</div><div>I have tested confluent-kafka installed with python3_9 and i works
    !</div><div><br></div><div>Nevertheless I have followed your advice. <br></div><div>As far as I understood you I did the following steps:</div><div><br> </div><div>1. Created the file /etc/portage/package.use/confluent-kafka:</div><div>dev-python/
    confluent-kafka PYTHON_TARGETS: -* python3_8</div><div><br></div><div>2. emerge  --autounmask-write dev-python/confluent-kafka<br><br>Autounmask changes successfully written.<br><br> * IMPORTANT: config file &#39;/etc/portage/package.use/grub&#39;
    needs updating.<br> * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS<br> * sections of the emerge man page to learn how to update config files.</div><div><br></div><div>3. etc-update</div><div>The following is the list of files which
    need updating, each<br>configuration file is followed by a list of possible replacement files.<br>1) /etc/portage/package.use/grub (1)<br>Please select a file to edit by entering the corresponding number.<br>              (don&#39;t use -3, -5, -7
    or -9 if you&#39;re unsure what to do)<br>              (-1 to exit) (-3 to auto merge all files)<br>                           (-5 to auto-merge AND not use &#39;mv -i&#39;)<br>                           (-7 to discard
    all updates)<br>                           (-9 to discard all updates AND not use &#39;rm -i&#39;): -3</div><div>Replacing /etc/portage/package.use/grub with /etc/portage/package.use/._cfg0000_grub<br>mv: overwrite &#39;/etc/portage/package.
    use/grub&#39;? yes<br>Exiting: Nothing left to do; exiting. :)<br></div><div><br></div><div>4. emerge  --autounmask-write dev-python/confluent-kafka</div><div>...</div><div>running install_scripts<br> * Using python3.8 in global scope<br> * python3_8:
    running distutils-r1_run_phase distutils-r1_python_install_all<br>&gt;&gt;&gt; Completed installing dev-python/confluent-kafka-1.7.0 into /var/tmp/portage/dev-python/confluent-kafka-1.7.0/image</div><div>...</div><div>&gt;&gt;&gt; Installing (42 of 42)
    dev-python/confluent-kafka-1.7.0::guru<br> <br>&gt;&gt;&gt; Recording dev-python/confluent-kafka in &quot;world&quot; favorites file...<br>&gt;&gt;&gt; Auto-cleaning packages...<br> <br>&gt;&gt;&gt; No outdated packages were found on your system.</div><
    <br></div><div>Now package dev-python/confluent-kafka with python 3.8 is installed</div><div><br></div><div>emerge --search confluent-kafka</div><div>  dev-python/confluent-kafka<br>      Latest version available: 1.7.0<br>      Latest version
    installed: 1.7.0<br>      Size of files: 101 KiB<br>      Homepage:      <a href="https://pypi.org/project/confluent-kafka">https://pypi.org/project/confluent-kafka</a> <a href="https://github.com/confluentinc/confluent-kafka-python">https://
    github.com/confluentinc/confluent-kafka-python</a><br>      Description:   Confluent&#39;s Kafka Python Client<br>      License:       Apache-2.0</div><div><br></div><div>Is this correct ?</div><div><br></div><div><br></div><div><br></div><div><
    </div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px
    0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div dir="auto"></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);
    padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div><br></div><div>By the way what is the link between openstack packages  and dev-python/confluent-kafka ?</div></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">
    confluent-kafka is a test dependency</div></div></blockquote><div><br></div><div><br></div><div> </div></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Alessandro Barbieri@21:1/5 to All on Tue Mar 8 08:40:01 2022
    Il Mar 1 Mar 2022, 16:25 Anatoly Oreshkin <anatoly.oreshkin@gmail.com> ha scritto:



    вт, 1 мар. 2022 г. в 03:18, Alessandro Barbieri <lssndrbarbieri@gmail.com
    :

    Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin <anatoly.oreshkin@gmail.com>
    ha scritto:



    сб, 26 февр. 2022 г. в 03:40, Alessandro Barbieri <
    lssndrbarbieri@gmail.com>:

    Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin <
    anatoly.oreshkin@gmail.com> ha scritto:

    Hello,

    I am a newbie to Gentoo.
    As end user I am using package confluent-kafka from guru repository. >>>>> To install it I have performed the following steps in command line:
    [...]
    6. modify
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild
    change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    sed -i 's/python3_8/python3_9/g'
    /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild


    sorry but you can't do this, you have to stick with python3.8
    I plan to update the openstack packages next month after I graduate



    If I don't change PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=(
    python3_9 ) then
    I will not able to install dev-python/confluent-kafka using emerge.


    This isn't true, I can install it as-is in my system and in my test
    chroot.
    You have to set your python targets to python3.8


    The version of python installed in my local gentoo installation is
    localhost ~ # python3 --version
    Python 3.9.9

    therefore I changed PYTHON_COMPAT=( python3_8 ) -> PYTHON_COMPAT=( python3_9 )
    What is wrong with changing PYTHON_COMPAT=( python3_8 ) ->
    PYTHON_COMPAT=( python3_9 ) ?
    I have tested confluent-kafka installed with python3_9 and i works !

    Nevertheless I have followed your advice.
    As far as I understood you I did the following steps:

    1. Created the file /etc/portage/package.use/confluent-kafka: dev-python/confluent-kafka PYTHON_TARGETS: -* python3_8

    2. emerge --autounmask-write dev-python/confluent-kafka

    Autounmask changes successfully written.

    * IMPORTANT: config file '/etc/portage/package.use/grub' needs updating.
    * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS
    * sections of the emerge man page to learn how to update config files.

    3. etc-update
    The following is the list of files which need updating, each
    configuration file is followed by a list of possible replacement files.
    1) /etc/portage/package.use/grub (1)
    Please select a file to edit by entering the corresponding number.
    (don't use -3, -5, -7 or -9 if you're unsure what to do)
    (-1 to exit) (-3 to auto merge all files)
    (-5 to auto-merge AND not use 'mv -i')
    (-7 to discard all updates)
    (-9 to discard all updates AND not use 'rm
    -i'): -3
    Replacing /etc/portage/package.use/grub with /etc/portage/package.use/._cfg0000_grub
    mv: overwrite '/etc/portage/package.use/grub'? yes
    Exiting: Nothing left to do; exiting. :)

    4. emerge --autounmask-write dev-python/confluent-kafka
    ...
    running install_scripts
    * Using python3.8 in global scope
    * python3_8: running distutils-r1_run_phase
    distutils-r1_python_install_all
    Completed installing dev-python/confluent-kafka-1.7.0 into /var/tmp/portage/dev-python/confluent-kafka-1.7.0/image
    ...
    Installing (42 of 42) dev-python/confluent-kafka-1.7.0::guru

    Recording dev-python/confluent-kafka in "world" favorites file...
    Auto-cleaning packages...

    No outdated packages were found on your system.

    Now package dev-python/confluent-kafka with python 3.8 is installed

    emerge --search confluent-kafka
    dev-python/confluent-kafka
    Latest version available: 1.7.0
    Latest version installed: 1.7.0
    Size of files: 101 KiB
    Homepage: https://pypi.org/project/confluent-kafka https://github.com/confluentinc/confluent-kafka-python
    Description: Confluent's Kafka Python Client
    License: Apache-2.0

    Is this correct ?



    By the way what is the link between openstack packages and
    dev-python/confluent-kafka ?


    confluent-kafka is a test dependency


    BTW now confluent-kafka::guru is also available for python3.9



    <div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il Mar 1 Mar 2022, 16:25 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><blockquote class="gmail_
    quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">вт, 1 мар. 2022 г. в 03:18, Alessandro Barbieri &lt;<a href="mailto:
    lssndrbarbieri@gmail.com" target="_blank" rel="noreferrer">lssndrbarbieri@gmail.com</a>&gt;:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div><div class=
    "gmail_quote"><div dir="ltr" class="gmail_attr">Il Dom 27 Feb 2022, 10:34 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com" target="_blank" rel="noreferrer">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><blockquote class="gmail_
    quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">сб, 26 февр. 2022 г. в 03:40, Alessandro
    Barbieri &lt;<a href="mailto:lssndrbarbieri@gmail.com" rel="noreferrer noreferrer" target="_blank">lssndrbarbieri@gmail.com</a>&gt;:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-
    left:1ex"><div dir="ltr"><div dir="ltr">Il giorno mar 22 feb 2022 alle ore 08:02 Anatoly Oreshkin &lt;<a href="mailto:anatoly.oreshkin@gmail.com" rel="noreferrer noreferrer" target="_blank">anatoly.oreshkin@gmail.com</a>&gt; ha scritto:<br></div><div
    class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<br><br>I am a newbie to Gentoo.<br>As end user I am  using package confluent-kafka from
    guru repository.<br>To install it I have performed the following steps in command line:<br>[...]<br>6. modify /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br>change PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_
    9 )<br>sed -i &#39;s/python3_8/python3_9/g&#39; /var/db/repos/guru/dev-python/confluent-kafka/confluent-kafka-1.7.0.ebuild<br></div></blockquote><div><br></div><div>sorry but you can&#39;t do this, you have to stick with python3.8</div><div>I plan to
    update the openstack packages
    next month after I graduate<br></div></div></div></blockquote><div><br></div><div><br></div><div>If I don&#39;t change  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )  then</div><div>I will not able to install dev-python/confluent-
    kafka using emerge.<br></div><div></div></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">This isn&#39;t true, I can install it as-is in my system and in my test chroot.</div><div dir="auto">You have to set your python
    targets to python3.8</div><div dir="auto"><br></div></div></blockquote><div><br></div><div>The version of python installed in my local gentoo installation is</div><div>localhost ~ # python3 --version<br>Python 3.9.9</div><div><br></div><div>therefore I
    changed  PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 )</div><div>What is wrong with changing PYTHON_COMPAT=( python3_8 )  -&gt; PYTHON_COMPAT=( python3_9 ) ?</div><div>I have tested confluent-kafka installed with python3_9 and i works
    !</div><div><br></div><div>Nevertheless I have followed your advice. <br></div><div>As far as I understood you I did the following steps:</div><div><br> </div><div>1. Created the file /etc/portage/package.use/confluent-kafka:</div><div>dev-python/
    confluent-kafka PYTHON_TARGETS: -* python3_8</div><div><br></div><div>2. emerge  --autounmask-write dev-python/confluent-kafka<br><br>Autounmask changes successfully written.<br><br> * IMPORTANT: config file &#39;/etc/portage/package.use/grub&#39;
    needs updating.<br> * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS<br> * sections of the emerge man page to learn how to update config files.</div><div><br></div><div>3. etc-update</div><div>The following is the list of files which
    need updating, each<br>configuration file is followed by a list of possible replacement files.<br>1) /etc/portage/package.use/grub (1)<br>Please select a file to edit by entering the corresponding number.<br>              (don&#39;t use -3, -5, -7
    or -9 if you&#39;re unsure what to do)<br>              (-1 to exit) (-3 to auto merge all files)<br>                           (-5 to auto-merge AND not use &#39;mv -i&#39;)<br>                           (-7 to discard
    all updates)<br>                           (-9 to discard all updates AND not use &#39;rm -i&#39;): -3</div><div>Replacing /etc/portage/package.use/grub with /etc/portage/package.use/._cfg0000_grub<br>mv: overwrite &#39;/etc/portage/package.
    use/grub&#39;? yes<br>Exiting: Nothing left to do; exiting. :)<br></div><div><br></div><div>4. emerge  --autounmask-write dev-python/confluent-kafka</div><div>...</div><div>running install_scripts<br> * Using python3.8 in global scope<br> * python3_8:
    running distutils-r1_run_phase distutils-r1_python_install_all<br>&gt;&gt;&gt; Completed installing dev-python/confluent-kafka-1.7.0 into /var/tmp/portage/dev-python/confluent-kafka-1.7.0/image</div><div>...</div><div>&gt;&gt;&gt; Installing (42 of 42)
    dev-python/confluent-kafka-1.7.0::guru<br> <br>&gt;&gt;&gt; Recording dev-python/confluent-kafka in &quot;world&quot; favorites file...<br>&gt;&gt;&gt; Auto-cleaning packages...<br> <br>&gt;&gt;&gt; No outdated packages were found on your system.</div><
    <br></div><div>Now package dev-python/confluent-kafka with python 3.8 is installed</div><div><br></div><div>emerge --search confluent-kafka</div><div>  dev-python/confluent-kafka<br>      Latest version available: 1.7.0<br>      Latest version
    installed: 1.7.0<br>      Size of files: 101 KiB<br>      Homepage:      <a href="https://pypi.org/project/confluent-kafka" target="_blank" rel="noreferrer">https://pypi.org/project/confluent-kafka</a> <a href="https://github.com/confluentinc/
    confluent-kafka-python" target="_blank" rel="noreferrer">https://github.com/confluentinc/confluent-kafka-python</a><br>      Description:   Confluent&#39;s Kafka Python Client<br>      License:       Apache-2.0</div><div><br></div><div>Is this
    correct ?</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div dir="auto"></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_
    quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div><br></div><div>By the way what is the link between openstack packages  and dev-python/confluent-kafka ?</div></
    </div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">confluent-kafka is a test dependency</div></div></blockquote></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">BTW now confluent-kafka::guru is also
    available for python3.9</div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
    </blockquote></div></div></div>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)