[libmad/f25] Moved to Fedora repo
by Leigh Scott
Summary of changes:
b458d16... Moved to Fedora repo (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 11 months
[libmad] Moved to Fedora repo
by Leigh Scott
commit b458d16a5757cd7d0f4d4575edb51f70f3524274
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Tue Dec 6 09:30:46 2016 +0000
Moved to Fedora repo
.gitignore | 1 -
...ide-Thumb-2-alternative-code-for-MAD_F_MLN.diff | 31 ---
dead.package | 1 +
libmad-0.15.1b-multiarch.patch | 37 ----
libmad-0.15.1b-ppc.patch | 13 --
libmad.spec | 216 ---------------------
libmad.thumb.diff | 12 --
sources | 1 -
8 files changed, 1 insertion(+), 311 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5883af5
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Moved to Fedora repo
7 years, 11 months
[ffmpeg/f23] Updated to 2.8.10
by Julian Sikorski
commit 61f3bda17540c20fe83d36093f9d5f7d32960690
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Tue Dec 6 07:08:22 2016 +0100
Updated to 2.8.10
- Backported some .spec cleanups from rawhide
.gitignore | 1 +
ffmpeg.spec | 29 +++++++++++++++++------------
sources | 2 +-
3 files changed, 19 insertions(+), 13 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 71658b8..1a382d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
ffmpeg-2.8.7.tar.xz
/ffmpeg-2.8.8.tar.xz
/ffmpeg-2.8.9.tar.xz
+/ffmpeg-2.8.10.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index a28b427..7390697 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -12,7 +12,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 2.8.9
+Version: 2.8.10
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
@@ -21,9 +21,9 @@ License: GPLv2+
%endif
URL: http://ffmpeg.org/
%if 0%{?date}
-Source0: ffmpeg-%{?branch}%{date}.tar.bz2
+Source0: %{name}-%{?branch}%{date}.tar.bz2
%else
-Source0: http://ffmpeg.org/releases/ffmpeg-%{version}.tar.xz
+Source0: http://ffmpeg.org/releases/%{name}-%{version}.tar.xz
%endif
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
BuildRequires: bzip2-devel
@@ -124,6 +124,7 @@ This package contains development files for %{name}
--mandir=%{_mandir} \\\
--arch=%{_target_cpu} \\\
--optflags="$RPM_OPT_FLAGS" \\\
+ --extra-ldflags="$RPM_LD_FLAGS" \\\
%{?_with_amr:--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3} \\\
--enable-bzlib \\\
%{!?_with_crystalhd:--disable-crystalhd} \\\
@@ -136,7 +137,7 @@ This package contains development files for %{name}
--enable-libdc1394 \\\
%{?_with_dirac:--enable-libdirac} \\\
%{?_with_faac:--enable-libfaac --enable-nonfree} \\\
- %{?_with_fdk-aac:--enable-libfdk-aac --enable-nonfree} \\\
+ %{?_with_fdk_aac:--enable-libfdk-aac --enable-nonfree} \\\
%{!?_with_jack:--disable-indev=jack} \\\
--enable-libfreetype \\\
--enable-libgsm \\\
@@ -173,13 +174,13 @@ This package contains development files for %{name}
%prep
%if 0%{?date}
-%setup -q -n ffmpeg-%{?branch}%{date}
+%setup -q -n %{name}-%{?branch}%{date}
echo "git-snapshot-%{?branch}%{date}-RPMFusion" > VERSION
%else
-%setup -q -n ffmpeg-%{version}
+%setup -q
%endif
# fix -O3 -g in host_cflags
-sed -i "s|-O3 -g|$RPM_OPT_FLAGS|" configure
+sed -i "s|check_host_cflags -O3|check_host_cflags $RPM_OPT_FLAGS|" configure
%build
%{ff_configure}\
@@ -216,12 +217,12 @@ sed -i "s|-O3 -g|$RPM_OPT_FLAGS|" configure
%endif
%endif
-make %{?_smp_mflags} V=1
+%make_build V=1
make documentation V=1
make alltools V=1
%install
-make install DESTDIR=$RPM_BUILD_ROOT V=1
+%make_install V=1
%if 0%{!?ffmpegsuffix:1}
install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%endif
@@ -242,7 +243,7 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%{_mandir}/man1/ffplay*.1*
%{_mandir}/man1/ffprobe*.1*
%{_mandir}/man1/ffserver*.1*
-%{_datadir}/ffmpeg
+%{_datadir}/%{name}
%endif
%files libs
@@ -255,13 +256,17 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%files devel
%doc MAINTAINERS doc/APIchanges doc/*.txt
-%doc %{_docdir}/ffmpeg/*.html
-%{_includedir}/ffmpeg
+%doc %{_docdir}/%{name}/*.html
+%{_includedir}/%{name}
%{_libdir}/pkgconfig/lib*.pc
%{_libdir}/lib*.so
%changelog
+* Tue Dec 06 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 2.8.10-1
+- Updated to 2.8.10
+- Backported some .spec cleanups from rawhide
+
* Sun Dec 04 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 2.8.9-1
- Updated to 2.8.9
diff --git a/sources b/sources
index 1755dcf..3997957 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-74bdde498e065be80bf3b17d73c582ac ffmpeg-2.8.9.tar.xz
+9289aec26808c8ea242ed8c29b2b72d7 ffmpeg-2.8.10.tar.xz
7 years, 11 months
[ffmpeg/f24] Updated to 3.1.6
by Julian Sikorski
commit 9ec0b680c8950e55f639b4cb2ae6c952fde5ab87
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Tue Dec 6 06:55:48 2016 +0100
Updated to 3.1.6
- Backported some .spec cleanups from rawhide
.gitignore | 1 +
ffmpeg.spec | 28 ++++++++++++++++------------
sources | 2 +-
3 files changed, 18 insertions(+), 13 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 8727927..32c0054 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ ffmpeg-2.8.7.tar.xz
/ffmpeg-3.0.3.tar.xz
/ffmpeg-3.0.4.tar.xz
/ffmpeg-3.1.5.tar.xz
+/ffmpeg-3.1.6.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index c12757e..da855a1 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -19,7 +19,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 3.1.5
+Version: 3.1.6
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr} || 0%{?_with_gmp}
License: GPLv3+
@@ -28,9 +28,9 @@ License: GPLv2+
%endif
URL: http://ffmpeg.org/
%if 0%{?date}
-Source0: ffmpeg-%{?branch}%{date}.tar.bz2
+Source0: %{name}-%{?branch}%{date}.tar.bz2
%else
-Source0: http://ffmpeg.org/releases/ffmpeg-%{version}.tar.xz
+Source0: http://ffmpeg.org/releases/%{name}-%{version}.tar.xz
%endif
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
BuildRequires: bzip2-devel
@@ -175,7 +175,7 @@ This package contains development files for %{name}
%{!?_without_cdio:--enable-libcdio} \\\
%{?_with_ieee1394:--enable-libdc1394 --enable-libiec61883} \\\
%{?_with_faac:--enable-libfaac --enable-nonfree} \\\
- %{?_with_fdk-aac:--enable-libfdk-aac --enable-nonfree} \\\
+ %{?_with_fdk_aac:--enable-libfdk-aac --enable-nonfree} \\\
%{?_with_flite:--enable-libflite} \\\
%{!?_without_jack:--enable-indev=jack} \\\
--enable-libfreetype \\\
@@ -227,13 +227,13 @@ This package contains development files for %{name}
%prep
%if 0%{?date}
-%setup -q -n ffmpeg-%{?branch}%{date}
+%setup -q -n %{name}-%{?branch}%{date}
echo "git-snapshot-%{?branch}%{date}-RPMFusion" > VERSION
%else
-%setup -q -n ffmpeg-%{version}
+%setup -q
%endif
# fix -O3 -g in host_cflags
-sed -i "s|-O3 -g|$RPM_OPT_FLAGS|" configure
+sed -i "s|check_host_cflags -O3|check_host_cflags $RPM_OPT_FLAGS|" configure
mkdir -p _doc/examples
cp -pr doc/examples/{*.c,Makefile,README} _doc/examples/
@@ -275,12 +275,12 @@ cp -pr doc/examples/{*.c,Makefile,README} _doc/examples/
%endif
%endif
-make %{?_smp_mflags} V=1
+%make_build V=1
make documentation V=1
make alltools V=1
%install
-make install DESTDIR=$RPM_BUILD_ROOT V=1
+%make_install V=1
rm -r $RPM_BUILD_ROOT%{_datadir}/ffmpeg/examples
%if 0%{!?ffmpegsuffix:1}
install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
@@ -306,7 +306,7 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%{_mandir}/man1/ffplay*.1*
%{_mandir}/man1/ffprobe*.1*
%{_mandir}/man1/ffserver*.1*
-%{_datadir}/ffmpeg
+%{_datadir}/%{name}
%endif
%files libs
@@ -322,13 +322,17 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%files devel
%doc MAINTAINERS doc/APIchanges doc/*.txt
%doc _doc/examples
-%doc %{_docdir}/ffmpeg/*.html
-%{_includedir}/ffmpeg
+%doc %{_docdir}/%{name}/*.html
+%{_includedir}/%{name}
%{_libdir}/pkgconfig/lib*.pc
%{_libdir}/lib*.so
%changelog
+* Tue Dec 06 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.6-1
+- Updated to 3.1.6
+- Backported some .spec cleanups from rawhide
+
* Sat Nov 05 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.5-1
- Updated to 3.1.5
diff --git a/sources b/sources
index e29d051..7c28cfb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a09f7730ceeb665c6f7da0b884dd00f9 ffmpeg-3.1.5.tar.xz
+1b82f40459bea8450f29e4ea2454ce4f ffmpeg-3.1.6.tar.xz
7 years, 11 months
[ffmpeg/f25] Updated to 3.1.6
by Julian Sikorski
commit e968acc0c29447bc78f159cb1e7e2aa1099f4a66
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Tue Dec 6 06:55:48 2016 +0100
Updated to 3.1.6
- Backported some .spec cleanups from rawhide
.gitignore | 1 +
ffmpeg.spec | 28 ++++++++++++++++------------
sources | 2 +-
3 files changed, 18 insertions(+), 13 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7c3610a..d4aacc6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ ffmpeg-2.8.7.tar.xz
/ffmpeg-3.1.4.tar.xz
/ffmpeg-3.1.5.tar.bz2
/ffmpeg-3.1.5.tar.xz
+/ffmpeg-3.1.6.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index ea984a5..6a831b2 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -19,7 +19,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 3.1.5
+Version: 3.1.6
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr} || 0%{?_with_gmp}
License: GPLv3+
@@ -28,9 +28,9 @@ License: GPLv2+
%endif
URL: http://ffmpeg.org/
%if 0%{?date}
-Source0: ffmpeg-%{?branch}%{date}.tar.bz2
+Source0: %{name}-%{?branch}%{date}.tar.bz2
%else
-Source0: http://ffmpeg.org/releases/ffmpeg-%{version}.tar.xz
+Source0: http://ffmpeg.org/releases/%{name}-%{version}.tar.xz
%endif
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
BuildRequires: bzip2-devel
@@ -175,7 +175,7 @@ This package contains development files for %{name}
%{!?_without_cdio:--enable-libcdio} \\\
%{?_with_ieee1394:--enable-libdc1394 --enable-libiec61883} \\\
%{?_with_faac:--enable-libfaac --enable-nonfree} \\\
- %{?_with_fdk-aac:--enable-libfdk-aac --enable-nonfree} \\\
+ %{?_with_fdk_aac:--enable-libfdk-aac --enable-nonfree} \\\
%{?_with_flite:--enable-libflite} \\\
%{!?_without_jack:--enable-indev=jack} \\\
--enable-libfreetype \\\
@@ -227,13 +227,13 @@ This package contains development files for %{name}
%prep
%if 0%{?date}
-%setup -q -n ffmpeg-%{?branch}%{date}
+%setup -q -n %{name}-%{?branch}%{date}
echo "git-snapshot-%{?branch}%{date}-RPMFusion" > VERSION
%else
-%setup -q -n ffmpeg-%{version}
+%setup -q
%endif
# fix -O3 -g in host_cflags
-sed -i "s|-O3 -g|$RPM_OPT_FLAGS|" configure
+sed -i "s|check_host_cflags -O3|check_host_cflags $RPM_OPT_FLAGS|" configure
mkdir -p _doc/examples
cp -pr doc/examples/{*.c,Makefile,README} _doc/examples/
@@ -275,12 +275,12 @@ cp -pr doc/examples/{*.c,Makefile,README} _doc/examples/
%endif
%endif
-make %{?_smp_mflags} V=1
+%make_build V=1
make documentation V=1
make alltools V=1
%install
-make install DESTDIR=$RPM_BUILD_ROOT V=1
+%make_install V=1
rm -r $RPM_BUILD_ROOT%{_datadir}/ffmpeg/examples
%if 0%{!?ffmpegsuffix:1}
install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
@@ -306,7 +306,7 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%{_mandir}/man1/ffplay*.1*
%{_mandir}/man1/ffprobe*.1*
%{_mandir}/man1/ffserver*.1*
-%{_datadir}/ffmpeg
+%{_datadir}/%{name}
%endif
%files libs
@@ -322,13 +322,17 @@ install -pm755 tools/qt-faststart $RPM_BUILD_ROOT%{_bindir}
%files devel
%doc MAINTAINERS doc/APIchanges doc/*.txt
%doc _doc/examples
-%doc %{_docdir}/ffmpeg/*.html
-%{_includedir}/ffmpeg
+%doc %{_docdir}/%{name}/*.html
+%{_includedir}/%{name}
%{_libdir}/pkgconfig/lib*.pc
%{_libdir}/lib*.so
%changelog
+* Tue Dec 06 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.6-1
+- Updated to 3.1.6
+- Backported some .spec cleanups from rawhide
+
* Tue Oct 25 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.1.5-1
- Updated to 3.1.5
diff --git a/sources b/sources
index e29d051..7c28cfb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a09f7730ceeb665c6f7da0b884dd00f9 ffmpeg-3.1.5.tar.xz
+1b82f40459bea8450f29e4ea2454ce4f ffmpeg-3.1.6.tar.xz
7 years, 11 months
[ffmpeg] Updated to 3.2.2
by Julian Sikorski
commit 06e918dc864491e054db21a743454d97d5aa7798
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Tue Dec 6 06:43:00 2016 +0100
Updated to 3.2.2
.gitignore | 1 +
ffmpeg.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c858157..3c6a48c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ ffmpeg-2.8.7.tar.xz
/ffmpeg-3.1.5.tar.xz
/ffmpeg-3.2.tar.xz
/ffmpeg-3.2.1.tar.xz
+/ffmpeg-3.2.2.tar.xz
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 72022b5..e41ab90 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -19,7 +19,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 3.2.1
+Version: 3.2.2
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr} || 0%{?_with_gmp}
License: GPLv3+
@@ -330,6 +330,9 @@ install -pm755 tools/qt-faststart %{buildroot}%{_bindir}
%changelog
+* Tue Dec 06 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.2.2-1
+- Updated to 3.2.2
+
* Sat Nov 26 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.2.1-1
- Updated to 3.2.1
diff --git a/sources b/sources
index 01b9f6d..d13cad9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-10eaee7cca7d1e745eec6e4217772361 ffmpeg-3.2.1.tar.xz
+e34d1b92c5d844f2a3611c741a6dba18 ffmpeg-3.2.2.tar.xz
7 years, 11 months
[dolphin-emu] F26 fix and various spec updates
by Jeremy Newton
commit 904816f35f6ca81e008acf035a2f955d7dcc4c9e
Author: Mystro256 <alexjnewt(a)hotmail.com>
Date: Mon Dec 5 23:51:54 2016 -0500
F26 fix and various spec updates
dolphin-emu.spec | 43 +++++++++++++++++++++++--------------------
1 file changed, 23 insertions(+), 20 deletions(-)
---
diff --git a/dolphin-emu.spec b/dolphin-emu.spec
index b4ce772..10912d7 100644
--- a/dolphin-emu.spec
+++ b/dolphin-emu.spec
@@ -2,7 +2,7 @@
Name: dolphin-emu
Version: 5.0
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: GameCube / Wii / Triforce Emulator
Url: https://dolphin-emu.org/
@@ -10,7 +10,8 @@ License: GPLv2 and BSD and Public Domain
Source0: https://github.com/%{name}/dolphin/archive/%{version}.tar.gz
#GTK3 patch, upstream doesn't care for gtk3
Patch0: %{name}-%{version}-gtk3.patch
-#Minor fix for mbedtls 2.3+
+#Missing include for mbedtls 2.3+, fixed upstream:
+#https://github.com/dolphin-emu/dolphin/commit/980ecfba7f934f91c021bdeec06d0518dd570bac
Patch1: %{name}-%{version}-mbedtls2.3.patch
BuildRequires: alsa-lib-devel
@@ -47,7 +48,8 @@ BuildRequires: desktop-file-utils
#Only the following architectures are supported:
ExclusiveArch: x86_64 armv7l aarch64
-#xxhash doesn't appear to be in Fedora, if it's packaged it will unbundled
+#xxhash is bundled for now, will be unbundled after included in Fedora:
+#https://bugzilla.redhat.com/show_bug.cgi?id=1282063
#Note that xxhash was unversioned prior to 0.5.0, 0.4.39 is a placeholder
#It was actually called r39: https://github.com/Cyan4973/xxHash/tree/r39
Provides: bundled(xxhash) = 0.4.39
@@ -71,15 +73,14 @@ Dolphin Emulator without a graphical user interface
####################################################
%prep
-%setup -q -n dolphin-%{version}
-%patch0 -p1
-%patch1 -p1
+%autosetup -p1 -n dolphin-%{version}
#Allow building with cmake macro
sed -i '/CMAKE_C.*_FLAGS/d' CMakeLists.txt
-#Patch for curl 7.5.0
-sed -i 's/typedef void CURL/typedef struct Curl_easy CURL/g' Source/Core/Common/Analytics.h
+#Patch for fedora 26+
+#https://github.com/dolphin-emu/dolphin/pull/4496
+sed -i 's/CHAR_WIDTH/char_width/g' Source/Core/VideoBackends/OGL/RasterFont.cpp
###Remove Bundled Libraries except xxhash, mentioned above:
cd Externals
@@ -91,23 +92,19 @@ ln -s %{_includedir}/bochs/config.h ./config.h
ln -s %{_includedir}/bochs/disasm/* ./
%build
-%cmake \
+%cmake . \
-DUSE_SHARED_ENET=TRUE \
- -DUSE_SHARED_GTEST=TRUE \
- -DwxWidgets_CONFIG_EXECUTABLE=%{_libexecdir}/wxGTK3/wx-config \
- .
-
-make %{?_smp_mflags}
+ -DUSE_SHARED_GTEST=TRUE
+%make_build
%install
-make %{?_smp_mflags} install DESTDIR=%{buildroot}
-
+%make_install
desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
-
%find_lang %{name}
%files -f %{name}.lang
-%doc license.txt Readme.md
+%doc Readme.md
+%license license.txt
%{_datadir}/%{name}
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
@@ -115,7 +112,8 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.*
%files nogui
-%doc license.txt Readme.md
+%doc Readme.md
+%license license.txt
%{_bindir}/%{name}-nogui
%{_mandir}/man6/%{name}-nogui.*
@@ -132,8 +130,13 @@ fi
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
+* Mon Dec 5 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 5.0-5
+- Revert patch for curl 7.50
+- Spec cleanup and fixes
+- Add a patch for f26+
+
* Mon Jul 25 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 5.0-4
-- Patch for curl 7.5.0
+- Patch for curl 7.50
* Mon Jul 25 2016 Jeremy Newton <alexjnewt at hotmail dot com> - 5.0-3
- Added systemd-devel as build require
7 years, 11 months
[bino/f23] New version
by Jaroslav Škarvada
Summary of changes:
5d64c01... New version (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 11 months
[bino/f24] New version
by Jaroslav Škarvada
Summary of changes:
5d64c01... New version (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 11 months
[bino/f25] New version
by Jaroslav Škarvada
Summary of changes:
5d64c01... New version (*)
(*) This commit already existed in another branch; no separate mail sent
7 years, 11 months