ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: Alexey Tourbin <at@turbinal.org>
To: devel@altlinux.ru
Subject: [devel] rpmbuild %exclude
Date: Fri, 20 Dec 2002 15:34:59 +0300
Message-ID: <20021220123459.GA2390@ungrund> (raw)

[-- Attachment #1: Type: text/plain, Size: 3731 bytes --]


Неприятная особенность rpmbuild -- порядок выполнения некоторых стадий
сборки пакета на стадии %files. Как я понял, секция %doc, в сущности, не
учитывается в списке %files, а просто копируется в
$RPM_BUILD_ROOT%_docdir/%name-%version на самой последней стадии (после
brp).

В результате %doc конфликтует с %exclude.

Кроме того, в %_docdir файлы обрабатываются по-разному, в зависимости от
того, установлены они на стадии %install или на стадии %files с помощью
%doc.

Пример:

%files
%_bindir/*
%_mandir/man?/*
%_menudir/%name
%_iconsdir/*.xpm
%doc AUTHORS BUGS ChangeLog COPYING INSTALL NEWS README SITES THANKS TODO
%doc contrib
%exclude %_docdir/%name-%version/*/CVS
%exclude %_docdir/%name-%version/*/*/CVS
%exclude %_docdir/%name-%version/*/*/*/CVS
%exclude %_docdir/%name-%version/*/Makefile*

$ rpm -ba elinks.spec
...
Processing files: elinks-0.4.0-alt1rc2
error: File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/CVS
error: File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/*/CVS
error: File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/*/*/CVS
error: File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/Makefile*
Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.60294
+ umask 022
+ /bin/mkdir -p /home/at/RPM/BUILD
+ cd /home/at/RPM/BUILD
+ cd elinks-0.4.0rc2
+ DOCDIR=/var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ export DOCDIR
+ rm -rf /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ /bin/mkdir -p /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ cp -prL AUTHORS BUGS ChangeLog COPYING INSTALL NEWS README SITES THANKS TODO /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ chmod -R go-w /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ chmod -R a+rX /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ cp -prL contrib /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ chmod -R go-w /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ chmod -R a+rX /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0
+ exit 0


RPM build errors:
    File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/CVS
    File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/*/CVS
    File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/*/*/CVS
    File not found by glob: /var/tmp/elinks-buildroot/usr/share/doc/elinks-0.4.0/*/Makefile*

$

А по второму разу запаковывается, т.к. файлы уже скопировались:

$ rpm -ba --short-circuit elinks.spec
Processing files: elinks-0.4.0-alt1rc2
Finding Provides (using /usr/lib/rpm/find-provides)
Executing(Provides): /bin/sh -e /var/tmp/rpm-tmp.5802
+ umask 022
+ /bin/mkdir -p /home/at/RPM/BUILD
+ cd /home/at/RPM/BUILD
+ /usr/lib/rpm/find-provides
+ exit 0
Finding Requires (using /usr/lib/rpm/find-requires)
Executing(Requires): /bin/sh -e /var/tmp/rpm-tmp.11340
+ umask 022
+ /bin/mkdir -p /home/at/RPM/BUILD
+ cd /home/at/RPM/BUILD
+ /usr/lib/rpm/find-requires
+ exit 0
Provides: webclient links /usr/bin/links
PreReq: /usr/sbin/update-alternatives /bin/sh /bin/sh rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1
Requires(interp): /bin/sh /bin/sh
Requires(rpmlib): rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1
Requires(post): /bin/sh
Requires(postun): /bin/sh
Requires: bash coreutils gawk libbz2.so.1 libbz2.so.1(BZLIB_1.0) libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1) libcrypto.so.0 libdl.so.2 libgpm.so.1 libm.so.6 libssl.so.0 libz.so.1 perl-base sed sh tcsh
Wrote: /home/at/RPM/SRPMS/elinks-0.4.0-alt1rc2.src.rpm
Wrote: /home/at/RPM/RPMS/i686/elinks-0.4.0-alt1rc2.i686.rpm
$

Вот так вот.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

             reply	other threads:[~2002-12-20 12:34 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-20 12:34 Alexey Tourbin [this message]
2002-12-20 12:50 ` [devel] " Alexey Tourbin
2002-12-20 13:00   ` Dmitry V. Levin
2002-12-20 13:11     ` Alexey I. Froloff
2002-12-20 13:24     ` Alexey Tourbin
2002-12-20 13:01 ` [devel] " Dmitry V. Levin
2002-12-20 16:09   ` [devel] " Alexey Tourbin
2002-12-20 16:30     ` Dmitry V. Levin
2002-12-23  0:36       ` Vitaly Lipatov
2002-12-23 11:10         ` Dmitry V. Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20021220123459.GA2390@ungrund \
    --to=at@turbinal.org \
    --cc=devel@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git