After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 797076 - Cerbero does not bootstrap on Linux Mint Tara
Cerbero does not bootstrap on Linux Mint Tara
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: cerbero
git master
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2018-09-04 21:56 UTC by David Ing
Modified: 2018-09-07 02:10 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
This patch will fix the bug. (911 bytes, patch)
2018-09-04 22:33 UTC, David Ing
committed Details | Review

Description David Ing 2018-09-04 21:56:34 UTC
I am on Linux Mint Tara.

I was unable to run the command `./cerbero-uninstalled bootstrap` because my distro is not supported.

In the file cerbero/utils/__init__.py, there is a block of code like this:

    elif d[2] in ['bionic']:
        distro_version = DistroVersion.UBUNTU_BIONIC

It should be like this:

    elif d[2] in ['bionic', 'tara']:
        distro_version = DistroVersion.UBUNTU_BIONIC

This might be checked into `1.14` and `master` ... but I'm not a regular gstreamer developer so I don't know which branch(es) would be most appropriate.
Comment 1 David Ing 2018-09-04 21:58:12 UTC
BTW, I have tested my suggested change locally.  The bootstrap command worked just fine.
Comment 2 David Ing 2018-09-04 22:33:39 UTC
Created attachment 373548 [details] [review]
This patch will fix the bug.

I have tested this patch on Linux Mint Cinnamon Tara.  After I made the change, the bootstrap command executed fine.
Comment 3 Nicolas Dufresne (ndufresne) 2018-09-07 02:10:13 UTC
commit 4e70a8cf5835547486dd3b34ac161795a1aab66b (HEAD -> master, origin/master, origin/HEAD)
Author: David Ing <ding@panopto.com>
Date:   Tue Sep 4 15:30:21 2018 -0700

    Allow usage with Linux Mint Tara (19)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=797076