Editing Mika/Notes/Computer Stuff/Debian Maintenance

From WikiDotMako

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
I maintain bubblefishymon.
I maintain bubblefishymon.
==Misc==
* I can check what's happening in ubuntu here: http://changelogs.ubuntu.com/changelogs/pool/universe/b/bfm/bfm_0.6.4-5ubuntu1/changelog
* I accidentally deleted my deb-src lines in /etc/apt/source.list. When I tried to run apt-get source (package), I got this error: E: You must put some 'source' URIs in your sources.list . Added deb-src lines back in, ran apt-get update, and now it's all good.
* Tried to switch to 3.0 (quilt) source format (https://wiki.debian.org/Projects/DebSrc3.0#How_to_convert_a_source_package.3F) but I kept getting an error message (dpkg-buildpackage: error: dpkg-source -b  gave error exit status 2) when I tried to dpkg-buildpackage. The solution was to run dpkg-source --commit.
* man 7 intro gives introduction to overview, convention (i.e. (1) means sub-man page etc).
* READ on dh_auto_build and dh_auto_install!


==Basic Steps==
==Basic Steps==
*Use fakeroot, not root.


1. apt-get source bubblefishymon: get the source
1. apt-get source bubblefishymon: get the source
 
2. fix the bugs:
2. Fix the bugs. See below for specific examples.
1
Delete in debian/control file:  
3. Build package after some fixes:
 
::dpkg-buildpackage (-us -uc skips the signing stage) -rfakeroot: This makes dsc and changes and diff.gz files in the *parent* directory (i.e. /home/mika/).
:::if it gives an error dpkg-checkbuilddeps: error: Unmet build dependencies x y z, run apt build-dep bfm.
 
 
4. Run lintian on changes to check errors in the directory where .changes files exist:
 
::lintian -i -I *changes (if there are multiple changes files in the same folder, specify here.)
 
5. Test the package by:
 
::sudo debi (the change file name)
 
6. Make (dch -i (change description)) or edit in editor the changelog file in the debian folder. The format is:
 
::bfm (0.6.4-3) unstable; urgency=low
 
:: * (Change description. Make sure to add (Closes: #bugnumber) if the change fixes the bug.
 
:: -- Mika Matsuzaki <mika@yukidoke.org>  (Timestamp, automatic by dch)
 
Note: dch -i added *Non-Maintainer upload automatically because it saw my laptop's ID instead of my maintainer email. I can edit /home/mika/.bashrc to specify DEBFULLNAME="" and DEBEMAIL="" . Then, do exec bash (starts bash but kills old bash. If you just run bash, then it will run bash inside the existing bash).
 
 
7. Upload .dsc and <s>.diff.gz</s> .debian.tar. and orig.tar somewhere, so that the sponsor can get it.
 
8. pbuilder can help simulate the problems in sid (problems if using Ubuntu. Just use Debian):
:: sudo pbuilder create --distribution sid
 
==Bug reports==
 
* switch to 3.0 (quilt) -- followed this instruction https://wiki.debian.org/Projects/DebSrc3.0#How_to_convert_a_source_package.3F and dpkg-source --commit
* Homepage update in control
 
* 667112 on gcc command line option -Wl
 
Removed -Wl from:
LDFLAGS = -shared -Wl
 
-Wl means "pass the following option to the linker"
 
* Delete in debian/control file:  
.
.
Homepage: http://www.jnrowe.ukfsn.org/projects/bfm.html
Homepage: http://www.jnrowe.ukfsn.org/projects/bfm.html
Line 68: Line 12:
Homepage: http://www.jnrowe.ukfsn.org/projects/bfm.html
Homepage: http://www.jnrowe.ukfsn.org/projects/bfm.html


2
# Updated to Standards-Version: 3.9.1 in debian/control file
Updated to Standards-Version: 3.9.1 in debian/control file


3
* Fixed black background in WindowMaker. Someone had a patch on github. Downloded the patch and in the bfm folder:  
Fixed black background in WindowMaker. Someone had a patch on github. Downloded the patch and in the bfm folder:  


                 patch <- (patch file)
                 patch <- (patch file)


* Fixed FTBFS bug with binutils-gold. It said that I had to specify the library (libX11). Changed 2 times in bfm-0.4.4/Makefile (Mako):
4 Fixed FTBFS bug with binutils-gold. It said that I had to specify the library (libX11). Changed 2 times in bfm-0.4.4/Makefile (Mako):
GTK_LIBS = -lX11 $(shell gtk-config --libs)
GTK_LIBS = -lX11 $(shell gtk-config --libs)


5
* Fixed menu as directed by lintian in 2 steps:
Fixed menu as directed by lintian in 2 steps:
Instead of Apps/Systems --> Applications/Systems
Instead of Apps/Systems --> Applications/Systems
Instead of Applications/Systems --> Applications/Systems/Monitoring
Instead of Applications/Systems --> Applications/Systems/Monitoring
When I search for the lintian error messages, I get a page that has a list of packages with the same error plus the suggested solution on top.
When I search for the lintian error messages, I get a page that has a list of packages with the same error plus the suggested solution on top.


6.
* Fixed Copyright by adding in debian/copyright:
Fixed Copyright by adding in debian/copyright:


Copyright:  
Copyright:  
Line 95: Line 39:
Copyright (c) 2009 James Rowe <Jay@jnrowe.ukfsn.org>
Copyright (c) 2009 James Rowe <Jay@jnrowe.ukfsn.org>


7.
* Fixed the nonstrip option problem by editing debian/rules (Clint):
Fixed the nonstrip option problem by editing debian/rules (Clint):
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
          INSTALL_PROGRAM += -s
          INSTALL_PROGRAM += -s
Line 104: Line 48:
endif
endif


8
* Fixed watch accordingly to the suggestion on BTS so as to report the upstream update (though it's not happening now since there's no upstream developer):
Fixed watch accordingly to the suggestion on BTS so as to report the upstream update (though it's not happening now since there's no upstream developer):
version=3
version=3
http://www.jnrowe.ukfsn.org/projects/bfm.html../_downloads/bfm-(.*)\.tar\.bz2
http://www.jnrowe.ukfsn.org/projects/bfm.html../_downloads/bfm-(.*)\.tar\.bz2
3. Build package after some fixes:
dpkg-buildpackage (-us -uc skips the signing stage): This makes dsc and changes and diff.gz files in the *parent* directory (i.e. /home/mika/).


==Miscellaneous things==
4. Run lintian on changes to check errors in the directory where .changes files exist:
lintian -i -I *changes (if there are multiple changes files in the same folder, specify here.)


* If you want to build a binary package, the package has to be 'installed'. The correct way to do this is by using the utility fakeroot, which fakes an install, so that you can build a binary package as non-root and without really installing it. The following command should build a binary package:
5. Test the package by:
sudo debi (the change file name)


::fakeroot debian/rules binary
6. Make (dh_make changelog) or edit in editor the changelog file in the debian folder. The format is:


The binary target is yet another Makefile target that will first execute a configure, build and install if still necessary. If you already did build the package, then only an install would first be done, etc.
bfm (0.6.4-3) unstable; urgency=low


* While testing changes that you make to the code, you can (re)build the package with the command:
  * (Change description. Make sure to add (Closes: #bugnumber) if the change fixes the bug.


::debian/rules build
-- Mika Matsuzaki <mika@yukidoke.org>  (Timestamp, automatic by dh_make)


* clean the source tree? (fakeroot debian/rules clean)
 
7. Upload .dsc and .diff.gz somewhere, so that the sponsor can get it.
 
8. pbuilder can help simulate the problems in sid (problems if using Ubuntu. Just use Debian):
sudo pbuilder create --distribution sid
 
 
==Bug reports==
* 667112 on gcc command line option -Wl
 
Removed -Wl from:
LDFLAGS = -shared -Wl
 
-Wl means "pass the following option to the linker"
Please note that all contributions to WikiDotMako are considered to be released under the Attribution-Share Alike 3.0 Unported (see WikiDotMako:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, 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. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)