]> git.pld-linux.org Git - packages/nodejs.git/blobdiff - nodejs.spec
noarch doc subpackage
[packages/nodejs.git] / nodejs.spec
index 8112d5ef946992a0047cc5726336be9024e23fa8..fd82da05c8769fe1a64961a7e0c6cd9b9219619f 100644 (file)
+#
+# Conditional build:
+%bcond_without system_v8       # system v8
+
+# NOTES:
+# - https://nodejs.org/en/download/releases/
+
 Summary:       Asynchronous JavaScript Engine
 Name:          nodejs
-Version:       0.4.12
-Release:       2
-License:       BSD
-Group:         Libraries
-URL:           http://nodejs.org/
-Source0:       http://nodejs.org/dist/node-v%{version}.tar.gz
-# Source0-md5: a6375eaa43db5356bf443e25b828ae16
-Patch0:                %{name}-ev-multiplicity.patch
-Patch1:                %{name}-soname.patch
+Version:       0.10.40
+Release:       0.1
+License:       BSD and MIT and Apache v2.0 and GPL v3
+Group:         Development/Languages
+Source0:       https://nodejs.org/dist/v%{version}/node-v%{version}.tar.gz
+# Source0-md5: f6ef20f327ecd6cb1586c41c7184290c
+Patch1:                %{name}-shared.patch
+# force node to use /usr/lib/node as the systemwide module directory
+Patch2:                %{name}-libpath.patch
+# use /usr/lib64/node as an arch-specific module dir when appropriate
+Patch3:                %{name}-lib64path.patch
+Patch4:                %{name}-use-system-certs.patch
+Patch5:                uv-fpic.patch
+# The invalid UTF8 fix has been reverted since this breaks v8 API, which cannot
+# be done in a stable distribution release.  This build of nodejs will behave as
+# if NODE_INVALID_UTF8 was set.  For more information on the implications, see:
+# http://blog.nodejs.org/2014/06/16/openssl-and-breaking-utf-8-change/
+Patch6:                %{name}-revert-utf8-v8.patch
+Patch7:                %{name}-revert-utf8-node.patch
+URL:           https://nodejs.org/
 BuildRequires: c-ares-devel
-BuildRequires: c-ares-devel >= 1.7.4
 BuildRequires: gcc >= 5:4.0
-BuildRequires: libeio-devel
-BuildRequires: libev-devel >= 4.0.0
+BuildRequires: http-parser-devel >= 2.0
 BuildRequires: libstdc++-devel
-BuildRequires: python
+BuildRequires: libuv-devel >= 0.10
+BuildRequires: openssl-devel
+BuildRequires: pkgconfig
+BuildRequires: python >= 1:2.5.2
+BuildRequires: python-jsmin
 BuildRequires: rpm >= 4.4.9-56
-BuildRequires: v8-devel >= 3.1.5
+BuildRequires: rpmbuild(macros) >= 1.219
+BuildRequires: sed >= 4.0
+%{?with_system_v8:BuildRequires:       v8-devel >= 3.15.11.10}
+BuildRequires: zlib-devel
+Requires:      ca-certificates
+Obsoletes:     nodejs-waf
 ExclusiveArch: %{ix86} %{x8664} arm
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define                sover   %(echo %{version} | cut -d. -f2)
+
 %description
-Node's goal is to provide an easy way to build scalable network
-programs. In the above example, the two second delay does not prevent
-the server from handling new requests. Node tells the operating system
-(through epoll, kqueue, /dev/poll, or select) that it should be
-notified when the 2 seconds are up or if a new connection is made --
-then it goes to sleep. If someone new connects, then it executes the
-callback, if the timeout expires, it executes the inner callback. Each
-connection is only a small heap allocation.
+Node.js is a platform built on Chrome's JavaScript runtime for easily
+building fast, scalable network applications. Node.js uses an
+event-driven, non-blocking I/O model that makes it lightweight and
+efficient, perfect for data-intensive real-time applications that run
+across distributed devices.
 
 %package devel
 Summary:       Development headers for nodejs
 Group:         Development/Libraries
 Requires:      %{name} = %{version}-%{release}
+Requires:      c-ares-devel
+Requires:      gcc
+Requires:      http-parser-devel
+Requires:      libstdc++-devel
+Requires:      libuv-devel
+Requires:      openssl-devel
+%{?with_system_v8:Requires:    v8-devel}
+Requires:      zlib-devel
 
 %description devel
 Development headers for nodejs.
 
+%package doc
+Summary:       Evented I/O for V8 JavaScript - documentation
+Group:         Documentation
+%if "%{_rpmversion}" >= "5"
+BuildArch:     noarch
+%endif
+
+%description doc
+Node.js is a server-side JavaScript environment that uses an
+asynchronous event-driven model. Node's goal is to provide an easy way
+to build scalable network programs.
+
+This package contains the documentation for nodejs.
+
 %prep
 %setup -q -n node-v%{version}
-%patch0 -p1
 %patch1 -p1
-
-%build
-# build library
-CFLAGS="%{rpmcflags}"
-CXXFLAGS="%{rpmcxxflags}"
-LDFLAGS="%{rpmcflags}"
-%if "%{pld_release}" == "ac"
-CC="%{__cc}4"
-CXX="%{__cxx}4"
+%if %{_lib} == "lib64"
+%patch3 -p1
 %else
-CC="%{__cc}"
-CXX="%{__cxx}"
+%patch2 -p1
 %endif
-export CFLAGS LDFLAGS CXXFLAGS CC CXX
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
+%patch7 -p1
 
-export PYTHONPATH=tools
-%{__python} tools/waf-light configure \
-       --shared-v8 \
+grep -r '#!.*env python' -l . | xargs %{__sed} -i -e '1 s,#!.*env python,#!%{__python},'
+
+rm -r deps/npm
+rm -r deps/cares
+rm -r deps/http_parser
+rm -r deps/openssl
+rm -r deps/uv
+%{?with_system_v8:rm -r deps/v8}
+rm -r deps/zlib
+
+%build
+# CC used only to detect if CC is clang, not used for compiling
+CC="%{__cc}" \
+CXX="%{__cxx}" \
+GYP_DEFINES="soname_version=%{sover}" \
+./configure \
+       %{?with_system_v8:--shared-v8} \
+       --shared-zlib \
+       --shared-openssl \
        --shared-cares \
-       --shared-libev \
-       --libdir=%{_libdir} \
+       --shared-libuv \
+       --shared-http-parser \
+       --without-npm \
+       --without-dtrace \
        --prefix=%{_prefix}
 
-%{__python} tools/waf-light build \
-       --product-type='cshlib'
-
-$CC -o build/default/node -Isrc src/node_main.cc -lnode -Lbuild/default
+# add LFS defines from libuv (RHBZ#892601)
+# CXXFLAGS must be exported, as it is needed for make, not gyp
+CXXFLAGS="%{rpmcxxflags} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fPIC" \
+LDFLAGS="%{rpmldflags}" \
+%{__make} -C out V=1 BUILDTYPE=Release
 
 %install
 rm -rf $RPM_BUILD_ROOT
-export PYTHONPATH=tools
-%{__python} tools/waf-light install \
-       --product-type=cshlib \
-       --destdir=$RPM_BUILD_ROOT
+%{__make} justinstall \
+       DESTDIR=$RPM_BUILD_ROOT \
+       LIBDIR=%{_lib}
+
+lib=$(basename $RPM_BUILD_ROOT%{_libdir}/libnode.so.*.*.*)
+ln -s $lib $RPM_BUILD_ROOT%{_libdir}/libnode.so.10
+ln -s $lib $RPM_BUILD_ROOT%{_libdir}/libnode.so
+
+echo '.so man1/node.1' > $RPM_BUILD_ROOT%{_mandir}/man1/nodejs.1
+
+install -d $RPM_BUILD_ROOT%{_includedir}/node
+cp -p src/*.h $RPM_BUILD_ROOT%{_includedir}/node
+
+# install for node-gyp
+install -d $RPM_BUILD_ROOT%{_usrsrc}/%{name}
+cp -p common.gypi $RPM_BUILD_ROOT%{_usrsrc}/%{name}
+ln -s %{_includedir}/node $RPM_BUILD_ROOT%{_usrsrc}/%{name}/src
+
+# for compat of fedora derivered scripts (shebangs)
+ln -s node $RPM_BUILD_ROOT%{_bindir}/nodejs
 
-install -p build/default/node $RPM_BUILD_ROOT%{_bindir}/node
+# globally installed node modules (noarch)
+install -d $RPM_BUILD_ROOT%{_prefix}/lib/node_modules
 
-chmod a+x $RPM_BUILD_ROOT%{_libdir}/*.so*
+# default searchpaths
+install -d $RPM_BUILD_ROOT{%{_libdir},%{_prefix}/lib}/node
+
+# create pkgconfig
+install -d $RPM_BUILD_ROOT%{_pkgconfigdir}
+cat <<'EOF' > $RPM_BUILD_ROOT%{_pkgconfigdir}/%{name}.pc
+version=%{version}
+prefix=%{_prefix}
+libdir=${prefix}/%{_lib}
+includedir=${prefix}/include/node
+
+Name: nodejs
+Description: Evented I/O for V8 JavaScript.
+Version: ${version}
+Cflags: -I${includedir}
+EOF
+
+# install documentation
+install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}
+cp -a doc/api/* $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}
+rm $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/*.markdown
+rm $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/*.json
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%post   -p /sbin/ldconfig
+%post  -p /sbin/ldconfig
 %postun -p /sbin/ldconfig
 
 %files
 %defattr(644,root,root,755)
-%doc AUTHORS ChangeLog LICENSE
+%doc README.md AUTHORS ChangeLog LICENSE
 %attr(755,root,root) %{_bindir}/node
+%attr(755,root,root) %{_bindir}/nodejs
 %attr(755,root,root) %{_libdir}/libnode.so.*.*.*
-%ghost %{_libdir}/libnode.so.4
+%ghost %{_libdir}/libnode.so.10
+%if "%{_lib}" != "lib"
 %dir %{_libdir}/node
+%endif
+%dir %{_prefix}/lib/node
+%dir %{_prefix}/lib/node_modules
 %{_mandir}/man1/node.1*
+%{_mandir}/man1/nodejs.1
 
 %files devel
 %defattr(644,root,root,755)
 %{_libdir}/libnode.so
 %{_includedir}/node
-%attr(755,root,root) %{_bindir}/node-waf
-%dir %{_libdir}/node/wafadmin
-%dir %{_libdir}/node/wafadmin/Tools
-%{_libdir}/node/wafadmin/*.py
-%{_libdir}/node/wafadmin/Tools/*.py
 %{_pkgconfigdir}/nodejs.pc
+%{_usrsrc}/%{name}
+
+%files doc
+%defattr(644,root,root,755)
+%doc %{_docdir}/%{name}-doc-%{version}
This page took 0.1056 seconds and 4 git commands to generate.