Skip to content
Snippets Groups Projects
Commit 15103e11 authored by ballen4705's avatar ballen4705
Browse files

release 31

git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@221 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 29f23b20
No related branches found
No related tags found
No related merge requests found
CHANGELOG for smartmontools CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.37 2002/11/07 11:00:55 ballen4705 Exp $ $Id: CHANGELOG,v 1.38 2002/11/07 11:28:17 ballen4705 Exp $
Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
...@@ -27,6 +27,9 @@ CURRENT RELEASE (see VERSION file in this directory): ...@@ -27,6 +27,9 @@ CURRENT RELEASE (see VERSION file in this directory):
smartmontools-5.0.31 smartmontools-5.0.31
Changed Makefile so that the -V option does not reflect file state
before commit!
smartctl: added new options -W, -U, and -P to control if and how the smartctl: added new options -W, -U, and -P to control if and how the
smartctl exits if an error is detected in either a SMART data smartctl exits if an error is detected in either a SMART data
structure checksum, or a SMART command returns an error. structure checksum, or a SMART command returns an error.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# Home page: http://smartmontools.sourceforge.net # Home page: http://smartmontools.sourceforge.net
# #
# $Id: Makefile,v 1.33 2002/11/04 08:47:38 ballen4705 Exp $ # $Id: Makefile,v 1.34 2002/11/07 11:28:17 ballen4705 Exp $
# #
# Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> # Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
# #
...@@ -115,6 +115,12 @@ uninstall: ...@@ -115,6 +115,12 @@ uninstall:
# All this mess is to automatically increment the release numbers. # All this mess is to automatically increment the release numbers.
# The number of the next release is kept in the file "VERSION" # The number of the next release is kept in the file "VERSION"
release: release:
cat smartmontools.spec | sed '/Release:/d' > temp.spec
echo "Release: " $(counter) > temp.version
cat temp.version temp.spec > smartmontools.spec
rm -f temp.spec temp.version
. cvs-script && cvs commit -m "release $(counter)"
. cvs-script && cvs tag -d "RELEASE_5_0_$(counter)" && cvs tag "RELEASE_5_0_$(counter)"
rm -rf $(pkgname) rm -rf $(pkgname)
mkdir $(pkgname) mkdir $(pkgname)
cp -a $(releasefiles) $(pkgname) cp -a $(releasefiles) $(pkgname)
...@@ -123,10 +129,6 @@ release: ...@@ -123,10 +129,6 @@ release:
tar zcvf $(pkgname2).tar.gz $(pkgname2) tar zcvf $(pkgname2).tar.gz $(pkgname2)
rm -rf $(pkgname2) rm -rf $(pkgname2)
mv -f $(pkgname).tar.gz /usr/src/redhat/SOURCES/ mv -f $(pkgname).tar.gz /usr/src/redhat/SOURCES/
cat smartmontools.spec | sed '/Release:/d' > temp.spec
echo "Release: " $(counter) > temp.version
cat temp.version temp.spec > smartmontools.spec
rm -f temp.spec temp.version
rpm -ba smartmontools.spec rpm -ba smartmontools.spec
mv /usr/src/redhat/RPMS/i386/$(pkgname)*.rpm . mv /usr/src/redhat/RPMS/i386/$(pkgname)*.rpm .
mv /usr/src/redhat/SRPMS/$(pkgname)*rpm . mv /usr/src/redhat/SRPMS/$(pkgname)*rpm .
......
...@@ -27,7 +27,7 @@ Packager: Bruce Allen <smartmontools-support@lists.sourceforge.net> ...@@ -27,7 +27,7 @@ Packager: Bruce Allen <smartmontools-support@lists.sourceforge.net>
# http://ftp1.sourceforge.net/smartmontools/smartmontools-%{version}-%{release}.tar.gz # http://ftp1.sourceforge.net/smartmontools/smartmontools-%{version}-%{release}.tar.gz
# CVS ID of this file is: # CVS ID of this file is:
# $Id: smartmontools.spec,v 1.47 2002/11/07 11:00:56 ballen4705 Exp $ # $Id: smartmontools.spec,v 1.48 2002/11/07 11:28:17 ballen4705 Exp $
# Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> # Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
# Home page: http://smartmontools.sourceforge.net/ # Home page: http://smartmontools.sourceforge.net/
...@@ -214,6 +214,8 @@ fi ...@@ -214,6 +214,8 @@ fi
%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) %define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
%changelog %changelog
* Thu Nov 7 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> * Thu Nov 7 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
- Changed Makefile so that the -V option does not reflect file state
before commit!
- modified .spec file so that locale information now contains - modified .spec file so that locale information now contains
character set definition. Changed pt_BR to pt since we do not use any character set definition. Changed pt_BR to pt since we do not use any
aspect other than language. See man setlocale. aspect other than language. See man setlocale.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment