Skip to content
Snippets Groups Projects
PKG-INFO 6.79 KiB
Metadata-Version: 1.0
Name: pidp.tools
Version: 1.5.6
Summary: PETRA III Debian Package Tools
Home-page: https://stash.desy.de/projects/JMK/repos/pidptools/browse/
Author: Jan Kotanski
Author-email: jankotan@gmail.com
License: GNU GENERAL PUBLIC LICENSE v3
Description: =========================================
        Welcome to Petra III Debian Package Tools
        =========================================
        
        
        Authors: Jan Kotanski
        
        The package contains pidp* scripts to create debian packages
        with use of git-buildpackage and the PIDP stash repository at DESY.
        
        
        | Source code: https://stash.desy.de/projects/JMK/repos/pidptools/browse
        | Web page: https://stash.desy.de/projects/JMK/repos/pidptools/browse
        
        
        ---------
        Use cases
        ---------
        
        Below there are pointed out the most common use cases
        
        
        Update the debian package configuration
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        1) Clone the repository of required project, e.g.
        
        .. code-block:: console
        
        	  $ pidpclone python-tools-extras-p09
        
        2) Change the package configuration in the debian/ directory
           by editing its files
        
        3) Commit your changes, .e.g.
        
        .. code-block:: console
        
        	  $ git commit -a -m 'update dependences'
        
        4) Build the new package, e.g.
        
        .. code-block:: console
        
        	  $ pidpbuild
        
        5) test your new package
        
        6) if tests are successful push it into stash repo, e.g.
        
        .. code-block:: console
        
        	  $ pidppush python-tools-extras-p09
        
        
        Add a patch into the existing debian package
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        1) Clone the repository of required project in the patch mode, e.g.
        
        .. code-block:: console