Remove virt-dmesg.spec.
authorRichard W.M. Jones <rjones@redhat.com>
Tue, 21 Jun 2011 09:27:45 +0000 (10:27 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Tue, 21 Jun 2011 09:28:00 +0000 (10:28 +0100)
virt-dmesg is now in Fedora, so you can find the spec file here:

http://pkgs.fedoraproject.org/gitweb/?p=virt-dmesg.git

.gitignore
Makefile.am
configure.ac
virt-dmesg.spec.in [deleted file]

index c644d05..ac83f3e 100644 (file)
@@ -26,4 +26,3 @@ Makefile.in
 /src/config.ml
 /src/virt-dmesg
 /stamp-h1
-/virt-dmesg.spec
index 45c1689..bd269df 100644 (file)
@@ -23,6 +23,4 @@ EXTRA_DIST = \
        COPYING \
        README \
        config.rpath \
-       m4/ChangeLog \
-       virt-dmesg.spec.in \
-       virt-dmesg.spec
+       m4/ChangeLog
index 5a882cb..e34021f 100644 (file)
@@ -81,7 +81,6 @@ AM_CONDITIONAL([PROFILING], [test "x$profiling" != "xno"])
 dnl Generate output files.
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_FILES([Makefile
-                 virt-dmesg.spec
                  man/Makefile
                  po/Makefile.in
                  src/config.ml
diff --git a/virt-dmesg.spec.in b/virt-dmesg.spec.in
deleted file mode 100644 (file)
index d63f19d..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-%define debug_package %{nil}
-
-Name:           virt-dmesg
-Version:        @VERSION@
-Release:        1%{?dist}
-Summary:        Print kernel messages from a Linux virtual machine
-
-Group:          Development/Libraries
-License:        GPLv2+
-URL:            http://people.redhat.com/~rjones/virt-dmesg/
-Source0:        http://people.redhat.com/~rjones/virt-dmesg/files/%{name}-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildRequires:  ocaml >= 3.10.2
-BuildRequires:  ocaml-ocamldoc
-BuildRequires:  ocaml-findlib-devel
-BuildRequires:  ocaml-libvirt-devel
-BuildRequires:  zlib-devel
-
-# Non-OCaml BRs.
-BuildRequires:  libvirt-devel
-
-# Force libvirt that contains several fixes for virDomainMemoryPeek.
-Requires: libvirt >= 0.9.1-3
-
-
-%description
-virt-dmesg prints the kernel messages from a running Linux virtual
-machine.  It is like dmesg(1) except that it works on virtual machines
-instead of the host.
-
-
-%prep
-%setup -q
-
-
-%build
-%configure
-make all
-
-strip src/virt-dmesg
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-make DESTDIR=$RPM_BUILD_ROOT install
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
-%files
-%defattr(-,root,root,-)
-%doc COPYING README
-%{_bindir}/virt-dmesg
-%{_bindir}/virt-uname
-%{_mandir}/man1/virt-dmesg.1*
-%{_mandir}/man1/virt-uname.1*
-
-
-%changelog
-* Wed May 25 2011 Richard W.M. Jones <rjones@redhat.com> - @VERSION@-1
-- Initial RPM release.