All of lore.kernel.org
 help / color / mirror / Atom feed
From: Don Slutz <dslutz@verizon.com>
To: George Dunlap <george.dunlap@eu.citrix.com>, xen-devel@lists.xen.org
Cc: Ian Jackson <ian.jackson@citrix.com>,
	Dario Faggioli <dario.faggioli@citrix.com>,
	Ian Campbell <ian.campbell@citrix.com>
Subject: Re: [PATCH] Add a "make rpmball" target
Date: Mon, 03 Mar 2014 15:51:19 -0500	[thread overview]
Message-ID: <5314EB47.2020201@terremark.com> (raw)
In-Reply-To: <1393858780-11628-1-git-send-email-george.dunlap@eu.citrix.com>

On 03/03/14 09:59, George Dunlap wrote:
> Build a simplistic dummy package, similar to "make debball", for
> developers on rpm-based systems.
>
> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
> ---
> CC: Ian Jackson <ian.jackson@citrix.com>
> CC: Ian Campbell <ian.campbell@citrix.com>
> CC: Dario Faggioli <dario.faggioli@citrix.com>
> ---
>   Makefile         |    7 +++++
>   tools/misc/mkrpm |   82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
>   2 files changed, 89 insertions(+)
>   create mode 100644 tools/misc/mkrpm
>
> diff --git a/Makefile b/Makefile
> index 4e48457..75e845b 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -152,6 +152,13 @@ world:
>   debball: dist
>   	fakeroot sh ./tools/misc/mkdeb $(XEN_ROOT) $$($(MAKE) -C xen xenversion | grep -v :)
>   
> +# Package a build in an rpmball file, that is inside a .rpm format
> +# container to allow for easy and clean removal. This is not intended
> +# to be a full featured policy compliant .rpm package.
> +.PHONY: rpmball
> +rpmball: dist
> +	sh ./tools/misc/mkrpm $(XEN_ROOT) $$($(MAKE) -C xen xenversion | grep -v :)
> +
>   # clean doesn't do a kclean
>   .PHONY: clean
>   clean::
> diff --git a/tools/misc/mkrpm b/tools/misc/mkrpm
> new file mode 100644
> index 0000000..7d20788
> --- /dev/null
> +++ b/tools/misc/mkrpm
> @@ -0,0 +1,82 @@
> +#!/bin/sh
> +#
> +# mkrpm: package the dist/install output of a Xen build in an .rpm
> +#
> +# Takes 2 arguments, the path to the dist directory and the version
> +
> +set -e
> +
> +if test -z "$1" -o -z "$2" ; then
> +  echo "usage: $0 path-to-XEN_ROOT xen-version"
> +  exit 1
> +fi
> +
> +xenroot="$1"
> +
> +cd $xenroot
> +version=$2
> +
> +# Prepare the directory to package
> +cd dist
> +rm -rf rpm
> +
> +# Fill in the rpm boilerplate
> +mkdir -p rpm/SPEC
> +cat >rpm/SPEC/xen.spec <<EOF
> +Summary: Xen development build, version $version
> +Name: xen
> +Version: $version
> +Release: unstable
> +License: GPL
> +Group:   System/Hypervisor
> +URL: http://xenbits.xenproject.org/xen.git
> +
> +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
> +%define __spec_install_post /usr/lib/rpm/brp-compress || :
> +%define debug_package %{nil}

Does this correctly stop the striping of debug symbols? Or does it just prevent the debuginfo packaging.

> +
> +%description
> +This package contains the Xen hypervisor and associated tools, built
> +from a source tree.  It is not a fully packaged and supported Xen, just
> +the output of a xen "make dist" wrapped in an .rpm to make it easy to
> +uninstall.
> +
> +%build
> +
> +%install
> +rm -rf \$RPM_BUILD_ROOT
> +mkdir -p \$RPM_BUILD_ROOT
> +cd %{_xenroot}
> +dist/install.sh \$RPM_BUILD_ROOT/
> +
> +cd \$RPM_BUILD_ROOT
> +
> +# Don't include xen-syms
> +rm -f boot/xen-syms*

But this is an important file if you want to use crash on /proc/vmcore. So removing it for a developer rpm does not make sense to me.

> +# Remove all the "linked" xen-*.gz files
> +rm -f \$(find boot/ -type l)
> +# Rename the real xen.gz binary, if necessary.
> +if [[ ! -e boot/%{name}-%{version}-%{release}.gz ]] ; then
> +    mv boot/xen-*.gz boot/%{name}-%{version}-%{release}.gz
> +fi
> +
> +
> +%clean
> +rm -rf \$RPM_BUILD_ROOT
> +
> +%files
> +%defattr(-,root,root,-)
> +/*
> +
> +%post
> +# Point xen.gz to the real binary.
> +cd /boot
> +ln -sf %{name}-%{version}-%{release}.gz xen.gz

So 1st you unlink, then you make a new (maybe the same) link?

    -Don Slutz

> +EOF
> +
> +# Package it up
> +rpmbuild --define "_xenroot $xenroot" --define "_topdir $PWD/rpm" -bb rpm/SPEC/xen.spec
> +
> +# Tidy up after ourselves
> +mv rpm/RPMS/*/*.rpm .
> +rm -rf rpm

  parent reply	other threads:[~2014-03-03 20:51 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-03 14:59 [PATCH] Add a "make rpmball" target George Dunlap
2014-03-03 16:07 ` George Dunlap
2014-03-03 22:34   ` Don Slutz
2014-03-03 23:08     ` Don Slutz
2014-03-03 23:37       ` M A Young
2014-03-03 23:46         ` Don Slutz
2014-03-03 23:52           ` M A Young
2014-03-04 10:26             ` George Dunlap
2014-03-03 16:23 ` Olaf Hering
2014-03-03 16:34   ` George Dunlap
2014-03-03 16:36     ` George Dunlap
2014-03-03 17:31       ` Olaf Hering
2014-03-03 17:23     ` Olaf Hering
2014-03-03 17:27       ` Dario Faggioli
2014-03-03 17:30         ` George Dunlap
2014-03-03 17:59           ` Ian Jackson
2014-03-03 22:53             ` Dario Faggioli
2014-03-03 23:11             ` Olaf Hering
2014-03-04 12:19               ` Ian Jackson
2014-03-03 18:19           ` Ian Campbell
2014-03-03 23:06           ` Olaf Hering
2014-03-03 20:51 ` Don Slutz [this message]
2014-03-04 11:41   ` George Dunlap
2014-03-03 22:52 ` Dario Faggioli

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=5314EB47.2020201@terremark.com \
    --to=dslutz@verizon.com \
    --cc=dario.faggioli@citrix.com \
    --cc=george.dunlap@eu.citrix.com \
    --cc=ian.campbell@citrix.com \
    --cc=ian.jackson@citrix.com \
    --cc=xen-devel@lists.xen.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.