Editing PyMaemo/Scratchboxless packaging guide

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 71: Line 71:
== Building a basic debian directory ==
== Building a basic debian directory ==
-
Another useful command is ''debianize''. It will read the configuration file and write a directory named debian in the same directory. This can be used for manually creating the packages using dpkg tools directly. For a detailed usage example see the [http://github.com/astraw/stdeb#debianize-distutils-command stdeb website].
+
Another useful command is ''debianize''. It will read the configuration file and write a directory named debian in the same directory. This can be used for manually creating the packages using dpkg tools directly. For a detailed usage example see the [http://github.com/astraw/stdeb#debianize-distutils-command steb website].
Note: sdist_dsc and bdist_deb do '''not''' use this directory, generating a new one in the source dir under deb_dist/.
Note: sdist_dsc and bdist_deb do '''not''' use this directory, generating a new one in the source dir under deb_dist/.
Line 86: Line 86:
== Support for non-Debian systems ==
== Support for non-Debian systems ==
 +
 +
'''DRAFT DRAFT DRAFT DRAFT DRAFT'''
{{ambox
{{ambox
| type = notice
| type = notice
| image=  
| image=  
-
| text = Keep in mind that the support for non-Debian systems is '''experimental''': it is not as funcional as the stdeb approach shown above and may not work for your package. Also, these instructions may change without notice. }}
+
| text = Keep in mind that the support for non-Debian systems is '''experimental''': it is not as funcional as the stdeb approach shown above and  
 +
may change without notice. }}
 +
 
 +
 
If you're using a distro not based on Debian, you can still create source packages for uploading to extras-devel, but won't be able to create binary packages (.deb).
If you're using a distro not based on Debian, you can still create source packages for uploading to extras-devel, but won't be able to create binary packages (.deb).
Line 96: Line 101:
For doing this, you will need the sdist_deb module available [http://gitorious.org/pymaemo/sboxless here]; just clone it in some directory and point the PYTHONPATH environment variable there.  
For doing this, you will need the sdist_deb module available [http://gitorious.org/pymaemo/sboxless here]; just clone it in some directory and point the PYTHONPATH environment variable there.  
-
Now create a file called sboxless.cfg, which will contain additional information for generating the package. For now, you can add additional runtime dependencies for your package. If you want to add python-twitter as dependency, just write
+
For using it, first include the module in your setup.py:
 +
 
 +
try:
 +
    from sdist_deb import sdist_deb
 +
except ImportError:
 +
    from distutils.core import Command
 +
    class sdist_deb(Command):
 +
        pass
 +
 
 +
The try/except statement and the dummy class are needed so the package won't break when built on the extras-devel autobuilder.  
 +
 
 +
Add a new cmdclass to your setup.py, or update the existing one:
 +
 
 +
cmdclass={'sdist_deb': sdist_deb}
-
[control]
+
or
-
depends=python-twitter
+
-
The file is mandatory, so if you don't want to add any dependency, just leave the field empty ('depends=').
+
cmdclass={'command1': command1,
 +
          'command2': command1,
 +
          (...)
 +
          'sdist_deb': sdist_deb}
-
Now, run the sdist_deb command:
+
Now just use the new command to build the sources:
-
  PYTHONPATH=/path/to/sboxless python setup.py --command-packages=sboxless  sdist_deb
+
  PYTHONPATH=/path/to/sdist_deb python setup.py sdist_deb
The source files will be generated on the ./dist directory.
The source files will be generated on the ./dist directory.

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)

Templates used on this page: