[vlc/f28] (3 commits) ...Merge branch 'master' into f28
by Nicolas Chauvet
Summary of changes:
b02fbfc... Update main/core packaging split (*)
43e0e04... Update changelog (*)
0d9f316... Merge branch 'master' into f28
(*) This commit already existed in another branch; no separate mail sent
5 years, 10 months
[vlc/f29] (2 commits) ...Update changelog
by Nicolas Chauvet
Summary of changes:
b02fbfc... Update main/core packaging split (*)
43e0e04... Update changelog (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 10 months
[vlc] Update changelog
by Nicolas Chauvet
commit 43e0e047c1045552d67bab4cda7600e1e993b75e
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Jan 17 12:15:32 2019 +0100
Update changelog
vlc.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/vlc.spec b/vlc.spec
index 1f705fc..6927fd2 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -45,7 +45,7 @@ Summary: The cross-platform open-source multimedia framework, player and server
Epoch: 1
Name: vlc
Version: 3.0.6
-Release: 15%{?dist}
+Release: 16%{?dist}
License: GPLv2+
URL: https://www.videolan.org
Source0: %{vlc_url}/%{?!vlc_tag:%{version}/}vlc-%{version}%{?vlc_tag}.tar.xz
@@ -548,6 +548,9 @@ fi || :
%changelog
+* Thu Jan 17 2019 Nicolas Chauvet <kwizart(a)gmail.com> - 1:3.0.6-16
+- Update main/core packaging split
+
* Thu Jan 10 2019 Nicolas Chauvet <kwizart(a)gmail.com> - 1:3.0.6-15
- Update to 3.0.6
- Rework xorg/wayland plugins moved to vlc-core
5 years, 10 months
[vlc] Update main/core packaging split
by Nicolas Chauvet
commit b02fbfc61186f96d649d4ae7732e4f0543ca8396
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Jan 17 12:14:52 2019 +0100
Update main/core packaging split
vlc.spec | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/vlc.spec b/vlc.spec
index ed7d8bb..1f705fc 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -455,7 +455,7 @@ fi || :
%{_datadir}/vlc/skins2/
%{_bindir}/qvlc
%{_bindir}/svlc
-%{_libdir}/vlc/*.so*
+%{_libdir}/vlc/libvlc_pulse.so*
# qt in main
%{_libdir}/vlc/plugins/gui/libqt_plugin.so
# skin2 in main
@@ -482,8 +482,11 @@ fi || :
%{_bindir}/vlc-wrapper
%exclude %{_datadir}/vlc/skins2
%{_datadir}/vlc/
-%{_libdir}/vlc/lua/
%{_libdir}/*.so.*
+%dir %{_libdir}/vlc
+%{_libdir}/vlc/lua/
+%{_libdir}/vlc/libvlc_vdpau.so*
+%{_libdir}/vlc/libvlc_xcb_events.so*
%exclude %{_libdir}/vlc/plugins/access/libaccess_jack_plugin.so
%{?_with_vcdimager:
%exclude %{_libdir}/vlc/plugins/access/libvcd_plugin.so
5 years, 10 months
[xvidcore] fix crash in check_cpu_features (rfbz#5141), patch by Peter Ross
by Dominik Mierzejewski
commit ad1526fcdfe60855478007a2ada04d6421f3b061
Author: Dominik 'Rathann' Mierzejewski <dominik(a)greysector.net>
Date: Thu Jan 17 11:23:53 2019 +0100
fix crash in check_cpu_features (rfbz#5141), patch by Peter Ross
add missing BR: gcc
xvidcore-check_cpu_features-crash.patch | 27 +++++++++++++++++++++++++++
xvidcore.spec | 10 ++++++++--
2 files changed, 35 insertions(+), 2 deletions(-)
---
diff --git a/xvidcore-check_cpu_features-crash.patch b/xvidcore-check_cpu_features-crash.patch
new file mode 100644
index 0000000..86bf306
--- /dev/null
+++ b/xvidcore-check_cpu_features-crash.patch
@@ -0,0 +1,27 @@
+[PATCH] alway use .text for machine
+---
+ src/nasm.inc | 8 --------
+ 1 file changed, 8 deletions(-)
+
+diff --git a/src/nasm.inc b/src/nasm.inc
+index e5181c9..f79efe6 100644
+--- a/src/nasm.inc
++++ b/src/nasm.inc
+@@ -175,15 +175,7 @@ BITS 32
+ %endmacro
+
+ %macro TEXT 0
+-%ifidn __OUTPUT_FORMAT__,macho32
+ SECTION .text align=SECTION_ALIGN
+-%else
+-%ifidn __OUTPUT_FORMAT__,macho64
+- SECTION .text align=SECTION_ALIGN
+-%else
+- SECTION .rotext align=SECTION_ALIGN
+-%endif
+-%endif
+ %endmacro
+
+ %macro cglobal 1
+--
+2.17.1
diff --git a/xvidcore.spec b/xvidcore.spec
index cf52fbc..a6ef801 100644
--- a/xvidcore.spec
+++ b/xvidcore.spec
@@ -2,12 +2,14 @@
Name: xvidcore
Version: 1.3.5
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: MPEG-4 Simple and Advanced Simple Profile codec
License: GPLv2+
URL: http://www.xvid.org/
Source0: http://downloads.xvid.org/downloads/%{name}-%{version}%{?pre}.tar.bz2
+Patch0: xvidcore-check_cpu_features-crash.patch
+BuildRequires: gcc
%ifarch %{ix86} x86_64
BuildRequires: nasm >= 2.0
%endif
@@ -31,7 +33,7 @@ documentation for the Xvid video codec.
%prep
-%autosetup -n %{name}
+%autosetup -p1 -n %{name}
chmod -x examples/*.pl
# Convert to utf-8
for file in AUTHORS ChangeLog; do
@@ -76,6 +78,10 @@ find %{buildroot} -name "*.a" -delete
%changelog
+* Thu Jan 17 2019 Dominik Mierzejewski <rpm at greysector.net> - 1.3.5-4
+- fix crash in check_cpu_features (rfbz#5141), patch by Peter Ross
+- add missing BR: gcc
+
* Sun Aug 19 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 1.3.5-3
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
5 years, 10 months
[discord/f27] Updated to 0.0.8
by seancallaway
commit 5d560b654eb704427a2bd22c1aa26be40151d823
Author: Sean Callaway <seancallaway(a)gmail.com>
Date: Wed Jan 16 18:20:21 2019 -0800
Updated to 0.0.8
.gitignore | 1 +
discord.spec | 11 ++++++++++-
sources | 2 +-
3 files changed, 12 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d101d91..241ec7a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/discord-0.0.5.tar.gz
+/discord-0.0.8.tar.gz
diff --git a/discord.spec b/discord.spec
index 1e98a6f..1f05997 100644
--- a/discord.spec
+++ b/discord.spec
@@ -3,7 +3,7 @@
%global __requires_exclude libffmpeg.so
Name: discord
-Version: 0.0.5
+Version: 0.0.8
Release: 1%{?dist}
Summary: All-in-one voice and text chat for gamers
@@ -60,6 +60,15 @@ discord.desktop
%changelog
+* Wed Jan 16 2019 Sean Callaway <seancallaway(a)fedoraproject.org> - 0.0.8-1
+- Updated to 0.0.8
+
+* Sun Aug 19 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 0.0.5-3
+- Rebuilt for Fedora 29 Mass Rebuild binutils issue
+
+* Fri Jul 27 2018 RPM Fusion Release Engineering <sergio(a)serjux.com> - 0.0.5-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
* Thu May 03 2018 Sean Callaway <seancallaway(a)fedoraproject.org> 0.0.5-1
- Update to 0.0.5
diff --git a/sources b/sources
index dbcc2f6..599ce27 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18a8e7f86d26a1472dbfff060e1671e4 discord-0.0.5.tar.gz
+64b0614a7316abeca146302c5a7ba825 discord-0.0.8.tar.gz
5 years, 10 months
[discord/f28] Updated to 0.0.8
by seancallaway
commit 2ba2888e6debea76920609efc38fa446b8528951
Author: Sean Callaway <seancallaway(a)gmail.com>
Date: Wed Jan 16 18:17:38 2019 -0800
Updated to 0.0.8
.gitignore | 1 +
discord.spec | 11 ++++++++++-
sources | 2 +-
3 files changed, 12 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 49e12e9..e3756c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/discord-0.0.4.tar.gz
/discord-0.0.5.tar.gz
+/discord-0.0.8.tar.gz
diff --git a/discord.spec b/discord.spec
index 1e98a6f..1f05997 100644
--- a/discord.spec
+++ b/discord.spec
@@ -3,7 +3,7 @@
%global __requires_exclude libffmpeg.so
Name: discord
-Version: 0.0.5
+Version: 0.0.8
Release: 1%{?dist}
Summary: All-in-one voice and text chat for gamers
@@ -60,6 +60,15 @@ discord.desktop
%changelog
+* Wed Jan 16 2019 Sean Callaway <seancallaway(a)fedoraproject.org> - 0.0.8-1
+- Updated to 0.0.8
+
+* Sun Aug 19 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 0.0.5-3
+- Rebuilt for Fedora 29 Mass Rebuild binutils issue
+
+* Fri Jul 27 2018 RPM Fusion Release Engineering <sergio(a)serjux.com> - 0.0.5-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
* Thu May 03 2018 Sean Callaway <seancallaway(a)fedoraproject.org> 0.0.5-1
- Update to 0.0.5
diff --git a/sources b/sources
index dbcc2f6..599ce27 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18a8e7f86d26a1472dbfff060e1671e4 discord-0.0.5.tar.gz
+64b0614a7316abeca146302c5a7ba825 discord-0.0.8.tar.gz
5 years, 10 months
[discord/f29] Updated to 0.0.8
by seancallaway
commit d66837d846c778678bf4dcc36de6f63542dfb21e
Author: Sean Callaway <seancallaway(a)gmail.com>
Date: Wed Jan 16 18:14:10 2019 -0800
Updated to 0.0.8
.gitignore | 1 +
discord.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 49e12e9..e3756c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/discord-0.0.4.tar.gz
/discord-0.0.5.tar.gz
+/discord-0.0.8.tar.gz
diff --git a/discord.spec b/discord.spec
index 904eca8..1f05997 100644
--- a/discord.spec
+++ b/discord.spec
@@ -3,8 +3,8 @@
%global __requires_exclude libffmpeg.so
Name: discord
-Version: 0.0.5
-Release: 3%{?dist}
+Version: 0.0.8
+Release: 1%{?dist}
Summary: All-in-one voice and text chat for gamers
# License Information: https://bugzilla.rpmfusion.org/show_bug.cgi?id=4441#c14
@@ -60,6 +60,9 @@ discord.desktop
%changelog
+* Wed Jan 16 2019 Sean Callaway <seancallaway(a)fedoraproject.org> - 0.0.8-1
+- Updated to 0.0.8
+
* Sun Aug 19 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 0.0.5-3
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
diff --git a/sources b/sources
index dbcc2f6..599ce27 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18a8e7f86d26a1472dbfff060e1671e4 discord-0.0.5.tar.gz
+64b0614a7316abeca146302c5a7ba825 discord-0.0.8.tar.gz
5 years, 10 months
[discord] Update to 0.0.8
by seancallaway
commit e025c64be289d596ff6eb0cd994f69945fe00118
Author: Sean Callaway <seancallaway(a)gmail.com>
Date: Wed Jan 16 18:00:52 2019 -0800
Update to 0.0.8
.gitignore | 1 +
discord.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 49e12e9..e3756c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/discord-0.0.4.tar.gz
/discord-0.0.5.tar.gz
+/discord-0.0.8.tar.gz
diff --git a/discord.spec b/discord.spec
index 904eca8..6b8ac53 100644
--- a/discord.spec
+++ b/discord.spec
@@ -3,8 +3,8 @@
%global __requires_exclude libffmpeg.so
Name: discord
-Version: 0.0.5
-Release: 3%{?dist}
+Version: 0.0.8
+Release: 1%{?dist}
Summary: All-in-one voice and text chat for gamers
# License Information: https://bugzilla.rpmfusion.org/show_bug.cgi?id=4441#c14
@@ -60,6 +60,9 @@ discord.desktop
%changelog
+* Wed Jan 16 2019 Sean Callaway <seancallaway(a)fedoraproject.org> 0.0.8-1
+- Update to 0.0.8
+
* Sun Aug 19 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 0.0.5-3
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
diff --git a/sources b/sources
index dbcc2f6..599ce27 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-18a8e7f86d26a1472dbfff060e1671e4 discord-0.0.5.tar.gz
+64b0614a7316abeca146302c5a7ba825 discord-0.0.8.tar.gz
5 years, 10 months