Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[meta-oe][morty] risk-free cherry-pick fixes for gitver.bbclass and devmem.bb #45

Closed
wants to merge 3 commits into from

Conversation

amery
Copy link
Contributor

@amery amery commented May 26, 2017

The following commits have been cherry-picked from master:

fc801961457fe2fbb24973bb43b302ad46044cb8 devmem2: Change source URL to regain access to it
6c584374a599f6f8d3607f20ecfc13a67ccf1da1 devmem2: use different filename to avoid checksum conflicts
b17bbbe2245f72144e3d036aa273c1b67434fa1c gitver: fix try/except syntax for python3 support

noglitch and others added 3 commits May 26, 2017 16:59
Change URL due to connexion error on the original page.
As the header of the new devmem2.c source file has changed, change the
signature and the LIC_FILES_CHKSUM specificaiton.

Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
The newly resurrected devmem2.c file besides having a new location, also
updates its header, producing different checksums, which would conflict
with any previously cached or mirrored instances. To avoid such conflicts,
use a different filename in fetch(). Rename it back to original name at
unpack() for devmem2-fixups-2.patch to succeed w/o modifications.

WARNING: devmem2-1.0-r7 do_fetch: Fetcher failure for URL: 'http://www.free-electrons.com/pub/mirror/devmem2.c'. Checksum mismatch!
File: '/OE/master/downloads/devmem2.c' has md5 checksum be12c0132a1ae118cbf5e79d98427c1d when e23f236e94be4c429aa1ceac0f01544b was expected
File: '/OE/master/downloads/devmem2.c' has sha256 checksum ec382c90af3ef2f49695ff14a4d6521e58ac482c4e29d6c9ebca8768f699c191 when 3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639 was expected
If this change is expected (e.g. you have upgraded to a new version without updating the checksums) then you can use these lines within the recipe:
SRC_URI[md5sum] = "be12c0132a1ae118cbf5e79d98427c1d"
SRC_URI[sha256sum] = "ec382c90af3ef2f49695ff14a4d6521e58ac482c4e29d6c9ebca8768f699c191"
Otherwise you should retry the download and/or check with upstream to determine if the file has become corrupted or otherwise unexpectedly modified.

WARNING: devmem2-1.0-r7 do_fetch: Renaming /OE/sources/devmem2.c to /OE/sources/devmem2.c_bad-checksum_be12c0132a1ae118cbf5e79d98427c1d

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
https://www.python.org/dev/peps/pep-3110/

It's backward compatible with 2.6+

Signed-off-by: Alejandro Mery <amery@hanoverdisplays.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
@shr-project
Copy link
Contributor

We don't do pull-requests as github is only read-only mirror, see:
https://github.com/openembedded/meta-openembedded/blob/master/meta-oe/README#L7

derekstraka pushed a commit to derekstraka/meta-openembedded that referenced this pull request Jan 26, 2018
Changes in DBI 1.638:

Fix UTF-8 support for warn/croak calls within DBI internals,
    thanks to pali openembedded#53
Fix dependency on Storable for perl older than 5.8.9,
    thanks to H.Merijn Brand.

Add DBD::Mem driver, a pure-perl in-memory driver using DBI::DBD::SqlEngine,
    thanks to Jens Rehsack openembedded#42

Corrected missing semicolon in example in documentation,
    thanks to pali openembedded#55

Changes in DBI 1.637 - 16th August 2017:

Fix use of externally controlled format string (CWE-134) thanks to pali openembedded#44
    This could cause a crash if, for example, a db error contained a %.
    https://cwe.mitre.org/data/definitions/134.html
Fix extension detection for DBD::File related drivers
Fix tests for perl without dot in @inc RT#120443
Fix loss of error message on parent handle, thanks to charsbar openembedded#34
Fix disappearing $_ inside callbacks, thanks to robschaber openembedded#47
Fix dependency on Storable for perl older than 5.8.9

Allow objects to be used as passwords without throwing an error, thanks to demerphq openembedded#40
Allow $sth NAME_* attributes to be set from Perl code, re openembedded#45
Added support for DBD::XMLSimple thanks to nigelhorne openembedded#38

