[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][debian-mate-team/caja-mediainfo][master] 7 commits: debian/control: Port to Python3. (Closes: #942914)."



Title: GitLab

Mike Gabriel pushed to branch master at Debian and Ubuntu MATE Packaging Team / caja-mediainfo

Commits:

3 changed files:

Changes:

  • debian/changelog
    1
    +caja-mediainfo (1.0.1-3) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Upload to unstable as is.
    
    4
    +
    
    5
    + -- Mike Gabriel <sunweaver@debian.org>  Fri, 03 Jan 2020 06:52:41 +0100
    
    6
    +
    
    7
    +caja-mediainfo (1.0.1-3~exp1) experimental; urgency=medium
    
    8
    +
    
    9
    +  * debian/control:
    
    10
    +    + Fix typo in LONG_DESCRIPTION. Thanks to Thomas Vincent for spotting this.
    
    11
    +      (Closes: #931821).
    
    12
    +    + Bump Standards-Version: to 4.4.1. No changes needed.
    
    13
    +    + Add Rules-Requires-Root: field and set it to no.
    
    14
    +    + Port to Python3. (Closes: #942914)."
    
    15
    +  * debian/patches:
    
    16
    +    + Add 1001_Py3-port.patch. Port to Py3. (Closes: #942426).
    
    17
    +
    
    18
    + -- Mike Gabriel <sunweaver@debian.org>  Tue, 10 Dec 2019 12:03:39 +0100
    
    19
    +
    
    1 20
     caja-mediainfo (1.0.1-2) unstable; urgency=medium
    
    2 21
     
    
    3 22
       * Upload to unstable as is.
    

  • debian/control
    ... ... @@ -6,7 +6,7 @@ Uploaders: Martin Wimpress <martin.wimpress@ubuntu.com>,
    6 6
                Mike Gabriel <sunweaver@debian.org>,
    
    7 7
     Build-Depends: debhelper-compat (= 12),
    
    8 8
                    dh-exec,
    
    9
    -               python,
    
    9
    +               python3,
    
    10 10
     Standards-Version: 4.4.1
    
    11 11
     Rules-Requires-Root: no
    
    12 12
     Homepage: https://github.com/linux-man/caja-mediainfo-tab
    
    ... ... @@ -19,8 +19,8 @@ Depends: ${misc:Depends},
    19 19
              caja,
    
    20 20
              gir1.2-caja-2.0,
    
    21 21
              gir1.2-gtk-3.0,
    
    22
    -         python-caja,
    
    23
    -         python-mediainfodll
    
    22
    +         python3-caja,
    
    23
    +         python3-mediainfodll
    
    24 24
     Description: View media information from the Caja file properties tab
    
    25 25
      Caja is the official file manager for the MATE desktop. It allows one
    
    26 26
      to browse directories, preview files and launch applications associated
    

  • debian/patches/1001_Py3-port.patch
    1
    +Description: Port to Python3.
    
    2
    +Author: Vlad Orlov <monsta@inbox.ru>
    
    3
    +
    
    4
    +--- a/caja-extension/caja-mediainfo-tab.py
    
    5
    ++++ b/caja-extension/caja-mediainfo-tab.py
    
    6
    +@@ -1,4 +1,4 @@
    
    7
    +-#!/usr/bin/python
    
    8
    ++#!/usr/bin/python3
    
    9
    + #coding: utf-8
    
    10
    + 
    
    11
    + import locale, os
    
    12
    +@@ -10,7 +10,7 @@
    
    13
    + 
    
    14
    + from gi.repository import Caja, GObject, Gtk
    
    15
    + 
    
    16
    +-from MediaInfoDLL import *
    
    17
    ++from MediaInfoDLL3 import *
    
    18
    + 
    
    19
    + lang = locale.getdefaultlocale()[0]
    
    20
    + locale_path = os.path.join(os.path.dirname(__file__), "caja-mediainfo-tab/locale")


  • Reply to: