All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version
@ 2014-03-10 12:46 George Dunlap
  2014-03-10 12:46 ` [PATCH v3 2/2] Add a "make rpmball" target George Dunlap
  2014-03-10 16:26 ` [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version Ian Jackson
  0 siblings, 2 replies; 8+ messages in thread
From: George Dunlap @ 2014-03-10 12:46 UTC (permalink / raw)
  To: xen-devel; +Cc: George Dunlap, Ian Jackson, Ian Campbell

Save a fork, and also avoid :) being interpreted as a smiley.

Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
---
CC: Ian Jackson <ian.jackson@citrix.com>
CC: Ian Campbell <ian.campbell@citrix.com>
---
 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 4e48457..4c5d1b6 100644
--- a/Makefile
+++ b/Makefile
@@ -150,7 +150,7 @@ world:
 # to be a full featured policy compliant .deb package.
 .PHONY: debball
 debball: dist
-	fakeroot sh ./tools/misc/mkdeb $(XEN_ROOT) $$($(MAKE) -C xen xenversion | grep -v :)
+	fakeroot sh ./tools/misc/mkdeb $(XEN_ROOT) $$($(MAKE) -C xen xenversion --no-print-directory)
 
 # clean doesn't do a kclean
 .PHONY: clean
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-10 12:46 [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version George Dunlap
@ 2014-03-10 12:46 ` George Dunlap
  2014-03-10 16:27   ` Ian Jackson
  2014-03-10 16:39   ` Don Slutz
  2014-03-10 16:26 ` [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version Ian Jackson
  1 sibling, 2 replies; 8+ messages in thread
From: George Dunlap @ 2014-03-10 12:46 UTC (permalink / raw)
  To: xen-devel
  Cc: Olaf Hering, Ian Campbell, George Dunlap, Dario Faggioli,
	Don Slutz, M A Young, Ian Jackson

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>
---
v3:
 - Make more directories in temporary rpm area, so that rpmbuild
   from CentOS 5.x works
v2:
 - use --no-print-directory rather than '| grep -v :'
 - use find boot/ -type l -delete rather
 - bash-ify the script, so that we can...
 - use string manipulation to break down version and release numbers
 - Don't delete xen-syms, xen-*.gz links

CC: Ian Jackson <ian.jackson@citrix.com>
CC: Ian Campbell <ian.campbell@citrix.com>
CC: Dario Faggioli <dario.faggioli@citrix.com>
CC: Olaf Hering <olaf@aepfle.de>
CC: Don Slutz <dslutz@verizon.com>
CC: M A Young <m.a.young@durham.ac.uk>
---
 Makefile         |    7 +++++
 tools/misc/mkrpm |   76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)
 create mode 100644 tools/misc/mkrpm

diff --git a/Makefile b/Makefile
index 4c5d1b6..91ca280 100644
--- a/Makefile
+++ b/Makefile
@@ -152,6 +152,13 @@ world:
 debball: dist
 	fakeroot sh ./tools/misc/mkdeb $(XEN_ROOT) $$($(MAKE) -C xen xenversion --no-print-directory)
 
+# 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
+	bash ./tools/misc/mkrpm $(XEN_ROOT) $$($(MAKE) -C xen xenversion --no-print-directory)
+
 # 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..fb47b6d
--- /dev/null
+++ b/tools/misc/mkrpm
@@ -0,0 +1,76 @@
+#!/bin/bash
+#
+# 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 [[ -z "$1" || -z "$2" ]] ; then 
+  echo "usage: $0 path-to-XEN_ROOT xen-version"
+  exit 1
+fi 
+
+xenroot="$1"
+
+# rpmbuild doesn't like dashes in the version; break it down into 
+# version and release.  Default to "0" if there isn't a release.
+v=(${2/-/ })
+version=${v[0]}
+release=${v[1]}
+
+[[ -n "$release" ]] || release="0"
+
+cd $xenroot
+
+# Prepare the directory to package
+cd dist
+rm -rf rpm
+
+# Fill in the rpm boilerplate
+mkdir -p rpm/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
+cat >rpm/SPECS/xen.spec <<EOF
+Summary: Xen development build, version $version
+Name: xen
+Version: $version
+Release: $release
+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}
+
+%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
+
+%clean
+rm -rf \$RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+/*
+
+%post
+EOF
+
+# Package it up
+rpmbuild --define "_xenroot $xenroot" --define "_topdir $PWD/rpm" -bb rpm/SPECS/xen.spec
+
+# Tidy up after ourselves
+mv rpm/RPMS/*/*.rpm .
+rm -rf rpm
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version
  2014-03-10 12:46 [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version George Dunlap
  2014-03-10 12:46 ` [PATCH v3 2/2] Add a "make rpmball" target George Dunlap
@ 2014-03-10 16:26 ` Ian Jackson
  1 sibling, 0 replies; 8+ messages in thread
From: Ian Jackson @ 2014-03-10 16:26 UTC (permalink / raw)
  To: George Dunlap; +Cc: Ian Campbell, xen-devel

George Dunlap writes ("[PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version"):
> Save a fork, and also avoid :) being interpreted as a smiley.

