rpms/gmime/devel libdir.patch, NONE, 1.1 .cvsignore, 1.19, 1.20 gmime.spec, 1.46, 1.47 sources, 1.19, 1.20 gmime-2.4.3-libdir.patch, 1.1, NONE

Matthias Clasen mclasen at fedoraproject.org
Sun Jul 19 02:26:54 UTC 2009


Author: mclasen

Update of /cvs/pkgs/rpms/gmime/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1846

Modified Files:
	.cvsignore gmime.spec sources 
Added Files:
	libdir.patch 
Removed Files:
	gmime-2.4.3-libdir.patch 
Log Message:
2.4.7


libdir.patch:
 Makefile.in           |   16 ++++++++--------
 gmime-sharp-2.4.pc.in |    2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

--- NEW FILE libdir.patch ---
diff -up gmime-2.4.7/mono/gmime-sharp-2.4.pc.in.libdir gmime-2.4.7/mono/gmime-sharp-2.4.pc.in
--- gmime-2.4.7/mono/gmime-sharp-2.4.pc.in.libdir	2009-04-23 22:04:47.000000000 -0400
+++ gmime-2.4.7/mono/gmime-sharp-2.4.pc.in	2009-07-18 22:19:43.355545728 -0400
@@ -1,5 +1,5 @@
 prefix=@prefix@
-libdir=${prefix}/lib
+libdir=@libdir@
 
 Name: gmime-sharp 
 Version: @VERSION@
diff -up gmime-2.4.7/mono/Makefile.in.libdir gmime-2.4.7/mono/Makefile.in
--- gmime-2.4.7/mono/Makefile.in.libdir	2009-04-27 10:52:06.000000000 -0400
+++ gmime-2.4.7/mono/Makefile.in	2009-07-18 22:23:46.048524443 -0400
@@ -476,22 +476,22 @@ $(ASSEMBLY): $(build_sources) generated-
 install-data-hook:
 	@if test -n '$(TARGET)'; then									\
 	  if test -n '$(DESTDIR)'; then								\
-	    echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib";		\
-	    $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib || exit 1;	\
+	    echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir)";		\
+	    $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir) || exit 1;	\
 	  else												\
-	    echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib";			\
-	    $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib || exit 1;		\
+	    echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(libdir)";			\
+	    $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(libdir) || exit 1;		\
 	  fi;												\
 	fi
 
 uninstall-local:
 	@if test -n '$(TARGET)'; then									\
 	  if test -n '$(DESTDIR)'; then								\
-	    echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib";	\
-	    $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib || exit 1;  \
+	    echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir)";	\
+	    $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir) || exit 1;  \
 	  else												\
-	    echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib";	\
-	    $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib || exit 1;	\
+	    echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(libdir)";	\
+	    $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(libdir) || exit 1;	\
 	  fi;												\
 	fi
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/gmime/devel/.cvsignore,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -p -r1.19 -r1.20
--- .cvsignore	5 Dec 2008 01:14:40 -0000	1.19
+++ .cvsignore	19 Jul 2009 02:26:23 -0000	1.20
@@ -1 +1 @@
-gmime-2.4.3.tar.bz2
+gmime-2.4.7.tar.bz2


Index: gmime.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gmime/devel/gmime.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -p -r1.46 -r1.47
--- gmime.spec	26 May 2009 00:06:09 -0000	1.46
+++ gmime.spec	19 Jul 2009 02:26:23 -0000	1.47
@@ -1,6 +1,6 @@
 Name:           gmime
-Version:        2.4.3
-Release:        5%{?dist}
+Version:        2.4.7
+Release:        1%{?dist}
 Summary:        Library for creating and parsing MIME messages
 
 Group:          System Environment/Libraries
@@ -14,7 +14,7 @@ BuildRequires:  glib2-devel >= 2.6.0
 BuildRequires:  zlib-devel >= 1.2.1.1
 BuildRequires:  gettext-devel, gtk-doc
 
-Patch2: gmime-2.4.3-libdir.patch
+Patch2: libdir.patch
 
 # no mono on s390 for now, thus exclude s390 s390x
 %ifarch s390 s390x
@@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT
 %endif
 
 %changelog
+* Sat Jul 18 2009 Matthias Clasen <mclasen at redhat.com> - 2.4.7-1
+- Update to 2.4.7
+
 * Mon May 25 2009 Xavier Lamien <laxaathom at fedoraprojet.org> - 2.4.3-5
 - Build arch ppc64.
 - Fix uu??code binaries.


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/gmime/devel/sources,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -p -r1.19 -r1.20
--- sources	5 Dec 2008 01:14:40 -0000	1.19
+++ sources	19 Jul 2009 02:26:24 -0000	1.20
@@ -1 +1 @@
-d55cc7d8339d8ab0871c691607df4f0c  gmime-2.4.3.tar.bz2
+0fb23dbb1ed6934ab577e90269cd901f  gmime-2.4.7.tar.bz2


--- gmime-2.4.3-libdir.patch DELETED ---




More information about the fedora-extras-commits mailing list