Compare commits
No commits in common. "c8" and "c9s" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
||||
SOURCES/glw-b060a0782f09ebe4f60c8fd4564c11ba043c331f.tar.bz2
|
||||
MesaLib-6.5.1.tar.bz2
|
||||
/glw-8.0.0.tar.bz2
|
||||
/glw-b060a0782f09ebe4f60c8fd4564c11ba043c331f.tar.bz2
|
||||
|
||||
@ -1 +0,0 @@
|
||||
95d575384ddc0502daeac329ebf574128ed2afeb SOURCES/glw-b060a0782f09ebe4f60c8fd4564c11ba043c331f.tar.bz2
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||
12
mesa-6.5-build-config.patch
Normal file
12
mesa-6.5-build-config.patch
Normal file
@ -0,0 +1,12 @@
|
||||
--- ./configs/linux.build-config 2006-04-03 18:13:19.000000000 -0400
|
||||
+++ ./configs/linux 2006-04-03 18:13:47.000000000 -0400
|
||||
@@ -8,6 +8,9 @@
|
||||
CC = gcc
|
||||
CXX = g++
|
||||
|
||||
+MKDEP = gcc -M -MG
|
||||
+MKDEP_OPTIONS = -MF depend
|
||||
+
|
||||
OPT_FLAGS = -O3 -g
|
||||
PIC_FLAGS = -fPIC
|
||||
|
||||
26
mesa-6.5.1-libGLw.patch
Normal file
26
mesa-6.5.1-libGLw.patch
Normal file
@ -0,0 +1,26 @@
|
||||
--- Mesa-6.5.1/configs/default.motif 2006-09-28 13:04:05.000000000 +0200
|
||||
+++ Mesa-6.5.1/configs/default 2006-09-28 13:04:37.000000000 +0200
|
||||
@@ -55,12 +55,12 @@
|
||||
|
||||
# GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
|
||||
# order to build the Motif widget too)
|
||||
-GLW_SOURCES = GLwDrawA.c
|
||||
+GLW_SOURCES = GLwDrawA.c GLwMDrawA.c
|
||||
|
||||
|
||||
# Directories to build
|
||||
LIB_DIR = lib
|
||||
-SRC_DIRS = mesa glu glut/glx glw
|
||||
+SRC_DIRS = glw
|
||||
GLU_DIRS = sgi
|
||||
DRIVER_DIRS = x11 osmesa
|
||||
# Which subdirs under $(TOP)/progs/ to enter:
|
||||
@@ -73,7 +73,7 @@
|
||||
OSMESA_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
|
||||
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
|
||||
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lm
|
||||
-GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lXt -lX11
|
||||
+GLW_LIB_DEPS = -l$(GL_LIB) -lXt -lX11
|
||||
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
|
||||
|
||||
|
||||
@ -1,14 +1,16 @@
|
||||
Summary: Xt / Motif OpenGL widgets
|
||||
Name: mesa-libGLw
|
||||
Version: 8.0.0
|
||||
Release: 18%{?dist}
|
||||
Release: 23%{?dist}
|
||||
License: MIT
|
||||
Group: System Environment/Libraries
|
||||
URL: http://www.mesa3d.org
|
||||
# archived project
|
||||
%global gitver b060a0782f09ebe4f60c8fd4564c11ba043c331f
|
||||
Source0: https://gitlab.freedesktop.org/mesa/glw/-/archive/%{gitver}/glw-%{gitver}.tar.bz2
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: libGL-devel
|
||||
%if 0%{?rhel}
|
||||
@ -16,7 +18,6 @@ BuildRequires: openmotif-devel
|
||||
%else
|
||||
BuildRequires: motif-devel
|
||||
%endif
|
||||
BuildRequires: autoconf automake libtool
|
||||
|
||||
Provides: libGLw
|
||||
|
||||
@ -25,7 +26,6 @@ Mesa libGLw runtime library.
|
||||
|
||||
%package devel
|
||||
Summary: Mesa libGLw development package
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: libGL-devel
|
||||
%if 0%{?rhel}
|
||||
@ -70,9 +70,34 @@ find $RPM_BUILD_ROOT -name \*.la | xargs rm -f
|
||||
%{_includedir}/GL/GLwMDrawAP.h
|
||||
|
||||
%changelog
|
||||
* Tue Nov 19 2019 Adam Jackson <ajax@redhat.com> - 8.0.0-18
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 8.0.0-23
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 8.0.0-22
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon May 20 2019 Adam Jackson <ajax@redhat.com> - 8.0.0-17
|
||||
- Update to git snapshot of the archived state
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jul 05 2018 Adam Jackson <ajax@redhat.com> - 8.0.0-14
|
||||
- Drop useless %%defattr
|
||||
|
||||
Loading…
Reference in New Issue
Block a user