Your message dated Mon, 20 Dec 1999 12:18:05 -0700 (MST)
with message-id <[EMAIL PROTECTED]>
and subject line Bug#53156: apt: apt should have a way to put packages on hold
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Darren Benham
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 20 Dec 1999 19:02:58 +0000
Received: (qmail 19312 invoked from network); 20 Dec 1999 19:02:57 -0000
Received: from south-station-annex.mit.edu (HELO MIT.EDU) (18.72.1.2)
by master.debian.org with SMTP; 20 Dec 1999 19:02:57 -0000
Received: from GRAND-CENTRAL-STATION.MIT.EDU by MIT.EDU with SMTP
id AA07176; Mon, 20 Dec 99 14:02:46 EST
Received: from melbourne-city-street.MIT.EDU (MELBOURNE-CITY-STREET.MIT.EDU
[18.69.0.45])
by grand-central-station.MIT.EDU (8.9.2/8.9.2) with ESMTP id OAA23377;
Mon, 20 Dec 1999 14:02:53 -0500 (EST)
Received: from aquinas ([EMAIL PROTECTED] [18.187.5.49])
by melbourne-city-street.MIT.EDU (8.9.3/8.9.2) with ESMTP id OAA10700;
Mon, 20 Dec 1999 14:02:52 -0500 (EST)
Received: from tb by aquinas with local (Exim 3.11 #1 (Debian))
id 120851-0000sC-00; Mon, 20 Dec 1999 14:02:47 -0500
From: Thomas Bushnell BSG <[EMAIL PROTECTED]>
Subject: apt: apt should have a way to put packages on hold
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.7
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 20 Dec 1999 14:02:47 -0500
Package: apt
Version: 0.3.15
Severity: wishlist
I would like to be able to do
apt hold package-name
to put a package on hold. Right now, the only way to do it is through
deselect or editing /var/lib/dpkg/status by hand.
-- System Information
Debian Release: potato
Kernel Version: Linux aquinas 2.2.13 #7 Mon Dec 13 17:26:08 EST 1999 i686
unknown
Versions of the packages apt depends on:
ii libc6 2.1.2-10 GNU C Library: Shared libraries and timezone
ii libstdc++2.10 2.95.2-3 The GNU stdc++ library
---------------------------------------
Received: (at 53156-done) by bugs.debian.org; 20 Dec 1999 19:19:34 +0000
Received: (qmail 25202 invoked from network); 20 Dec 1999 19:19:34 -0000
Received: from crash.ab.videon.ca ([EMAIL PROTECTED])
by master.debian.org with SMTP; 20 Dec 1999 19:19:34 -0000
Received: from wakko.deltatee.com ([EMAIL PROTECTED] [24.108.53.97])
by crash.ab.videon.ca (8.9.2/8.9.2) with ESMTP id MAA28988;
Mon, 20 Dec 1999 12:18:06 -0700 (MST)
Received: from localhost (wakko.deltatee.com) [127.0.0.1] (jgg)
by wakko.deltatee.com with smtp (Exim 2.11 #1)
id 1208Jp-0005LO-00 (Debian); Mon, 20 Dec 1999 12:18:05 -0700
Date: Mon, 20 Dec 1999 12:18:05 -0700 (MST)
From: Jason Gunthorpe <[EMAIL PROTECTED]>
X-Sender: [EMAIL PROTECTED]
To: Thomas Bushnell BSG <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Subject: Re: Bug#53156: apt: apt should have a way to put packages on hold
In-Reply-To: <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
On Mon, 20 Dec 1999, Thomas Bushnell BSG wrote:
> I would like to be able to do
>
> apt hold package-name
>
> to put a package on hold. Right now, the only way to do it is through
> deselect or editing /var/lib/dpkg/status by hand.
It is extremely unlikely that APT will *ever* directly write the status
file, it is not something I want to deal with.
You can use a script like this to get what you want.
#!/bin/sh
echo $1 hold | dpkg --set selections
Jason