Hello community, here is the log from the commit of package e_dbus for openSUSE:Factory checked in at 2013-01-08 16:23:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/e_dbus (Old) and /work/SRC/openSUSE:Factory/.e_dbus.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e_dbus", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/e_dbus/e_dbus.changes 2012-12-10 13:46:28.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.e_dbus.new/e_dbus.changes 2013-01-08 16:24:00.000000000 +0100 @@ -1,0 +2,23 @@ +Fri Dec 21 16:14:45 UTC 2012 - [email protected] + +- update to 1.7.4 + Changes since E_dbus 1.7.3: + * Add XML output to doc + * Add installation rule for doc + +------------------------------------------------------------------- +Fri Dec 21 11:41:53 UTC 2012 - [email protected] + +- use vicious %doc macro again, but now it will work, I promise + +------------------------------------------------------------------- +Fri Dec 21 09:10:05 UTC 2012 - [email protected] + +- remove vicious %doc macro + +------------------------------------------------------------------- +Thu Dec 20 13:47:16 UTC 2012 - [email protected] + +- build and package documentation + +------------------------------------------------------------------- Old: ---- e_dbus-1.7.3.tar.bz2 New: ---- e_dbus-1.7.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e_dbus.spec ++++++ --- /var/tmp/diff_new_pack.UJEAAJ/_old 2013-01-08 16:24:02.000000000 +0100 +++ /var/tmp/diff_new_pack.UJEAAJ/_new 2013-01-08 16:24:02.000000000 +0100 @@ -17,7 +17,7 @@ Name: e_dbus -Version: 1.7.3 +Version: 1.7.4 Release: 0 Summary: Dbus wrapping and glue layer library License: BSD-2-Clause @@ -25,10 +25,14 @@ Url: http://enlightenment.org/ Source: %{name}-%{version}.tar.bz2 BuildRequires: dbus-1-devel +BuildRequires: doxygen BuildRequires: ecore-devel BuildRequires: eina-devel BuildRequires: libtool BuildRequires: pkgconfig +%if 0%{?suse_version} +BuildRequires: fdupes +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -55,16 +59,44 @@ %description devel Development files for E_Dbus package. +%package doc-html +Summary: HTML documentation of Eet +Group: Documentation/HTML + +%description doc-html +Documentation of Eet library in form of HTML pages. + %prep %setup -q %build +# fake time used for documentation +FAKE_DOCDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%a %%b %%d %%Y') +FAKE_DOCYEAR=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%Y') +FAKE_DOCDATETIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%a %%b %%d %%Y %T') +sed -i "s/\$datetime/$FAKE_DOCDATETIME/g;s/\$date/$FAKE_DOCDATE/g;s/\$year/$FAKEDOCYEAR/g" doc/*.html + %configure --disable-static --disable-silent-rules make %{?_smp_mflags} +make doc %install make install DESTDIR="%buildroot" + +# copy documentation manually +echo "Copying HTML documentation" +mkdir -p %{buildroot}%{_docdir}/%{name} +/bin/cp -vr doc/html %{buildroot}%{_docdir}/%{name} +# fix permissions +find %{buildroot}%{_docdir} -type f | xargs chmod 0644 +find %{buildroot}%{_docdir} -type d | xargs chmod 0755 +# remove duplicates +%if 0%{?suse_version} +%fdupes -s %{buildroot}%{_docdir} +%endif + find %{buildroot}%{_libdir} -name '*.la' -exec rm -v {} \; +cp -v ChangeLog README COPYING %{buildroot}%{_docdir}/%{name} %post -n libedbus1 -p /sbin/ldconfig @@ -72,7 +104,9 @@ %files %defattr(-,root,root) -%doc ChangeLog README COPYING +%doc %{_docdir}/%{name} +%{_docdir}/%{name} +%exclude %{_docdir}/%{name}/html %{_bindir}/e* %{_datadir}/e_dbus/ @@ -86,4 +120,8 @@ %{_libdir}/pkgconfig/*.pc %{_libdir}/libe*.so +%files doc-html +%defattr(-, root, root) +%doc %{_docdir}/%{name}/html + %changelog ++++++ e_dbus-1.7.3.tar.bz2 -> e_dbus-1.7.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/ChangeLog new/e_dbus-1.7.4/ChangeLog --- old/e_dbus-1.7.3/ChangeLog 2012-12-07 16:20:45.000000000 +0100 +++ new/e_dbus-1.7.4/ChangeLog 2012-12-21 13:53:53.000000000 +0100 @@ -92,3 +92,12 @@ * 1.7.3 release +2012-12-17 Vincent Torri + + * Add XML output to doc + * Add installation rule for doc + +2012-12-21 Luis Felipe Strano Moraes + + * 1.7.4 release + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/Makefile.am new/e_dbus-1.7.4/Makefile.am --- old/e_dbus-1.7.3/Makefile.am 2012-12-07 12:51:19.000000000 +0100 +++ new/e_dbus-1.7.4/Makefile.am 2012-12-20 23:10:51.000000000 +0100 @@ -71,10 +71,14 @@ m4/efl_compiler_flag.m4 \ m4/efl_doxygen.m4 -.PHONY: doc +.PHONY: doc install-doc # Documentation doc: @echo "entering doc/" make -C doc doc + +install-doc: + @echo "entering doc/" + make -C doc install-doc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/Makefile.in new/e_dbus-1.7.4/Makefile.in --- old/e_dbus-1.7.3/Makefile.in 2012-12-07 17:07:04.000000000 +0100 +++ new/e_dbus-1.7.4/Makefile.in 2012-12-21 15:43:44.000000000 +0100 @@ -933,7 +933,7 @@ uninstall uninstall-am uninstall-pkgconfigDATA -.PHONY: doc +.PHONY: doc install-doc # Documentation @@ -941,6 +941,10 @@ @echo "entering doc/" make -C doc doc +install-doc: + @echo "entering doc/" + make -C doc install-doc + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/NEWS new/e_dbus-1.7.4/NEWS --- old/e_dbus-1.7.3/NEWS 2012-12-07 16:20:23.000000000 +0100 +++ new/e_dbus-1.7.4/NEWS 2012-12-21 13:53:53.000000000 +0100 @@ -1,4 +1,10 @@ -E_dbus 1.7.3 +E_dbus 1.7.4 + +Changes since E_dbus 1.7.3: +--------------------------- + + * Add XML output to doc + * Add installation rule for doc Changes since E_dbus 1.7.2: --------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/README new/e_dbus-1.7.4/README --- old/e_dbus-1.7.3/README 2012-12-07 17:07:00.000000000 +0100 +++ new/e_dbus-1.7.4/README 2012-12-21 15:43:40.000000000 +0100 @@ -1,4 +1,4 @@ -E_dbus 1.7.0 +E_dbus 1.7.4 ****************************************************************************** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/configure new/e_dbus-1.7.4/configure --- old/e_dbus-1.7.3/configure 2012-12-07 17:07:02.000000000 +0100 +++ new/e_dbus-1.7.4/configure 2012-12-21 15:43:43.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for e_dbus 1.7.3. +# Generated by GNU Autoconf 2.68 for e_dbus 1.7.4. # # Report bugs to <[email protected]>. # @@ -570,8 +570,8 @@ # Identity of this package. PACKAGE_NAME='e_dbus' PACKAGE_TARNAME='e_dbus' -PACKAGE_VERSION='1.7.3' -PACKAGE_STRING='e_dbus 1.7.3' +PACKAGE_VERSION='1.7.4' +PACKAGE_STRING='e_dbus 1.7.4' PACKAGE_BUGREPORT='[email protected]' PACKAGE_URL='' @@ -1441,7 +1441,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures e_dbus 1.7.3 to adapt to many kinds of systems. +\`configure' configures e_dbus 1.7.4 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1511,7 +1511,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of e_dbus 1.7.3:";; + short | recursive ) echo "Configuration of e_dbus 1.7.4:";; esac cat <<\_ACEOF @@ -1703,7 +1703,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -e_dbus configure 1.7.3 +e_dbus configure 1.7.4 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2035,7 +2035,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by e_dbus $as_me 1.7.3, which was +It was created by e_dbus $as_me 1.7.4, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2859,7 +2859,7 @@ # Define the identity of the package. PACKAGE='e_dbus' - VERSION='1.7.3' + VERSION='1.7.4' cat >>confdefs.h <<_ACEOF @@ -11830,7 +11830,7 @@ cat >>confdefs.h <<_ACEOF -#define VMIC 3 +#define VMIC 4 _ACEOF @@ -11838,7 +11838,7 @@ #define VREV 0 _ACEOF -version_info="8:3:7" +version_info="8:4:7" release_info="" @@ -15819,7 +15819,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by e_dbus $as_me 1.7.3, which was +This file was extended by e_dbus $as_me 1.7.4, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15885,7 +15885,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -e_dbus config.status 1.7.3 +e_dbus config.status 1.7.4 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" @@ -17716,6 +17716,9 @@ echo " EUkit test.........: $have_edbus_ukit_test" echo echo "Documentation..........: ${build_doc}" +if test "x${build_doc}" = "xyes" ; then +echo " Installation.......: make install-doc" +fi echo echo "Compilation............: make (or gmake)" echo " CPPFLAGS.............: $CPPFLAGS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/configure.ac new/e_dbus-1.7.4/configure.ac --- old/e_dbus-1.7.3/configure.ac 2012-12-07 17:07:00.000000000 +0100 +++ new/e_dbus-1.7.4/configure.ac 2012-12-21 15:30:17.000000000 +0100 @@ -2,7 +2,7 @@ ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [1]) m4_define([v_min], [7]) -m4_define([v_mic], [3]) +m4_define([v_mic], [4]) m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n'])) m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))]) ##-- When released, remove the dnl on the below line @@ -400,6 +400,9 @@ echo " EUkit test.........: $have_edbus_ukit_test" echo echo "Documentation..........: ${build_doc}" +if test "x${build_doc}" = "xyes" ; then +echo " Installation.......: make install-doc" +fi echo echo "Compilation............: make (or gmake)" echo " CPPFLAGS.............: $CPPFLAGS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/doc/Doxyfile.in new/e_dbus-1.7.4/doc/Doxyfile.in --- old/e_dbus-1.7.3/doc/Doxyfile.in 2012-12-07 12:51:14.000000000 +0100 +++ new/e_dbus-1.7.4/doc/Doxyfile.in 2012-12-20 23:10:47.000000000 +0100 @@ -1288,7 +1288,7 @@ # generate an XML file that captures the structure of # the code including all documentation. -GENERATE_XML = NO +GENERATE_XML = YES # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/doc/Makefile.am new/e_dbus-1.7.4/doc/Makefile.am --- old/e_dbus-1.7.3/doc/Makefile.am 2012-12-07 12:51:14.000000000 +0100 +++ new/e_dbus-1.7.4/doc/Makefile.am 2012-12-20 23:10:47.000000000 +0100 @@ -1,20 +1,21 @@ MAINTAINERCLEANFILES = Makefile.in e_dbus_doxy_warnings.txt -.PHONY: doc +.PHONY: doc install-doc PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc if EFL_BUILD_DOC doc-clean: - rm -rf html/ latex/ $(top_builddir)/$(PACKAGE_DOCNAME).tar* + rm -rf html/ latex/ man/ xml/ $(top_builddir)/$(PACKAGE_DOCNAME).tar* -doc: all +doc-build: all $(efl_doxygen) - cp $(srcdir)/images/* html/ + +doc: doc-build rm -rf $(PACKAGE_DOCNAME).tar* mkdir -p $(PACKAGE_DOCNAME)/doc - cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc + cp -R html/ latex/ xml/ $(PACKAGE_DOCNAME)/doc tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ bzip2 -9 $(PACKAGE_DOCNAME).tar rm -rf $(PACKAGE_DOCNAME)/ @@ -22,11 +23,20 @@ clean-local: doc-clean +install-doc: doc-build + install -d $(docdir) + cp -R html latex man xml $(docdir) + +uninstall-local: + rm -rf $(docdir)/html $(docdir)/latex $(docdir)/man $(docdir)/xml + else doc: @echo "Documentation not built. Run ./configure --help" +install-doc: doc + endif EXTRA_DIST = Doxyfile.in $(wildcard images/*.*) e.css head.html foot.html diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/doc/Makefile.in new/e_dbus-1.7.4/doc/Makefile.in --- old/e_dbus-1.7.3/doc/Makefile.in 2012-12-07 17:07:03.000000000 +0100 +++ new/e_dbus-1.7.4/doc/Makefile.in 2012-12-21 15:43:43.000000000 +0100 @@ -352,6 +352,7 @@ @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +@EFL_BUILD_DOC_FALSE@uninstall-local: @EFL_BUILD_DOC_FALSE@clean-local: clean: clean-am @@ -417,7 +418,7 @@ ps-am: -uninstall-am: +uninstall-am: uninstall-local .MAKE: install-am install-strip @@ -431,20 +432,21 @@ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am + uninstall uninstall-am uninstall-local -.PHONY: doc +.PHONY: doc install-doc @EFL_BUILD_DOC_TRUE@doc-clean: -@EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ $(top_builddir)/$(PACKAGE_DOCNAME).tar* +@EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ man/ xml/ $(top_builddir)/$(PACKAGE_DOCNAME).tar* -@EFL_BUILD_DOC_TRUE@doc: all +@EFL_BUILD_DOC_TRUE@doc-build: all @EFL_BUILD_DOC_TRUE@ $(efl_doxygen) -@EFL_BUILD_DOC_TRUE@ cp $(srcdir)/images/* html/ + +@EFL_BUILD_DOC_TRUE@doc: doc-build @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME).tar* @EFL_BUILD_DOC_TRUE@ mkdir -p $(PACKAGE_DOCNAME)/doc -@EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc +@EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ xml/ $(PACKAGE_DOCNAME)/doc @EFL_BUILD_DOC_TRUE@ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ @EFL_BUILD_DOC_TRUE@ bzip2 -9 $(PACKAGE_DOCNAME).tar @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME)/ @@ -452,9 +454,18 @@ @EFL_BUILD_DOC_TRUE@clean-local: doc-clean +@EFL_BUILD_DOC_TRUE@install-doc: doc-build +@EFL_BUILD_DOC_TRUE@ install -d $(docdir) +@EFL_BUILD_DOC_TRUE@ cp -R html latex man xml $(docdir) + +@EFL_BUILD_DOC_TRUE@uninstall-local: +@EFL_BUILD_DOC_TRUE@ rm -rf $(docdir)/html $(docdir)/latex $(docdir)/man $(docdir)/xml + @EFL_BUILD_DOC_FALSE@doc: @EFL_BUILD_DOC_FALSE@ @echo "Documentation not built. Run ./configure --help" +@EFL_BUILD_DOC_FALSE@install-doc: doc + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/e_dbus.spec new/e_dbus-1.7.4/e_dbus.spec --- old/e_dbus-1.7.3/e_dbus.spec 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/e_dbus.spec 2012-12-21 15:43:46.000000000 +0100 @@ -4,7 +4,7 @@ Summary: EFL Wrapper for DBus Name: e_dbus -Version: 1.7.3 +Version: 1.7.4 Release: %{_rel} License: BSD Group: System Environment/Libraries diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/ebluez.pc new/e_dbus-1.7.4/ebluez.pc --- old/e_dbus-1.7.3/ebluez.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/ebluez.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: ebluez Description: bluetooth device manager (bluez) Requires.private: edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -lebluez Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/econnman-0.7x.pc new/e_dbus-1.7.4/econnman-0.7x.pc --- old/e_dbus-1.7.3/econnman-0.7x.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/econnman-0.7x.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: econnman-0.7x Description: network connection manager (connman v0.7x) Requires.private: edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -leconnman0_7x Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/edbus.pc new/e_dbus-1.7.4/edbus.pc --- old/e_dbus-1.7.3/edbus.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/edbus.pc 2012-12-21 15:43:47.000000000 +0100 @@ -1,11 +1,13 @@ +PACKAGE_TARNAME=e_dbus prefix=/home/lfelipe/e-release/release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include +docdir=${prefix}/share/doc/${PACKAGE_TARNAME} Name: edbus Description: DBus convenience library Requires.private: ecore >= 1.6.99 eina >= 1.6.99 dbus-1 >= 0.62 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -ledbus -ldbus-1 -lpthread -lrt Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/edbus.pc.in new/e_dbus-1.7.4/edbus.pc.in --- old/e_dbus-1.7.3/edbus.pc.in 2012-12-07 12:51:19.000000000 +0100 +++ new/e_dbus-1.7.4/edbus.pc.in 2012-12-20 23:10:51.000000000 +0100 @@ -1,7 +1,9 @@ +PACKAGE_TARNAME=@PACKAGE_TARNAME@ prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ +docdir=@docdir@ Name: edbus Description: DBus convenience library diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/ehal.pc new/e_dbus-1.7.4/ehal.pc --- old/e_dbus-1.7.3/ehal.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/ehal.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: ehal Description: Hal convenience library Requires.private: edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -lehal Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/enotify.pc new/e_dbus-1.7.4/enotify.pc --- old/e_dbus-1.7.3/enotify.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/enotify.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: enotify Description: Notification convenience library Requires.private: evas >= 1.6.99 edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -lenotify Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/eofono.pc new/e_dbus-1.7.4/eofono.pc --- old/e_dbus-1.7.3/eofono.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/eofono.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: eofono Description: oFono D-Bus wrappers Requires.private: edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -leofono Cflags: -I${includedir}/e_dbus-1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/e_dbus-1.7.3/eukit.pc new/e_dbus-1.7.4/eukit.pc --- old/e_dbus-1.7.3/eukit.pc 2012-12-07 17:07:06.000000000 +0100 +++ new/e_dbus-1.7.4/eukit.pc 2012-12-21 15:43:47.000000000 +0100 @@ -6,6 +6,6 @@ Name: eukit Description: udisks/upower convenience library Requires.private: edbus >= 1.6.99 -Version: 1.7.3 +Version: 1.7.4 Libs: -L${libdir} -leukit Cflags: -I${includedir}/e_dbus-1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