Documentation updates:
Improve examples using eval to be more correct, thanks to pali openembedded#39
Add cautionary note to prepare_cached docs re refs in %attr openembedded#46
Small POD changes (Getting Help -> Online) thanks to openstrike openembedded#33
Adds links to more module names and fix typo, thanks to oalders openembedded#43
Typo fix thanks to bor openembedded#37

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
halstead pushed a commit that referenced this pull request Jan 27, 2018
Changes in DBI 1.638:

Fix UTF-8 support for warn/croak calls within DBI internals,
    thanks to pali #53
Fix dependency on Storable for perl older than 5.8.9,
    thanks to H.Merijn Brand.

Add DBD::Mem driver, a pure-perl in-memory driver using DBI::DBD::SqlEngine,
    thanks to Jens Rehsack #42

Corrected missing semicolon in example in documentation,
    thanks to pali #55

Changes in DBI 1.637 - 16th August 2017:

Fix use of externally controlled format string (CWE-134) thanks to pali #44
    This could cause a crash if, for example, a db error contained a %.
    https://cwe.mitre.org/data/definitions/134.html
Fix extension detection for DBD::File related drivers
Fix tests for perl without dot in @inc RT#120443
Fix loss of error message on parent handle, thanks to charsbar #34
Fix disappearing $_ inside callbacks, thanks to robschaber #47
Fix dependency on Storable for perl older than 5.8.9

Allow objects to be used as passwords without throwing an error, thanks to demerphq #40
Allow $sth NAME_* attributes to be set from Perl code, re #45
Added support for DBD::XMLSimple thanks to nigelhorne #38

Documentation updates:
Improve examples using eval to be more correct, thanks to pali #39
Add cautionary note to prepare_cached docs re refs in %attr #46
Small POD changes (Getting Help -> Online) thanks to openstrike #33
Adds links to more module names and fix typo, thanks to oalders #43
Typo fix thanks to bor #37

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jun 2, 2020
Version 3.36.3

