Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
b0a60bbb05
!17 upstream to 1.3.4
From: @vicoloa 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2023-12-14 01:33:44 +00:00
Vicoloa
f6baf867e0 upstream to 1.3.4 2023-12-11 17:39:43 +08:00
openeuler-ci-bot
18c70d393a
!16 upgrade to version 1.3.3
From: @weigangli 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2023-10-07 07:12:12 +00:00
leeffo
4ce9125847 upgrade to version 1.3.3 2023-09-21 15:06:39 +08:00
openeuler-ci-bot
7eeb4d3ab8
!11 upstream to 1.3.2
From: @leeffo 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2023-02-23 02:15:27 +00:00
liweiganga
854225a7fa upstream to 1.3.2
fix CVE-2022-44789
2023-02-21 16:19:38 +08:00
openeuler-ci-bot
c486f7db63
!6 fix CVE-2022-30974 CVE-2022-30975
From: @leeffo 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2022-09-27 02:48:10 +00:00
leeffo
00909060ae fix CVE-2022-30974 CVE-2022-30975 2022-09-27 10:41:35 +08:00
openeuler-ci-bot
141425489f
!2 update to upstream version 1.2.0 fix CVE-2016-10141、CVE-2016-7504、CVE-2016-9136、CVE-2017-5628、CVE-2016-9017、CVE-2016-7506、CVE-2017-5627、CVE-2016-9108、CVE-2016-9294
From: @leeffo 
Reviewed-by: @weidongkl 
Signed-off-by: @weidongkl
2022-09-26 06:07:44 +00:00
leeffo
09e862c523 update to upstream version 1.2.0
fix CVE-2016-10141、CVE-2016-7504、CVE-2016-9136、CVE-2017-5628、CVE-2016-9017、CVE-2016-7506、CVE-2017-5627、CVE-2016-9108、CVE-2016-9294
2022-09-26 13:42:35 +08:00
3 changed files with 29 additions and 6 deletions

Binary file not shown.

BIN
mujs-1.3.4.tar.gz Normal file

Binary file not shown.

View File

@ -1,13 +1,15 @@
Name: mujs
Version: 1.0.9
Version: 1.3.4
Release: 1
Summary: An embeddable Javascript interpreter
License: ISC
URL: http://mujs.com/
# The mujs.com download page doesn't provide recent tarballs
# Github mirror of mujs.com repository provides releases from tags
Source0: https://github.com/ccxvii/mujs/archiv/%{version}.tar.gz
BuildRequires: coreutils
Source0: https://mujs.com/downloads/mujs-%{version}.tar.gz
#BuildRequires: coreutils
BuildRequires: gcc
BuildRequires: grep
BuildRequires: make
@ -19,6 +21,7 @@ other software to extend them with scripting capabilities.
%package devel
Summary: MuJS development files
Requires: %{name}%{?_isa} = %{version}-%{release}
Provides: %{name}-static = %{version}-%{release}
%description devel
@ -28,17 +31,18 @@ This package provides the MuJS static library.
%setup -q -n %{name}-%{version}
chmod a-x -v docs/*
%build
make debug %{?_smp_mflags} XCFLAGS="%{optflags} -fPIC" LDFLAGS="%{?__global_ldflags}"
%make_build release CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}"
%install
make install DESTDIR=%{buildroot} prefix="%{_prefix}" libdir="%{_libdir}" \
XCFLAGS="%{optflags} -fPIC" LDFLAGS="%{?__global_ldflags}"
%make_install prefix="%{_prefix}" libdir="%{_libdir}" CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}"
%files
%license COPYING
%doc AUTHORS README docs
%{_bindir}/%{name}
%{_bindir}/%{name}-pp
%files devel
%license COPYING
@ -48,5 +52,24 @@ make install DESTDIR=%{buildroot} prefix="%{_prefix}" libdir="%{_libdir}" \
%{_libdir}/lib%{name}.a
%changelog
* Mon Dec 11 2023 Vicoloa <lvkun@uniontech.com> - 1.3.4-1
- upstream to 1.3.4
* Thu Sep 21 2023 leeffo <liweiganga@uniontech.com> - 1.3.3-1
- upstream to 1.3.3
- migrated to SPDX license
* Tue Feb 21 2023 liweiganga <liweiganga@uniontech.com> - 1.3.2-1
- upstream to 1.3.2
- fix CVE-2022-44789
* Tue Sep 27 2022 liweiganga <liweiganga@uniontech.com> - 1.2.0-2
- fix: fix CVE-2022-30974 CVE-2022-30974
* Mon Sep 26 2022 liweiganga <liweiganga@uniontech.com> - 1.2.0-1
- upstream release 1.2.0
- fix: fix CVE-2016-10141、CVE-2016-7504、CVE-2016-9136、CVE-2017-5628、CVE-2016-9017、\
CVE-2016-7506、CVE-2017-5627、CVE-2016-9108、CVE-2016-9294
* Thu May 13 2021 He Rengui <herengui@uniontech.com> - 1.0.9-1
- package init