Tagged Questions

3
votes
1answer
87 views

Versioning of debian packaging Information

I'm developing certain scripts and small software packages which I also package as debian packages. The code is maintained in git and I create new release tarballs with an make target and ...
2
votes
1answer
33 views

Rebuild an ubuntu/debian package without some of the patches

I'd like to rebuild a source package that's in the ubuntu repo, changing nothing, except that I would like to build it without a subset of the patches it comes with. I have no experience doing such ...
2
votes
2answers
73 views

Is there a way to automatically determine dependencies when setting up a dpkg control file?

Most of the fields in a dpkg (Debian) control file are straightforward. The tricky one is determining the list of dependencies (Depends:). I was hoping that dpkg-gencontrol could do this for me by ...
2
votes
2answers
107 views

How can I uninstall the last installed application (recently installed) with dpkg?

I need to use a command and or script that uninstalls the last recently installed application deb . I can't use apt-get in this case but rather dpkg --purge or similar, something like dpkg --remove ...
2
votes
1answer
440 views

dpkg: warning: while removing directory /usr/local not empty so not removed

I built and installed a debian package from the following folder structure: myprog DEBIAN control usr local bin myprog.sh ... using the following commands: dpkg -b myprog/ ...
1
vote
1answer
12 views

apt preferences pin: origin local?

I have dropped fglrx from my notebook and return to the free drivers but xfce4-power-manager fails to start. it was a known bug I got apt-get source, apply the patch, build and install it. now all ...
1
vote
2answers
39 views

How to automatically satisfy dependencies in “.dsc” files while building debian package from source?

When I download some package sources, (e.g. foo-[ver].orig.tar.gz, foo-[ver].dsc), I often encounter dependencies problem while using dpkg-source -x foo-[ver].dsc and dpkg-buildpackage -us -uc .... In ...
1
vote
1answer
122 views

dpkg giving error “Is a directory”

I am trying to create a Debain .deb package. Package is being created successfully but I am getting following error when I try to install it: unable to open file '/var/lib/dpkg/tmp.ci//opt': Is a ...
1
vote
1answer
69 views

How do wildcards get set when building eglibc?

I am attempting to build the eglibc-2.11.2 package from source. Stupidly or not, I'm trying to backport it to Debian Lenny, mainly so I can build other things that require it without having to ...
1
vote
1answer
128 views

How can I make a Debian package depend on another package with exactly the same version

I'm building a Debian package which gathers together a number of other closely tied packages by declaring them as dependencies. I want those dependencies to be exactly the same version as the ...
1
vote
5answers
439 views

Shell script to sort debian version numbers (line_5.4.3-2)

I have a text file with entries representing build tags with version and build number in the same format as debian packages like this: nimbox-apexer_1.0.0-12 nimbox-apexer_1.1.0-2 ...
1
vote
3answers
513 views

How can I list the minimal set of Debian packages needed to recreate a set of installed packages?

Is there a way of getting dpkg, apt-get or aptitude to produce a list of the packages which need to be installed on a second machine to duplicate the packages installed on a first? i.e. If I've ...
1
vote
2answers
821 views

debian package creating needed directories in preinst

I have the following debian structure: debian/usr/share/test debian/usr/share/test/test debian/usr/share/test/test/a debian/usr/share/test/test/b After building the package using dpkg-deb --build ...
1
vote
3answers
2k views

How do I add an init.d script into a .deb

I have a project.init file in the debian directory (along with rules, control, etc), and I have dh_installinit in my rules file (in the binary-arch rule). When dpkg-buildpackage completes, the init ...
0
votes
1answer
18 views

dpkg : how to ignore error in post/pre scripts

I've develop debian packages and have syntax mistake in my post/pre script (postrm in my case). I install package successfully, but now i can't remove this package : ...
0
votes
0answers
20 views

debian backports disapeared from my pakage list

needed to install a kernel newer than 2.6.38 on my debian stable that is limited to 2.6.32 I added the backports line in my apt/sources.list # backports deb http://ftp.us.debian.org/debian/ ...
0
votes
1answer
37 views

Run time installation directory of debian package contents

I have a debian package that I built that contains a tar ball of the files, a control file, and a postinst file. Its built using dpkg-deb and it installs properly using dpkg. The modification I ...
0
votes
1answer
167 views

Can't compile .deb packages; make package command returns error

When I try to compile a Notification Center widget for iOS 5 using cd <name> make package then I get the following error: make package requires dpkg-deb. make: *** [package] Error 1 But I ...
0
votes
0answers
24 views

Hide package from dpkg/status

i'm wondering is there a tool or bash script that can remove package from status file (ex. /var/lib/dpkg/status) or the only way is to do remove it manually with "vi"... Thanks
0
votes
2answers
447 views

How do I update DPKG itself on Debian?

I have a very old version of it and it refuses to install new .deb files This is the original problem: Trying to install Google's mod_pagespeed for Apache. Result: dpkg: regarding ...
0
votes
1answer
23 views

how to define the “depends” for the running kernel

package A depends on package B-kmod and B-kmod has several variants. like B-kmod--{generic,pae-generic} etc. and in turn B-kmod depends on linux-image of the same flavor. i'd like A to have depends ...
0
votes
1answer
63 views

List of installed Debian packages - but with a twist!

I have an old Debian box that I used heavily over a long period of time that will no longer boot cleanly, so I pulled out a new Ubuntu Live CD to give it a second chance at life. I backed up all my ...
0
votes
1answer
120 views

Debian package creation error

I'm trying to build a Debian package, but I've got this weird pseudo-directory problem. I run: $ fakeroot debian/rules binary I've built the binary before, but something must have changed on my ...