1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
* control
- remove : DM-Upload-allowed: yes whch is deprecated. We use another system now to allow DM upload.
- do not hesitate to use
cme fix dpkg-copyright
cme fix dpkg-control
cme fix dpkg
to check that contorl files, copyright etc.. are ok
- Pre-Depends: ${misc:Pre-Depends} instead of hardcoding multiarch-support
- Depends: remove the ${misc:Pre-Depends} which elong to Pre-Depends:
- you should add the Multi-Arch: same to libcerf1 and the -dev binary package
- If I were you, I would split the -dev package and put the -doc into a -doc package.
This should avoid a new New process once the multiarch include files will be implemented.
Then the -dev package can recommends the doc.
* copyright
- when more than one section use the same license. Like the MIT one in your case you can write the License only once
File: ...
Copyright: ...
Licenses: MIT
FILE: ...
Copyright: ...
Licenses: MIT
License: MIT
....
This way you avoid copy past.
|