summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGérard Milmeister <gemi@fedoraproject.org>2008-10-25 21:49:08 +0000
committerGérard Milmeister <gemi@fedoraproject.org>2008-10-25 21:49:08 +0000
commite245b283320cd6e069fcdc6ce4ba8e0877e3c15a (patch)
tree625e898c3e9dec85b705e6297e134509b1334481
parentaf8394614be0a1d99bda561b9d43e75c9c7c5001 (diff)
downloaderlang-e245b283320cd6e069fcdc6ce4ba8e0877e3c15a.tar.gz
erlang-e245b283320cd6e069fcdc6ce4ba8e0877e3c15a.tar.xz
erlang-e245b283320cd6e069fcdc6ce4ba8e0877e3c15a.zip
new release R12B-4
-rw-r--r--.cvsignore6
-rw-r--r--erlang.spec9
-rw-r--r--otp-rpath.patch25
-rw-r--r--otp-sslrpath.patch9
-rw-r--r--sources6
5 files changed, 31 insertions, 24 deletions
diff --git a/.cvsignore b/.cvsignore
index 40fd7e4..4c8a7ee 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,3 +1,3 @@
-otp_doc_html_R12B-3.tar.gz
-otp_doc_man_R12B-3.tar.gz
-otp_src_R12B-3.tar.gz
+otp_src_R12B-4.tar.gz
+otp_doc_html_R12B-4.tar.gz
+otp_doc_man_R12B-4.tar.gz
diff --git a/erlang.spec b/erlang.spec
index fc9e560..3d655e1 100644
--- a/erlang.spec
+++ b/erlang.spec
@@ -1,9 +1,9 @@
%define ver R12B
-%define rel 3
+%define rel 4
Name: erlang
Version: %{ver}
-Release: %{rel}.3%{?dist}
+Release: %{rel}.1%{?dist}
Summary: General-purpose programming language and runtime environment
Group: Development/Languages
@@ -14,6 +14,7 @@ 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
Patch3: otp-sslrpath.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -48,6 +49,7 @@ Documentation for Erlang.
%setup -q -n otp_src_%{ver}-%{rel}
%patch0 -p1 -b .links
%patch1 -p1 -b .install
+%patch2 -p1 -b .rpath
%patch3 -p1 -b .sslrpath
# enable dynamic linking for ssl
@@ -117,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Oct 25 2008 Gerard Milmeister <gemi@bluewin.ch> - R12B-4.1
+- new release R12B-4
+
* Fri Sep 5 2008 Gerard Milmeister <gemi@bluewin.ch> - R12B-3.3%{?dist}
- fixed sslrpath patch
diff --git a/otp-rpath.patch b/otp-rpath.patch
index 9e82e62..95d38d2 100644
--- a/otp-rpath.patch
+++ b/otp-rpath.patch
@@ -1,17 +1,19 @@
---- otp_src_R10B-8/lib/crypto/c_src/Makefile.in.rpath 2005-10-29 22:50:59.000000000 +0200
-+++ otp_src_R10B-8/lib/crypto/c_src/Makefile.in 2005-10-29 22:51:23.000000000 +0200
-@@ -79,7 +79,7 @@
- ifeq ($(HOST_OS),)
+diff -up otp_src_R12B-4/lib/crypto/c_src/Makefile.in.rpath otp_src_R12B-4/lib/crypto/c_src/Makefile.in
+--- otp_src_R12B-4/lib/crypto/c_src/Makefile.in.rpath 2008-10-25 22:20:42.000000000 +0200
++++ otp_src_R12B-4/lib/crypto/c_src/Makefile.in 2008-10-25 22:20:59.000000000 +0200
+@@ -80,7 +80,7 @@ ifeq ($(HOST_OS),)
HOST_OS := $(shell $(ERL_TOP)/erts/autoconf/config.guess)
endif
+ DYNAMIC_CRYPTO_LIB=@SSL_DYNAMIC_ONLY@
-LD_R_FLAG=@DED_LD_FLAG_RUNTIME_LIBRARY_PATH@
+LD_R_FLAG=
ifeq ($(strip $(LD_R_FLAG)),)
LD_R_OPT =
else
---- otp_src_R10B-8/lib/crypto/priv/Makefile.rpath 2005-10-29 22:52:01.000000000 +0200
-+++ otp_src_R10B-8/lib/crypto/priv/Makefile 2005-10-29 22:52:32.000000000 +0200
-@@ -60,7 +60,7 @@
+diff -up otp_src_R12B-4/lib/crypto/priv/Makefile.rpath otp_src_R12B-4/lib/crypto/priv/Makefile
+--- otp_src_R12B-4/lib/crypto/priv/Makefile.rpath 2008-10-25 22:21:11.000000000 +0200
++++ otp_src_R12B-4/lib/crypto/priv/Makefile 2008-10-25 22:21:33.000000000 +0200
+@@ -60,7 +60,7 @@ OBJS = $(OBJDIR)/crypto_drv.o
# ----------------------------------------------------
$(SO_DRIVER): $(OBJS)
@@ -20,9 +22,10 @@
-o $@ $^ -lcrypto
$(DLL_DRIVER): $(OBJS)
---- otp_src_R10B-8/lib/ssl/c_src/Makefile.in.rpath 2005-10-29 22:53:15.000000000 +0200
-+++ otp_src_R10B-8/lib/ssl/c_src/Makefile.in 2005-10-29 22:53:50.000000000 +0200
-@@ -104,9 +104,9 @@
+diff -up otp_src_R12B-4/lib/ssl/c_src/Makefile.in.rpath otp_src_R12B-4/lib/ssl/c_src/Makefile.in
+--- otp_src_R12B-4/lib/ssl/c_src/Makefile.in.rpath 2008-10-25 22:21:51.000000000 +0200
++++ otp_src_R12B-4/lib/ssl/c_src/Makefile.in 2008-10-25 22:22:21.000000000 +0200
+@@ -111,9 +111,9 @@ ifeq ($(findstring darwin,$(TARGET)),dar
CC_R_FLAG =
else
ifeq ($(findstring osf,$(TARGET)),osf) # osf1: -Wl,-rpath,
@@ -33,4 +36,4 @@
+CC_R_FLAG =
endif
endif
-
+ endif
diff --git a/otp-sslrpath.patch b/otp-sslrpath.patch
index 751ae2a..83ba120 100644
--- a/otp-sslrpath.patch
+++ b/otp-sslrpath.patch
@@ -1,8 +1,7 @@
-diff -up otp_src_R12B-3/lib/ssl/c_src/Makefile.in.sslrpath otp_src_R12B-3/lib/ssl/c_src/Makefile.in
---- otp_src_R12B-3/lib/ssl/c_src/Makefile.in.sslrpath 2008-09-05 22:01:58.000000000 +0200
-+++ otp_src_R12B-3/lib/ssl/c_src/Makefile.in 2008-09-05 22:02:34.000000000 +0200
-@@ -102,7 +102,7 @@ else
- SSL_MAKEFILE =
+--- 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
endif
-CC_R_FLAG=@CFLAG_RUNTIME_LIBRARY_PATH@
diff --git a/sources b/sources
index c7aff56..7e171fb 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-8865d406c256abbff63eaff62d2216aa otp_doc_html_R12B-3.tar.gz
-13098954c9d5804bb8394fe7badb3d0d otp_doc_man_R12B-3.tar.gz
-c2e7f0ad54b8fadebde2d94106608d97 otp_src_R12B-3.tar.gz
+ae81edda4a17506af7a9d73abca033b2 otp_src_R12B-4.tar.gz
+f633cd418d8260af7a11c998aa88072b otp_doc_html_R12B-4.tar.gz
+ef8f96d1721a2345cc87b208cde3de06 otp_doc_man_R12B-4.tar.gz