[sinthgunt] Just importing for history
by Sérgio M. Basto
Summary of changes:
af261e4... Just importing for history (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 5 months
[sinthgunt/f26] Just importing for history
by Sérgio M. Basto
commit af261e4416f888bf92fcde9dfe2df8f6a65414f2
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Jun 6 16:58:48 2021 +0100
Just importing for history
Package approved on 2012-02-28 https://bugzilla.rpmfusion.org/show_bug.cgi?id=1034
.gitignore | 1 +
dead.package | 1 -
sinthgunt.spec | 104 +++++++++++++++++++++++++++++++++++++++
sinthgunt_fix_desktop_file.patch | 12 +++++
sources | 1 +
5 files changed, 118 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..96701ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/sinthgunt-2.0.3.tar.gz
diff --git a/sinthgunt.spec b/sinthgunt.spec
new file mode 100644
index 0000000..80a5f66
--- /dev/null
+++ b/sinthgunt.spec
@@ -0,0 +1,104 @@
+Name: sinthgunt
+Version: 2.0.3
+Release: 3%{?dist}
+Summary: An easy to use GUI for ffmpeg
+BuildArch: noarch
+Group: Applications/Multimedia
+License: GPLv3+
+URL: http://code.google.com/p/sinthgunt
+Source0: http://sinthgunt.googlecode.com/files/%{name}-%{version}.tar.gz
+Patch0: sinthgunt_fix_desktop_file.patch
+Requires: ffmpeg pygtk2-libglade mplayer
+# We must require the package that owns the directories where the icon file is
+# being installed.
+Requires: hicolor-icon-theme
+BuildRequires: python-devel desktop-file-utils ImageMagick
+
+
+%description
+Sinthgunt is an open source graphical user interface for ffmpeg, a computer
+program that can convert digital audio and video into numerous formats.
+Using pre-configured conversion settings, it makes the task of converting
+between different media formats very easy.
+
+
+%prep
+%setup -q
+%patch0 -p1
+chmod -x README.txt
+chmod -x Sinthgunt/app.py
+sed -i -e '/^#!\//, 1d' Sinthgunt/app.py
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/sinthgunt.desktop
+rm -f $RPM_BUILD_ROOT%{_datadir}/sinthgunt/README.txt \
+ $RPM_BUILD_ROOT%{_datadir}/sinthgunt/LICENSE.txt
+rm -f $RPM_BUILD_ROOT%{_datadir}/pixmaps/sinthgunt.png
+
+# Create square icons from logo file.
+montage -crop +0+1 -background white -geometry +0+18 \
+ $RPM_BUILD_ROOT%{_datadir}/sinthgunt/logo.png $RPM_BUILD_ROOT%{_datadir}/sinthgunt/icon.png
+
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/128x128/apps
+
+convert -resize 48x48 $RPM_BUILD_ROOT%{_datadir}/sinthgunt/icon.png \
+ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/sinthgunt.png
+cp $RPM_BUILD_ROOT%{_datadir}/sinthgunt/icon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/128x128/apps/sinthgunt.png
+
+
+%files
+%doc README.txt LICENSE.txt
+%{_bindir}/sinthgunt
+%{_bindir}/youtube-dl-sinthgunt
+%{_datadir}/sinthgunt/
+%{_datadir}/applications/sinthgunt.desktop
+%{_datadir}/icons/hicolor/48x48/apps/sinthgunt.png
+%{_datadir}/icons/hicolor/128x128/apps/sinthgunt.png
+%{python_sitelib}/Sinthgunt/
+%{python_sitelib}/sinthgunt-2.0.3-py2.7.egg-info
+
+
+%post
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+ touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%changelog
+* Sat Feb 25 2012 Jean-Francois Saucier <jsaucier(a)gmail.com> - 2.0.3-3
+- Fix the problem with icons and desktop file
+
+* Tue Jan 10 2012 Jean-Francois Saucier <jsaucier(a)gmail.com> - 2.0.3-2
+- Fix as per the suggestions on review #1034
+
+* Tue Dec 28 2010 Jean-Francois Saucier <jsaucier(a)gmail.com> - 2.0.3-1
+- Update to the new upstream version
+
+* Mon Aug 23 2010 Jean-Francois Saucier <jfsaucier(a)infoglobe.ca> - 2.0.2-4
+- Make some corrections as ask in #1034
+- Fix Requires section
+
+* Fri Mar 26 2010 Jean-Francois Saucier <jfsaucier(a)infoglobe.ca> - 2.0.2-3
+- Fix some typos
+- Add desktop-file-utils BuildRequires
+- Remove shebang from non-executable-script
+
+* Fri Jan 15 2010 Jean-Francois Saucier <jfsaucier(a)infoglobe.ca> - 2.0.2-2
+- Fix the install and files section
+
+* Mon Jan 4 2010 Jean-Francois Saucier <jfsaucier(a)infoglobe.ca> - 2.0.2-1
+- Initial build for Fedora
diff --git a/sinthgunt_fix_desktop_file.patch b/sinthgunt_fix_desktop_file.patch
new file mode 100644
index 0000000..e286746
--- /dev/null
+++ b/sinthgunt_fix_desktop_file.patch
@@ -0,0 +1,12 @@
+diff -up sinthgunt-2.0.3/share/sinthgunt.desktop.ori sinthgunt-2.0.3/share/sinthgunt.desktop
+--- sinthgunt-2.0.3/share/sinthgunt.desktop.ori 2012-02-25 08:00:02.231191879 -0500
++++ sinthgunt-2.0.3/share/sinthgunt.desktop 2012-02-25 08:00:08.668191439 -0500
+@@ -3,7 +3,7 @@ Name=sinthgunt
+ GenericName=Video converter
+ Comment=Convert video files
+ Exec=sinthgunt
+-Icon=sinthgunt.png
++Icon=sinthgunt
+ Type=Application
+ Terminal=false
+ Encoding=UTF-8
diff --git a/sources b/sources
index e69de29..4755fec 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (sinthgunt-2.0.3.tar.gz) = a4243aeee9f00b5aeec4bfa0a1800d276cb31eda040d34dd1156fa310fbea0047f1e246c8fa0cf63ed19868bbd3f47240bdb9239bd6cfd92d07e93e0373e09b1
3 years, 5 months
[zerotier-one/f33] Initial import
by Artem Polishchuk
Summary of changes:
380904e... Initial import (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 5 months
[zerotier-one/f34] Initial import
by Artem Polishchuk
Summary of changes:
380904e... Initial import (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 5 months
[zerotier-one] Initial import
by Artem Polishchuk
commit 380904ef2a9c2bb5ab39dbe72f196112b3a4dbad
Author: Artem Polishchuk <ego.cordatus(a)gmail.com>
Date: Sun Jun 6 16:49:08 2021 +0300
Initial import
.gitignore | 1 +
sources | 1 +
zerotier-one.spec | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 160 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..35189ea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/zerotier-one-1.6.5.tar.gz
diff --git a/sources b/sources
index e69de29..7c07bb9 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (zerotier-one-1.6.5.tar.gz) = 34052693c94bce239b6a3edb48083806d790874585b4f79a47d007afa9b71c779716f5ee8f1dec9395045c2adb3b183af151e69806f7ff657f851e246dba751b
diff --git a/zerotier-one.spec b/zerotier-one.spec
new file mode 100644
index 0000000..b6cce3e
--- /dev/null
+++ b/zerotier-one.spec
@@ -0,0 +1,158 @@
+Name: zerotier-one
+Version: 1.6.5
+Release: 1%{?dist}
+Summary: Smart Ethernet Switch for Earth
+
+# Boost: README.md
+#
+# ASL: controller/
+# debian/copyright
+# include/
+# node/
+# one.cpp
+# osdep/
+# rule-compiler/
+# selftest.cpp
+# service/
+# version.h
+#
+# ASL 2.0: LICENSE.txt
+#
+# BSD: ext/libnatpmp/
+# ext/miniupnpc/
+#
+# Boost: COPYING
+#
+# MIT ext/cpp-httplib/
+# ext/http-parser/
+# ext/json/LICENSE.MIT
+# ext/librabbitmq/
+#
+# GPLv3+: attic/
+# ext/libnatpmp/
+# java/
+
+License: BSL and Boost and ASL and ASL 2.0 and MIT
+URL: https://zerotier.com
+Source0: https://github.com/zerotier/ZeroTierOne/archive/%{version}/%{name}-%{vers...
+
+BuildRequires: gcc-c++
+BuildRequires: go-md2man
+BuildRequires: http-parser-devel
+BuildRequires: json-devel
+BuildRequires: libnatpmp-devel
+BuildRequires: systemd-rpm-macros
+
+BuildRequires: pkgconfig(liblz4)
+BuildRequires: pkgconfig(miniupnpc)
+BuildRequires: pkgconfig(sqlite3)
+
+Provides: bundled(http-parser)
+Provides: bundled(json) = 3.2.0
+Provides: bundled(salsa2012)
+
+%description
+ZeroTier is a smart programmable Ethernet switch for planet Earth. It allows all
+networked devices, VMs, containers, and applications to communicate as if they
+all reside in the same physical data center or cloud region.
+
+This is accomplished by combining a cryptographically addressed and secure peer
+to peer network (termed VL1) with an Ethernet emulation layer somewhat similar
+to VXLAN (termed VL2). Our VL2 Ethernet virtualization layer includes advanced
+enterprise SDN features like fine grained access control rules for network
+micro-segmentation and security monitoring.
+
+All ZeroTier traffic is encrypted end-to-end using secret keys that only you
+control. Most traffic flows peer to peer, though we offer free (but slow)
+relaying for users who cannot establish peer to peer connections.
+
+The goals and design principles of ZeroTier are inspired by among other things
+the original Google BeyondCorp paper and the Jericho Forum with its notion of
+"deperimeterization."
+
+
+%prep
+%autosetup -n ZeroTierOne-%{version}
+
+## Unbundling (maybe for future, depends on upstream)
+# rm -rf ext/http-parser
+# rm -rf ext/json
+
+
+%build
+%set_build_flags
+%make_build \
+ STRIP=%{_bindir}/true
+
+
+%install
+%make_install
+install -Dpm0644 debian/%{name}.service %{buildroot}%{_unitdir}/%{name}.service
+
+
+%post
+%systemd_post %{name}.service
+
+%preun
+%systemd_preun %{name}.service
+
+%postun
+%systemd_postun_with_restart %{name}.service
+
+
+%files
+%license COPYING
+%doc AUTHORS.md README.md RELEASE-NOTES.md OFFICIAL-RELEASE-STEPS.md
+%{_mandir}/man{1,8}/*.{1,8}*
+%{_sbindir}/zerotier-*
+%{_sharedstatedir}/%{name}/
+%{_unitdir}/*.service
+
+
+%changelog
+* Fri Apr 30 2021 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.5-1
+- build(update): 1.6.5
+
+* Wed Feb 17 2021 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.4-1
+- build(update): 1.6.4
+
+* Thu Feb 04 2021 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.3-1
+- build(update): 1.6.3
+
+* Fri Jan 15 2021 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.2-2
+- build: build debuginfo package
+
+* Tue Dec 1 2020 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.2-1
+- build(update): 1.6.2
+
+* Thu Nov 26 2020 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.1-1
+- build(update): 1.6.1
+
+* Sat Nov 21 2020 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.6.0-1
+- build(update): 1.6.0
+
+* Sun Nov 03 2019 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.4.6-4
+- Update to 1.4.6
+
+* Thu Apr 25 2019 Artem Polishchuk <ego.cordatus(a)gmail.com> - 1.2.12-2
+- Update to 1.2.12
+- .spec file "fixes" :)
+
+* Sat Mar 18 2017 François Kooman <fkooman(a)tuxed.net> - 1.2.2-1
+- update to 1.2.2
+
+* Mon Jul 25 2016 François Kooman <fkooman(a)tuxed.net> - 1.1.14-1
+- update to 1.1.14
+
+* Tue Jul 19 2016 François Kooman <fkooman(a)tuxed.net> - 1.1.12-2
+- allow override of LDFLAGS by rpmbuild
+
+* Wed Jul 13 2016 François Kooman <fkooman(a)tuxed.net> - 1.1.12-1
+- update to 1.1.12
+- remove fix for selftest when controller is enabled
+
+* Mon Jul 04 2016 François Kooman <fkooman(a)tuxed.net> - 1.1.6-2
+- use go-md2man to generate the manpages
+
+* Mon Jul 04 2016 François Kooman <fkooman(a)tuxed.net> - 1.1.6-1
+- initial package
3 years, 5 months
[vdr-markad/f33] Update to 3.0.4
by Martin Gansser
Summary of changes:
cc5810c... Update to 3.0.4 (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 5 months
[vdr-markad/f34] Update to 3.0.4
by Martin Gansser
Summary of changes:
cc5810c... Update to 3.0.4 (*)
(*) This commit already existed in another branch; no separate mail sent
3 years, 5 months
[vdr-markad] Update to 3.0.4
by Martin Gansser
commit cc5810c17046aa22a9d0b01ba39ddea4ee6f26b9
Author: Martin Gansser <mgansser(a)online.de>
Date: Sat Jun 5 11:24:44 2021 +0200
Update to 3.0.4
.gitignore | 1 +
sources | 2 +-
vdr-markad.spec | 5 ++++-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 42af38a..d8524bf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,3 +29,4 @@ vdr-plugin-markad-74e2a8c5382fa8bfacd12274899112724a1e0d51.tar.bz2
/vdr-markad-3.0.1.tar.gz
/vdr-markad-3.0.2.tar.gz
/vdr-markad-3.0.3.tar.gz
+/vdr-markad-3.0.4.tar.gz
diff --git a/sources b/sources
index 4dd5416..6c37ad1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (vdr-markad-3.0.3.tar.gz) = ab85a5d7947b43f3c5673935bead5365515258d5b801291e697dac43e03be33ae0ece8369d2dd946ebf1a6672e9aa387589f37035a6076401c765e3bb272ec42
+SHA512 (vdr-markad-3.0.4.tar.gz) = dd3f1658bdfc2fe8d37c71fdac35294308d1dd4908a825afab81c7460bc81b0386c347f00d9b1a40b73a2fafad264a61cef9327fa58dc9ccf4b97bd0e5f6a216
diff --git a/vdr-markad.spec b/vdr-markad.spec
index 187e8cf..1750033 100644
--- a/vdr-markad.spec
+++ b/vdr-markad.spec
@@ -1,5 +1,5 @@
Name: vdr-markad
-Version: 3.0.3
+Version: 3.0.4
Release: 1%{?dist}
Summary: Advanced commercial detection for VDR
License: GPLv2+
@@ -48,6 +48,9 @@ fi
%{vdr_vardir}/markad/
%changelog
+* Sat Jun 05 2021 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.4-1
+- Update to 3.0.4
+
* Sun May 16 2021 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.3-1
- Update to 3.0.3
3 years, 5 months