[bcg729/f24] Initial import
by Sandro Mani
Summary of changes:
22b9a7c... Initial import (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 10 months
[bcg729/f25] Initial import
by Sandro Mani
Summary of changes:
22b9a7c... Initial import (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 10 months
[bcg729] Initial import
by Sandro Mani
commit 22b9a7c7cde176dc8d75709fa7cb9b60bd6faeaf
Author: Sandro Mani <manisandro(a)gmail.com>
Date: Fri Jan 6 18:47:46 2017 +0100
Initial import
.gitignore | 2 ++
bcg729.spec | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
sources | 1 +
3 files changed, 94 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f8377c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/bcg729-1.0.0.tar.gz
+/bcg729-1.0.2.tar.gz
diff --git a/bcg729.spec b/bcg729.spec
new file mode 100644
index 0000000..aa9a8b8
--- /dev/null
+++ b/bcg729.spec
@@ -0,0 +1,91 @@
+Name: bcg729
+Version: 1.0.2
+Release: 1%{?dist}
+Summary: Opensource implementation of the G.729 codec
+
+# Incorrect FSF addresses: http://lists.nongnu.org/archive/html/linphone-developers/2016-07/msg00043...
+License: GPLv2+
+URL: http://www.linphone.org/eng/documentation/dev/bcg729.html
+Source0: http://download-mirror.savannah.gnu.org/releases/linphone/plugins/sources...
+# Test data is not redistributible
+# Source1: http://www.belledonne-communications.com/downloads/bcg729-patterns.zip
+
+BuildRequires: gcc
+
+
+%description
+bcg729 is an opensource implementation of both encoder and decoder of the
+ITU G729 Annex A speech codec.
+The library written in C 99 is fully portable and can be executed on many
+platforms including both ARM processor and x86.
+bcg729 supports concurrent channels encoding/decoding for multi call
+application such conferencing.
+
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+Development files for %{name}.
+
+
+%prep
+%autosetup -p1
+# unzip -qq -d test %{SOURCE1}
+
+
+%build
+%configure --disable-silent-rules --disable-static
+%make_build
+
+
+%install
+%make_install
+find %{buildroot}%{_libdir} -type f -name '*.la' -delete -print
+
+%check
+# Test data is not redistributible
+# make check
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%doc AUTHORS README
+%license COPYING
+%{_libdir}/lib%{name}.so.*
+
+
+%files devel
+%{_includedir}/%{name}/
+%{_libdir}/lib%{name}.so
+%{_libdir}/pkgconfig/lib%{name}.pc
+
+
+%changelog
+* Fri Jan 06 2017 Sandro Mani <manisandro(a)gmail.com> - 1.0.2-1
+- Update to 1.0.2
+
+* Thu Jul 28 2016 Sandro Mani <manisandro(a)gmail.com> - 1.0.1-2
+- Remove OpenSSL BRs
+
+* Thu Jul 28 2016 Sandro Mani <manisandro(a)gmail.com> - 1.0.1-1
+- Update to 1.0.1
+
+* Thu Jul 28 2016 Dominik Mierzejewski <rpm(a)greysector.net> - 1.0.0-3
+- add test data, build (but don't install) static library and enable tests
+
+* Wed Jul 20 2016 Sandro Mani <manisandro(a)gmail.com> - 1.0.0-2
+- Move autoreconf to build
+- BR: pkgconfig(ortp)
+- License is GPLv2+
+- Change command to delete *.la files
+- Use %%name in %%files
+- Don't fix FSF addresses
+
+* Wed Jul 20 2016 Sandro Mani <manisandro(a)gmail.com> - 1.0.0-1
+- Initial package
diff --git a/sources b/sources
index e69de29..f8c387d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2a3d9b422912024f97a41e56e9e3d357 bcg729-1.0.2.tar.gz
7 years, 10 months
[kodi-platform] ExclusiveArch
by Nicolas Chauvet
commit 8282bd82e41804ae5fa4946f165bb207368c7756
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Jan 6 18:09:17 2017 +0100
ExclusiveArch
kodi-platform.spec | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/kodi-platform.spec b/kodi-platform.spec
index 2894702..4aa858a 100644
--- a/kodi-platform.spec
+++ b/kodi-platform.spec
@@ -8,7 +8,7 @@
Name: kodi-platform
Version: 17.0
-Release: 0.2.%{commit_date}git%{short_commit}%{?dist}
+Release: 0.3.%{commit_date}git%{short_commit}%{?dist}
Summary: Kodi platform support library
Group: System Environment/Libraries
@@ -26,6 +26,8 @@ BuildRequires: kodi-devel >= %{version}
BuildRequires: platform-devel
BuildRequires: tinyxml-devel
+ExclusiveArch: i686 x86_64
+
%description
%{summary}.
@@ -79,6 +81,9 @@ cp %{SOURCE1} .
%changelog
+* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.3.20160516gitc8188d8
+- Use ExclusiveArch for kodi
+
* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.2.20160516gitc8188d8
- Rebuild for libcec/platform
7 years, 10 months
[kodi-platform/f25] ExclusiveArch
by Nicolas Chauvet
commit d0dfccd2e27fcee418df066dc818b65155df156b
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Jan 6 18:09:17 2017 +0100
ExclusiveArch
kodi-platform.spec | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/kodi-platform.spec b/kodi-platform.spec
index 2894702..4aa858a 100644
--- a/kodi-platform.spec
+++ b/kodi-platform.spec
@@ -8,7 +8,7 @@
Name: kodi-platform
Version: 17.0
-Release: 0.2.%{commit_date}git%{short_commit}%{?dist}
+Release: 0.3.%{commit_date}git%{short_commit}%{?dist}
Summary: Kodi platform support library
Group: System Environment/Libraries
@@ -26,6 +26,8 @@ BuildRequires: kodi-devel >= %{version}
BuildRequires: platform-devel
BuildRequires: tinyxml-devel
+ExclusiveArch: i686 x86_64
+
%description
%{summary}.
@@ -79,6 +81,9 @@ cp %{SOURCE1} .
%changelog
+* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.3.20160516gitc8188d8
+- Use ExclusiveArch for kodi
+
* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.2.20160516gitc8188d8
- Rebuild for libcec/platform
7 years, 10 months
[kodi-platform/f25] rebuilt
by Nicolas Chauvet
commit 3116659bbf14182b6cc0c304eb10c6baec98b218
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Jan 6 17:35:33 2017 +0100
rebuilt
kodi-platform.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/kodi-platform.spec b/kodi-platform.spec
index 255312e..2894702 100644
--- a/kodi-platform.spec
+++ b/kodi-platform.spec
@@ -8,7 +8,7 @@
Name: kodi-platform
Version: 17.0
-Release: 0.1.%{commit_date}git%{short_commit}%{?dist}
+Release: 0.2.%{commit_date}git%{short_commit}%{?dist}
Summary: Kodi platform support library
Group: System Environment/Libraries
@@ -79,6 +79,9 @@ cp %{SOURCE1} .
%changelog
+* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.2.20160516gitc8188d8
+- Rebuild for libcec/platform
+
* Tue Aug 09 2016 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 17.0-0.1.20160516gitc8188d8
- Sync with Kodi 17.0 alpha 3
7 years, 10 months
[kodi-platform] rebuilt
by Nicolas Chauvet
commit 93f68cf6a068373da9dea8a7c3c1ee10a5a6d1cb
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Jan 6 17:35:33 2017 +0100
rebuilt
kodi-platform.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/kodi-platform.spec b/kodi-platform.spec
index 255312e..2894702 100644
--- a/kodi-platform.spec
+++ b/kodi-platform.spec
@@ -8,7 +8,7 @@
Name: kodi-platform
Version: 17.0
-Release: 0.1.%{commit_date}git%{short_commit}%{?dist}
+Release: 0.2.%{commit_date}git%{short_commit}%{?dist}
Summary: Kodi platform support library
Group: System Environment/Libraries
@@ -79,6 +79,9 @@ cp %{SOURCE1} .
%changelog
+* Fri Jan 06 2017 Nicolas Chauvet <kwizart(a)gmail.com> - 17.0-0.2.20160516gitc8188d8
+- Rebuild for libcec/platform
+
* Tue Aug 09 2016 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 17.0-0.1.20160516gitc8188d8
- Sync with Kodi 17.0 alpha 3
7 years, 10 months
[kdenlive] Update to 16.12.0
by Leigh Scott
commit 99312f18fa6ef39fd58a79d80c98f55ce9a685cb
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Fri Jan 6 15:09:28 2017 +0000
Update to 16.12.0
.gitignore | 1 +
kdenlive.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6780ba3..e2210b7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/kdenlive-16.08.0.tar.xz
/kdenlive-16.08.1.tar.xz
/kdenlive-16.08.2.tar.xz
+/kdenlive-16.12.0.tar.xz
diff --git a/kdenlive.spec b/kdenlive.spec
index 00baceb..956da1c 100644
--- a/kdenlive.spec
+++ b/kdenlive.spec
@@ -1,7 +1,7 @@
Name: kdenlive
Summary: Non-linear video editor
-Version: 16.08.2
+Version: 16.12.0
Release: 1%{?dist}
License: GPLv2+
@@ -139,6 +139,9 @@ fi
%changelog
+* Fri Jan 06 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 16.12.0-1
+- Update to 16.12.0
+
* Thu Oct 13 2016 Sérgio Basto <sergio(a)serjux.com> - 16.08.2-1
- Update to 16.08.2
- Scriplets fixed by upstream
diff --git a/sources b/sources
index fcd1dbd..1be63cf 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3810b3b698b250b751ec071fa117abb1 kdenlive-16.08.2.tar.xz
+94ee95ee80284ad7dcd1b03a69be483d kdenlive-16.12.0.tar.xz
7 years, 10 months
[ffms2/f24] initial import
by Igor Gnatenko
Summary of changes:
a17a457... initial import (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 10 months
[ffms2/f25] initial import
by Igor Gnatenko
Summary of changes:
a17a457... initial import (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 10 months