Sponsored Content
Full Discussion: ubuntu 10.10 quilt package
Top Forums UNIX for Dummies Questions & Answers ubuntu 10.10 quilt package Post 302649283 by bakunin on Thursday 31st of May 2012 06:17:22 AM
Old 05-31-2012
Sometimes, it helps to actually read the error messages instead of pasting them here.

Quote:
Originally Posted by chercheur857
Code:
This may mean that the package is missing, has been obsoleted, or
is only available from another source

You probably have a repository configured where this package is not available. Use another repository.

Out of curiosity i entered "quilt ubuntu download" in google (ok, this was a really far-fetched idea, i have to admit - nobody else would have found that) and found some gazillions of hits, of which the second one was this:

Ubuntu -- Details of package quilt in hardy

At the end of the page the big fat link "download quilt" is hard to see.

I hope this helps.

bakunin
 

8 More Discussions You Might Find Interesting

1. Ubuntu

unable to install package on Ubuntu

Hi all, I am working on Ubuntu 7.10 and I want to install libssl-dev_0.9.8a-7ubuntu0.13_i386.deb. So tryied it with apt-get command but getting the following error-- Then I downloaded .deb file and attempt to install it with package installer but again unable to install it and getting the... (3 Replies)
Discussion started by: smartgupta
3 Replies

2. Ubuntu

How to Install TCSH package in Ubuntu 11?

I am trying to install tcsh package in ubuntu 11 When i tried to invoke the tcsh,i was prompted to contact administrator to install tcsh package. Since i am also the admin on my system its my job to install tcsh :D I have downloaded tcsh package named "tcsh-6.17.00.tar", since i don not have... (12 Replies)
Discussion started by: animesharma
12 Replies

3. Ubuntu

Installing md5 package into ubuntu

Hi i want to install md5 package into ubuntu. any idea how? Apparently applying md5sum and md5 on a string (not a file) gives a different value! The one that I need to use is the md5 command, but it says command not found when i type md5 in bash. (2 Replies)
Discussion started by: jremio
2 Replies

4. UNIX for Dummies Questions & Answers

Find files associated with a package using Ubuntu

Stupid question of the day. How can I find a file that is associated with a package installed on my Ubuntu 12.04 desktop. More clarification, so if I: lsof -p 11399 java 11399 davider mem REG 8,6 438211 265067 /usr/lib/java/jre1.7.0_07/lib/i386/libt2k.so How can I... (4 Replies)
Discussion started by: metallica1973
4 Replies

5. Ubuntu

Upgrade a package on Ubuntu

Hi, I want to upgrade a package to a specified version on Ubuntu, can you please shed some light? I know we can do it with but jere i want to upgrade the package to a specified version. Can someone please assist? Thanks (1 Reply)
Discussion started by: prash358
1 Replies

6. Ubuntu

Ubuntu software package compatibility

I don't have internet connection in my Ubuntu server, so package download directly from internet is not possible. So if I download package from Index of /ubuntu How do I find which version of package is compatible with my Release of Ubuntu server ( 15.10 ) user01@ubuntu01:~$ lsb_release -a... (0 Replies)
Discussion started by: hiten.r.chauhan
0 Replies

7. Shell Programming and Scripting

Installing RPM package using alien on WSL Ubuntu

I was just flirting with the idea of installing one package (bcl2fas2) on my WSL:Ubuntu using alien. However, when I run sudo alien bcl2fastq2-v2.20.0.422-Linux-x86_64.rpm I get the following error: Package build failed. Here's the log: dh_testdir dh_testdir dh_testroot dh_prep... (0 Replies)
Discussion started by: Xterra
0 Replies

8. UNIX for Beginners Questions & Answers

How to install older package version on Ubuntu 18.04?

Hello, I'm running Ubuntu 18.04 and I would like to install libboost-python version 1.46. Currently I have installed version 1.65: wakatana@local-machine:~$ dpkg -l | grep libboost-python ii libboost-python-dev 1.65.1.0ubuntu1 amd64 ... (1 Reply)
Discussion started by: wakatana
1 Replies
Debian::Rules(3pm)					User Contributed Perl Documentation					Debian::Rules(3pm)

NAME
Debian::Rules - handy manipulation of debian/rules SYNOPSIS
my $r = Debian::Rules->new('debian/rules'); my $r = Debian::Rules->new( { filename => 'debian/rules' } ); $r->is_dh7tiny && print "Using the latest and greatest "; $r->is_quiltified && print "quilt rules the rules "; # file contents changed externally $r->parse; $r->add_quilt; $r->drop_quilt; $r->write; # or undef($r); DESCRIPTION
Some times, one needs to know whether debian/rules uses the debhelper(1) 7 tiny variant, or whether it is integrated with quilt(1). Debian::Rules provides facilities to check this, as well as adding/removing quilt integration. Modified contents are written to file either vie the "write" method, or when the object reference goes out of scope (via DESTROY). CONSTRUCTOR
"new" is the standard Class::Accessor constructor, with the exception that if only one, non-reference argument is provided, it is treated as a value for the filename field. If a file name is given, the constructor calls "read" to read the file contents into memory. One of filename or lines is mandatory. FIELDS
filename Contains the file name of the rules file. lines Reference to an array pointing to the rules file. Initialized by "new". METHODS
parse Parses the rules file and stores its findings for later use. Called automatically by is_dh7tiny and is_quiltified. The result of the parsing is cached and subsequent calls to "is_XXX" use the cache. To force cache refresh (for eample if the contents of the file have been changed), call "parse" again. is_dh7tiny Returns true if the contents of the rules file seem to use the so called tiny variant offerred by debhelper 7. Tiny rules are detected by the presense of the following two lines: %: dh $@ (any options on the "dh" command line ignored). is_quiltified Returns true if the contents of the rules file indicate that quilt(1) is used. Various styles of "quilt" integration are detected: dh --with=quilt quilt.make with "$(QUILT_STAMPFN)" and "unpatch" targets. add_quilt Integrates quilt(1) into the rules. For debhelper 7 tiny rules (as determined by "is_dh7tiny") "--with=quilt" is added to every "dh" invocation. For the more traditional variant, quilt is integrated vua quilt.make and its "$(QUILT_STAMPFN)" and "unpatch" targets. drop_quilt Removes quilt(1) integration. Both debhelper 7 tiny style ("dh --with=quilt") and traditional ("$(QUILT_STAMPFN)" and "unpatch") approaches are detected and removed. read [filename] Replaces the current rules content with the content of filename. If filename is not given, uses the value of the "filename" member. write [filename] Writes the in-memory contents filename. If not given, uses the value of the "filename" member. If "lines" points to an empty array, the file is removed. COPYRIGHT &; LICENSE Copyright (C) 2009, 2010 Damyan Ivanov <dmn@debian.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. perl v5.14.2 2012-01-15 Debian::Rules(3pm)
All times are GMT -4. The time now is 06:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy