From cb280ad8f1c3a4f83c876228688efa6164cfe8a8 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 24 Mar 2009 17:30:24 +0000 Subject: [PATCH 01/65] Setup of module libass --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fb71281 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: libass +# $Id$ +NAME := libass +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 +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept 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/sources b/sources new file mode 100644 index 0000000..e69de29 From c1396f3526ac423c5422354c42c25b06cd373a58 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Tue, 24 Mar 2009 17:52:39 +0000 Subject: [PATCH 02/65] Initial import (rhbz #491550). --- .cvsignore | 1 + import.log | 1 + libass.spec | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 81 insertions(+) create mode 100644 import.log create mode 100644 libass.spec diff --git a/.cvsignore b/.cvsignore index e69de29..b3f29f0 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libass-0.9.6.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..acdfa77 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +libass-0_9_6-2_fc10:HEAD:libass-0.9.6-2.fc10.src.rpm:1237917106 diff --git a/libass.spec b/libass.spec new file mode 100644 index 0000000..b4d80ca --- /dev/null +++ b/libass.spec @@ -0,0 +1,78 @@ +Name: libass +Version: 0.9.6 +Release: 2%{?dist} +Summary: Portable library for SSA/ASS subtitles rendering + +Group: System Environment/Libraries +License: GPLv2+ +URL: http://sourceforge.net/projects/libass +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: libpng-devel +BuildRequires: enca-devel +BuildRequires: fontconfig-devel + + +%description +Libass is a portable library for SSA/ASS subtitles rendering. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q + + +%build +%configure --disable-static +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc Changelog COPYING +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/* +%{_libdir}/*.so +%{_libdir}/pkgconfig/libass.pc + +%changelog +* Tue Mar 24 2008 Martin Sourada - 0.9.6-2 +- remove glibc-devel and freetype-devel BRs, they're already pulled in by the + rest + +* Sun Mar 22 2008 Martin Sourada - 0.9.6-1 +- update to newever version +- drop %%doc from -devel +- update source url to conform with fedora packaging guidelines + +* Sun Mar 22 2008 Martin Sourada - 0.9.5-1 +- Initial rpm package diff --git a/sources b/sources index e69de29..361badc 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +58d9fa08eedc27edae05b53288025370 libass-0.9.6.tar.bz2 From 80887413cedc42fb3bd7bb13eaeb4d9a08d80f5f Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 05:19:27 +0000 Subject: [PATCH 03/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index b4d80ca..77e3f77 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2008 Martin Sourada - 0.9.6-2 - remove glibc-devel and freetype-devel BRs, they're already pulled in by the rest From 715af73aa1e90eef4dae71a45d7dbd2c190facbb Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 31 Jul 2009 10:04:03 +0000 Subject: [PATCH 04/65] Upstream changed from sourceforge to code.google. Adviced version (by upstream) is git snapshot which is API incompatible with latest stable (0.9.6), so no rebuild for now. --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 77e3f77..9ef80ab 100644 --- a/libass.spec +++ b/libass.spec @@ -5,7 +5,7 @@ Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: GPLv2+ -URL: http://sourceforge.net/projects/libass +URL: http://code.google.com/p/libass/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Martin Sourada +- Upstream changed from sourceforge to code.google + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From c964ab08cbb0f66cec681a438a56323bc416ee99 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Mon, 10 Aug 2009 11:25:59 +0000 Subject: [PATCH 05/65] New release. API changes, soname bump, new upstream. --- .cvsignore | 2 +- libass.spec | 8 ++++---- sources | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index b3f29f0..f7e5be0 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libass-0.9.6.tar.bz2 +libass-0.9.7.tar.bz2 diff --git a/libass.spec b/libass.spec index 9ef80ab..ca158aa 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.9.6 -Release: 3%{?dist} +Version: 0.9.7 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -32,7 +32,6 @@ developing applications that use %{name}. %prep %setup -q - %build %configure --disable-static make %{?_smp_mflags} @@ -65,7 +64,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog -* Martin Sourada +* Mon Aug 10 2009 Martin Sourada - 0.9.7-1 +- New upstream release - Upstream changed from sourceforge to code.google * Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 diff --git a/sources b/sources index 361badc..edca5f2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -58d9fa08eedc27edae05b53288025370 libass-0.9.6.tar.bz2 +28b0de58dec54ca75c3195ddda46ee3d libass-0.9.7.tar.bz2 From a8a782f235681c5ad9a6b80f8ad3cbd056b457d7 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 05:17:47 +0000 Subject: [PATCH 06/65] Initialize branch F-12 for libass --- 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 b3d755cd02ed3dceff8107f2c40bb9577028b8d0 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 25 Oct 2009 19:36:20 +0000 Subject: [PATCH 07/65] New upstream release. --- .cvsignore | 2 +- libass.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index f7e5be0..8260ead 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libass-0.9.7.tar.bz2 +libass-0.9.8.tar.bz2 diff --git a/libass.spec b/libass.spec index ca158aa..12db8ae 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.9.7 +Version: 0.9.8 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering @@ -64,6 +64,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Sun Oct 25 2009 Martin Sourada - 0.9.8-1 +- New upstream release +- See http://repo.or.cz/w/libass.git?a=blob;f=Changelog for changes + * Mon Aug 10 2009 Martin Sourada - 0.9.7-1 - New upstream release - Upstream changed from sourceforge to code.google diff --git a/sources b/sources index edca5f2..8a3be04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -28b0de58dec54ca75c3195ddda46ee3d libass-0.9.7.tar.bz2 +e0b0c81f2e2651408e72b02473d35cde libass-0.9.8.tar.bz2 From 4735ac62276ae15645480759aeb516e73c5d6f59 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:50:50 +0000 Subject: [PATCH 08/65] 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 fb71281..601c9b0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := libass 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 b34f0d9bfb65ada85f66ce5a673a2a5587c0485e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:45:34 +0000 Subject: [PATCH 09/65] 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 fb71281..601c9b0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := libass 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 1e4104e5a2c69260dbfb6d7c7fcfc78c1db757c4 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 10 Jan 2010 21:02:22 +0000 Subject: [PATCH 10/65] fix source URL, sync f11/12 with devel --- libass.spec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/libass.spec b/libass.spec index ca158aa..1741d1f 100644 --- a/libass.spec +++ b/libass.spec @@ -1,12 +1,12 @@ Name: libass -Version: 0.9.7 -Release: 1%{?dist} +Version: 0.9.8 +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: GPLv2+ URL: http://code.google.com/p/libass/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -64,6 +64,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Sun Jan 10 2009 Martin Sourada - 0.9.8-2 +- Fix source URL + +* Sun Oct 25 2009 Martin Sourada - 0.9.8-1 +- New upstream release +- See http://repo.or.cz/w/libass.git?a=blob;f=Changelog for changes + * Mon Aug 10 2009 Martin Sourada - 0.9.7-1 - New upstream release - Upstream changed from sourceforge to code.google From ae4dfe7775ba77c25cd233e7c77e00bd02e1cb56 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 10 Jan 2010 21:02:22 +0000 Subject: [PATCH 11/65] fix source URL, sync f11/12 with devel --- libass.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index 12db8ae..1741d1f 100644 --- a/libass.spec +++ b/libass.spec @@ -1,12 +1,12 @@ Name: libass Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: GPLv2+ URL: http://code.google.com/p/libass/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Sun Jan 10 2009 Martin Sourada - 0.9.8-2 +- Fix source URL + * Sun Oct 25 2009 Martin Sourada - 0.9.8-1 - New upstream release - See http://repo.or.cz/w/libass.git?a=blob;f=Changelog for changes From 4f1ae5de363608349887b67edbeb533920fdd0ab Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 17 Feb 2010 01:49:53 +0000 Subject: [PATCH 12/65] Initialize branch F-13 for libass --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..baa94ef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-13 From 2fa7a0cdccebde20532d8f71fd10ef990eec5713 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 20:42:35 +0000 Subject: [PATCH 13/65] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 601c9b0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libass -# $Id$ -NAME := libass -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),) -# attept 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 baa94ef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-13 diff --git a/import.log b/import.log deleted file mode 100644 index acdfa77..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -libass-0_9_6-2_fc10:HEAD:libass-0.9.6-2.fc10.src.rpm:1237917106 From 31bcadcdfa9068fe6c4ec889d2437b305c1bd8b6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 20:42:36 +0000 Subject: [PATCH 14/65] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 601c9b0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libass -# $Id$ -NAME := libass -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),) -# attept 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 diff --git a/import.log b/import.log deleted file mode 100644 index acdfa77..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -libass-0_9_6-2_fc10:HEAD:libass-0.9.6-2.fc10.src.rpm:1237917106 From 834798a2391c006f681b1243977da37672abe943 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 20:42:38 +0000 Subject: [PATCH 15/65] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log 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 601c9b0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libass -# $Id$ -NAME := libass -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),) -# attept 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/import.log b/import.log deleted file mode 100644 index acdfa77..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -libass-0_9_6-2_fc10:HEAD:libass-0.9.6-2.fc10.src.rpm:1237917106 From ea834f5a8eb951cd7bfb6d84167647216f0cf8dd Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 30 Jul 2010 10:40:21 +0200 Subject: [PATCH 16/65] update sources and .gitignore, fix a typo in %changelog date. --- .gitignore | 2 +- libass.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f7e5be0..8260ead 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -libass-0.9.7.tar.bz2 +libass-0.9.8.tar.bz2 diff --git a/libass.spec b/libass.spec index 1741d1f..8bf2704 100644 --- a/libass.spec +++ b/libass.spec @@ -64,7 +64,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog -* Sun Jan 10 2009 Martin Sourada - 0.9.8-2 +* Sun Jan 10 2010 Martin Sourada - 0.9.8-2 - Fix source URL * Sun Oct 25 2009 Martin Sourada - 0.9.8-1 diff --git a/sources b/sources index edca5f2..8a3be04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -28b0de58dec54ca75c3195ddda46ee3d libass-0.9.7.tar.bz2 +e0b0c81f2e2651408e72b02473d35cde libass-0.9.8.tar.bz2 From cab4c4f591ca4939342915fbbc972a0524edefed Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 30 Jul 2010 11:03:05 +0200 Subject: [PATCH 17/65] update to 0.9.9. --- .gitignore | 1 + libass.spec | 14 ++++++++++++-- sources | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8260ead..40f5f5d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ libass-0.9.8.tar.bz2 +libass-0.9.9.tar.bz2 diff --git a/libass.spec b/libass.spec index 8bf2704..bee95bc 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.9.8 -Release: 2%{?dist} +Version: 0.9.9 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -64,6 +64,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Jul 30 2010 Martin Sourada - 0.9.9-1 +- Fixes rhbz #618733 +- New upstream release + - Parse numbers in a locale-independent way + - Disable script file size limit + - Match fonts against the full name ("name for humans") + - Reset clip mode after \iclip + - Improve VSFilter compatibility + - A couple of smaller fixes and cleanups + * Sun Jan 10 2010 Martin Sourada - 0.9.8-2 - Fix source URL diff --git a/sources b/sources index 8a3be04..2ebf56f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e0b0c81f2e2651408e72b02473d35cde libass-0.9.8.tar.bz2 +6f545089d838d524c4f3b12e8ef6ed38 libass-0.9.9.tar.bz2 From 3b0d3dd160970d35833c7aa28c3a2dcae79f90a2 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Mon, 13 Sep 2010 12:46:15 +0200 Subject: [PATCH 18/65] - Fixes rhbz #630432 - New upstream release - Various fixes - Performance improvements - Calculate drawing bounding box like VSFilter - Better PAR correction if text transforms are used - Improved fullname font matching - Add ass_flush_events API function - Basic support for @font vertical text layout --- .gitignore | 1 + libass.spec | 13 ++++++++++++- sources | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 40f5f5d..802297f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ libass-0.9.8.tar.bz2 libass-0.9.9.tar.bz2 +/libass-0.9.11.tar.bz2 diff --git a/libass.spec b/libass.spec index bee95bc..0d5ad77 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.9.9 +Version: 0.9.11 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering @@ -64,6 +64,17 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Mon Sep 13 2010 Martin Sourada - 0.9.11-1 +- Fixes rhbz #630432 +- New upstream release + - Various fixes + - Performance improvements + - Calculate drawing bounding box like VSFilter + - Better PAR correction if text transforms are used + - Improved fullname font matching + - Add ass_flush_events API function + - Basic support for @font vertical text layout + * Fri Jul 30 2010 Martin Sourada - 0.9.9-1 - Fixes rhbz #618733 - New upstream release diff --git a/sources b/sources index 2ebf56f..5f769d2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6f545089d838d524c4f3b12e8ef6ed38 libass-0.9.9.tar.bz2 +f9042884397002ba40aa89dc7d34f59f libass-0.9.11.tar.bz2 From c31ad4f12d3fe7e9423aa8f61e347408e73a3b10 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 29 Sep 2010 14:36:54 -0700 Subject: [PATCH 19/65] - Rebuilt for gcc bug 634757 --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 0d5ad77..1eac655 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.9.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Sep 29 2010 jkeating - 0.9.11-2 +- Rebuilt for gcc bug 634757 + * Mon Sep 13 2010 Martin Sourada - 0.9.11-1 - Fixes rhbz #630432 - New upstream release From bb4a9b9d956f055ad7277d889821ed697ba44d50 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 22:41:09 -0600 Subject: [PATCH 20/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 1eac655..f837b8e 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.9.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.9.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Wed Sep 29 2010 jkeating - 0.9.11-2 - Rebuilt for gcc bug 634757 From e03aa5b51d5337e40f766f7a627634025bc5bb49 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Mon, 6 Jun 2011 16:32:22 +0200 Subject: [PATCH 21/65] update to 0.9.12. --- .gitignore | 1 + libass.spec | 15 +++++++++++---- sources | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 802297f..6283be5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ libass-0.9.8.tar.bz2 libass-0.9.9.tar.bz2 /libass-0.9.11.tar.bz2 +/libass-0.9.12.tar.xz diff --git a/libass.spec b/libass.spec index f837b8e..800e5fc 100644 --- a/libass.spec +++ b/libass.spec @@ -1,12 +1,12 @@ Name: libass -Version: 0.9.11 -Release: 3%{?dist} +Version: 0.9.12 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries -License: GPLv2+ +License: ISC URL: http://code.google.com/p/libass/ -Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.bz2 +Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -64,6 +64,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Tue May 31 2011 Martin Sourada - 0.9.12-1 +- New upstrea release + - Licence changed to ISC + - Fixed word-wrapping + - Improved charmap fallback matching + - Various other improvements and fixes + * Mon Feb 07 2011 Fedora Release Engineering - 0.9.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/sources b/sources index 5f769d2..8c1225b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f9042884397002ba40aa89dc7d34f59f libass-0.9.11.tar.bz2 +fcef4b048ca2655a14073d692551cd1f libass-0.9.12.tar.xz From 3bca2d7398acf282728c441457f820653e9055aa Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 11 Nov 2011 23:17:10 +0100 Subject: [PATCH 22/65] update to 0.10.0 --- libass.spec | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index 800e5fc..b8e0b75 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.9.12 +Version: 0.10.0 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering @@ -13,6 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libpng-devel BuildRequires: enca-devel BuildRequires: fontconfig-devel +BuildRequires: fribidi-devel %description @@ -64,8 +65,15 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Nov 11 2011 Martin Sourada - 0.10.0-1 +- New upstream release + - various improvements and fixes +- BuildRequires: fribidi-devel (bidirectional text suport) +- Fixes some wierd memory allocation related crash with freetype 2.4.6 + - rhbz 753017, rhbz 753065 + * Tue May 31 2011 Martin Sourada - 0.9.12-1 -- New upstrea release +- New upstream release - Licence changed to ISC - Fixed word-wrapping - Improved charmap fallback matching From 2f8a8e8001642016d0e391d018370dd3fb934efd Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 11 Nov 2011 23:27:28 +0100 Subject: [PATCH 23/65] forgot to update sources. --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6283be5..941f27c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ libass-0.9.8.tar.bz2 libass-0.9.9.tar.bz2 /libass-0.9.11.tar.bz2 /libass-0.9.12.tar.xz +/libass-0.10.0.tar.xz diff --git a/sources b/sources index 8c1225b..f4701a8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fcef4b048ca2655a14073d692551cd1f libass-0.9.12.tar.xz +1855bddc4c167f96968dddeeda0eb45c libass-0.10.0.tar.xz From 7f21d241e1848a47b14dd0615494d42b1909697a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 01:22:46 -0600 Subject: [PATCH 24/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index b8e0b75..d3257d8 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Nov 11 2011 Martin Sourada - 0.10.0-1 - New upstream release - various improvements and fixes From 9a26d89ff5cf6a20a4ee2e207b3e9b2e39213d21 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 14:15:59 -0500 Subject: [PATCH 25/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index d3257d8..d60c503 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 1e90fd9ea77ad22c5a5a548cf94c10fee3c775b0 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Wed, 17 Oct 2012 10:26:13 +0200 Subject: [PATCH 26/65] Update to latest upstream. Build with harfbuzz on F18 and newer. --- .gitignore | 1 + libass.spec | 16 ++++++++++++++-- sources | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 941f27c..8636890 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ libass-0.9.9.tar.bz2 /libass-0.9.11.tar.bz2 /libass-0.9.12.tar.xz /libass-0.10.0.tar.xz +/libass-0.10.1.tar.xz diff --git a/libass.spec b/libass.spec index d60c503..d87380a 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.10.0 -Release: 3%{?dist} +Version: 0.10.1 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -14,6 +14,12 @@ BuildRequires: libpng-devel BuildRequires: enca-devel BuildRequires: fontconfig-devel BuildRequires: fribidi-devel +%if 0%{?fedora} >= 18 +# The oldest required version harfbuzz-ng 0.7.0, fedora 17 and bellow have +# harfbuff 0.6.x. +# For advanced opentype shaping. +BuildRequires: hrafbuzz-devel >= 0.7.0 +%endif %description @@ -65,6 +71,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Oct 17 2012 Martin Sourada - 0.10.1-1 +- New upstream release + - various improvements and fixes + - improved compatibility with vsfilter +- Build with harfbuzz from F18 onward for advanced opentype shaping + * Thu Jul 19 2012 Fedora Release Engineering - 0.10.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index f4701a8..b6448f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1855bddc4c167f96968dddeeda0eb45c libass-0.10.0.tar.xz +0f54b1f3a24fa897ebbbcc5bc744b32a libass-0.10.1.tar.xz From 853923bfbb01929ad6372753c8fdc42b6f7b4ba2 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Wed, 17 Oct 2012 10:43:01 +0200 Subject: [PATCH 27/65] Fix a typo. --- libass.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index d87380a..747da6a 100644 --- a/libass.spec +++ b/libass.spec @@ -18,7 +18,7 @@ BuildRequires: fribidi-devel # The oldest required version harfbuzz-ng 0.7.0, fedora 17 and bellow have # harfbuff 0.6.x. # For advanced opentype shaping. -BuildRequires: hrafbuzz-devel >= 0.7.0 +BuildRequires: harfbuzz-devel >= 0.7.0 %endif From 7975fd7345e711a8977f8cf2099f7af3fc834248 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Wed, 17 Oct 2012 13:25:07 +0200 Subject: [PATCH 28/65] Fix the minimal required version of harfbuzz. It's 0.9.5, not 0.7.0. --- libass.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libass.spec b/libass.spec index 747da6a..875f64b 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -15,10 +15,10 @@ BuildRequires: enca-devel BuildRequires: fontconfig-devel BuildRequires: fribidi-devel %if 0%{?fedora} >= 18 -# The oldest required version harfbuzz-ng 0.7.0, fedora 17 and bellow have +# The oldest required version harfbuzz-ng 0.9.5, fedora 17 and bellow have # harfbuff 0.6.x. # For advanced opentype shaping. -BuildRequires: harfbuzz-devel >= 0.7.0 +BuildRequires: harfbuzz-devel >= 0.9.5 %endif @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Oct 17 2012 Martin Sourada - 0.10.1-2 +- Fix a mistake in minimal required version of harfbuzz + * Wed Oct 17 2012 Martin Sourada - 0.10.1-1 - New upstream release - various improvements and fixes From e15fe83ac96f2b23e59a92a8fe6480595cf229bf Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 22:02:24 -0600 Subject: [PATCH 29/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 875f64b..db2e502 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.10.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Oct 17 2012 Martin Sourada - 0.10.1-2 - Fix a mistake in minimal required version of harfbuzz From dfef0ab1f8a8aed6042f02b4ff6a5c0b1c3b0ffe Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 23:50:25 -0500 Subject: [PATCH 30/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index db2e502..531a5f6 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.10.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.10.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From ef88030f2a0f63c09018887b25f6a85834b440a8 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 19 Mar 2014 08:29:51 +0000 Subject: [PATCH 31/65] 0.10.2, Run make check --- .gitignore | 7 +------ libass.spec | 25 +++++++++---------------- sources | 2 +- 3 files changed, 11 insertions(+), 23 deletions(-) diff --git a/.gitignore b/.gitignore index 8636890..bf5e43e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1 @@ -libass-0.9.8.tar.bz2 -libass-0.9.9.tar.bz2 -/libass-0.9.11.tar.bz2 -/libass-0.9.12.tar.xz -/libass-0.10.0.tar.xz -/libass-0.10.1.tar.xz +/libass-0.*.tar.xz diff --git a/libass.spec b/libass.spec index 531a5f6..0f7d58c 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.10.1 -Release: 4%{?dist} +Version: 0.10.2 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -8,19 +8,11 @@ License: ISC URL: http://code.google.com/p/libass/ Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.xz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: libpng-devel BuildRequires: enca-devel BuildRequires: fontconfig-devel BuildRequires: fribidi-devel -%if 0%{?fedora} >= 18 -# The oldest required version harfbuzz-ng 0.9.5, fedora 17 and bellow have -# harfbuff 0.6.x. -# For advanced opentype shaping. BuildRequires: harfbuzz-devel >= 0.9.5 -%endif - +BuildRequires: libpng-devel %description Libass is a portable library for SSA/ASS subtitles rendering. @@ -45,13 +37,12 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -%clean -rm -rf $RPM_BUILD_ROOT +%check +make check %post -p /sbin/ldconfig @@ -60,17 +51,19 @@ rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root,-) %doc Changelog COPYING %{_libdir}/*.so.* %files devel -%defattr(-,root,root,-) %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Mar 19 2014 Peter Robinson 0.10.2-1 +- Update to 0.10.2 +- Run make check + * Sat Aug 03 2013 Fedora Release Engineering - 0.10.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild diff --git a/sources b/sources index b6448f0..62110e1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0f54b1f3a24fa897ebbbcc5bc744b32a libass-0.10.1.tar.xz +ce672ed5629c9708b3401b976f516744 libass-0.10.2.tar.xz From 05d5dab678b2eb9daa6f4fc8eede3f7938a547af Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 21:38:45 -0500 Subject: [PATCH 32/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 0f7d58c..5e5f36e 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.10.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Wed Mar 19 2014 Peter Robinson 0.10.2-1 - Update to 0.10.2 - Run make check From 3e898e73c27714adba51ea30d2a2a1869a6ef346 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 20 Jul 2014 20:14:23 +0200 Subject: [PATCH 33/65] Fix some incorrect changelog dates. --- libass.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libass.spec b/libass.spec index 5e5f36e..a2849b6 100644 --- a/libass.spec +++ b/libass.spec @@ -88,7 +88,7 @@ make check * Fri Jan 13 2012 Fedora Release Engineering - 0.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild -* Wed Nov 11 2011 Martin Sourada - 0.10.0-1 +* Fri Nov 11 2011 Martin Sourada - 0.10.0-1 - New upstream release - various improvements and fixes - BuildRequires: fribidi-devel (bidirectional text suport) @@ -143,14 +143,14 @@ make check * Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Tue Mar 24 2008 Martin Sourada - 0.9.6-2 +* Tue Mar 24 2009 Martin Sourada - 0.9.6-2 - remove glibc-devel and freetype-devel BRs, they're already pulled in by the rest -* Sun Mar 22 2008 Martin Sourada - 0.9.6-1 +* Sun Mar 22 2009 Martin Sourada - 0.9.6-1 - update to newever version - drop %%doc from -devel - update source url to conform with fedora packaging guidelines -* Sun Mar 22 2008 Martin Sourada - 0.9.5-1 +* Sun Mar 22 2009 Martin Sourada - 0.9.5-1 - Initial rpm package From 28739d5231494f6bfa2533a467121fbfab926259 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 02:20:13 +0000 Subject: [PATCH 34/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index a2849b6..2b53ce6 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.10.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.10.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.10.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 27b1bf0a4e10d1669f83e530d0b9fab5a372b96f Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Thu, 6 Nov 2014 13:13:15 +0100 Subject: [PATCH 35/65] Update to 0.12.0 --- libass.spec | 12 ++++++++---- sources | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/libass.spec b/libass.spec index 2b53ce6..2e880a8 100644 --- a/libass.spec +++ b/libass.spec @@ -1,12 +1,12 @@ Name: libass -Version: 0.10.2 -Release: 3%{?dist} +Version: 0.12.0 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: ISC -URL: http://code.google.com/p/libass/ -Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.xz +URL: https://github.com/libass +Source0: https://github.com/libass/libass/releases/download/%{version}/%{name}-%{version}.tar.xz BuildRequires: enca-devel BuildRequires: fontconfig-devel @@ -60,6 +60,10 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Nov 06 2014 Martin Sourada - 0.12.0-1 +- Codebase moved from google code to github. +- Update to 0.12.0 + * Sun Aug 17 2014 Fedora Release Engineering - 0.10.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 62110e1..c3cad69 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ce672ed5629c9708b3401b976f516744 libass-0.10.2.tar.xz +ba806f521248dd08032d433abc6d5ace libass-0.12.0.tar.xz From 1dab8e063c3edb764ae1445d18b723a4da25645d Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 26 Apr 2015 13:17:31 +0200 Subject: [PATCH 36/65] Update to 0.12.1 (rhbz #1215391). --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 2e880a8..d04451c 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.12.0 +Version: 0.12.1 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Sun Apr 26 2015 Martin Sourada - 0.12.1-1 +- Update to 0.12.1 + * Thu Nov 06 2014 Martin Sourada - 0.12.0-1 - Codebase moved from google code to github. - Update to 0.12.0 From 500e590ad5cf5edd5a0a0ae304bdf35fac93fe23 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Sun, 26 Apr 2015 13:21:53 +0200 Subject: [PATCH 37/65] Add new source... --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index c3cad69..ab2a14b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ba806f521248dd08032d433abc6d5ace libass-0.12.0.tar.xz +dfdcd8b4fbb6a8211db8040b10aa2070 libass-0.12.1.tar.xz From 761c0992d15df363a479ad31f6a4234945b0c69c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 14:15:35 +0000 Subject: [PATCH 38/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index d04451c..71621e4 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.12.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Apr 26 2015 Martin Sourada - 0.12.1-1 - Update to 0.12.1 From 7053ff5c5edd81deccf753d3840ae2b038e38be6 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Thu, 17 Dec 2015 09:02:54 +0100 Subject: [PATCH 39/65] Update to 0.13.1 --- libass.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libass.spec b/libass.spec index 71621e4..aa86fad 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.12.1 -Release: 2%{?dist} +Version: 0.13.1 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Dec 17 2015 Martin Sourada - 0.13.1-1 +- Update to 0.13.1 + * Wed Jun 17 2015 Fedora Release Engineering - 0.12.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index ab2a14b..1ee6b4f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dfdcd8b4fbb6a8211db8040b10aa2070 libass-0.12.1.tar.xz +43b5f379e70b3aef15b2435e21e5b73c libass-0.13.1.tar.xz From 5ceda47b874599b79a49c143bf4d669f35c519f8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:54:36 +0000 Subject: [PATCH 40/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index aa86fad..afe4541 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.13.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Dec 17 2015 Martin Sourada - 0.13.1-1 - Update to 0.13.1 From cb97d1b234f2b34f249b2c164792460f4e709667 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Tue, 27 Sep 2016 23:47:43 +0200 Subject: [PATCH 41/65] Update to 0.13.3. --- libass.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index afe4541..622e1d8 100644 --- a/libass.spec +++ b/libass.spec @@ -60,10 +60,13 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Tue Sep 27 2016 Martin Sourada - 0.13.3-1 +- Update to 0.13.3 + * Thu Feb 04 2016 Fedora Release Engineering - 0.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild -* Thu Dec 17 2015 Martin Sourada - 0.13.1-1 +* Thu Dec 17 2015 Martin Sourada - 0.13.1-1 - Update to 0.13.1 * Wed Jun 17 2015 Fedora Release Engineering - 0.12.1-2 diff --git a/sources b/sources index 1ee6b4f..99e371e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -43b5f379e70b3aef15b2435e21e5b73c libass-0.13.1.tar.xz +2369db9dafeee94b0e55bc99faa2a5d1 libass-0.13.3.tar.xz From 394f11671297cd2ad04cce6ff65657cef1b912c6 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Tue, 27 Sep 2016 23:55:31 +0200 Subject: [PATCH 42/65] Don't forget to actualy bump VR --- libass.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index 622e1d8..36df199 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.13.1 -Release: 2%{?dist} +Version: 0.13.3 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries From 36ffe42600cf5f9f16c2eb02e09beb5a5cf38cc8 Mon Sep 17 00:00:00 2001 From: Martin Sourada Date: Fri, 7 Oct 2016 19:23:54 +0200 Subject: [PATCH 43/65] Update to 0.13.4. Fixes CVE-2016-7969, CVE-2016-7970, CVE-2016-7972. --- libass.spec | 7 ++++++- sources | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index 36df199..f810860 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.13.3 +Version: 0.13.4 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering @@ -60,6 +60,11 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Oct 07 2016 Martin Sourada - 0.13.4-1 +- Update to 0.13.4 +- Fixes CVE-2016-7969, CVE-2016-7970, CVE-2016-7972 + + * Tue Sep 27 2016 Martin Sourada - 0.13.3-1 - Update to 0.13.3 diff --git a/sources b/sources index 99e371e..5392573 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2369db9dafeee94b0e55bc99faa2a5d1 libass-0.13.3.tar.xz +414caae86700f6905215ae0267e14912 libass-0.13.4.tar.xz From 73496c415614a41da759c957580298aaa6975c70 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 18:23:09 +0000 Subject: [PATCH 44/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index f810860..6f07e1c 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.13.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.13.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Oct 07 2016 Martin Sourada - 0.13.4-1 - Update to 0.13.4 - Fixes CVE-2016-7969, CVE-2016-7970, CVE-2016-7972 From db68cc5a989a02c6c2fbe9c663757e16f035993d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 18:32:54 +0000 Subject: [PATCH 45/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 6f07e1c..6eadaf6 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.13.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.13.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.13.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From e76b1a1c57431ebfca4b42eef058bf5f9953bc87 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 01:12:10 +0000 Subject: [PATCH 46/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 6eadaf6..572c713 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.13.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.13.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.13.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 3a195a4d6563693bcb7440d150fa57aa48827ec8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 21:13:15 +0000 Subject: [PATCH 47/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 572c713..7b78fca 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.13.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -60,6 +60,9 @@ make check %{_libdir}/pkgconfig/libass.pc %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.13.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.13.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From d662d928234f049c89538ff4fe91067214fbf398 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Thu, 14 Jun 2018 09:06:16 +0200 Subject: [PATCH 48/65] Update to 0.14.0 --- libass.spec | 51 +++++++++++++++++++++++++-------------------------- sources | 2 +- 2 files changed, 26 insertions(+), 27 deletions(-) diff --git a/libass.spec b/libass.spec index 7b78fca..90fc932 100644 --- a/libass.spec +++ b/libass.spec @@ -1,65 +1,64 @@ Name: libass -Version: 0.13.4 -Release: 5%{?dist} +Version: 0.14.0 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering - -Group: System Environment/Libraries License: ISC URL: https://github.com/libass -Source0: https://github.com/libass/libass/releases/download/%{version}/%{name}-%{version}.tar.xz -BuildRequires: enca-devel -BuildRequires: fontconfig-devel -BuildRequires: fribidi-devel -BuildRequires: harfbuzz-devel >= 0.9.5 -BuildRequires: libpng-devel +Source0: https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz + +BuildRequires: nasm +BuildRequires: pkgconfig(fontconfig) >= 2.10.92 +BuildRequires: pkgconfig(freetype2) >= 9.10.3 +BuildRequires: pkgconfig(fribidi) >= 0.19.0 +BuildRequires: pkgconfig(harfbuzz) >= 0.9.5 +BuildRequires: pkgconfig(libpng) >= 1.2.0 %description Libass is a portable library for SSA/ASS subtitles rendering. %package devel Summary: Development files for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - %prep -%setup -q +%autosetup %build %configure --disable-static -make %{?_smp_mflags} - +%make_build %install -make install DESTDIR=$RPM_BUILD_ROOT -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' - +%make_install +find %{buildroot} -name '*.la' -delete %check make check - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - +%ldconfig_scriptlets %files -%doc Changelog COPYING +%license COPYING +%doc Changelog %{_libdir}/*.so.* %files devel %{_includedir}/* %{_libdir}/*.so -%{_libdir}/pkgconfig/libass.pc +%{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jun 14 2018 Simone Caronni - 0.14.0-1 +- Update to 0.14.0 (fixes glyph bounding box size; this bug causes frames to + be dropped on 2160p+ displays, as this check is too small for resolutions + above 1440p). +- Revamp SPEC file. + * Wed Feb 07 2018 Fedora Release Engineering - 0.13.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index 5392573..ffdf51c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -414caae86700f6905215ae0267e14912 libass-0.13.4.tar.xz +SHA512 (libass-0.14.0.tar.xz) = 0f5fe5d7e662ee1d649981f829e5ef7a53457754f74faaed5679252a5a6769c8f267b6119cda922ebc6a8e5b5b331569f13813ac74881b4e94da7b2e8143a9e6 From ac2e1477444d0a9c723e32606948c65b4cbbeacb Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:47 +0200 Subject: [PATCH 49/65] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- libass.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libass.spec b/libass.spec index 90fc932..ef2563d 100644 --- a/libass.spec +++ b/libass.spec @@ -7,6 +7,7 @@ URL: https://github.com/libass Source0: https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz +BuildRequires: gcc BuildRequires: nasm BuildRequires: pkgconfig(fontconfig) >= 2.10.92 BuildRequires: pkgconfig(freetype2) >= 9.10.3 From f5a8820c0dbbf3da41f0776fca906abdceee6dd3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:49:46 +0000 Subject: [PATCH 50/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index ef2563d..4bc4867 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -54,6 +54,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Jun 14 2018 Simone Caronni - 0.14.0-1 - Update to 0.14.0 (fixes glyph bounding box size; this bug causes frames to be dropped on 2160p+ displays, as this check is too small for resolutions From a6175bbf6a91c710a8d3680c72b4a1b2821cdb2e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 06:42:08 +0000 Subject: [PATCH 51/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 4bc4867..a848255 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -54,6 +54,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.14.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.14.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 4baa7470b285740b357d385bb476542e90d6d87b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 12:49:10 +0000 Subject: [PATCH 52/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index a848255..5c2ac42 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -54,6 +54,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.14.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.14.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 227f04eaee84884d123a765a837d5614b560289f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 08:36:18 +0000 Subject: [PATCH 53/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 5c2ac42..3058111 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -54,6 +54,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.14.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.14.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From a077f3967af789162374b4b1195d7f2e85edd7e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 04:15:33 +0000 Subject: [PATCH 54/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 3058111..1514bb3 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -54,6 +54,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.14.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 0.14.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From bdf933eca3f7451ffbbca0f909c2459d5503feab Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 5 Jan 2021 01:25:47 +0000 Subject: [PATCH 55/65] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libass.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libass.spec b/libass.spec index 1514bb3..f094d69 100644 --- a/libass.spec +++ b/libass.spec @@ -14,6 +14,7 @@ BuildRequires: pkgconfig(freetype2) >= 9.10.3 BuildRequires: pkgconfig(fribidi) >= 0.19.0 BuildRequires: pkgconfig(harfbuzz) >= 0.9.5 BuildRequires: pkgconfig(libpng) >= 1.2.0 +BuildRequires: make %description Libass is a portable library for SSA/ASS subtitles rendering. From fff31bf24b93a386ff7850b443092cdeda23df39 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 16:40:35 +0000 Subject: [PATCH 56/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index f094d69..b928d3b 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.14.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 0.14.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 3c762f60bb52b472f1157ff5f04806524b75e1da Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 10:58:21 +0000 Subject: [PATCH 57/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index b928d3b..21196f7 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.14.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.14.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 2e1c1feb1de3c7727b2ab63214775417cba51c83 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 15:46:47 +0000 Subject: [PATCH 58/65] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index 21196f7..227b8b2 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.14.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.14.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.14.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 72abf7d214ee9c4c6fbfce63174a3ad7e7764a22 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 23 Feb 2022 16:51:11 +0100 Subject: [PATCH 59/65] Update to 0.15.2 --- libass.spec | 11 +++++++---- sources | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/libass.spec b/libass.spec index 227b8b2..4c78763 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.14.0 -Release: 9%{?dist} +Version: 0.15.2 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -47,14 +47,17 @@ make check %files %license COPYING %doc Changelog -%{_libdir}/*.so.* +%{_libdir}/*.so.9* %files devel -%{_includedir}/* +%{_includedir}/ass %{_libdir}/*.so %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Feb 23 2022 Nicolas Chauvet - 0.15.2-1 +- Update to 0.15.2 + * Thu Jan 20 2022 Fedora Release Engineering - 0.14.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index ffdf51c..9fbd6da 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libass-0.14.0.tar.xz) = 0f5fe5d7e662ee1d649981f829e5ef7a53457754f74faaed5679252a5a6769c8f267b6119cda922ebc6a8e5b5b331569f13813ac74881b4e94da7b2e8143a9e6 +SHA512 (libass-0.15.2.tar.xz) = 4a352d2d21d8a7f25d593f0456cd057912589e55c0709dbf33150d23253fa7859da41584238f03c51782e066a0f92c6849c36b6210324cdb57ed01539921a39b From d08fb89d09a51c8f6efbb142fb77ae824749ca71 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Sun, 15 May 2022 17:56:57 +0200 Subject: [PATCH 60/65] Update to 0.16.0 --- libass.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/libass.spec b/libass.spec index 4c78763..d787e3d 100644 --- a/libass.spec +++ b/libass.spec @@ -1,5 +1,5 @@ Name: libass -Version: 0.15.2 +Version: 0.16.0 Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sun May 15 2022 Nicolas Chauvet - 0.16.0-1 +- Update to 0.16.0 + * Wed Feb 23 2022 Nicolas Chauvet - 0.15.2-1 - Update to 0.15.2 diff --git a/sources b/sources index 9fbd6da..18d5b7c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libass-0.15.2.tar.xz) = 4a352d2d21d8a7f25d593f0456cd057912589e55c0709dbf33150d23253fa7859da41584238f03c51782e066a0f92c6849c36b6210324cdb57ed01539921a39b +SHA512 (libass-0.16.0.tar.xz) = ada605f5887da06aa1d072a52f8baaba64b62008ccb377560d71d5a030c1f5434d6c60fe39a156e063f553b8a07b4dfe954e4d035036888a629c6e663ce60ba9 From ccdbe14ea37ca3b4839248b0471dd9cd186109f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 17:20:01 +0000 Subject: [PATCH 61/65] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index d787e3d..c834594 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.16.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sun May 15 2022 Nicolas Chauvet - 0.16.0-1 - Update to 0.16.0 From 7b17bdb582a5b502ea9bc5b6978a782d4d0ab808 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Thu, 1 Dec 2022 10:47:21 +0100 Subject: [PATCH 62/65] Update to 0.17.0 --- libass.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libass.spec b/libass.spec index c834594..e26ce77 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.16.0 -Release: 2%{?dist} +Version: 0.17.0 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Dec 01 2022 Nicolas Chauvet - 0.17.0-1 +- Update to 0.17.0 + * Thu Jul 21 2022 Fedora Release Engineering - 0.16.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 18d5b7c..6d68cd8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libass-0.16.0.tar.xz) = ada605f5887da06aa1d072a52f8baaba64b62008ccb377560d71d5a030c1f5434d6c60fe39a156e063f553b8a07b4dfe954e4d035036888a629c6e663ce60ba9 +SHA512 (libass-0.17.0.tar.xz) = ed8a9264b4ad9fe467ccd647eabe6c7c26fd589d9d579595b145de7abebcd18b49a5d093ce9941c08a82911e2bd3a79eef66119d9805ff7654e0340dc3d1e727 From 377746c3d1ca78e6da5169a8c64fff8794a52af2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 15:51:29 +0000 Subject: [PATCH 63/65] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libass.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libass.spec b/libass.spec index e26ce77..8ec3930 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass Version: 0.17.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.17.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Dec 01 2022 Nicolas Chauvet - 0.17.0-1 - Update to 0.17.0 From ca50e77c74be706e279e63b6e81e9b239dc99dd9 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 24 Apr 2023 10:00:54 +0200 Subject: [PATCH 64/65] Update to 0.17.1 --- libass.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libass.spec b/libass.spec index 8ec3930..19c7f0c 100644 --- a/libass.spec +++ b/libass.spec @@ -1,6 +1,6 @@ Name: libass -Version: 0.17.0 -Release: 2%{?dist} +Version: 0.17.1 +Release: 1%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass @@ -55,6 +55,9 @@ make check %{_libdir}/pkgconfig/%{name}.pc %changelog +* Mon Apr 24 2023 Nicolas Chauvet - 0.17.1-1 +- Update to 0.17.1 + * Thu Jan 19 2023 Fedora Release Engineering - 0.17.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 6d68cd8..b6fb50b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libass-0.17.0.tar.xz) = ed8a9264b4ad9fe467ccd647eabe6c7c26fd589d9d579595b145de7abebcd18b49a5d093ce9941c08a82911e2bd3a79eef66119d9805ff7654e0340dc3d1e727 +SHA512 (libass-0.17.1.tar.xz) = 437b4b60db2626e48f438b5138ab4dbf2c2ab4c8f0b587a6e554510c6719544ef2235c601ff1e482d020410f9bab95ad1a9b176d19a3bd54880499a576b41f23 From 7d53f75e8a7bcf3f4e6d967fb1ae513faa30352b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:57:38 +0300 Subject: [PATCH 65/65] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index b6fb50b..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (libass-0.17.1.tar.xz) = 437b4b60db2626e48f438b5138ab4dbf2c2ab4c8f0b587a6e554510c6719544ef2235c601ff1e482d020410f9bab95ad1a9b176d19a3bd54880499a576b41f23