From a16e88c25448a99a5e229caae7700f4bc20eddd4 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 05:17:30 +0000 Subject: [PATCH 1/4] Initialize branch F-12 for libXrender --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From b9044a1d50f5065555b63ac752f5f93cbbedf9ef Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Oct 2009 18:31:36 +0000 Subject: [PATCH 2/4] - libXrender 0.9.5 --- libXrender.spec | 21 +++++++++------------ sources | 2 +- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/libXrender.spec b/libXrender.spec index 482dd60..e1eee13 100644 --- a/libXrender.spec +++ b/libXrender.spec @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrender runtime library Name: libXrender -Version: 0.9.4 -Release: 7%{?dist} +Version: 0.9.5 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -30,20 +30,16 @@ X.Org X11 libXrender development package %prep %setup -q -# Disable static library creation by default. -%define with_static 0 - %build -%configure \ -%if ! %{with_static} - --disable-static -%endif +%configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# undo this, we'll add it ourselves in %%doc +rm $RPM_BUILD_ROOT/%{_docdir}/*/libXrender.txt # We intentionally don't ship *.la files rm -f $RPM_BUILD_ROOT%{_libdir}/*.la @@ -62,14 +58,15 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) +%doc doc/libXrender.txt %{_includedir}/X11/extensions/Xrender.h -%if %{with_static} -%{_libdir}/libXrender.a -%endif %{_libdir}/libXrender.so %{_libdir}/pkgconfig/xrender.pc %changelog +* Tue Oct 06 2009 Adam Jackson 0.9.5-1 +- libXrender 0.9.5 + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild diff --git a/sources b/sources index 5ac2438..0b02858 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dc266e850c51368f964e0d67bf5fb5e6 libXrender-0.9.4.tar.bz2 +276dd9e85daf0680616cd9f132b354c9 libXrender-0.9.5.tar.bz2 From ad64686152d3de3c5de2d404536b8f99d47dff86 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:56:16 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b1e40a..0445f7b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := libXrender SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 254c0eb03fbe50c59e7b3c2203f5515bae423094 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 17:40:25 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 0445f7b..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libXrender -# $Id$ -NAME := libXrender -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attempt a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12