generated from smedev/Template-for-SMEServer-Core-upstream
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
This commit is contained in:
parent
e5f0d9cd03
commit
5d96cd04fc
BIN
tnef-1.4.18.tar.gz
(Stored with Git LFS)
Normal file
BIN
tnef-1.4.18.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
10
tnef-extract.desktop
Normal file
10
tnef-extract.desktop
Normal file
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Extract TNEF archive
|
||||
Comment=Extract files from TNEF archive
|
||||
Exec=tnef.sh %f
|
||||
Icon=archive-extract
|
||||
Terminal=true
|
||||
MimeType=application/vnd.ms-tnef;
|
||||
NoDisplay=true
|
||||
#refresh F5 nautilus to see changes to this file
|
28
tnef.sh
Normal file
28
tnef.sh
Normal file
@ -0,0 +1,28 @@
|
||||
#! /bin/bash
|
||||
# /usr/bin/tnef.sh
|
||||
#
|
||||
# nautilus helper to extract a tnef file's contents into a subfolder of the
|
||||
# tnef file's location.
|
||||
# todo:
|
||||
# error checking (disk space, unwritable etc).
|
||||
# how could the calling nautilus window be told to refresh it's contents so the
|
||||
# extracted folder becomes visible straight away. (for paths with spaces).
|
||||
filefullpath="$1"
|
||||
file=`basename "$filefullpath"`
|
||||
filepath="`dirname "$filefullpath"`/"$file".extract"
|
||||
#echo $filefullpath
|
||||
#echo $file
|
||||
#echo $filepath
|
||||
if ! [ -d "$filepath" ]; then
|
||||
echo " creating folder $filepath..."
|
||||
mkdir "$filepath"
|
||||
echo " extracting $file tnef contents..."
|
||||
tnef --verbose --save-body -C "$filepath" "$filefullpath"
|
||||
echo " complete."
|
||||
sleep 4
|
||||
else
|
||||
echo " default extract folder $filepath"
|
||||
echo " already exists, extraction aborted."
|
||||
sleep 6
|
||||
fi
|
||||
|
326
tnef.spec
326
tnef.spec
@ -1,59 +1,299 @@
|
||||
%define name tnef
|
||||
%define version 1.0
|
||||
%define release 1
|
||||
Summary: This is what tnef does.
|
||||
Name: %{name}
|
||||
Version: %{version}
|
||||
Release: %{release}%{?dist}
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
License: GNU GPL version 2
|
||||
Group: SMEserver/addon
|
||||
BuildRoot: %{_tmppath}/%{name}-buildroot
|
||||
Prefix: %{_prefix}
|
||||
BuildArchitectures: noarch
|
||||
BuildRequires: smeserver-devtools
|
||||
Requires: smeserver-release >= 11.0
|
||||
AutoReqProv: no
|
||||
%if (0%{?el5} || 0%{?el6})
|
||||
%global builddolphin 0
|
||||
%else
|
||||
%global builddolphin 1
|
||||
%endif
|
||||
|
||||
#global commit #githash for non releases.
|
||||
#global shortcommit #(c=#{commit}; echo ${c:0:7})
|
||||
|
||||
Name: tnef
|
||||
Version: 1.4.18
|
||||
Release: 12%{?dist}
|
||||
Summary: Extract files from email attachments like WINMAIL.DAT
|
||||
|
||||
License: GPLv2+
|
||||
# what about: src/ConvertUTF.* ?
|
||||
# * Unicode, Inc. hereby grants the right to freely use the information
|
||||
# ... Fedora-legal confirmed this to be the free Unicode license.
|
||||
# The upstream project has moved to github;
|
||||
URL: https://github.com/verdammelt/tnef
|
||||
# For git hub release archives:
|
||||
Source0: https://github.com/verdammelt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
# For git hub tags:
|
||||
#S#ource0: https://github.com/verdammelt/%#{name}/archive/%#{commit}/%#{name}-%#{commit}.tar.gz
|
||||
Source1: vnd.ms-tnef.desktop
|
||||
Source2: tnef-extract.desktop
|
||||
Source3: tnefextract.desktop
|
||||
Source4: tnef.sh
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: automake autoconf
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
|
||||
%description
|
||||
This application provides a way to unpack Microsoft MS-TNEF MIME attachments.
|
||||
It operates like tar in order to unpack files of type "application/ms-tnef",
|
||||
which may have been placed into the MS-TNEF attachment instead of being
|
||||
attached separately.
|
||||
|
||||
This application provides a way to unpack Microsoft MS-TNEF MIME attachments.
|
||||
It operates like tar in order to unpack files of type "application/ms-tnef",
|
||||
which may have been placed into the MS-TNEF attachment instead of being
|
||||
attached separately.
|
||||
|
||||
Such files may have attachment names similar to WINMAIL.DAT
|
||||
|
||||
%changelog
|
||||
* Day MMMM DD YYYY <brianr@koozali.org> 1.0-1.sme
|
||||
- Initial code - create RPM [SME:99999]
|
||||
|
||||
%package nautilus
|
||||
Summary: Provides TNEF extract extension for Gnome's Nautilus file manager
|
||||
|
||||
Requires: tnef
|
||||
Requires: nautilus
|
||||
|
||||
|
||||
%description nautilus
|
||||
Provides a right-click extract menu item for Nautilus to extract TNEF files.
|
||||
|
||||
|
||||
%if 0%{builddolphin}
|
||||
%package dolphin
|
||||
Summary: Provides TNEF extract extension for KDE's Dolphin file manager
|
||||
|
||||
BuildRequires: kf5-rpm-macros
|
||||
Requires: tnef
|
||||
Requires: kde-baseapps
|
||||
Requires: kf5-filesystem
|
||||
|
||||
|
||||
%description dolphin
|
||||
Provides a right-click extract menu item for Dolphin to extract TNEF files.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
|
||||
# Normal release extraction
|
||||
%setup -q
|
||||
# git tag extraction
|
||||
#%#setup -q -n %#{name}-%#{commit}
|
||||
|
||||
|
||||
%build
|
||||
autoreconf -vfi
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
chmod a-x THANKS
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
|
||||
rm -f %{name}-%{version}-filelist
|
||||
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
|
||||
> %{name}-%{version}-filelist
|
||||
#echo "%doc COPYING" >> %{name}-%{version}-filelist
|
||||
#--dir <dir> 'attr(755,user,grp)' \
|
||||
#--file <file> 'attr(755,root,root)' \
|
||||
rm -rf %{buildroot}
|
||||
make install DESTDIR=%{buildroot}
|
||||
|
||||
%clean
|
||||
cd ..
|
||||
rm -rf %{name}-%{version}
|
||||
mkdir -p %{buildroot}/%{_datadir}/mimelnk/application/
|
||||
desktop-file-install \
|
||||
--dir=%{buildroot}%{_datadir}/mimelnk/application \
|
||||
%if 0%{?el5}
|
||||
--vendor="" \
|
||||
%endif
|
||||
%{SOURCE1}
|
||||
|
||||
%pre
|
||||
mkdir -p %{buildroot}/%{_datadir}/applications/
|
||||
desktop-file-install \
|
||||
--dir=%{buildroot}%{_datadir}/applications \
|
||||
%if 0%{?el5}
|
||||
--vendor="" \
|
||||
%endif
|
||||
%{SOURCE2}
|
||||
|
||||
%preun
|
||||
%if 0%{builddolphin}
|
||||
mkdir -p %{buildroot}%{_kf5_datadir}/kservices5
|
||||
cp %{SOURCE3} %{buildroot}%{_kf5_datadir}/kservices5
|
||||
%endif
|
||||
|
||||
%post
|
||||
install -p -m 755 %{SOURCE4} \
|
||||
%{buildroot}%{_bindir}/
|
||||
|
||||
|
||||
%check
|
||||
make check DESTDIR=%{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README.md THANKS
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}.sh
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
|
||||
|
||||
%files nautilus
|
||||
%{_datadir}/applications/tnef-extract.desktop
|
||||
%{_datadir}/mimelnk/application/vnd.ms-tnef.desktop
|
||||
|
||||
|
||||
%if 0%{builddolphin}
|
||||
%files dolphin
|
||||
%{_kf5_datadir}/kservices5/tnefextract.desktop
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Mar 3 2022 David Timms <iinet.net.au@dtimms> - 1.4.18-7
|
||||
- modify autoreconf parameters to work with updated autotools.
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.18-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Nov 26 2019 David Timms <iinet.net.au@dtimms> - 1.4.18-1
|
||||
- Update to release 1.4.18. Fixes CVE-2019-18849 - bug #1771891
|
||||
- Add global builddolphin to enable -dolphin subpackage when available.
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.17-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Feb 7 2019 David Timms <iinet.net.au@dtimms> - 1.4.17-1
|
||||
- Update to release 1.4.17.
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.15-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.15-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.15-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Oct 11 2017 Kevin Fenzi <kevin@scrye.com> - 1.4.15-1
|
||||
- Update to 1.4.15. Fixes CVE-2017-8911 - bug #1451256
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.14-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.14-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Apr 27 2017 David Timms <iinet.net.au@dtimms> - 1.4.14-2
|
||||
- Update -dolphin to use the kf5 services directory.
|
||||
- Remove rpm clean section since it's taken care of automatically.
|
||||
|
||||
* Thu Apr 6 2017 David Timms <iinet.net.au@dtimms> - 1.4.14-1
|
||||
- Update to release 1.4.14.
|
||||
- Includes security fixes for CVE-2017-6307, CVE-2017-6308,
|
||||
CVE-2017-6309, CVE-2017-6310.
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.12-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.12-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Apr 30 2015 David Timms <iinet.net.au@dtimms> - 1.4.12-3
|
||||
- replace incorrect source with 1.4.12 release to fix incorrect version.
|
||||
|
||||
* Sat Feb 21 2015 David Timms <iinet.net.au@dtimms> - 1.4.12-2
|
||||
- exclude creating tnef-dolphin subpackage for EPEL-5 which did not ship dolphin.
|
||||
|
||||
* Tue Sep 09 2014 David Timms <iinet.net.au@dtimms> - 1.4.12-1
|
||||
- update to 1.4.12
|
||||
|
||||
* Sun Aug 31 2014 David Timms <iinet.net.au@dtimms> - 1.4.11-1.20140826git0b35ad8
|
||||
- update to 1.4.11 / git tag of 2014-08-26.
|
||||
- add autoreconf to build process now that upstream no longer creates source tarballs.
|
||||
- drop upstreamed format-security patch.
|
||||
- drop document file TODO and update path for README.
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Jun 13 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 1.4.9-5
|
||||
- Fix FTBFS with -Werror=format-security (#1037361, #1107453)
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 David Timms <iinet.net.au@dtimms> - 1.4.9-1
|
||||
- update to 1.4.9
|
||||
- mod kde/dolphin servicemenu to be plain copy rather than desktop-file-validate
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-6.2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-5.2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sun Aug 14 2011 David Timms <iinet.net.au@dtimms> - 1.4.8-4.2
|
||||
- mod dolphin subpackage to require kdebase since dolphin not provided in el6
|
||||
|
||||
* Tue Jul 19 2011 David Timms <iinet.net.au@dtimms> - 1.4.8-4
|
||||
- add buildrequires on desktop-file-utils
|
||||
|
||||
* Mon Jul 18 2011 David Timms <iinet.net.au@dtimms> - 1.4.8-3
|
||||
- del main package require on kde-filesystem
|
||||
- del require on desktop-file-utils to meet packaging guidelines
|
||||
|
||||
* Mon Jul 18 2011 David Timms <iinet.net.au@dtimms> - 1.4.8-2
|
||||
- remove dolphin requires on kde-filesystem
|
||||
- move update-desktop-database to gui subpackages
|
||||
|
||||
* Sun Jul 17 2011 David Timms <iinet.net.au@dtimms> - 1.4.8-1
|
||||
- update to 1.48
|
||||
- use % style macros everywhere instead of $ style
|
||||
- move the desktop icon stuff to subpackage
|
||||
|
||||
* Wed Apr 7 2010 David Timms <iinet.net.au@dtimms> - 1.4.7-2
|
||||
- mod the description and summary to make rpmlint spelling checks happier
|
||||
|
||||
* Sat Mar 20 2010 David Timms <iinet.net.au@dtimms> - 1.4.7-1
|
||||
- update to 1.47, which reverts changes to UTF handling
|
||||
|
||||
* Thu Jan 7 2010 David Timms <iinet.net.au@dtimms> - 1.4.6-5
|
||||
- trial potential fix for ppc32/64 rpm test failure on ppc arch
|
||||
|
||||
* Mon Oct 5 2009 David Timms <iinet.net.au@dtimms> - 1.4.6-4
|
||||
- fix desktop file for nautilus Extract archive menu
|
||||
- add exclude arch ppc since build tests fail, by using ifarch
|
||||
- add missing update-desktop-database calls
|
||||
|
||||
* Wed Sep 30 2009 David Timms <iinet.net.au@dtimms> - 1.4.6-3
|
||||
- add missing buildrequires and requires on kde-filesystem
|
||||
- mod to use desktop-file-install to install the .desktop files.
|
||||
|
||||
* Sun Sep 27 2009 David Timms <iinet.net.au@dtimms> - 1.4.6-2
|
||||
- add tnefextract.desktop ServiceMenu for dolphin
|
||||
- run make build tests
|
||||
|
||||
* Sun Sep 06 2009 David Timms <iinet.net.au@dtimms> - 1.4.6-1
|
||||
- initial packaging for fedora
|
||||
- add desktop file for nautilus open, and appropriate extract script
|
||||
|
||||
%postun
|
||||
#uninstall
|
||||
%files -f %{name}-%{version}-filelist
|
||||
%defattr(-,root,root)
|
||||
|
13
tnefextract.desktop
Normal file
13
tnefextract.desktop
Normal file
@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
X-KDE-Priority=TopLevel
|
||||
X-KDE-ServiceTypes=KonqPopupMenu/Plugin,application/vnd.ms-tnef
|
||||
Name=tnef tools
|
||||
Comment=tnef archive tool menu
|
||||
Icon=archive-extract
|
||||
Actions=tnefExtractToSubfolder;
|
||||
|
||||
[Desktop Action tnefExtractToSubfolder]
|
||||
Name=Extract TNEF (email attachment) Archive
|
||||
Exec=tnef.sh "%f"
|
||||
Icon=archive-extract
|
9
vnd.ms-tnef.desktop
Normal file
9
vnd.ms-tnef.desktop
Normal file
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
MimeType=application/vnd.ms-tnef;
|
||||
Icon=archive-extract
|
||||
Name=Extract TNEF (email attachment) Archive
|
||||
Comment=TNEF archive
|
||||
#Patterns=winmail.dat;winmail*.dat;*.dat;
|
||||
Exec=tnef.sh "%f"
|
||||
NoDisplay=true
|
Loading…
Reference in New Issue
Block a user