bump release version to 0.2
This commit is contained in:
parent
351554319b
commit
80784a0c8c
13
NEWS
13
NEWS
|
@ -0,0 +1,13 @@
|
|||
New in version 0.2:
|
||||
- introduced special device file as mount parameter
|
||||
- MTP device can be specified by special file placed in /dev
|
||||
- fixed bogus storage size reported on FreeBSD
|
||||
- temporary directory can be configured during setup time (--with-tmpdir=)
|
||||
- temporary directory can be overridden by environment variables TMP, TMPDIR
|
||||
- build fixes
|
||||
- on older C++ compilers
|
||||
- Mac OS X (fuse)
|
||||
- FreeBSD
|
||||
- libmtp debug messages are suppressed
|
||||
- reference counting for opened temporary files
|
||||
- various fixes, improvements and code cleanup
|
|
@ -1,9 +1,9 @@
|
|||
AC_PREREQ([2.60])
|
||||
AC_INIT([simple-mtpfs], [0.1], [phatina@gmail.com])
|
||||
AC_INIT([simple-mtpfs], [0.2], [phatina@gmail.com])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
AM_INIT_AUTOMAKE([dist-bzip2])
|
||||
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
||||
AC_CONFIG_HEADERS(config.h)
|
||||
AM_SILENT_RULES([yes])
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
simple-mtpfs (0.2-1) unstable; urgency=low
|
||||
|
||||
* Upgrade to v0.2
|
||||
|
||||
-- Peter Hatina <phatina@gmail.com> Tue, 03 Dec 2013 21:51:20 +0100
|
||||
|
||||
simple-mtpfs (0.1-1) precise; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
|
|
@ -5,7 +5,7 @@ It was downloaded from <https://github.com/phatina/simple-mtpfs>.
|
|||
|
||||
Copyright:
|
||||
|
||||
Copyright (C) 2012 Peter Hatina <phatina@gmail.com>
|
||||
Copyright (C) 2012-2013 Peter Hatina <phatina@gmail.com>
|
||||
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
NEWS
|
||||
README
|
||||
README.md
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
SUBDIRS = src man
|
||||
EXTRA_DIST = m4
|
||||
EXTRA_DIST = m4 README.md
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
.TH SIMPLE-MTPFS "1" "September 2012" "SIMPLE-MTPFS version 0.1" "User Commands"
|
||||
.TH SIMPLE-MTPFS "1" "December 2013" "SIMPLE-MTPFS version 0.2" "User Commands"
|
||||
.SH NAME
|
||||
SIMPLE-MTPFS \- filesystem driver for MTP based devices
|
||||
.SH SYNOPSIS
|
||||
.SS mounting
|
||||
.TP
|
||||
\fBsimple-mtpfs \fBmountpoint\fP [\fIoptions\fP]
|
||||
\fBsimple-mtpfs \fB<device>\fP \fBmountpoint\fP [\fIoptions\fP]
|
||||
.SS unmounting
|
||||
.TP
|
||||
\fBfusermount -u mountpoint\fP
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
Name: simple-mtpfs
|
||||
Version: 0.1
|
||||
Release: 5%{?dist}
|
||||
Version: 0.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Fuse-based MTP driver
|
||||
License: GPLv2+
|
||||
URL: https://github.com/phatina/simple-mtpfs
|
||||
Source0: https://github.com/downloads/phatina/simple-mtpfs/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: fuse-devel >= 2.8
|
||||
BuildRequires: fuse-devel >= 2.7.3
|
||||
BuildRequires: libmtp-devel
|
||||
|
||||
%description
|
||||
|
@ -29,11 +29,14 @@ make %{?_smp_mflags}
|
|||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%doc COPYING README
|
||||
%doc COPYING README.md
|
||||
%{_bindir}/simple-mtpfs
|
||||
%{_mandir}/man1/simple-mtpfs.1.gz
|
||||
|
||||
%changelog
|
||||
* Tue Dec 3 2013 Peter Hatina <phatina@redhat.com> - 0.2-1
|
||||
- upgrade to v0.2
|
||||
|
||||
* Tue Oct 23 2012 Peter Hatina <phatina@redhat.com> - 0.1-5
|
||||
- changed license to GPLv2
|
||||
|
||||
|
|
Loading…
Reference in New Issue