From: Viktor M. <mih...@us...> - 2005-04-05 12:11:30
|
Update of /cvsroot/sblim/wbemcli In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv906 Modified Files: Makefile.am configure.ac Added Files: sblim-wbemcli.spec.in Log Message: Modified spec file location for RPM build facilitation. --- NEW FILE: sblim-wbemcli.spec.in --- # # $Id: sblim-wbemcli.spec.in,v 1.1 2005/04/05 12:11:19 mihajlov Exp $ # # Package spec for wbemcli # Summary: SBLIM WBEM Command Line Interface Name: @PACKAGE_TARNAME@ Version: @PACKAGE_VERSION@ Release: 0 Group: Systems Management/Base Copyright: Common Public Licence http://oss.software.ibm.com/developerworks/opensource/license-cpl.html Packager: Viktor Mihajlovski <mih...@de...> Source0: http://prdownloads.sourceforge.net/sblim/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/buildroot BuildRequires: curl-devel >= 7.9.3 Requires: curl >= 7.9.3 %Description WBEM Command Line Interface is a standalone, command line WBEM client. It is especially suited for basic systems management tasks as it can be used in scripts. %prep %setup %build %configure make %{?smp_mflags} %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT %install %makeinstall %files %defattr(-,root,root) %{_bindir}/wbem* %{_mandir}/man1/* Index: Makefile.am =================================================================== RCS file: /cvsroot/sblim/wbemcli/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 6 Dec 2004 17:33:59 -0000 1.2 +++ Makefile.am 5 Apr 2005 12:11:04 -0000 1.3 @@ -21,7 +21,7 @@ man_MANS = wbemcli.1 -EXTRA_DIST=$(man_MANS) contrib/sblim-wbemcli.spec.in samples \ +EXTRA_DIST=$(man_MANS) sblim-wbemcli.spec samples \ README.pycli wbemcli.ind cimcli.py CimXml.py CimXml.i if HAVE_SWIG Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/wbemcli/configure.ac,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- configure.ac 17 Dec 2004 14:37:04 -0000 1.6 +++ configure.ac 5 Apr 2005 12:11:19 -0000 1.7 @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT(SBLIM WBEMCLI, 1.4.8b, sbl...@ww...) +AC_INIT(SBLIM WBEMCLI, 1.4.8c, sbl...@ww...) AC_CONFIG_SRCDIR([CimXml.cpp]) AC_CANONICAL_HOST @@ -139,5 +139,5 @@ AC_FUNC_VPRINTF AC_CHECK_FUNCS([memmove memset strcasecmp strchr strdup strncasecmp strndup strpbrk strstr strtol]) -AC_CONFIG_FILES([Makefile contrib/sblim-wbemcli.spec]) +AC_CONFIG_FILES([Makefile sblim-wbemcli.spec]) AC_OUTPUT |