Source package is obsoleted. Binary package is now built by "cluster"
source.
This commit is contained in:
parent
5450b1cabd
commit
3b72352175
@ -1 +0,0 @@
|
|||||||
cluster-2.03.00.tar.gz
|
|
21
Makefile
21
Makefile
@ -1,21 +0,0 @@
|
|||||||
# Makefile for source rpm: gfs2-utils
|
|
||||||
# $Id: Makefile,v 1.1 2006/06/14 17:39:31 cfeist Exp $
|
|
||||||
NAME := gfs2-utils
|
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
|
||||||
|
|
||||||
define find-makefile-common
|
|
||||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
|
||||||
|
|
||||||
ifeq ($(MAKEFILE_COMMON),)
|
|
||||||
# attempt a checkout
|
|
||||||
define checkout-makefile-common
|
|
||||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(MAKEFILE_COMMON)
|
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
|||||||
|
Source package is obsoleted. Binary package is now built by "cluster" source.
|
167
gfs2-utils.spec
167
gfs2-utils.spec
@ -1,167 +0,0 @@
|
|||||||
###############################################################################
|
|
||||||
###############################################################################
|
|
||||||
##
|
|
||||||
## Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
|
|
||||||
##
|
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
|
||||||
## of the GNU General Public License v.2.
|
|
||||||
##
|
|
||||||
###############################################################################
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Name: gfs2-utils
|
|
||||||
Version: 2.03.00
|
|
||||||
Release: 4%{?dist}
|
|
||||||
License: GPLv2 and LGPLv2
|
|
||||||
Group: System Environment/Kernel
|
|
||||||
Summary: Utilities for managing the global filesystem (GFS2)
|
|
||||||
Requires(post): /sbin/chkconfig
|
|
||||||
Requires(preun): /sbin/service
|
|
||||||
Requires(preun): /sbin/chkconfig
|
|
||||||
Requires: ncurses
|
|
||||||
BuildRequires: ncurses-devel
|
|
||||||
BuildRequires: glibc-kernheaders
|
|
||||||
BuildRequires: libvolume_id-devel
|
|
||||||
BuildRequires: kernel-devel
|
|
||||||
BuildRequires: perl
|
|
||||||
URL: http://sources.redhat.com/cluster/wiki/
|
|
||||||
# This file comes from the link at the above URL (cluster 2).
|
|
||||||
# For the rawhide rpm we use a checkout of the -git tree (cluster 3)
|
|
||||||
# rather than the release version (which we use for all F-? versions).
|
|
||||||
Source0: cluster-%{version}.tar.gz
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
The gfs2-utils package contains a number of utilities for creating,
|
|
||||||
checking, modifying, and correcting any inconsistencies in GFS2
|
|
||||||
filesystems.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q -n cluster-%{version}
|
|
||||||
|
|
||||||
%build
|
|
||||||
ksrc=`ls -d /usr/src/kernels/*`
|
|
||||||
./configure --kernel_build=${ksrc} --kernel_src=${ksrc} --libdir=%{_libdir} --release_version=%{version}
|
|
||||||
cd gfs2
|
|
||||||
make %{_smp_mflags}
|
|
||||||
|
|
||||||
%post
|
|
||||||
/sbin/chkconfig --add gfs2
|
|
||||||
|
|
||||||
%preun
|
|
||||||
if [ "$1" = 0 ]; then
|
|
||||||
/sbin/service gfs2 stop >/dev/null 2>&1
|
|
||||||
/sbin/chkconfig --del gfs2
|
|
||||||
fi
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
%install
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
cd gfs2
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
/usr/sbin/*
|
|
||||||
/sbin/*
|
|
||||||
/etc/init.d/gfs2
|
|
||||||
%{_mandir}/*/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Apr 30 2008 Steven Whitehouse <swhiteho@redhat.com> 2.03.00-4
|
|
||||||
- Stop service in preun script as per final review comments
|
|
||||||
- Can now close the review bz #225792
|
|
||||||
|
|
||||||
* Mon Apr 14 2008 Steven Whitehouse <swhiteho@redhat.com> 2.03.00-3
|
|
||||||
- Fabbione saves the day. We can get rid of the sed stuff after all
|
|
||||||
|
|
||||||
* Mon Apr 14 2008 Steven Whitehouse <swhiteho@redhat.com> 2.03.00-1
|
|
||||||
- New upstream sources
|
|
||||||
- Eric Sandeen's solution to kernel version dep
|
|
||||||
|
|
||||||
* Wed Apr 09 2008 Steven Whitehouse <swhiteho@redhat.com> 0.1.25.2.02.01-15
|
|
||||||
- Remove obsolete chkconfig patch for initscript
|
|
||||||
- Enable parallel make
|
|
||||||
- Remove obsolete copy of gfs2_ondisk.h (this should be in glibc-kernheaders)
|
|
||||||
|
|
||||||
* Wed Apr 09 2008 Steven Whitehouse <swhiteho@redhat.com> 0.1.25.2.02.01-14
|
|
||||||
- Update URL
|
|
||||||
- Fix license spec
|
|
||||||
|
|
||||||
* Fri Mar 14 2008 Chris Feist <cfeist@redhat.com> 0.1.25.2.02.00-2
|
|
||||||
- New upstream sources.
|
|
||||||
|
|
||||||
* Tue Jan 16 2007 Chris Feist <cfeist@redhat.com> 0.1.24-1
|
|
||||||
- New upstream sources.
|
|
||||||
- Resolves: rhbz#222747
|
|
||||||
|
|
||||||
* Wed Jan 03 2007 Chris Feist <cfeist@redhat.com> 0.1.24-1
|
|
||||||
- Updated sources
|
|
||||||
- Resolves: rhbz#218560
|
|
||||||
|
|
||||||
* Thu Dec 21 2006 Chris Feist <cfeist@redhat.com> 0.1.23-1
|
|
||||||
- Updated sources
|
|
||||||
- Resolves: rhbz#218560
|
|
||||||
|
|
||||||
* Tue Dec 19 2006 Chris Feist <cfeist@redhat.com> 0.1.22-1
|
|
||||||
- New upstream sources.
|
|
||||||
- Resolves: rhbz#219878
|
|
||||||
|
|
||||||
* Tue Dec 04 2006 Chris Feist <cfeist@redhat.com> 0.1.21-1
|
|
||||||
- New upstream sources.
|
|
||||||
- Resolves: rhbz#218134 rhbz#215962
|
|
||||||
|
|
||||||
* Thu Nov 30 2006 Chris Feist <cfeist@redhat.com> 0.1.19-1
|
|
||||||
- New upstream sources.
|
|
||||||
- Resolves: rhbz#217798
|
|
||||||
|
|
||||||
* Wed Nov 29 2006 Chris Feist <cfeist@redhat.com> 0.1.18-1
|
|
||||||
- New upstream sources.
|
|
||||||
- Resolves: rhbz#217460
|
|
||||||
|
|
||||||
* Thu Oct 26 2006 Chris Feist <cfeist@redhat.com> 0.1.14-1
|
|
||||||
- New upstream sources.
|
|
||||||
|
|
||||||
* Fri Oct 13 2006 Chris Feist <cfeist@redhat.com> 0.1.12-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Fri Oct 13 2006 Chris Feist <cfeist@redhat.com> 0.1.10-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Mon Oct 09 2006 Chris Feist <cfeist@redhat.com> 0.1.9-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Mon Sep 25 2006 Chris Feist <cfeist@redhat.com> 0.1.8-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Wed Sep 13 2006 Chris Feist <cfeist@redhat.com> 0.1.7-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Thu Sep 07 2006 Chris Feist <cfeist@redhat.com> 0.1.6-2
|
|
||||||
- Fix typo in uninstall script (turn off gfs2 instead of gfs)
|
|
||||||
|
|
||||||
* Mon Aug 28 2006 Chris Feist <cfeist@redhat.com> 0.1.6-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Tue Aug 22 2006 Chris Feist <cfeist@redhat.com> 0.1.5-1
|
|
||||||
- New Upstream sources.
|
|
||||||
|
|
||||||
* Mon Aug 14 2006 Chris Feist <cfeist@redhat.com> 0.1.3-0
|
|
||||||
- New Upstream sources, use dist tag.
|
|
||||||
|
|
||||||
* Fri Jul 14 2006 Chris Feist <cfeist@redhat.com>
|
|
||||||
- Rebuild with updated sources
|
|
||||||
|
|
||||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com>
|
|
||||||
- rebuild
|
|
||||||
|
|
||||||
* Tue Jun 27 2006 Florian La Roche <laroche@redhat.com>
|
|
||||||
- fix typo in preun script
|
|
||||||
|
|
||||||
* Fri Jun 09 2006 Chris Feist <cfeist@redhat.com> - 0.1.0-1.fc6.3
|
|
||||||
- Initial build of gfs-utils.
|
|
Loading…
Reference in New Issue
Block a user