From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Sat, 30 Aug 2014 22:08:29 +0400 From: Michael Shigorin To: ALT Linux Team development discussions Message-ID: <20140830180829.GA10068@imap.altlinux.org> Mail-Followup-To: ALT Linux Team development discussions References: <20091003235000.GA17717@mw.office.seiros.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20091003235000.GA17717@mw.office.seiros.ru> User-Agent: Mutt/1.4.2.3i Subject: Re: [devel] =?koi8-r?b?7cnOyc3BzNjO2cogVkUgz8fSz83FziAtLSDNzs/HzyDN?= =?koi8-r?b?1dPP0sE=?= X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Aug 2014 18:08:29 -0000 Archived-At: List-Archive: List-Post: --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit On Sun, Oct 04, 2009 at 03:50:00AM +0400, Денис Смирнов wrote: > Сегодня пытался сделать минимальный VE. Минимальный это значит > состоящий только из пакета basesystem и его зависимостей + apt. (разглядывая ve/.base) Без сети? > glibc-utils > =========== [...] > Возможно ли отпилить mtrace в отдельный пакет? На всякий: патчик для отпиливания прилагается, при отсутствии противопоказаний предлагаю всё же докатить хотя бы до сизифа. --  ---- WBR, Michael Shigorin / http://altlinux.org   ------ http://opennet.ru / http://anna-news.info --YZ5djTAD1cGYuMQK Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="0001-6-2.17-alt8.1.patch" >>From 898b89befa8aca3011734d0492c7bd8de7288f28 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Sat, 30 Aug 2014 20:27:05 +0300 Subject: [PATCH] 6:2.17-alt8.1 - NMU: split mtrace into a subpackage of its own due to perl dependency as it is the only perl script there, and a rather obscure one; see also http://lists.altlinux.org/pipermail/devel/2009-October/175682.html --- alt/glibc.spec | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/alt/glibc.spec b/alt/glibc.spec index cf09756..cc83321 100644 --- a/alt/glibc.spec +++ b/alt/glibc.spec @@ -1,6 +1,6 @@ Name: glibc Version: 2.17 -Release: alt8 +Release: alt8.1 Epoch: 6 Summary: The GNU libc libraries @@ -163,6 +163,11 @@ Obsoletes: gencat # due to rpcinfo Conflicts: rpcbind < 0.2.1-alt0.4 +%package -n mtrace +Summary: A program to help interpret memory trace output +Group: Development/Debuggers +Conflicts: glibc-utils <= 2.17-alt8 + %package devel Summary: Include and object files required for C development Group: Development/C @@ -253,6 +258,10 @@ timezones data in the system. This package contains miscellaneous non-essential %name utilities that didn't fit in specific packages. +%description -n mtrace +This package contains a program which interprets the memory traces +and outputs a summary in an user-friendly way. + %description nss NSS is a Name Service Switch subsystem. The basic idea is to put the implementation of the different services offered to access the databases @@ -612,6 +621,7 @@ fi %exclude %_bindir/iconv* %exclude %_bindir/locale* %exclude %_bindir/memusage* +%exclude %_bindir/mtrace %exclude %_bindir/pcprofiledump %exclude %_bindir/tzselect %exclude %_bindir/xtrace @@ -619,6 +629,9 @@ fi %_libdir/audit/sotruss-lib.so %exclude /var/db/Makefile +%files -n mtrace +%_bindir/mtrace + %files devel -f devel.files %_libdir/lib*.so %exclude %_libdir/libmemusage.so @@ -660,6 +673,11 @@ fi %_datadir/i18n %changelog +* Sat Aug 30 2014 Michael Shigorin 6:2.17-alt8.1 +- NMU: split mtrace into a subpackage of its own due to perl dependency + as it is the only perl script there, and a rather obscure one; see also + http://lists.altlinux.org/pipermail/devel/2009-October/175682.html + * Wed Jan 15 2014 Dmitry V. Levin 6:2.17-alt8 - libc.so: link libc.so.6 both before and after libc_nonshared.a, to fix spurious undefined reference with --as-needed reported -- 1.8.5.5 --YZ5djTAD1cGYuMQK--