rpms/erlang/F-9 .cvsignore, 1.11, 1.12 erlang.spec, 1.29, 1.30 otp-sslrpath.patch, 1.1, 1.2 sources, 1.11, 1.12

Gérard Milmeister gemi at fedoraproject.org
Sun Mar 1 15:26:11 UTC 2009


Author: gemi

Update of /cvs/pkgs/rpms/erlang/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18937/F-9

Modified Files:
	.cvsignore erlang.spec otp-sslrpath.patch sources 
Log Message:
new release R12B-5


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/erlang/F-9/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore	25 Oct 2008 21:28:09 -0000	1.11
+++ .cvsignore	1 Mar 2009 15:25:41 -0000	1.12
@@ -1,3 +1,3 @@
-otp_src_R12B-4.tar.gz
-otp_doc_html_R12B-4.tar.gz
-otp_doc_man_R12B-4.tar.gz
+otp_src_R12B-5.tar.gz
+otp_doc_html_R12B-5.tar.gz
+otp_doc_man_R12B-5.tar.gz


Index: erlang.spec
===================================================================
RCS file: /cvs/pkgs/rpms/erlang/F-9/erlang.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- erlang.spec	15 Feb 2009 02:39:03 -0000	1.29
+++ erlang.spec	1 Mar 2009 15:25:41 -0000	1.30
@@ -1,14 +1,17 @@
+%define ver R12B
+%define rel 5
+
 Name:           erlang
-Version:        R12B
-Release:        4.2%{?dist}
+Version:        %{ver}
+Release:        %{rel}.6%{?dist}
 Summary:        General-purpose programming language and runtime environment
 
 Group:          Development/Languages
-License:        Erlang Public License
+License:        ERPL
 URL:            http://www.erlang.org
-Source:         http://www.erlang.org/download/otp_src_R12B-4.tar.gz
-Source1:	http://www.erlang.org/download/otp_doc_html_R12B-4.tar.gz
-Source2:	http://www.erlang.org/download/otp_doc_man_R12B-4.tar.gz
+Source:         http://www.erlang.org/download/otp_src_%{ver}-%{rel}.tar.gz
+Source1:	http://www.erlang.org/download/otp_doc_html_%{ver}-%{rel}.tar.gz
+Source2:	http://www.erlang.org/download/otp_doc_man_%{ver}-%{rel}.tar.gz
 Patch0:		otp-links.patch
 Patch1:		otp-install.patch
 Patch2:		otp-rpath.patch
@@ -43,15 +46,22 @@
 
 
 %prep
-%setup -q -n otp_src_R12B-4
+%setup -q -n otp_src_%{ver}-%{rel}
 %patch0 -p1 -b .links
 %patch1 -p1 -b .install
 %patch2 -p1 -b .rpath
-%patch3 -p1 -b .sslrpath
+#%patch3 -p1 -b .sslrpath
 
 # enable dynamic linking for ssl
 sed -i 's|SSL_DYNAMIC_ONLY=no|SSL_DYNAMIC_ONLY=yes|' erts/configure
 sed -i 's|^LD.*=.*|LD = gcc -shared|' lib/common_test/c_src/Makefile
+# fix for newer glibc version
+sed -i 's|__GLIBC_MINOR__ <= 7|__GLIBC_MINOR__ <= 8|' erts/emulator/hipe/hipe_x86_signal.c
+# use gcc -shared instead of ld
+sed -i 's|@RX_LD@|gcc -shared|' lib/common_test/c_src/Makefile.in
+sed -i 's|@RX_LDFLAGS@||' lib/common_test/c_src/Makefile.in
+
+
 
 %build
 %ifarch sparcv9 sparc64
@@ -82,7 +92,7 @@
 # make links to binaries
 mkdir -p $RPM_BUILD_ROOT/%{_bindir}
 cd $RPM_BUILD_ROOT/%{_bindir}
-for file in erl erlc 
+for file in erl erlc escript dialyzer
 do
   ln -sf ../%{_lib}/erlang/bin/$file .
 done
@@ -113,7 +123,14 @@
 
 
 %changelog
-* Sat Feb 14 2009 Dennis Gilmore <dennis at ausil.us> - R12B-4.2
+* Sun Mar  1 2009 Gerard Milmeister <gemi at bluewin.ch> - R12B-5.6
+- new release R12B-5
+- link escript and dialyzer to %{_bindir}
+
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - R12B-5.5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Feb 14 2009 Dennis Gilmore <dennis at ausil.us> - R12B-4.5
 - fix sparc arches to compile
 
 * Sat Oct 25 2008 Gerard Milmeister <gemi at bluewin.ch> - R12B-4.1

otp-sslrpath.patch:

Index: otp-sslrpath.patch
===================================================================
RCS file: /cvs/pkgs/rpms/erlang/F-9/otp-sslrpath.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- otp-sslrpath.patch	17 Feb 2006 23:32:19 -0000	1.1
+++ otp-sslrpath.patch	1 Mar 2009 15:25:41 -0000	1.2
@@ -1,7 +1,8 @@
---- otp_src_R10B-9/lib/ssl/c_src/Makefile.in.sslrpath	2005-12-29 00:49:17.000000000 +0100
-+++ otp_src_R10B-9/lib/ssl/c_src/Makefile.in	2005-12-29 00:50:15.000000000 +0100
-@@ -95,7 +95,7 @@
- endif
+diff -up otp_src_R12B-4/lib/ssl/c_src/Makefile.in.sslrpath otp_src_R12B-4/lib/ssl/c_src/Makefile.in
+--- otp_src_R12B-4/lib/ssl/c_src/Makefile.in.sslrpath	2008-10-26 00:00:37.000000000 +0200
++++ otp_src_R12B-4/lib/ssl/c_src/Makefile.in	2008-10-26 00:01:09.000000000 +0200
+@@ -102,7 +102,7 @@ else
+ SSL_MAKEFILE =
  endif
  
 -CC_R_FLAG=@CFLAG_RUNTIME_LIBRARY_PATH@
@@ -9,3 +10,15 @@
  ifeq ($(findstring @,$(CC_R_FLAG)),@)
  # Old erts configure used which hasn't replaced @CFLAG_RUNTIME_LIBRARY_PATH@;
  # we try our best here instead...
+@@ -111,9 +111,9 @@ ifeq ($(findstring darwin,$(TARGET)),dar
+ CC_R_FLAG =
+ else
+ ifeq ($(findstring osf,$(TARGET)),osf)		# osf1: -Wl,-rpath,
+-CC_R_FLAG = -Wl,-rpath,
++CC_R_FLAG =
+ else						# Default: -Wl,-R
+-CC_R_FLAG = -Wl,-R
++CC_R_FLAG =
+ endif
+ endif
+ endif


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/erlang/F-9/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources	25 Oct 2008 21:28:09 -0000	1.11
+++ sources	1 Mar 2009 15:25:41 -0000	1.12
@@ -1,3 +1,3 @@
-ae81edda4a17506af7a9d73abca033b2  otp_src_R12B-4.tar.gz
-f633cd418d8260af7a11c998aa88072b  otp_doc_html_R12B-4.tar.gz
-ef8f96d1721a2345cc87b208cde3de06  otp_doc_man_R12B-4.tar.gz
+3751ea3fea669d2b25c67eeb883734bb  otp_src_R12B-5.tar.gz
+fb0c5454bbd865e881b6712295f6d41f  otp_doc_html_R12B-5.tar.gz
+6231cb172847040395cc34b20781aa3b  otp_doc_man_R12B-5.tar.gz




More information about the fedora-extras-commits mailing list