[rpm-ostree-toolbox] Initial package

Colin Walters walters at fedoraproject.org
Wed May 28 21:57:53 UTC 2014


commit 16e94249f0be872f76edffb94e2a9a9d0c63cccb
Author: Colin Walters <walters at verbum.org>
Date:   Wed May 28 17:57:41 2014 -0400

    Initial package

 .gitignore              |    1 +
 rpm-ostree-toolbox.spec |   56 +++++++++++++++++++++++++++++++++++++++++++++++
 sources                 |    1 +
 3 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..91d4a7b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/rpm-ostree-toolbox-2014.11.tar.xz
diff --git a/rpm-ostree-toolbox.spec b/rpm-ostree-toolbox.spec
new file mode 100644
index 0000000..62f736b
--- /dev/null
+++ b/rpm-ostree-toolbox.spec
@@ -0,0 +1,56 @@
+Summary: Extra tools for rpm-ostree
+Name: rpm-ostree-toolbox
+Version: 2014.11
+Release: 1%{?dist}
+#VCS: https://github.com/cgwalters/rpm-ostree-toolbox
+# This tarball is generated via "make -C packaging -f Makefile.dist-packaging dist-snapshot"
+# which is really just a wrapper for "git archive".
+# It doesn't follow the Github guidelines because they only work for
+# github; the infrastructure above is generic for any git repository.
+Source0: %{name}-%{version}.tar.xz
+License: LGPLv2+
+URL: https://github.com/cgwalters/rpm-ostree-toolbox
+# We always run autogen.sh
+BuildRequires: autoconf automake libtool
+# For docs
+BuildRequires: gtk-doc
+BuildRequires: gnome-common
+BuildRequires: pkgconfig(ostree-1)
+BuildRequires: pkgconfig(libgsystem)
+BuildRequires: pkgconfig(json-glib-1.0)
+
+Requires: gjs
+Requires: libguestfs-tools-c
+Requires: libguestfs-gobject
+# Needed for libguests
+Requires: kernel
+%if 0%{?rhel}
+%else
+Requires: libguestfs-xfs
+%endif
+
+%description
+Various utilities and scripts for working with rpm-ostree based
+operating systems, particularly as virtual machines.
+
+%prep
+%setup -q -n %{name}-%{version}
+
+%build
+env NOCONFIGURE=1 ./autogen.sh
+%configure --disable-silent-rules
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot} INSTALL="install -p -c"
+
+%files
+%doc COPYING README.md
+%{_bindir}/rpm-ostree-toolbox
+%{_libdir}/%{name}/
+%{_datadir}/%{name}/
+
+%changelog
+* Sat May 24 2014 Colin Walters <walters at verbum.org> - 2014.11-1
+- Initial package
+
diff --git a/sources b/sources
index e69de29..b5ebf24 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+20ae6c73aab38fe0e5994aa4ff14a74e  rpm-ostree-toolbox-2014.11.tar.xz


More information about the scm-commits mailing list