Compare commits
No commits in common. "c8s" and "c9s" have entirely different histories.
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,2 +1,7 @@
|
|||||||
SOURCES/libemf-1.0.9.tar.gz
|
libEMF-1.0.4.tar.gz
|
||||||
|
/libEMF-1.0.6.tar.gz
|
||||||
|
/libEMF-1.0.7.tar.gz
|
||||||
|
/libemf-1.0.8.tar.gz
|
||||||
/libemf-1.0.9.tar.gz
|
/libemf-1.0.9.tar.gz
|
||||||
|
/libemf-1.0.12.tar.gz
|
||||||
|
/libemf-1.0.13.tar.gz
|
||||||
|
1
.libEMF.metadata
Normal file
1
.libEMF.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
a170d4b23c477203999a2bd5a440de4bbcb11f0c libemf-1.0.13.tar.gz
|
@ -1,6 +1,6 @@
|
|||||||
--- !Policy
|
--- !Policy
|
||||||
product_versions:
|
product_versions:
|
||||||
- rhel-8
|
- rhel-9
|
||||||
decision_context: osci_compose_gate
|
decision_context: osci_compose_gate
|
||||||
rules:
|
rules:
|
||||||
- !PassingTestCaseRule {test_case_name: manual.sst_desktop.libEMF.sanity}
|
- !PassingTestCaseRule {test_case_name: manual.sst_desktop.libEMF.sanity}
|
||||||
|
@ -1,92 +0,0 @@
|
|||||||
--- libEMF-1.0.7/include/libEMF/wine/winnt.h.orig 2014-05-11 09:42:07.438982485 +0100
|
|
||||||
+++ libEMF-1.0.7/include/libEMF/wine/winnt.h 2014-05-11 09:42:42.104573014 +0100
|
|
||||||
@@ -45,6 +45,10 @@
|
|
||||||
# undef WORDS_BIGENDIAN
|
|
||||||
# undef BITFIELDS_BIGENDIAN
|
|
||||||
# undef ALLOW_UNALIGNED_ACCESS
|
|
||||||
+#elif defined(__aarch64__)
|
|
||||||
+# undef WORDS_BIGENDIAN
|
|
||||||
+# undef BITFIELDS_BIGENDIAN
|
|
||||||
+# undef ALLOW_UNALIGNED_ACCESS
|
|
||||||
#elif defined(__sparc__)
|
|
||||||
# define WORDS_BIGENDIAN
|
|
||||||
# define BITFIELDS_BIGENDIAN
|
|
||||||
@@ -1425,6 +1429,78 @@
|
|
||||||
|
|
||||||
#endif /* __arm__ */
|
|
||||||
|
|
||||||
+#ifdef __aarch64__
|
|
||||||
+/*
|
|
||||||
+ * FIXME:
|
|
||||||
+ *
|
|
||||||
+ * There is not yet an official CONTEXT structure defined for the AArch64
|
|
||||||
+ * architecture, so I just made one up.
|
|
||||||
+ *
|
|
||||||
+ */
|
|
||||||
+
|
|
||||||
+/* These definitions are taken directly from wine
|
|
||||||
+ * http://source.winehq.org/git/wine.git/blob_plain/HEAD:/include/winnt.h */
|
|
||||||
+
|
|
||||||
+#define CONTEXT_ARM64 0x2000000
|
|
||||||
+#define CONTEXT_CONTROL (CONTEXT_ARM64 | 0x00000001)
|
|
||||||
+#define CONTEXT_INTEGER (CONTEXT_ARM64 | 0x00000002)
|
|
||||||
+#define CONTEXT_FLOATING_POINT (CONTEXT_ARM64 | 0x00000004)
|
|
||||||
+#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM64 | 0x00000008)
|
|
||||||
+
|
|
||||||
+#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
|
|
||||||
+
|
|
||||||
+#define EXCEPTION_READ_FAULT 0
|
|
||||||
+#define EXCEPTION_WRITE_FAULT 1
|
|
||||||
+#define EXCEPTION_EXECUTE_FAULT 8
|
|
||||||
+
|
|
||||||
+typedef struct _CONTEXT {
|
|
||||||
+ ULONG ContextFlags;
|
|
||||||
+
|
|
||||||
+ /* This section is specified/returned if the ContextFlags word contains
|
|
||||||
+ the flag CONTEXT_INTEGER. */
|
|
||||||
+ ULONGLONG X0;
|
|
||||||
+ ULONGLONG X1;
|
|
||||||
+ ULONGLONG X2;
|
|
||||||
+ ULONGLONG X3;
|
|
||||||
+ ULONGLONG X4;
|
|
||||||
+ ULONGLONG X5;
|
|
||||||
+ ULONGLONG X6;
|
|
||||||
+ ULONGLONG X7;
|
|
||||||
+ ULONGLONG X8;
|
|
||||||
+ ULONGLONG X9;
|
|
||||||
+ ULONGLONG X10;
|
|
||||||
+ ULONGLONG X11;
|
|
||||||
+ ULONGLONG X12;
|
|
||||||
+ ULONGLONG X13;
|
|
||||||
+ ULONGLONG X14;
|
|
||||||
+ ULONGLONG X15;
|
|
||||||
+ ULONGLONG X16;
|
|
||||||
+ ULONGLONG X17;
|
|
||||||
+ ULONGLONG X18;
|
|
||||||
+ ULONGLONG X19;
|
|
||||||
+ ULONGLONG X20;
|
|
||||||
+ ULONGLONG X21;
|
|
||||||
+ ULONGLONG X22;
|
|
||||||
+ ULONGLONG X23;
|
|
||||||
+ ULONGLONG X24;
|
|
||||||
+ ULONGLONG X25;
|
|
||||||
+ ULONGLONG X26;
|
|
||||||
+ ULONGLONG X27;
|
|
||||||
+ ULONGLONG X28;
|
|
||||||
+ ULONGLONG X29;
|
|
||||||
+ ULONGLONG X30;
|
|
||||||
+
|
|
||||||
+ /* These are selected by CONTEXT_CONTROL */
|
|
||||||
+ ULONGLONG Sp;
|
|
||||||
+ ULONGLONG Pc;
|
|
||||||
+ ULONGLONG PState;
|
|
||||||
+
|
|
||||||
+ /* These are selected by CONTEXT_FLOATING_POINT */
|
|
||||||
+ /* FIXME */
|
|
||||||
+} CONTEXT;
|
|
||||||
+
|
|
||||||
+#endif /* __aarch64__ */
|
|
||||||
+
|
|
||||||
#if !defined(CONTEXT_FULL) && !defined(RC_INVOKED)
|
|
||||||
#error You need to define a CONTEXT for your CPU
|
|
||||||
#endif
|
|
44
libEMF.spec
44
libEMF.spec
@ -1,13 +1,13 @@
|
|||||||
Summary: A library for generating Enhanced Metafiles
|
Summary: A library for generating Enhanced Metafiles
|
||||||
Summary(pl): Biblioteka do generowania plików w formacie Enhanced Metafile
|
Summary(pl): Biblioteka do generowania plików w formacie Enhanced Metafile
|
||||||
Name: libEMF
|
Name: libEMF
|
||||||
Version: 1.0.9
|
Version: 1.0.13
|
||||||
Release: 5%{?dist}
|
Release: 5%{?dist}
|
||||||
License: LGPLv2+ and GPLv2+
|
License: LGPLv2+ and GPLv2+
|
||||||
URL: http://libemf.sourceforge.net/
|
URL: http://libemf.sourceforge.net/
|
||||||
Source0: https://downloads.sourceforge.net/project/libemf/libemf/%{version}/libemf-%{version}.tar.gz
|
Source0: https://downloads.sourceforge.net/project/libemf/libemf/%{version}/libemf-%{version}.tar.gz
|
||||||
Patch0: libEMF-aarch64.patch
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: libstdc++-devel
|
BuildRequires: make
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libEMF is a library for generating Enhanced Metafiles on systems which
|
libEMF is a library for generating Enhanced Metafiles on systems which
|
||||||
@ -37,7 +37,6 @@ Pliki nagłówkowe libEMF.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n libemf-%{version}
|
%setup -q -n libemf-%{version}
|
||||||
%patch0 -p1 -b .aarch64
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
@ -56,8 +55,7 @@ rm $RPM_BUILD_ROOT%{_libdir}/libEMF.la
|
|||||||
%check
|
%check
|
||||||
make check
|
make check
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%ldconfig_scriptlets
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING COPYING.LIB
|
%license COPYING COPYING.LIB
|
||||||
@ -71,6 +69,40 @@ make check
|
|||||||
%{_includedir}/libEMF
|
%{_includedir}/libEMF
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.13-5
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.13-4
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.13-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.13-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 21 2020 Dominik 'Rathann' Mierzejewski <rpm@greysector.net> 1.0.13-1
|
||||||
|
- update to 1.0.13 (#1846926)
|
||||||
|
- fixes CVE-2020-13999
|
||||||
|
|
||||||
|
* Fri May 01 2020 Dominik 'Rathann' Mierzejewski <rpm@greysector.net> 1.0.12-1
|
||||||
|
- update to 1.0.12 (#1827949)
|
||||||
|
- drop obsolete patch
|
||||||
|
- fixes CVE-2020-11863, CVE-2020-11864, CVE-2020-11865, CVE-2020-11866
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-5
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-5
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (libemf-1.0.9.tar.gz) = bc8fad35a5e21093c8fca070d5ad4ec4142a6d754dd506b9df1f6890c23e8cf67c3ae417350a18afc0d3f44de0d0bbe21d99e51ec69f3b42bdd3664990bf01e0
|
SHA512 (libemf-1.0.13.tar.gz) = 37fdc959d2269ad1ae97d49c4f75b914593b7b636024c035d96a5a47b4258b5b522cd1928a5b99392afcdfe54e46c7f2d4c157056f99c8c0d88d71c25813cc60
|
||||||
|
Loading…
Reference in New Issue
Block a user