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

[Git][debian-mate-team/python-caja][master] 12 commits: debian/control: Bump Standards-Version: to 4.4.1. No changes needed.



Title: GitLab

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

Commits:

9 changed files:

Changes:

  • debian/changelog
    1
    +python-caja (1.23.0-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Upload to unstable as is.
    
    4
    +
    
    5
    + -- Mike Gabriel <sunweaver@debian.org>  Fri, 03 Jan 2020 06:51:11 +0100
    
    6
    +
    
    7
    +python-caja (1.23.0-1~exp2) experimental; urgency=medium
    
    8
    +
    
    9
    +  * debian/control:
    
    10
    +    + Add B:/R: relation (python3-caja) to python-caja (<< 1.23~).
    
    11
    +  * debian/patches:
    
    12
    +    + Add 1002_port-fixref-py-with-2to3.patch. Port to Python3.
    
    13
    +
    
    14
    + -- Mike Gabriel <sunweaver@debian.org>  Tue, 10 Dec 2019 10:27:53 +0100
    
    15
    +
    
    16
    +python-caja (1.23.0-1~exp1) experimental; urgency=medium
    
    17
    +
    
    18
    +  * New upstream (development) release.
    
    19
    +  * debian/watch:
    
    20
    +    + Temporarily allow development releases of python-caja.
    
    21
    +  * debian/control:
    
    22
    +    + Bump Standards-Version: to 4.4.1. No changes needed.
    
    23
    +    + Add Rules-Requires-Root: field and set it to no.
    
    24
    +  * debian/{control,rules,*.install}:
    
    25
    +    + Switch to Python3 build. (Closes: #937628, #945863).
    
    26
    +  * debian/copyright:
    
    27
    +    + Update copyright attributions.
    
    28
    +  * debian/patches:
    
    29
    +    + Rebase 0001_reproducible-build.patch."
    
    30
    +
    
    31
    + -- Mike Gabriel <sunweaver@debian.org>  Tue, 10 Dec 2019 09:23:20 +0100
    
    32
    +
    
    1 33
     python-caja (1.22.1-2) unstable; urgency=medium
    
    2 34
     
    
    3 35
       [ Martin Wimpress ]
    

  • debian/control
    ... ... @@ -12,8 +12,9 @@ Build-Depends: debhelper-compat (=12),
    12 12
                    gtk-doc-tools,
    
    13 13
                    libcaja-extension-dev (>= 1.20),
    
    14 14
                    libgirepository1.0-dev,
    
    15
    +               libglib2.0-dev,
    
    15 16
                    mate-common (>= 1.20),
    
    16
    -               python-dev,
    
    17
    +               python3-dev,
    
    17 18
                    python-gi-dev,
    
    18 19
                    quilt,
    
    19 20
     Standards-Version: 4.4.1
    
    ... ... @@ -22,13 +23,15 @@ Homepage: http://www.mate-desktop.org/
    22 23
     Vcs-Browser: https://salsa.debian.org/debian-mate-team/python-caja
    
    23 24
     Vcs-Git: https://salsa.debian.org/debian-mate-team/python-caja.git
    
    24 25
     
    
    25
    -Package: python-caja
    
    26
    +Package: python3-caja
    
    26 27
     Architecture: any
    
    27 28
     Depends: gir1.2-caja-2.0,
    
    28 29
              python-caja-common (= ${source:Version}),
    
    29 30
              ${misc:Depends},
    
    30 31
              ${shlibs:Depends},
    
    31
    -Description: Python binding for Caja components
    
    32
    +Breaks: python-caja (<< 1.23~),
    
    33
    +Replaces: python-caja (<< 1.23~),
    
    34
    +Description: Python3 binding for Caja components
    
    32 35
      Caja is the official file manager for the MATE desktop. It allows one
    
    33 36
      to browse directories, preview files and launch applications associated
    
    34 37
      with them. It is also responsible for handling the icons on the MATE
    

  • debian/copyright
    ... ... @@ -30,8 +30,8 @@ License: GPL-2+
    30 30
     Files: .travis.yml
    
    31 31
            .tx/config
    
    32 32
            .github/issue_template.md
    
    33
    +       .github/FUNDING.yml
    
    33 34
            AUTHORS
    
    34
    -       COPYING
    
    35 35
            ChangeLog
    
    36 36
            Makefile.am
    
    37 37
            NEWS
    
    ... ... @@ -49,6 +49,7 @@ Files: .travis.yml
    49 49
            docs/reference/caja-python-menu-item.xml
    
    50 50
            docs/reference/caja-python-menu-provider.xml
    
    51 51
            docs/reference/caja-python-menu.xml
    
    52
    +       docs/reference/caja-python-operation-handle.xml
    
    52 53
            docs/reference/caja-python-operation-result.xml
    
    53 54
            docs/reference/caja-python-overview-example.xml
    
    54 55
            docs/reference/caja-python-overview-methods.xml
    

  • debian/patches/0001_reproducible-build.patch
    1 1
     Description: Make build reproducible.
    
    2 2
     Author: Chris Lamb <lamby@debian.org>
    
    3 3
     
    
    4
    ---- python-caja-1.10.0.orig/docs/Makefile.am
    
    5
    -+++ python-caja-1.10.0/docs/Makefile.am
    
    6
    -@@ -86,7 +86,7 @@ BUILT_SOURCES = 		\
    
    4
    +--- a/docs/Makefile.am
    
    5
    ++++ b/docs/Makefile.am
    
    6
    +@@ -88,7 +88,7 @@
    
    7 7
      	$(HTML_FILES)
    
    8 8
      
    
    9 9
      reference/builddate.xml: $(REFERENCE_DEPS)
    

  • debian/patches/1002_port-fixref-py-with-2to3.patch
    1
    +Description: Port to Python3.
    
    2
    +Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
    
    3
    +
    
    4
    +--- a/docs/xsl/fixxref.py
    
    5
    ++++ b/docs/xsl/fixxref.py
    
    6
    +@@ -1,4 +1,4 @@
    
    7
    +-#!/usr/bin/env python
    
    8
    ++#!/usr/bin/env python3
    
    9
    + # -*- Mode: Python; py-indent-offset: 4 -*-
    
    10
    + 
    
    11
    + import getopt
    
    12
    +@@ -30,7 +30,7 @@
    
    13
    + 
    
    14
    + def link_subst(m):
    
    15
    +     id, text = m.groups()
    
    16
    +-    if id in anchors.keys():
    
    17
    ++    if id in list(anchors.keys()):
    
    18
    +         return '<a\nhref="../' + anchors[id] + '"\n>' + text + '</a>'
    
    19
    +     return text
    
    20
    + 

  • debian/patches/series
    1 1
     0001_reproducible-build.patch
    
    2 2
     1001_pkg-config-macro-not-cross-compilation-safe.patch
    
    3
    +1002_port-fixref-py-with-2to3.patch

  • debian/python-caja.installdebian/python3-caja.install

  • debian/rules
    ... ... @@ -6,6 +6,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
    6 6
     DPKG_EXPORT_BUILDFLAGS = 1
    
    7 7
     include /usr/share/dpkg/buildflags.mk
    
    8 8
     
    
    9
    +export PYTHON=python3
    
    10
    +
    
    9 11
     %:
    
    10 12
     	dh $@ $(DHFLAGS) --without autoreconf
    
    11 13
     
    

  • debian/watch
    1 1
     version=3
    
    2 2
     https://git.mate-desktop.org/python-caja/ \
    
    3
    -    snapshot/python-caja-(\d\.(?:[0-9]+|)[24680]\.\d)\.tar\.xz
    3
    +    snapshot/python-caja-(\d\.(?:[0-9]+|)[0-9]\.\d)\.tar\.xz


  • Reply to: