forked from pool/nodejs-common
- Initial release.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-common?expand=0&rev=1
This commit is contained in:
commit
23aa121eda
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
7
node
Normal file
7
node
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
PROG=$(basename $0)
|
||||
PROG_VERSION=${NODE_VERSION:--default}
|
||||
|
||||
exec ${PROG}${PROG_VERSION} "$@"
|
||||
|
4
nodejs-common.changes
Normal file
4
nodejs-common.changes
Normal file
@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 7 13:09:29 UTC 2017 - adam.majer@suse.de
|
||||
|
||||
- Initial release.
|
51
nodejs-common.spec
Normal file
51
nodejs-common.spec
Normal file
@ -0,0 +1,51 @@
|
||||
#
|
||||
# spec file for package nodejs-common
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
Name: nodejs-common
|
||||
Version: 1.0
|
||||
Release: 0
|
||||
License: GPL-3.0+
|
||||
Summary: Common files for NodeJS ecosystem
|
||||
Url: https://github.com/AdamMajer/nodejs-packaging
|
||||
Group: Development/Languages/NodeJS
|
||||
Source1: node
|
||||
Requires: nodejs
|
||||
Conflicts: nodejs4 < 4.8.4
|
||||
Conflicts: nodejs6 < 6.11.1
|
||||
Conflicts: nodejs7 < 7.10.1
|
||||
Conflicts: nodejs8 < 8.1.4
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
Common NodeJS files that allow recursive invocation of Node executable
|
||||
while retaining the same codestream version.
|
||||
|
||||
%prep
|
||||
%build
|
||||
%install
|
||||
install -D -m 0755 %{S:1} %{buildroot}%{_bindir}/node
|
||||
ln -s node %{buildroot}%{_bindir}/npm
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/node
|
||||
%{_bindir}/npm
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user