Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 1443262 - brltty-5.5 is available
Summary: brltty-5.5 is available
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: brltty
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Gwyn Ciesla
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2017-04-19 00:12 UTC by Upstream Release Monitoring
Modified: 2017-06-25 16:20 UTC (History)
3 users (show)

Fixed In Version: brltty-5.5-3.fc26
Doc Type: Enhancement
Doc Text:
Clone Of:
Environment:
Last Closed: 2017-06-25 16:20:29 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Upstream Release Monitoring 2017-04-19 00:12:27 UTC
Latest upstream release: 5.5
Current version/release in rawhide: 5.4-7.fc26
URL: http://mielke.cc/brltty/download.html

Please consult the package updates policy before you issue an update to a stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at: https://fedoraproject.org/wiki/Upstream_release_monitoring

Please keep in mind that with any upstream change, there may also be packaging changes that need to be made. Specifically, please remember that it is your responsibility to review the new version to ensure that the licensing is still correct and that no non-free or legally problematic items have been added upstream.

Based on the information from anitya:  https://release-monitoring.org/project/220/

Comment 1 Upstream Release Monitoring 2017-04-19 00:12:34 UTC
One or more of the specfile's Sources is not a valid URL so we cannot automatically build the new version for you.Please use a URL in your Source declarations if possible.

Comment 2 Gwyn Ciesla 2017-04-19 14:34:11 UTC
Updated in git, but neither 5.4 or 5.5 builds with python 3.6.  Investigating, more eyes welcome.

Comment 3 Troy Dawson 2017-06-16 14:04:12 UTC
Currently the builds aren't even making it to the python3 section.  Doing a build in f26 or rawhide gives the following error.
...
make[3]: Leaving directory '/builddir/build/BUILD/brltty-5.4/Programs'
set -- --quiet build --build-temp .; \
[ "linux-gnu" != "mingw32" ] || set -- "${@}" --compiler mingw32; \
/usr/bin/python2 ./setup.py "${@}"
cc1: error: -Wformat-security ignored without -Wformat [-Werror=format-security]
cc1: some warnings being treated as errors
error: command 'gcc' failed with exit status 1
...

This is because the package is building with the -Werror=format-security set, but in setup.py we are setting -Wno-format
In order for it to build we have to do one of two things (though I'm not ruling out something different) to change the flags in setup.py.

diff --git a/configure b/configure
index 1f4f567..2c04f99 100755
--- a/configure
+++ b/configure
@@ -8673,7 +8673,7 @@ fi
 
 if test "${GCC}" = "yes"
 then
-   CYTHON_CFLAGS="-Wno-parentheses -Wno-unused -Wno-format -fno-strict-aliasing -U_POSIX_C_SOURCE -U_XOPEN_SOURCE"
+   CYTHON_CFLAGS="-Wno-error=format-security -Wno-parentheses -Wno-unused -Wno-format -fno-strict-aliasing -U_POSIX_C_SOURCE -U_XOPEN_SOURCE"
 else
    case "${host_os}"
    in
-- 

or

diff --git a/configure b/configure
index 1f4f567..2c04f99 100755
--- a/configure
+++ b/configure
@@ -8673,7 +8673,7 @@ fi
 
 if test "${GCC}" = "yes"
 then
-   CYTHON_CFLAGS="-Wno-parentheses -Wno-unused -Wno-format -fno-strict-aliasing -U_POSIX_C_SOURCE -U_XOPEN_SOURCE"
+   CYTHON_CFLAGS="-Wno-parentheses -Wno-unused -fno-strict-aliasing -U_POSIX_C_SOURCE -U_XOPEN_SOURCE"
 else
    case "${host_os}"
    in
-- 

Both get you past this build error.

But then unfortunately, we're back to the original problem, that it's not building on python 3.6.

Comment 4 Gwyn Ciesla 2017-06-16 14:18:32 UTC
Upstream fixed the cflags issue in 5.5; only the Python 3 issue remains.  I'll dig into it further today.

Comment 5 Gwyn Ciesla 2017-06-16 16:03:24 UTC
configure isn't doing what is ought to be with the PYTHON environment variable, even if I manually specify all the related variables, or re-run autogen.  Sent message to the mailing list.

Comment 6 Fedora Update System 2017-06-22 14:12:05 UTC
brltty-5.5-3.fc26 has been submitted as an update to Fedora 26. https://bodhi.fedoraproject.org/updates/FEDORA-2017-33630a22fc

Comment 7 Fedora Update System 2017-06-24 01:22:10 UTC
brltty-5.5-3.fc26 has been pushed to the Fedora 26 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-33630a22fc

Comment 8 Fedora Update System 2017-06-25 16:20:29 UTC
brltty-5.5-3.fc26 has been pushed to the Fedora 26 stable repository. If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.