I was going to ask when --no-print-directory was introduced in make,
but I guess we don't care aout compatibility to ancient makes in the
debball target.

> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>

Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-10 12:46 ` [PATCH v3 2/2] Add a "make rpmball" target George Dunlap
@ 2014-03-10 16:27   ` Ian Jackson
  2014-03-10 16:31     ` George Dunlap
  2014-03-10 16:39   ` Don Slutz
  1 sibling, 1 reply; 8+ messages in thread
From: Ian Jackson @ 2014-03-10 16:27 UTC (permalink / raw)
  To: George Dunlap
  Cc: Olaf Hering, Ian Campbell, Dario Faggioli, Don Slutz, xen-devel,
	M A Young

George Dunlap writes ("[PATCH v3 2/2] Add a "make rpmball" target"):
> Build a simplistic dummy package, similar to "make debball", for
> developers on rpm-based systems.

This is obviously a good thing to have but I'll wait for feedback
before committing this as I can't easily test it myself.

Thanks,
Ian.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-10 16:27   ` Ian Jackson
@ 2014-03-10 16:31     ` George Dunlap
  2014-03-11 11:35       ` Ian Campbell
  0 siblings, 1 reply; 8+ messages in thread
From: George Dunlap @ 2014-03-10 16:31 UTC (permalink / raw)
  To: Ian Jackson
  Cc: Olaf Hering, Ian Campbell, Dario Faggioli, Don Slutz, xen-devel,
	M A Young

On 03/10/2014 04:27 PM, Ian Jackson wrote:
> George Dunlap writes ("[PATCH v3 2/2] Add a "make rpmball" target"):
>> Build a simplistic dummy package, similar to "make debball", for
>> developers on rpm-based systems.
> This is obviously a good thing to have but I'll wait for feedback
> before committing this as I can't easily test it myself.

Well given that I can't test things on Don's system either, it may be 
more sensible to check this in as it is, and allow him to fix it so that 
it works for him.

(Although then it may break for me, but we can hope that later versions 
of rpmbuild are more likely to be compatible with earlier versions...)

  -George

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-10 12:46 ` [PATCH v3 2/2] Add a "make rpmball" target George Dunlap
  2014-03-10 16:27   ` Ian Jackson
@ 2014-03-10 16:39   ` Don Slutz
  1 sibling, 0 replies; 8+ messages in thread
From: Don Slutz @ 2014-03-10 16:39 UTC (permalink / raw)
  To: George Dunlap, xen-devel
  Cc: Olaf Hering, Ian Campbell, Dario Faggioli, Don Slutz, M A Young,
	Ian Jackson

On 03/10/14 08:46, George Dunlap wrote:
> Build a simplistic dummy package, similar to "make debball", for
> developers on rpm-based systems.

This one builds fine on CentOS 5.10 and Fedora 17

So:

Tested-by: <dslutz@verizon.com>

    -Don Slutz

> Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
> ---
> v3:
>   - Make more directories in temporary rpm area, so that rpmbuild
>     from CentOS 5.x works
> v2:
>   - use --no-print-directory rather than '| grep -v :'
>   - use find boot/ -type l -delete rather
>   - bash-ify the script, so that we can...
>   - use string manipulation to break down version and release numbers
>   - Don't delete xen-syms, xen-*.gz links
>
> CC: Ian Jackson <ian.jackson@citrix.com>
> CC: Ian Campbell <ian.campbell@citrix.com>
> CC: Dario Faggioli <dario.faggioli@citrix.com>
> CC: Olaf Hering <olaf@aepfle.de>
> CC: Don Slutz <dslutz@verizon.com>
> CC: M A Young <m.a.young@durham.ac.uk>
> ---
>   Makefile         |    7 +++++
>   tools/misc/mkrpm |   76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
>   2 files changed, 83 insertions(+)
>   create mode 100644 tools/misc/mkrpm
>
> diff --git a/Makefile b/Makefile
> index 4c5d1b6..91ca280 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -152,6 +152,13 @@ world:
>   debball: dist
>   	fakeroot sh ./tools/misc/mkdeb $(XEN_ROOT) $$($(MAKE) -C xen xenversion --no-print-directory)
>   
> +# 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
> +	bash ./tools/misc/mkrpm $(XEN_ROOT) $$($(MAKE) -C xen xenversion --no-print-directory)
> +
>   # 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..fb47b6d
> --- /dev/null
> +++ b/tools/misc/mkrpm
> @@ -0,0 +1,76 @@
> +#!/bin/bash
> +#
> +# 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 [[ -z "$1" || -z "$2" ]] ; then
> +  echo "usage: $0 path-to-XEN_ROOT xen-version"
> +  exit 1
> +fi
> +
> +xenroot="$1"
> +
> +# rpmbuild doesn't like dashes in the version; break it down into
> +# version and release.  Default to "0" if there isn't a release.
> +v=(${2/-/ })
> +version=${v[0]}
> +release=${v[1]}
> +
> +[[ -n "$release" ]] || release="0"
> +
> +cd $xenroot
> +
> +# Prepare the directory to package
> +cd dist
> +rm -rf rpm
> +
> +# Fill in the rpm boilerplate
> +mkdir -p rpm/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
> +cat >rpm/SPECS/xen.spec <<EOF
> +Summary: Xen development build, version $version
> +Name: xen
> +Version: $version
> +Release: $release
> +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}
> +
> +%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
> +
> +%clean
> +rm -rf \$RPM_BUILD_ROOT
> +
> +%files
> +%defattr(-,root,root,-)
> +/*
> +
> +%post
> +EOF
> +
> +# Package it up
> +rpmbuild --define "_xenroot $xenroot" --define "_topdir $PWD/rpm" -bb rpm/SPECS/xen.spec
> +
> +# Tidy up after ourselves
> +mv rpm/RPMS/*/*.rpm .
> +rm -rf rpm

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-10 16:31     ` George Dunlap
@ 2014-03-11 11:35       ` Ian Campbell
  2014-03-11 11:43         ` Ian Jackson
  0 siblings, 1 reply; 8+ messages in thread
From: Ian Campbell @ 2014-03-11 11:35 UTC (permalink / raw)
  To: George Dunlap
  Cc: Olaf Hering, Dario Faggioli, Ian Jackson, Don Slutz, xen-devel,
	M A Young

On Mon, 2014-03-10 at 16:31 +0000, George Dunlap wrote:
> On 03/10/2014 04:27 PM, Ian Jackson wrote:
> > George Dunlap writes ("[PATCH v3 2/2] Add a "make rpmball" target"):
> >> Build a simplistic dummy package, similar to "make debball", for
> >> developers on rpm-based systems.
> > This is obviously a good thing to have but I'll wait for feedback
> > before committing this as I can't easily test it myself.
> 
> Well given that I can't test things on Don's system either, it may be 
> more sensible to check this in as it is, and allow him to fix it so that 
> it works for him.

Personally I think this is a sensible approach, plus it looks like Don
has now tested it and it works, so good.

I've glanced at it, but I don't think this sort of thing needs
especially thorough review so:

Acked-by: Ian Campbell <ian.campbell@citrix.com>

> 
> (Although then it may break for me, but we can hope that later versions 
> of rpmbuild are more likely to be compatible with earlier versions...)
> 
>   -George

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/2] Add a "make rpmball" target
  2014-03-11 11:35       ` Ian Campbell
@ 2014-03-11 11:43         ` Ian Jackson
  0 siblings, 0 replies; 8+ messages in thread
From: Ian Jackson @ 2014-03-11 11:43 UTC (permalink / raw)
  To: Ian Campbell
  Cc: Olaf Hering, George Dunlap, Dario Faggioli, Don Slutz, xen-devel,
	M A Young

Ian Campbell writes ("Re: [PATCH v3 2/2] Add a "make rpmball" target"):
> On Mon, 2014-03-10 at 16:31 +0000, George Dunlap wrote:
> > Well given that I can't test things on Don's system either, it may be 
> > more sensible to check this in as it is, and allow him to fix it so that 
> > it works for him.
> 
> Personally I think this is a sensible approach, plus it looks like Don
> has now tested it and it works, so good.

Right.

> I've glanced at it, but I don't think this sort of thing needs
> especially thorough review so:
> 
> Acked-by: Ian Campbell <ian.campbell@citrix.com>

Applied, thanks everyone.

Ian.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-03-11 11:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 12:46 [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version George Dunlap
2014-03-10 12:46 ` [PATCH v3 2/2] Add a "make rpmball" target George Dunlap
2014-03-10 16:27   ` Ian Jackson
2014-03-10 16:31     ` George Dunlap
2014-03-11 11:35       ` Ian Campbell
2014-03-11 11:43         ` Ian Jackson
2014-03-10 16:39   ` Don Slutz
2014-03-10 16:26 ` [PATCH v3 1/2] tools: Use --no-print-directory instead of grep for debball version Ian Jackson

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.