==============
- Fix enum type generation. (openembedded#52)

Version 3.36.2
==============
- Fix screensaver unlock problems. (openembedded#46)
- Fix few small memory leaks.
- Fix screenshot saving to clipboard. (openembedded#50)
- Active desktop icon rename with F2 key. (LP:#1875703)
- Fix creating new desktop icons. (LP:#1875317)
- Updated translations.

Version 3.36.1
==============
- Disable unimplemented icon placement modes. (openembedded#41)
- Fix lock screen button in end session dialog. (openembedded#43)
- Exclude Extensions application from menu. (openembedded#42)
- Fix visibility of input source button in lock screen. (openembedded#45)
- Do no close/destroy desktop window. (gnome-applets#15)
- Fix use after free in System Indicators. (gnome-panel#21)

Version 3.36.0
==============
- Save screenshot to clipboard when filename is empty.
- Show password box on key presses. (openembedded#36)
- Fix system indicators localisation. (openembedded#39)
- Fix build with gettext 0.20+. (!25)
- Add UsbProtection plugin to required components.
- Disable screen locking without PAM configuration file. (openembedded#38)
- Updated translations.

Version 3.35.2
==============
- Add Yaru as supported theme. (openembedded#31)
- Screensaver based on gnome-screensaver. (openembedded#18)
- Fix crash and memory leaks in notifications module.
- New system indicators applet for gnome-panel.
- Install gnome panel layout for GNOME Flashback session.
- Updated translations.

Version 3.35.1
==============
- Remove desktop-background module.
- Add root-background module, disabled by default.
- Add new desktop module for icons and background. (openembedded#7)
- Install compiz configuration. (!16)
- Add support for shift_caps_switch XKB option. (openembedded#24)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jun 2, 2020
Version 3.36.3

==============
- Fix enum type generation. (openembedded#52)

Version 3.36.2
==============
- Fix screensaver unlock problems. (openembedded#46)
- Fix few small memory leaks.
- Fix screenshot saving to clipboard. (openembedded#50)
- Active desktop icon rename with F2 key. (LP:#1875703)
- Fix creating new desktop icons. (LP:#1875317)
- Updated translations.

Version 3.36.1
==============
- Disable unimplemented icon placement modes. (openembedded#41)
- Fix lock screen button in end session dialog. (openembedded#43)
- Exclude Extensions application from menu. (openembedded#42)
- Fix visibility of input source button in lock screen. (openembedded#45)
- Do no close/destroy desktop window. (gnome-applets#15)
- Fix use after free in System Indicators. (gnome-panel#21)

Version 3.36.0
==============
- Save screenshot to clipboard when filename is empty.
- Show password box on key presses. (openembedded#36)
- Fix system indicators localisation. (openembedded#39)
- Fix build with gettext 0.20+. (!25)
- Add UsbProtection plugin to required components.
- Disable screen locking without PAM configuration file. (openembedded#38)
- Updated translations.

Version 3.35.2
==============
- Add Yaru as supported theme. (openembedded#31)
- Screensaver based on gnome-screensaver. (openembedded#18)
- Fix crash and memory leaks in notifications module.
- New system indicators applet for gnome-panel.
- Install gnome panel layout for GNOME Flashback session.
- Updated translations.

Version 3.35.1
==============
- Remove desktop-background module.
- Add root-background module, disabled by default.
- Add new desktop module for icons and background. (openembedded#7)
- Install compiz configuration. (!16)
- Add support for shift_caps_switch XKB option. (openembedded#24)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jun 2, 2020
Version 3.36.3

==============
- Fix enum type generation. (openembedded#52)

Version 3.36.2
==============
- Fix screensaver unlock problems. (openembedded#46)
- Fix few small memory leaks.
- Fix screenshot saving to clipboard. (openembedded#50)
- Active desktop icon rename with F2 key. (LP:#1875703)
- Fix creating new desktop icons. (LP:#1875317)
- Updated translations.

Version 3.36.1
==============
- Disable unimplemented icon placement modes. (openembedded#41)
- Fix lock screen button in end session dialog. (openembedded#43)
- Exclude Extensions application from menu. (openembedded#42)
- Fix visibility of input source button in lock screen. (openembedded#45)
- Do no close/destroy desktop window. (gnome-applets#15)
- Fix use after free in System Indicators. (gnome-panel#21)

Version 3.36.0
==============
- Save screenshot to clipboard when filename is empty.
- Show password box on key presses. (openembedded#36)
- Fix system indicators localisation. (openembedded#39)
- Fix build with gettext 0.20+. (!25)
- Add UsbProtection plugin to required components.
- Disable screen locking without PAM configuration file. (openembedded#38)
- Updated translations.

Version 3.35.2
==============
- Add Yaru as supported theme. (openembedded#31)
- Screensaver based on gnome-screensaver. (openembedded#18)
- Fix crash and memory leaks in notifications module.
- New system indicators applet for gnome-panel.
- Install gnome panel layout for GNOME Flashback session.
- Updated translations.

Version 3.35.1
==============
- Remove desktop-background module.
- Add root-background module, disabled by default.
- Add new desktop module for icons and background. (openembedded#7)
- Install compiz configuration. (!16)
- Add support for shift_caps_switch XKB option. (openembedded#24)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jun 3, 2020
Version 3.36.3

==============
- Fix enum type generation. (openembedded#52)

Version 3.36.2
==============
- Fix screensaver unlock problems. (openembedded#46)
- Fix few small memory leaks.
- Fix screenshot saving to clipboard. (openembedded#50)
- Active desktop icon rename with F2 key. (LP:#1875703)
- Fix creating new desktop icons. (LP:#1875317)
- Updated translations.

Version 3.36.1
==============
- Disable unimplemented icon placement modes. (openembedded#41)
- Fix lock screen button in end session dialog. (openembedded#43)
- Exclude Extensions application from menu. (openembedded#42)
- Fix visibility of input source button in lock screen. (openembedded#45)
- Do no close/destroy desktop window. (gnome-applets#15)
- Fix use after free in System Indicators. (gnome-panel#21)

Version 3.36.0
==============
- Save screenshot to clipboard when filename is empty.
- Show password box on key presses. (openembedded#36)
- Fix system indicators localisation. (openembedded#39)
- Fix build with gettext 0.20+. (!25)
- Add UsbProtection plugin to required components.
- Disable screen locking without PAM configuration file. (openembedded#38)
- Updated translations.

Version 3.35.2
==============
- Add Yaru as supported theme. (openembedded#31)
- Screensaver based on gnome-screensaver. (openembedded#18)
- Fix crash and memory leaks in notifications module.
- New system indicators applet for gnome-panel.
- Install gnome panel layout for GNOME Flashback session.
- Updated translations.

Version 3.35.1
==============
- Remove desktop-background module.
- Add root-background module, disabled by default.
- Add new desktop module for icons and background. (openembedded#7)
- Install compiz configuration. (!16)
- Add support for shift_caps_switch XKB option. (openembedded#24)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
iipeace pushed a commit to iipeace/meta-openembedded that referenced this pull request Jun 16, 2020
Version 3.36.3

==============
- Fix enum type generation. (openembedded#52)

Version 3.36.2
==============
- Fix screensaver unlock problems. (openembedded#46)
- Fix few small memory leaks.
- Fix screenshot saving to clipboard. (openembedded#50)
- Active desktop icon rename with F2 key. (LP:#1875703)
- Fix creating new desktop icons. (LP:#1875317)
- Updated translations.

Version 3.36.1
==============
- Disable unimplemented icon placement modes. (openembedded#41)
- Fix lock screen button in end session dialog. (openembedded#43)
- Exclude Extensions application from menu. (openembedded#42)
- Fix visibility of input source button in lock screen. (openembedded#45)
- Do no close/destroy desktop window. (gnome-applets#15)
- Fix use after free in System Indicators. (gnome-panel#21)

Version 3.36.0
==============
- Save screenshot to clipboard when filename is empty.
- Show password box on key presses. (openembedded#36)
- Fix system indicators localisation. (openembedded#39)
- Fix build with gettext 0.20+. (!25)
- Add UsbProtection plugin to required components.
- Disable screen locking without PAM configuration file. (openembedded#38)
- Updated translations.

Version 3.35.2
==============
- Add Yaru as supported theme. (openembedded#31)
- Screensaver based on gnome-screensaver. (openembedded#18)
- Fix crash and memory leaks in notifications module.
- New system indicators applet for gnome-panel.
- Install gnome panel layout for GNOME Flashback session.
- Updated translations.

Version 3.35.1
==============
- Remove desktop-background module.
- Add root-background module, disabled by default.
- Add new desktop module for icons and background. (openembedded#7)
- Install compiz configuration. (!16)
- Add support for shift_caps_switch XKB option. (openembedded#24)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Sep 27, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `openembedded#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `openembedded#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `openembedded#53`_).

**Internal changes:**

- Merged pull request `openembedded#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Sep 27, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `openembedded#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `openembedded#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `openembedded#53`_).

**Internal changes:**

- Merged pull request `openembedded#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Sep 27, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `openembedded#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `openembedded#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `openembedded#53`_).

**Internal changes:**

- Merged pull request `openembedded#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Sep 28, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `openembedded#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `openembedded#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `openembedded#53`_).

**Internal changes:**

- Merged pull request `openembedded#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Sep 28, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `openembedded#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `openembedded#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `openembedded#53`_).

**Internal changes:**

- Merged pull request `openembedded#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this pull request Sep 28, 2021
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `#53`_).

**Internal changes:**

- Merged pull request `#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: xolox/python-humanfriendly@9.2...10.0
.. _#45: xolox/python-humanfriendly#45
.. _#53: xolox/python-humanfriendly#53
.. _#54: xolox/python-humanfriendly#54
.. _#56: xolox/python-humanfriendly#56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
schnitzeltony added a commit to schnitzeltony/meta-openembedded that referenced this pull request Nov 20, 2021
Changes in version 2.6.2
    Released on November 13, 2021
    Fix background shifting when showing menu (Issue openembedded#41)
    Fix menu not toggling after pressing escape (Issue openembedded#65)
    Properly prevent interactive search in treeview

Changes in version 2.6.1
    Released on October 13, 2021
    Fix menu not toggling (Issue openembedded#61)
    Fix small icon in multi-row panels (Issue openembedded#37)
    Fix missing minimize and maximize buttons in settings dialog
    Replace deprecated code for grab check
    Translation updates

Changes in version 2.6.0
    Released on September 19, 2021
    Fix unable to resize with metacity (Issue openembedded#56)
    Fix invalid desktop files when hiding applications (Issue openembedded#53)
    Fix not showing focused launcher when searching (Issue openembedded#45)
    Add option to disable sorting categories (Issue openembedded#42)
    Translation updates

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Nov 20, 2021
Changes in version 2.6.2
    Released on November 13, 2021
    Fix background shifting when showing menu (Issue openembedded#41)
    Fix menu not toggling after pressing escape (Issue openembedded#65)
    Properly prevent interactive search in treeview

Changes in version 2.6.1
    Released on October 13, 2021
    Fix menu not toggling (Issue openembedded#61)
    Fix small icon in multi-row panels (Issue openembedded#37)
    Fix missing minimize and maximize buttons in settings dialog
    Replace deprecated code for grab check
    Translation updates

Changes in version 2.6.0
    Released on September 19, 2021
    Fix unable to resize with metacity (Issue openembedded#56)
    Fix invalid desktop files when hiding applications (Issue openembedded#53)
    Fix not showing focused launcher when searching (Issue openembedded#45)
    Add option to disable sorting categories (Issue openembedded#42)
    Translation updates

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this pull request Dec 19, 2022
* gettext is need for documentation
* riscv64 machines are supported
* runtime dependencies when machines support the feature
 * add pciutils when machines have pci
 * add usbutils when machines have usbhost

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this pull request Dec 20, 2022
* gettext is need for documentation
* riscv64 machines are supported
* runtime dependencies when machines support the feature
 * add pciutils when machines have pci
 * add usbutils when machines have usbhost

* Patch 0001-Fix-musl-build.patch merged in:
  lyonel/lshw@d3c66a6
  lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this pull request Jan 2, 2023
* gettext is need for documentation
* riscv64 machines are supported
* runtime dependencies when machines support the feature
 * add pciutils when machines have pci
 * add usbutils when machines have usbhost

* Patch 0001-Fix-musl-build.patch merged in:
  lyonel/lshw@d3c66a6
  lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this pull request Jan 2, 2023
* gettext is need for translation
* riscv64 machines are supported
* add packageconfig support for sqlite and zlib
  - add native pkgconfig
  - enable zlib as it will reduce considerable the data files sizes
* patches
  - add 0001-disable-docbook2man.patch to not build .sgml file
  - drop 0001-Fix-musl-build.patch as it is merged in:
   lyonel/lshw@d3c66a6
   lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this pull request Jan 2, 2023
* gettext is need for translation
* riscv64 machines are supported
* add packageconfig support for sqlite and zlib
  - add native pkgconfig
  - enable zlib as it will reduce considerable the data files sizes
* patches
  - add 0001-disable-docbook2man.patch to not build .sgml file
  - drop 0001-Fix-musl-build.patch as it is merged in:
   lyonel/lshw@d3c66a6
   lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jan 5, 2023
* gettext is need for translation
* riscv64 machines are supported
* add packageconfig support for sqlite and zlib
  - add native pkgconfig
  - enable zlib as it will reduce considerable the data files sizes
* patches
  - add 0001-disable-docbook2man.patch to not build .sgml file
  - drop 0001-Fix-musl-build.patch as it is merged in:
   lyonel/lshw@d3c66a6
   lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this pull request Jan 6, 2023
* gettext is need for translation
* riscv64 machines are supported
* add packageconfig support for sqlite and zlib
  - add native pkgconfig
  - enable zlib as it will reduce considerable the data files sizes
* patches
  - add 0001-disable-docbook2man.patch to not build .sgml file
  - drop 0001-Fix-musl-build.patch as it is merged in:
   lyonel/lshw@d3c66a6
   lyonel/lshw@0140f7f

Changelog:
- PA-RISC: handle pushd failure
- make version check optional
- Github PR85  Set product name for all netdevs sharing the same PCI number
- Merge pull request 'Add Spanish translation' (openembedded#48) from alexhenrie/lshw:es into master
- Merge branch 'master' into es
- Merge pull request 'Fix mistakes in Catalan translation' (openembedded#47) from alexhenrie/lshw:ca into master
- Add Spanish translation
- Fix mistakes in Catalan translation
- Merge pull request 'Add Catalan translation' (openembedded#46) from alexhenrie/lshw:ca into master
- merge Github PR#77
- use max (9) Gzip compression
- Add Catalan translation
- Update POT file
- Add more network speeds
- Merge pull request 'Remove unnecessary space before closing parenthesis' (openembedded#45) from alexhenrie/lshw:punctuation into master
- Merge pull request 'Translate all words of a phrase together' (openembedded#44) from alexhenrie/lshw:legos into master
- Merge pull request 'Fix another typo' (openembedded#43) from alexhenrie/lshw:typos into master
- Merge branch 'master' of https://ezix.org/src/pkg/lshw
- add some includes
- fix typo
- cosmetic fixes
- support for new ethtool capabilities
- code clean-up
- code clean-up
- allow pkg-config override
- allow pkg-config override
- Remove unnecessary space before closing parenthesis
- Translate all words of a phrase together
- Fix another typo
- Merge pull request 'Fix typos in translatable messages' (openembedded#42) from alexhenrie/lshw:typos into master
- Fix typos in translatable messages
- Fix getting size of memory banks <32GiB
- Merge pull request 'devtree: Add UUID property' (openembedded#40) from hegdevasant/lshw:lpar-uuid into master
- devtree: Add UUID property
- code clean-up
- improve portability (esp. musl)
- fix potential crash
- add static target to Makefile
- Avoid crash on device-tree parsing
- Add JEDEC manufacturer
- Report correct memory size on SMBIOS < 2.7
- fix man page after previous update
- update man page
- Update 'docs/TODO'
- Update 'docs/TODO'
- Merge pull request 'Replace the about GtkDialog with a GtkAboutDialog' (openembedded#39) from linkmauve/lshw:better-about into master
- Replace the about GtkDialog with a GtkAboutDialog
- Merge pull request 'Move from GtkMenuBar to GMenu' (openembedded#38) from linkmauve/lshw:gmenu into master
- Move from GtkMenuBar to GMenu
- Merge pull request 'Switch to gtk3 by default for gtk-lshw' (openembedded#37) from linkmauve/lshw:gtk3 into master
- Enable/Disable GSimpleAction instead of button sensitivity
- Replace signals with GSimpleActions
- Move to GtkApplication
- Remove deprecated use_action_appearance property
- Remove deprecated widgets
- Replace the last GtkStock in overwrite dialog
- Replace deprecated GtkIconFactory with GHashTable
- Use GtkFileChooserNative instead of GtkFileChooserDialog
- Remove hack which is apparently not useful anymore
- Remove deprecated stock messages
- Build against gtk3 instead of gtk2
- Merge pull request 'Fix few memory leaks' (openembedded#34) from shivaprasadbhat/lshw:master into master
- Fix few memory leaks
- report product model on Power systems
- clean-up JSON output
- JSON output clean-up (list/object)
- code clean-up for read(3)
- Merge pull request 'devtree: Add capabilites to the OPAL Firmware' (openembedded#33) from shivaprasadbhat/lshw:master into master
- Merge pull request 'volumes: fix segfault in apfs volume code' (openembedded#32) from hjmallon/lshw:pr.segfault into master
- fix issue with logical names being truncated (`/dev/sda` → `sda`)
- devtree: Add capabilites to the OPAL Firmware
- merge Github PR openembedded#53
- volumes: fix segfault in apfs volume code
- Merge pull request 'devtree: Add chip-id from CPU node' (openembedded#31) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from CPU node
- Merge pull request 'devtree: Add chip-id from the dimm module' (openembedded#30) from shivaprasadbhat/lshw:master into master
- devtree: Add chip-id from the dimm module
- try to connect input devices to the right parent
- detect framebuffers
- detect sound devices
- cosmetic fixes
- begin work on input devices
- cosmetic clean-up
- correctly format SMBIOS UUID
- move PnP devices to the ISA/LPC bridge
- report CPU family/model/stepping
- get rid of RPM's debug packages
- add debug flag to GUI build

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants