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

ldap is not linking with sasl #31

Closed
vishalguptabit opened this issue Jan 12, 2017 · 2 comments
Closed

ldap is not linking with sasl #31

vishalguptabit opened this issue Jan 12, 2017 · 2 comments

Comments

@vishalguptabit
Copy link

how to enable sasl inclusion in openldap bb file??

@graugans
Copy link
Contributor

Please ask those questions on the mailinglist in the future. For openldap_2.4.44.bb there is an PACKAGECONFIG[sasl]. How to work with PACKAGECONFIG is described in the manual.

@shr-project
Copy link
Contributor

We're not using github issues, almost nobody reads it here.

Use openembedded-devel@lists.openembedded.org as mentioned in meta-oe/README.

kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jul 9, 2019
* Add ptest dependencies`
* Reorganize recipe according to best practices
* Use CPAN_MIRROR
* Update HOMEPAGE

Upstream release notes:

1.62 2018-12-29
    - Switched to a production version

1.61_04 2018-12-22
    - Added sqlite_db_config method and new constants for it
    - Added sqlite_defensive option to disallow dangerous SQLite features
    - Exposed some of the hidden extended result codes

1.61_03 2018-12-19
    - Upgraded SQLite to 3.26.0, which reportedly has a security fix

1.61_02 2018-12-01
    - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
    - Introduced sqlite_prefer_numeric_type database handle attribute
      that changes the value of TYPE statement handle attribute
      from an array of string to an array of integer, as an experimental
      feature. Setting this may break your applications.
    - Changed preferred bugtracker

1.61_01 2018-12-01
    - Added ability to configure SQLITE_MAX_LENGT with environmental
      variable (Roy Storey)
    - Added sqlite_limit database handle method to change run-time limits
    - Upgraded SQLite to 3.25.3
    - Updated constants

1.60 2018-12-01
    - Switched to a production version

1.59_03 2018-11-03
    - Added a note on the long standing bug on TYPE statement
      handle attribute
    - Applied a doc patch on Virtual::PerlData by Björn Höhrmann
      (openembeddedGH-31)

1.59_02 2018-09-30
    - Upgraded SQLite to 3.25.2

1.59_01 2018-09-17
    - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN
      and UPSERT among others
    - Added ::GetInfo (GH#32, Brendan Byrd)
    - Fix to use a PV value as a virtual table column value
      where appropriate (RT-124941)
    - Add deferrability to foreign_key_info (mohawk2)

1.58 2018-03-28
    - Switched to a production version.

1.57_01 2018-03-21
    - Made it an error to fetch attributes from a statement
      handle whose database handle is inactive (ribasushi++)

1.56 2018-02-28
    - Switched to a production version.

1.55_07 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Upgraded SQLite to 3.22.0
    - Disabled two STAT compile time options (tentatively),
      which fixes RT-124227 anyway

1.55_06 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Downgraded SQLite to 3.19.3 because of a SQLite regression
      (RT-124227, ribasushi++)
    - Fixed some tests to adapt to a change in error format
      introduced by the latest DBI
    - Remove no warnings test from t/43_fts.t which failed under
      some environments

1.55_05 2017-12-16
    - Implemented ParamValues statement handle attribute (RT-123886)

1.55_04 2017-11-22
    - Updated SQLite to 3.21.0
    - Resolved #122581: statistics_info() doesn't work correctly
      (John Deighan)
    - Fixed typo (GH#26, ReneNyffenegger)
    - Silenced some warnings (GH#25, Jacques Germishuys)
    - Fixed no dot in @inc issue (GH#24, ribasushi)
    - Fixed zero-length BLOB value is retrieved as undef
      (GH#23, SATO Kentaro)
    - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
      (GH#28, fschlich)
    - noted on sqlite_extended_result_codes handle attribute

1.55_03 2017-02-14
    - Updated SQLite to 3.17.0

1.55_02 2017-01-08
    - Updated SQLite to 3.16.2
    - Fixed statistics_info when only unique indexes were requested (Dave
      Rolsky++). GitHub openembedded#21

1.55_01 2017-01-04
    - Updated SQLite to 3.16.0

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jul 9, 2019
* Add ptest dependencies`
* Reorganize recipe according to best practices
* Use CPAN_MIRROR
* Update HOMEPAGE

Upstream release notes:

1.62 2018-12-29
    - Switched to a production version

