]> www.infradead.org Git - users/mchehab/rasdaemon.git/commitdiff
Bump version to 0.5.3 v0.5.3
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Sun, 10 Aug 2014 14:04:10 +0000 (11:04 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Sun, 10 Aug 2014 16:06:05 +0000 (13:06 -0300)
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
ChangeLog
Makefile.am
configure.ac
misc/rasdaemon.spec.in
new_ver.sh

index a88a7bfb2acdd050d5c801c187b5fce96577fc80..3fa1930bd3cfc95c93a6a16d2e5546c8a713cb95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,3 +53,9 @@
 2014-04-03     Mauro Carvalho Chehab <m.chehab@samsung.com>
        - Version 0.5.2
        * Some fixes for ABRT report support
+2014-08-10     Mauro Carvalho Chehab <m.chehab@samsung.com>
+       - Version 0.5.3
+       * Add support for extlog trace events
+       * Some fixes affecting sqlite handling
+       * Handle failures of snprintf()
+        * Fix mce numfield decoded error
index 2deb937b432a6012c179115a9957ea7d25ff48f9..9c5f0076f9986b961c01da5cea8ce125dc488cf9 100644 (file)
@@ -62,7 +62,7 @@ rpmlint:
        rpmlint misc/@PACKAGE@.spec `rpm --eval %{_topdir}`/SRPMS/@PACKAGE@-@PACKAGE_VERSION@*.src.rpm `rpm --eval %{_topdir}`/RPMS/*/@PACKAGE@-@PACKAGE_VERSION@*.rpm
 
 upload:
-       scp @PACKAGE@-@PACKAGE_VERSION@*.src.rpm @PACKAGE@-@PACKAGE_VERSION@.tar.bz2 misc/rasdaemon.spec fedorapeople.org:public_html
+       scp `rpm --eval %{_topdir}`/SRPMS/@PACKAGE@-@PACKAGE_VERSION@*.src.rpm @PACKAGE@-@PACKAGE_VERSION@.tar.bz2 misc/rasdaemon.spec fedorapeople.org:public_html
 
 # custom target
 install-data-local:
index 94954915cebd4ae58d063d6b20997c791242caeb..6b18658b0e7d4500754c835651a3c09749a6f6b7 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([RASdaemon], 0.5.2)
+AC_INIT([RASdaemon], 0.5.3)
 AM_SILENT_RULES([yes])
 AC_CANONICAL_SYSTEM
 AC_CONFIG_MACRO_DIR([m4])
index 7acbf3145f80a6c5f7d4ef90cd2d56bf51138dd0..e3dfc8437eb17382cc0a3fdb2a1f151a28631fd9 100644 (file)
@@ -29,7 +29,7 @@ an utility for reporting current error counts from the EDAC sysfs files.
 
 %build
 autoreconf -vfi
-%configure --enable-mce --enable-aer --enable-sqlite3
+%configure --enable-mce --enable-aer --enable-sqlite3 --enable-extlog --enable-abrt-report
 make %{?_smp_mflags}
 
 %install
@@ -49,6 +49,9 @@ rm INSTALL %{buildroot}/usr/include/*.h
 
 %changelog
 
+* Sun Aug 10 2014 Mauro Carvalho Chehab <m.chehab@samsung.com> 0.5.3-1
+- Bump to version 0.5.3 and enable ABRT and ExtLog
+
 * Tue Sep 10 2013 Mauro Carvalho Chehab <m.chehab@samsung.com> 0.4.2-1
 - Fix ras-mc-ctl layout filling
  
index 591b062d96bc277ac88a27e0eed2fb59e401f441..afbab56495beccf5561652c9c507649599b6786d 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-autoreconf && ./configure
+autoreconf && ./configure --enable-sqlite3 --enable-aer --enable-mce --enable-extlog --enable-abrt-report
 
 VER="`perl -ne 'print "$1\n" if (/Version:\s*(.*)/);' misc/rasdaemon.spec`"
 if [ "x$VER" == "x" ]; then
@@ -12,4 +12,4 @@ echo "************************************************************************"
 echo "Building RPM files for version: $VER"
 echo "************************************************************************"
 echo
-make -j1 dist-bzip2 && make -j1 dist-rpm && git tag v$VER -f && git push --tags fedorahosted && make upload && git push --tags
+git tag v$VER -f && make mock && make upload && git push --tags master