<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/net/gensio, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2025-12-31T07:12:36Z</updated>
<entry>
<title>treewide: fix spelling and grammar in Makefiles</title>
<updated>2025-12-31T07:12:36Z</updated>
<author>
<name>George Sapkin</name>
</author>
<published>2025-12-26T04:26:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=de64f871b0f00b885039997eb46f914bdac687a5'/>
<id>urn:sha1:de64f871b0f00b885039997eb46f914bdac687a5</id>
<content type='text'>
Fix spelling and grammar in package definitions, configs, comments and
other strings.

Signed-off-by: George Sapkin &lt;george@sapk.in&gt;
</content>
</entry>
<entry>
<title>gensio: add patch with workaround for buildbots (refs #24047)</title>
<updated>2024-05-04T21:15:59Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2024-05-04T19:54:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ecef65b3c464aa4b74da9249ca472cc2594b387d'/>
<id>urn:sha1:ecef65b3c464aa4b74da9249ca472cc2594b387d</id>
<content type='text'>
This should solve the issue found on the buildbots:

-snip-
...
checking consistency of all components of python development environment... yes
./configure: line 24172: test: =: unary operator expected
checking for pam_start in -lpam... (cached) no
...
-snap-

For still unknown reason, AX_PYTHON_DEVEL from the included
m4 file is not used which would set the variable the correct way.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: update to 2.8.4</title>
<updated>2024-04-30T20:45:27Z</updated>
<author>
<name>Yegor Yefremov</name>
</author>
<published>2024-04-30T07:01:47Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=cf64bb20995998699c4b92dbc39105de9a5baff7'/>
<id>urn:sha1:cf64bb20995998699c4b92dbc39105de9a5baff7</id>
<content type='text'>
Remove the upstreamed patches.

Signed-off-by: Yegor Yefremov &lt;yegorslists@googlemail.com&gt;
</content>
</entry>
<entry>
<title>gensio: add patches/fixes to workaround swig and python detection</title>
<updated>2023-11-21T23:45:25Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-11-21T23:39:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=fd6832b4bc6b46d4c7b9111994d5373391b66744'/>
<id>urn:sha1:fd6832b4bc6b46d4c7b9111994d5373391b66744</id>
<content type='text'>
The built-in swig/python detection does not works well
when system-wide m4 macros are available with same name
but different content.
So make the configure stuff compatible, resp. workaround
a little bit.

It seems also necessary to pass the PYTHON_LIBS environment
during the compile phase.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: add patch to fix python detection</title>
<updated>2023-11-19T10:14:18Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-11-18T20:53:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0b9c8c0a6f71356e65c4f22bf4902dbcebcc1ba3'/>
<id>urn:sha1:0b9c8c0a6f71356e65c4f22bf4902dbcebcc1ba3</id>
<content type='text'>
Upstream PR: https://github.com/cminyard/gensio/pull/69

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: disable cm108gpio gensio and prevent using libudev</title>
<updated>2023-11-14T20:02:55Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-11-14T20:02:55Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=4e1947d9294d261e720867dd820512147df44d2f'/>
<id>urn:sha1:4e1947d9294d261e720867dd820512147df44d2f</id>
<content type='text'>
libudev seems to be required only for cm108gpio gensio
which is a relatively special one. Let's disable it
and also the libudev lookup, so that there is no need
to link/use libudev.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: prevent accidental use of dns_sd</title>
<updated>2023-11-11T15:38:08Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-11-11T15:38:03Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=45f9302afe21ec98cdd43b37feb46a0408a7aaab'/>
<id>urn:sha1:45f9302afe21ec98cdd43b37feb46a0408a7aaab</id>
<content type='text'>
Buildbots spottet this error that when dns_sd library is
available, then gensio's configure will pick it up.
This is not desired since we already link to libavahi
for the mdns stuff, so let's disable dnssd lookup explicitly.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: update to 2.7.6</title>
<updated>2023-10-29T20:51:27Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-10-29T20:51:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=91fe351a2d69483dbe0b38526a02a534e0edc234'/>
<id>urn:sha1:91fe351a2d69483dbe0b38526a02a534e0edc234</id>
<content type='text'>
Also disable probably rarely used features to
lower the library footprint.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
<entry>
<title>gensio: Fix build on build host with Go compiler</title>
<updated>2023-05-19T12:03:43Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2023-05-19T12:03:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b9f23d957d474016f7fc4af0336d055c5a06a0e9'/>
<id>urn:sha1:b9f23d957d474016f7fc4af0336d055c5a06a0e9</id>
<content type='text'>
If the build host has the Go compiler installed, then configure will
detect this and will try to compile gensio's Go support, leading to a
build failure.

This disables Go support entirely to fix this build failure.

Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>gensio: move package into Python submenu</title>
<updated>2023-03-15T06:32:29Z</updated>
<author>
<name>Michael Heimpold</name>
</author>
<published>2023-03-14T20:00:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=31a18de442aac1b806d81e95b141d533ee95a2af'/>
<id>urn:sha1:31a18de442aac1b806d81e95b141d533ee95a2af</id>
<content type='text'>
While at, fine-tune the description string slightly.

Signed-off-by: Michael Heimpold &lt;mhei@heimpold.de&gt;
</content>
</entry>
</feed>