1.61_04 2018-12-22
    - Added sqlite_db_config method and new constants for it
    - Added sqlite_defensive option to disallow dangerous SQLite features
    - Exposed some of the hidden extended result codes

1.61_03 2018-12-19
    - Upgraded SQLite to 3.26.0, which reportedly has a security fix

1.61_02 2018-12-01
    - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
    - Introduced sqlite_prefer_numeric_type database handle attribute
      that changes the value of TYPE statement handle attribute
      from an array of string to an array of integer, as an experimental
      feature. Setting this may break your applications.
    - Changed preferred bugtracker

1.61_01 2018-12-01
    - Added ability to configure SQLITE_MAX_LENGT with environmental
      variable (Roy Storey)
    - Added sqlite_limit database handle method to change run-time limits
    - Upgraded SQLite to 3.25.3
    - Updated constants

1.60 2018-12-01
    - Switched to a production version

1.59_03 2018-11-03
    - Added a note on the long standing bug on TYPE statement
      handle attribute
    - Applied a doc patch on Virtual::PerlData by Björn Höhrmann
      (openembeddedGH-31)

1.59_02 2018-09-30
    - Upgraded SQLite to 3.25.2

1.59_01 2018-09-17
    - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN
      and UPSERT among others
    - Added ::GetInfo (GH#32, Brendan Byrd)
    - Fix to use a PV value as a virtual table column value
      where appropriate (RT-124941)
    - Add deferrability to foreign_key_info (mohawk2)

1.58 2018-03-28
    - Switched to a production version.

1.57_01 2018-03-21
    - Made it an error to fetch attributes from a statement
      handle whose database handle is inactive (ribasushi++)

1.56 2018-02-28
    - Switched to a production version.

1.55_07 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Upgraded SQLite to 3.22.0
    - Disabled two STAT compile time options (tentatively),
      which fixes RT-124227 anyway

1.55_06 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Downgraded SQLite to 3.19.3 because of a SQLite regression
      (RT-124227, ribasushi++)
    - Fixed some tests to adapt to a change in error format
      introduced by the latest DBI
    - Remove no warnings test from t/43_fts.t which failed under
      some environments

1.55_05 2017-12-16
    - Implemented ParamValues statement handle attribute (RT-123886)

1.55_04 2017-11-22
    - Updated SQLite to 3.21.0
    - Resolved #122581: statistics_info() doesn't work correctly
      (John Deighan)
    - Fixed typo (GH#26, ReneNyffenegger)
    - Silenced some warnings (GH#25, Jacques Germishuys)
    - Fixed no dot in @inc issue (GH#24, ribasushi)
    - Fixed zero-length BLOB value is retrieved as undef
      (GH#23, SATO Kentaro)
    - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
      (GH#28, fschlich)
    - noted on sqlite_extended_result_codes handle attribute

1.55_03 2017-02-14
    - Updated SQLite to 3.17.0

1.55_02 2017-01-08
    - Updated SQLite to 3.16.2
    - Fixed statistics_info when only unique indexes were requested (Dave
      Rolsky++). GitHub openembedded#21

1.55_01 2017-01-04
    - Updated SQLite to 3.16.0

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jul 10, 2019
* Add ptest dependencies`
* Reorganize recipe according to best practices
* Use CPAN_MIRROR
* Update HOMEPAGE

Upstream release notes:

1.62 2018-12-29
    - Switched to a production version

1.61_04 2018-12-22
    - Added sqlite_db_config method and new constants for it
    - Added sqlite_defensive option to disallow dangerous SQLite features
    - Exposed some of the hidden extended result codes

1.61_03 2018-12-19
    - Upgraded SQLite to 3.26.0, which reportedly has a security fix

1.61_02 2018-12-01
    - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
    - Introduced sqlite_prefer_numeric_type database handle attribute
      that changes the value of TYPE statement handle attribute
      from an array of string to an array of integer, as an experimental
      feature. Setting this may break your applications.
    - Changed preferred bugtracker

1.61_01 2018-12-01
    - Added ability to configure SQLITE_MAX_LENGT with environmental
      variable (Roy Storey)
    - Added sqlite_limit database handle method to change run-time limits
    - Upgraded SQLite to 3.25.3
    - Updated constants

1.60 2018-12-01
    - Switched to a production version

1.59_03 2018-11-03
    - Added a note on the long standing bug on TYPE statement
      handle attribute
    - Applied a doc patch on Virtual::PerlData by Björn Höhrmann
      (openembeddedGH-31)

1.59_02 2018-09-30
    - Upgraded SQLite to 3.25.2

1.59_01 2018-09-17
    - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN
      and UPSERT among others
    - Added ::GetInfo (GH#32, Brendan Byrd)
    - Fix to use a PV value as a virtual table column value
      where appropriate (RT-124941)
    - Add deferrability to foreign_key_info (mohawk2)

1.58 2018-03-28
    - Switched to a production version.

1.57_01 2018-03-21
    - Made it an error to fetch attributes from a statement
      handle whose database handle is inactive (ribasushi++)

1.56 2018-02-28
    - Switched to a production version.

1.55_07 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Upgraded SQLite to 3.22.0
    - Disabled two STAT compile time options (tentatively),
      which fixes RT-124227 anyway

1.55_06 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Downgraded SQLite to 3.19.3 because of a SQLite regression
      (RT-124227, ribasushi++)
    - Fixed some tests to adapt to a change in error format
      introduced by the latest DBI
    - Remove no warnings test from t/43_fts.t which failed under
      some environments

1.55_05 2017-12-16
    - Implemented ParamValues statement handle attribute (RT-123886)

1.55_04 2017-11-22
    - Updated SQLite to 3.21.0
    - Resolved #122581: statistics_info() doesn't work correctly
      (John Deighan)
    - Fixed typo (GH#26, ReneNyffenegger)
    - Silenced some warnings (GH#25, Jacques Germishuys)
    - Fixed no dot in @inc issue (GH#24, ribasushi)
    - Fixed zero-length BLOB value is retrieved as undef
      (GH#23, SATO Kentaro)
    - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
      (GH#28, fschlich)
    - noted on sqlite_extended_result_codes handle attribute

1.55_03 2017-02-14
    - Updated SQLite to 3.17.0

1.55_02 2017-01-08
    - Updated SQLite to 3.16.2
    - Fixed statistics_info when only unique indexes were requested (Dave
      Rolsky++). GitHub openembedded#21

1.55_01 2017-01-04
    - Updated SQLite to 3.16.0

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jul 10, 2019
* Add ptest dependencies`
* Reorganize recipe according to best practices
* Use CPAN_MIRROR
* Update HOMEPAGE

Upstream release notes:

1.62 2018-12-29
    - Switched to a production version

1.61_04 2018-12-22
    - Added sqlite_db_config method and new constants for it
    - Added sqlite_defensive option to disallow dangerous SQLite features
    - Exposed some of the hidden extended result codes

1.61_03 2018-12-19
    - Upgraded SQLite to 3.26.0, which reportedly has a security fix

1.61_02 2018-12-01
    - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
    - Introduced sqlite_prefer_numeric_type database handle attribute
      that changes the value of TYPE statement handle attribute
      from an array of string to an array of integer, as an experimental
      feature. Setting this may break your applications.
    - Changed preferred bugtracker

1.61_01 2018-12-01
    - Added ability to configure SQLITE_MAX_LENGT with environmental
      variable (Roy Storey)
    - Added sqlite_limit database handle method to change run-time limits
    - Upgraded SQLite to 3.25.3
    - Updated constants

1.60 2018-12-01
    - Switched to a production version

1.59_03 2018-11-03
    - Added a note on the long standing bug on TYPE statement
      handle attribute
    - Applied a doc patch on Virtual::PerlData by Björn Höhrmann
      (openembeddedGH-31)

1.59_02 2018-09-30
    - Upgraded SQLite to 3.25.2

1.59_01 2018-09-17
    - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN
      and UPSERT among others
    - Added ::GetInfo (GH#32, Brendan Byrd)
    - Fix to use a PV value as a virtual table column value
      where appropriate (RT-124941)
    - Add deferrability to foreign_key_info (mohawk2)

1.58 2018-03-28
    - Switched to a production version.

1.57_01 2018-03-21
    - Made it an error to fetch attributes from a statement
      handle whose database handle is inactive (ribasushi++)

1.56 2018-02-28
    - Switched to a production version.

1.55_07 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Upgraded SQLite to 3.22.0
    - Disabled two STAT compile time options (tentatively),
      which fixes RT-124227 anyway

1.55_06 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Downgraded SQLite to 3.19.3 because of a SQLite regression
      (RT-124227, ribasushi++)
    - Fixed some tests to adapt to a change in error format
      introduced by the latest DBI
    - Remove no warnings test from t/43_fts.t which failed under
      some environments

1.55_05 2017-12-16
    - Implemented ParamValues statement handle attribute (RT-123886)

1.55_04 2017-11-22
    - Updated SQLite to 3.21.0
    - Resolved #122581: statistics_info() doesn't work correctly
      (John Deighan)
    - Fixed typo (GH#26, ReneNyffenegger)
    - Silenced some warnings (GH#25, Jacques Germishuys)
    - Fixed no dot in @inc issue (GH#24, ribasushi)
    - Fixed zero-length BLOB value is retrieved as undef
      (GH#23, SATO Kentaro)
    - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
      (GH#28, fschlich)
    - noted on sqlite_extended_result_codes handle attribute

1.55_03 2017-02-14
    - Updated SQLite to 3.17.0

1.55_02 2017-01-08
    - Updated SQLite to 3.16.2
    - Fixed statistics_info when only unique indexes were requested (Dave
      Rolsky++). GitHub openembedded#21

1.55_01 2017-01-04
    - Updated SQLite to 3.16.0

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
jpuhlman pushed a commit to MontaVista-OpenSourceTechnology/meta-openembedded that referenced this issue Aug 28, 2019
Source: meta-openembedded
MR: 00000
Type: Integration
Disposition: Merged from meta-openembedded
ChangeID: 76609a4
Description:

* Add ptest dependencies`
* Reorganize recipe according to best practices
* Use CPAN_MIRROR
* Update HOMEPAGE

Upstream release notes:

1.62 2018-12-29
    - Switched to a production version

1.61_04 2018-12-22
    - Added sqlite_db_config method and new constants for it
    - Added sqlite_defensive option to disallow dangerous SQLite features
    - Exposed some of the hidden extended result codes

1.61_03 2018-12-19
    - Upgraded SQLite to 3.26.0, which reportedly has a security fix

1.61_02 2018-12-01
    - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
    - Introduced sqlite_prefer_numeric_type database handle attribute
      that changes the value of TYPE statement handle attribute
      from an array of string to an array of integer, as an experimental
      feature. Setting this may break your applications.
    - Changed preferred bugtracker

1.61_01 2018-12-01
    - Added ability to configure SQLITE_MAX_LENGT with environmental
      variable (Roy Storey)
    - Added sqlite_limit database handle method to change run-time limits
    - Upgraded SQLite to 3.25.3
    - Updated constants

1.60 2018-12-01
    - Switched to a production version

1.59_03 2018-11-03
    - Added a note on the long standing bug on TYPE statement
      handle attribute
    - Applied a doc patch on Virtual::PerlData by Björn Höhrmann
      (openembeddedGH-31)

1.59_02 2018-09-30
    - Upgraded SQLite to 3.25.2

1.59_01 2018-09-17
    - Upgraded SQLite to 3.25.0, with ALTER TABLE ... RENAME COLUMN
      and UPSERT among others
    - Added ::GetInfo (GH#32, Brendan Byrd)
    - Fix to use a PV value as a virtual table column value
      where appropriate (RT-124941)
    - Add deferrability to foreign_key_info (mohawk2)

1.58 2018-03-28
    - Switched to a production version.

1.57_01 2018-03-21
    - Made it an error to fetch attributes from a statement
      handle whose database handle is inactive (ribasushi++)

1.56 2018-02-28
    - Switched to a production version.

1.55_07 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Upgraded SQLite to 3.22.0
    - Disabled two STAT compile time options (tentatively),
      which fixes RT-124227 anyway

1.55_06 2018-01-27
    - This is a developer release to help testing DBIx::Class
    - Downgraded SQLite to 3.19.3 because of a SQLite regression
      (RT-124227, ribasushi++)
    - Fixed some tests to adapt to a change in error format
      introduced by the latest DBI
    - Remove no warnings test from t/43_fts.t which failed under
      some environments

1.55_05 2017-12-16
    - Implemented ParamValues statement handle attribute (RT-123886)

1.55_04 2017-11-22
    - Updated SQLite to 3.21.0
    - Resolved #122581: statistics_info() doesn't work correctly
      (John Deighan)
    - Fixed typo (GH#26, ReneNyffenegger)
    - Silenced some warnings (GH#25, Jacques Germishuys)
    - Fixed no dot in @inc issue (GH#24, ribasushi)
    - Fixed zero-length BLOB value is retrieved as undef
      (GH#23, SATO Kentaro)
    - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0
      (GH#28, fschlich)
    - noted on sqlite_extended_result_codes handle attribute

1.55_03 2017-02-14
    - Updated SQLite to 3.17.0

1.55_02 2017-01-08
    - Updated SQLite to 3.16.2
    - Fixed statistics_info when only unique indexes were requested (Dave
      Rolsky++). GitHub openembedded#21

1.55_01 2017-01-04
    - Updated SQLite to 3.16.0

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Dec 28, 2019
>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (openembedded#30, openembedded#32, openembedded#35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - openembedded#30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - openembedded#31 gdata_entry_get_id should not free current value if not changed
 - openembedded#32 Build failure on Continuous
 - openembedded#33 en_GBism in a string
 - openembedded#35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Dec 28, 2019
>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (#30, #32, #35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - #30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - #31 gdata_entry_get_id should not free current value if not changed
 - #32 Build failure on Continuous
 - #33 en_GBism in a string
 - #35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

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 issue Dec 28, 2019
>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (openembedded#30, openembedded#32, openembedded#35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - openembedded#30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - openembedded#31 gdata_entry_get_id should not free current value if not changed
 - openembedded#32 Build failure on Continuous
 - openembedded#33 en_GBism in a string
 - openembedded#35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

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 issue Dec 28, 2019
>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (openembedded#30, openembedded#32, openembedded#35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - openembedded#30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - openembedded#31 gdata_entry_get_id should not free current value if not changed
 - openembedded#32 Build failure on Continuous
 - openembedded#33 en_GBism in a string
 - openembedded#35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

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 issue Dec 29, 2019
>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (openembedded#30, openembedded#32, openembedded#35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - openembedded#30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - openembedded#31 gdata_entry_get_id should not free current value if not changed
 - openembedded#32 Build failure on Continuous
 - openembedded#33 en_GBism in a string
 - openembedded#35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
jpuhlman pushed a commit to MontaVista-OpenSourceTechnology/meta-openembedded that referenced this issue Dec 31, 2019
Source: meta-openembedded
MR: 00000
Type: Integration
Disposition: Merged from meta-openembedded
ChangeID: 00629f5
Description:

>From [1]:

Overview of changes from libgdata 0.17.10 to libgdata 0.17.11

=============================================================

* Various fixes to the Meson port, including a soversion fix (openembedded#30, openembedded#32, openembedded#35, !9, !10)

* Add support for user-specified properties of documents in Drive (!7)

* Bugs fixed:
 - openembedded#30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
 - openembedded#31 gdata_entry_get_id should not free current value if not changed
 - openembedded#32 Build failure on Continuous
 - openembedded#33 en_GBism in a string
 - openembedded#35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
 - !7 Drive v2 Properties API
 - !9 Meson fixes
 - !10 meson minor fixes
 - !13 docs: Drop use of `<!-- -->` to delimit plurals
 - !16 Minor revision of italian translation (after >2ys)

* Translation updates:
 - Basque
 - Czech
 - English (United Kingdom)
 - German
 - Indonesian
 - Italian
 - Lithuanian
 - Polish
 - Portuguese (Brazil)
 - Romanian
 - Spanish
 - Swedish

[1] http://ftp.gnome.org/pub/gnome/sources/libgdata/0.17/libgdata-0.17.11.news

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue 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 issue 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 issue 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 issue 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 issue 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 issue Jul 11, 2022
0001-Fix-for-Issue-31.patch
removed since it's included in 0.33

Changelog:
=========
- Update for windows github CI
- Remove duplicit 'LICENSE' key
- Remove EUMM Remove version check
- openembedded#31 by removing reference to RSA_SSLV23_PADDING (removed from OpenSSL starting from v3.0.0)
- support passphase protected private key load
- fix 'unsupported encryption' error on old library versions
- Clarify croak message for missing passphrase on older cyphers
- More structs opaqued in LibreSSL 3.5
- Use a macro for dealing with older SSL lacking macros
- more CI fixups. Drop testing for 5.10 and 5.8. Something is broken upstream.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jul 12, 2022
0001-Fix-for-Issue-31.patch
removed since it's included in 0.33

Changelog:
=========
- Update for windows github CI
- Remove duplicit 'LICENSE' key
- Remove EUMM Remove version check
- openembedded#31 by removing reference to RSA_SSLV23_PADDING (removed from OpenSSL starting from v3.0.0)
- support passphase protected private key load
- fix 'unsupported encryption' error on old library versions
- Clarify croak message for missing passphrase on older cyphers
- More structs opaqued in LibreSSL 3.5
- Use a macro for dealing with older SSL lacking macros
- more CI fixups. Drop testing for 5.10 and 5.8. Something is broken upstream.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2022
Changelog:
==========
- Fix crash minimizing parent window. (openembedded#31)
- Fix fullscreen for Wine windows. (openembedded#33)
- Updated translations.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 10, 2022
Changelog:
==========
- Fix crash minimizing parent window. (openembedded#31)
- Fix fullscreen for Wine windows. (openembedded#33)
- Updated translations.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this issue 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 issue 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>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Dec 27, 2022
Changelog:
===========
- Improve switching between windows of same application. (openembedded#26)
- Fix crash when background pixmap has non-default depth. (openembedded#34)
- Unminimaze child window together with main window. (openembedded#31)
- Updated translations.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Dec 28, 2022
Changelog:
===========
- Improve switching between windows of same application. (openembedded#26)
- Fix crash when background pixmap has non-default depth. (openembedded#34)
- Unminimaze child window together with main window. (openembedded#31)
- Updated translations.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
quaresmajose added a commit to quaresmajose/meta-openembedded that referenced this issue 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 issue 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 issue 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 issue 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 issue 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>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Mar 24, 2023
0001-configure-check-for-ns_get16-and-ns_get32-as-well.patch
Fixed-build-error-on-musl.patch
removed since they're included in 0.9.2.

Changelog:
==========
 - adenroll: set password via LDAP instead Kerberos [openembedded#27]
 - disco: fall back to LDAPS if CLDAP ping was not successful [openembedded#31]
 - tools: replace getpass() [openembedded#10]
 - adenroll: write SID before secret to Samba's db [rhbz#1991619]
 - doc: add clarification to add-member command on doc/adcli.xml
 - tools: Set umask before calling mkdtemp()
 - Avoid undefined behaviour in short option parsing
 - library: include endian.h for le32toh
 - man: Fix typos and use consistent upper case for some keywords
 - doc: avoid gnu-make specific usage of $< [openembedded#26]
 - configure: check for ns_get16 and ns_get32 as well [rhbz#1984891]
 - Add setattr and delattr options [rhbz#1690920]
 - entry: add passwd-user sub-command [rhbz#1952828]
 - Add dont-expire-password option [rhbz#1769644]
 - build: add --with-vendor-error-message configure option [rhbz#1889386]
 - tools: add show-computer command [rhbz#1737342]
 - add description option to join and update [rhbz#1737342]
 - Use GSS-SPNEGO if available [rhbz#1762420]
 - add option use-ldaps [rhbz#1762420]
 - tools: disable SSSD's locator plugin [rhbz#1762633]
 - doc: explain required AD permissions [gfo#20]
 - computer: add create-msa sub-command [rhbz#1854112}
 - Add account-disable option [gfo#21]

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Apr 5, 2023
0001-Fix-for-Issue-31.patch
removed since it's included in 0.33

Changelog:
=========
- Update for windows github CI
- Remove duplicit 'LICENSE' key
- Remove EUMM Remove version check
- #31 by removing reference to RSA_SSLV23_PADDING (removed from OpenSSL starting from v3.0.0)
- support passphase protected private key load
- fix 'unsupported encryption' error on old library versions
- Clarify croak message for missing passphrase on older cyphers
- More structs opaqued in LibreSSL 3.5
- Use a macro for dealing with older SSL lacking macros
- more CI fixups. Drop testing for 5.10 and 5.8. Something is broken upstream.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit a97f771)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
jpuhlman pushed a commit to MontaVista-OpenSourceTechnology/meta-openembedded that referenced this issue Apr 10, 2023
Source: meta-openembedded
MR: 124675
Type: Integration
Disposition: Merged from meta-openembedded
ChangeID: 3459e01
Description:

0001-Fix-for-Issue-31.patch
removed since it's included in 0.33

Changelog:
=========
- Update for windows github CI
- Remove duplicit 'LICENSE' key
- Remove EUMM Remove version check
- openembedded#31 by removing reference to RSA_SSLV23_PADDING (removed from OpenSSL starting from v3.0.0)
- support passphase protected private key load
- fix 'unsupported encryption' error on old library versions
- Clarify croak message for missing passphrase on older cyphers
- More structs opaqued in LibreSSL 3.5
- Use a macro for dealing with older SSL lacking macros
- more CI fixups. Drop testing for 5.10 and 5.8. Something is broken upstream.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit a97f771)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.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

No branches or pull requests

3 participants