automatic version update by autodist [release 1.15-1mamba;Thu Aug 25 2011]
This commit is contained in:
parent
287163833e
commit
94cecafe2a
@ -1,2 +1,4 @@
|
|||||||
# convmv
|
# convmv
|
||||||
|
|
||||||
|
convmv converts filenames (not file content), directories, and even whole filesystems to a different encoding. This comes in very handy if, for example, one switches from an 8-bit locale to an UTF-8 locale or changes charsets on Samba servers. It has some smart features: it automagically recognises if a file is already UTF-8 encoded (thus partly converted filesystems can be fully moved to UTF-8) and it also takes care of symlinks. Additionally, it is able to convert from normalization form C (UTF-8 NFC) to NFD and vice-versa. This is important for interoperability with Mac OS X, for example, which uses NFD, while Linux and most other Unixes use NFC. Though it's primary written to convert from/to UTF-8 it can also be used with almost any other charset encoding. Convmv can also be used for case conversion from upper to lower case and vice versa with virtually any charset. Note that this is a command line tool which requires at least Perl version 5.8.0.
|
||||||
|
|
||||||
|
43
convmv.spec
Normal file
43
convmv.spec
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
Name: convmv
|
||||||
|
Version: 1.15
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: Converts filenames, directories, and even whole filesystems to a different encoding
|
||||||
|
Group: System/Tools
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://www.j3e.de/linux/convmv/
|
||||||
|
Source: http://www.j3e.de/linux/convmv/convmv-%{version}.tar.gz
|
||||||
|
#Patch0: %{name}-<pck-version>-<patch-description>.patch
|
||||||
|
License: GPL
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
convmv converts filenames (not file content), directories, and even whole filesystems to a different encoding. This comes in very handy if, for example, one switches from an 8-bit locale to an UTF-8 locale or changes charsets on Samba servers. It has some smart features: it automagically recognises if a file is already UTF-8 encoded (thus partly converted filesystems can be fully moved to UTF-8) and it also takes care of symlinks. Additionally, it is able to convert from normalization form C (UTF-8 NFC) to NFD and vice-versa. This is important for interoperability with Mac OS X, for example, which uses NFD, while Linux and most other Unixes use NFC. Though it's primary written to convert from/to UTF-8 it can also be used with almost any other charset encoding. Convmv can also be used for case conversion from upper to lower case and vice versa with virtually any charset. Note that this is a command line tool which requires at least Perl version 5.8.0.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
install -D -m0755 convmv %{buildroot}%{_bindir}/convmv
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/convmv
|
||||||
|
%doc CREDITS TODO Changes
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Aug 25 2011 Automatic Build System <autodist@mambasoft.it> 1.15-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Feb 05 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.14-1mamba
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user