pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/filesystems/fuse-mp3fs
Module Name: pkgsrc
Committed By: pho
Date: Wed Dec 1 14:35:15 UTC 2021
Modified Files:
pkgsrc/filesystems/fuse-mp3fs: Makefile PLIST distinfo
Added Files:
pkgsrc/filesystems/fuse-mp3fs: options.mk
pkgsrc/filesystems/fuse-mp3fs/patches: patch-src_fuseops.cc
patch-src_mp3fs.cc
Removed Files:
pkgsrc/filesystems/fuse-mp3fs/patches: patch-aa patch-ab
patch-src_class.h
Log Message:
Update to mp3fs-1.1.1; tested on NetBSD 9.2 release
## Important changes in 1.1.1 (2021-03-08)
The only change in this release is a fix for an issue with filenames containing
square brackets.
## Important changes in 1.1 (2021-01-30)
This contains various bug fixes, mostly.
Fixes/improvements:
- Recognize upper/mixed case in input filenames
- Fix file size handling with and without cache
- Various code simplifications/cleanup
New features:
- Log lines now include thread ID and can be customized.
## Important changes in 1.0 (2020-05-24)
mp3fs 1.0 is finally here\!
Fixes/code improvements:
- Many, many bug fixes (buffer overflows, memory leaks, and others)
- Memory handling improvements (using RAII with C++ nearly everywhere)
- Adopting C++11 and modernizing code
- Static tests for code (e.g. clang-format, clang-tidy, IWYU)
New features:
- Ogg Vorbis decoding support
- MP3 VBR encoding support
- Improved, much more customizable logging
Other:
- Docs licensed under GPL 3+ (now entire codebase is distributable as GPL 3)
- All docs switched to Markdown (including manpage, using pandoc)
- Docker image now available
## Important changes in 0.91 (2014-05-14)
This contains mainly bug fixes.
Changes in this release:
- Fixed a segfault caused by an overflow reading the list of available
decoders.
- A number of problems with the previous distribution tar are now fixed.
- The output of `mp3fs --version` has been made more complete.
## Important changes in 0.9 (2014-04-06)
This is a major new release, and brings us very close to a 1.0 release\!
Changes in this release:
- All transcoding code has been completely rewritten. Encoding and decoding
have been abstracted out into base classes defining interfaces that can be
implemented by different codec classes, with just a FLAC decoder and MP3
encoder at the moment.
- The build system has been modified as well to support this usage.
- A number of small bugs or code inefficiencies have been fixed.
## Important changes in 0.32 (2012-06-18)
This release has a lot of bug fixes and some code cleanup.
Changes in this release:
- The file size calculation should always be correct.
- A crash affecting programs like scp that might try to access past the end
of the file has been fixed.
- Too many other little fixes were made to list here. See the ChangeLog for
full details.
## Important changes in 0.31 (2011-12-04)
This is a minor update, with bug fixes and a new feature.
Changes in this release:
- The ReplayGain support added earlier now can be configured through the
command line.
- Filename translation (from .flac to .mp3) is now fixed on filesystems such
as XFS that do not populate dirent.d\_type.
- A couple other minor bugs fixes and changes were made.
## Important changes in 0.30 (2010-12-01)
This is a major new release, and brings mp3fs much closer to an eventual 1.0
release.
Changes in this release:
- Support for additional metadata tags has been added. (From Gregor Zurowski)
- Documentation improvements: the help message is more useful, and a man page
has been added.
- Choosing bitrate is now done with a command-line or mount option, rather
than the old comma syntax.
- A new option to select LAME encoding quality is now available. (From Gregor
Zurowski)
- Debug output can be enabled at runtime.
- Old external libraries included in distribution (StringIO, talloc) have
been removed and replaced.
- Numerous bug fixes have been made. (Some from Gregor Zurowski)
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/filesystems/fuse-mp3fs/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/filesystems/fuse-mp3fs/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/filesystems/fuse-mp3fs/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/filesystems/fuse-mp3fs/options.mk
cvs rdiff -u -r1.5 -r0 pkgsrc/filesystems/fuse-mp3fs/patches/patch-aa
cvs rdiff -u -r1.4 -r0 pkgsrc/filesystems/fuse-mp3fs/patches/patch-ab
cvs rdiff -u -r1.3 -r0 \
pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_class.h
cvs rdiff -u -r0 -r1.1 \
pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_fuseops.cc \
pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_mp3fs.cc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/filesystems/fuse-mp3fs/Makefile
diff -u pkgsrc/filesystems/fuse-mp3fs/Makefile:1.7 pkgsrc/filesystems/fuse-mp3fs/Makefile:1.8
--- pkgsrc/filesystems/fuse-mp3fs/Makefile:1.7 Fri Mar 20 11:57:37 2020
+++ pkgsrc/filesystems/fuse-mp3fs/Makefile Wed Dec 1 14:35:15 2021
@@ -1,26 +1,24 @@
-# $NetBSD: Makefile,v 1.7 2020/03/20 11:57:37 nia Exp $
+# $NetBSD: Makefile,v 1.8 2021/12/01 14:35:15 pho Exp $
#
-DISTNAME= mp3fs-0.13
+DISTNAME= mp3fs-1.1.1
PKGNAME= fuse-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= filesystems
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mp3fs/}
+MASTER_SITES= ${MASTER_SITE_GITHUB:=khenriks/}
+GITHUB_PROJECT= mp3fs
+GITHUB_RELEASE= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://mp3fs.sourceforge.net/
COMMENT= MP3 transcoding FUSE file system
LICENSE= gnu-gpl-v3
-GNU_CONFIGURE= yes
-USE_TOOLS= pkg-config
+GNU_CONFIGURE= yes
+USE_LANGUAGES= c c++03
+USE_TOOLS= pkg-config gmake
-INSTALLATION_DIRS= share/doc/fuse-mp3fs
+.include "options.mk"
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/fuse-mp3fs
-
-.include "../../audio/flac/buildlink3.mk"
.include "../../audio/lame/buildlink3.mk"
.include "../../audio/libid3tag/buildlink3.mk"
.include "../../mk/fuse.buildlink3.mk"
Index: pkgsrc/filesystems/fuse-mp3fs/PLIST
diff -u pkgsrc/filesystems/fuse-mp3fs/PLIST:1.3 pkgsrc/filesystems/fuse-mp3fs/PLIST:1.4
--- pkgsrc/filesystems/fuse-mp3fs/PLIST:1.3 Wed Nov 26 22:31:41 2014
+++ pkgsrc/filesystems/fuse-mp3fs/PLIST Wed Dec 1 14:35:15 2021
@@ -1,3 +1,3 @@
-@comment $NetBSD: PLIST,v 1.3 2014/11/26 22:31:41 wiz Exp $
+@comment $NetBSD: PLIST,v 1.4 2021/12/01 14:35:15 pho Exp $
bin/mp3fs
-share/doc/fuse-mp3fs/README
+man/man1/mp3fs.1
Index: pkgsrc/filesystems/fuse-mp3fs/distinfo
diff -u pkgsrc/filesystems/fuse-mp3fs/distinfo:1.10 pkgsrc/filesystems/fuse-mp3fs/distinfo:1.11
--- pkgsrc/filesystems/fuse-mp3fs/distinfo:1.10 Tue Oct 26 10:25:28 2021
+++ pkgsrc/filesystems/fuse-mp3fs/distinfo Wed Dec 1 14:35:15 2021
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.10 2021/10/26 10:25:28 nia Exp $
+$NetBSD: distinfo,v 1.11 2021/12/01 14:35:15 pho Exp $
-BLAKE2s (mp3fs-0.13.tar.gz) = 003d01e14336dcbd03bf7380c414f57308d68488aca5e7e1313cfa429f1c2e94
-SHA512 (mp3fs-0.13.tar.gz) = 0bcbd55c3a17a8e94a29794e3225b9c18f0501a5c987f3a32e206dc3db489f778dab2cc6c2b841ec640da7a319e4be1104868c1a1e54f19f6e30491c272792ee
-Size (mp3fs-0.13.tar.gz) = 301642 bytes
-SHA1 (patch-aa) = 0013f729158988403ea7ed7aa3a3102e9531ef91
-SHA1 (patch-ab) = 0e76e444566e2e0ff0c31a6aa64dcd82a931f397
-SHA1 (patch-src_class.h) = 2a0c03c20ffce50c1270d552215edb052f3ecf50
+BLAKE2s (mp3fs-1.1.1.tar.gz) = 0b576b8ee68fc3a7d21c241bd475fad3921c0200074e05d50756addf9bb1789a
+SHA512 (mp3fs-1.1.1.tar.gz) = b1e4f403666122056f924514a7e63ddd53dc00346d7750e37e8150ad5f13294129595d79398677c69726fb2abf942d4ddb8fdcac3b1312a01ed467475f22592b
+Size (mp3fs-1.1.1.tar.gz) = 804399 bytes
+SHA1 (patch-src_fuseops.cc) = e12d4287b0a4d49f779996364f3ee9a360f04100
+SHA1 (patch-src_mp3fs.cc) = baf76d4db37a10f064159e955161e738f3a0ad1f
Added files:
Index: pkgsrc/filesystems/fuse-mp3fs/options.mk
diff -u /dev/null pkgsrc/filesystems/fuse-mp3fs/options.mk:1.1
--- /dev/null Wed Dec 1 14:35:15 2021
+++ pkgsrc/filesystems/fuse-mp3fs/options.mk Wed Dec 1 14:35:15 2021
@@ -0,0 +1,21 @@
+# $NetBSD: options.mk,v 1.1 2021/12/01 14:35:15 pho Exp $
+PKG_OPTIONS_VAR= PKG_OPTIONS.mp3fs
+PKG_OPTIONS_NONEMPTY_SETS= decoders
+PKG_OPTIONS_SET.decoders= flac vorbis
+PKG_SUGGESTED_OPTIONS= flac vorbis
+
+.include "../../mk/bsd.options.mk"
+
+###
+### FLAC support
+###
+.if !empty(PKG_OPTIONS:Mflac)
+.include "../../audio/flac/buildlink3.mk"
+.endif
+
+###
+### Ogg Vorbis support
+###
+.if !empty(PKG_OPTIONS:Mvorbis)
+.include "../../audio/libvorbis/buildlink3.mk"
+.endif
Index: pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_fuseops.cc
diff -u /dev/null pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_fuseops.cc:1.1
--- /dev/null Wed Dec 1 14:35:15 2021
+++ pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_fuseops.cc Wed Dec 1 14:35:15 2021
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_fuseops.cc,v 1.1 2021/12/01 14:35:15 pho Exp $
+
+Hunk #0:
+ <fuse_common.h> is not meant to be directly #include'd by user
+ code. It's only an implementation detail, and librefuse doesn't
+ provide one.
+
+--- src/fuseops.cc.orig 2021-12-01 13:29:28.302797012 +0000
++++ src/fuseops.cc
+@@ -26,7 +26,6 @@
+ #include <dirent.h>
+ #include <fcntl.h>
+ #include <fuse.h>
+-#include <fuse_common.h>
+ #include <sys/stat.h>
+ #include <sys/statvfs.h>
+ #include <unistd.h>
Index: pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_mp3fs.cc
diff -u /dev/null pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_mp3fs.cc:1.1
--- /dev/null Wed Dec 1 14:35:15 2021
+++ pkgsrc/filesystems/fuse-mp3fs/patches/patch-src_mp3fs.cc Wed Dec 1 14:35:15 2021
@@ -0,0 +1,40 @@
+$NetBSD: patch-src_mp3fs.cc,v 1.1 2021/12/01 14:35:15 pho Exp $
+
+Hunk #0:
+ <fuse_common.h> is not meant to be directly #include'd by user
+ code. It's only an implementation detail, and librefuse doesn't
+ provide one.
+
+Hunk #1:
+ Work around an issue in librefuse <fuse_opt.h>. It has been
+ incompatible with C++11 compilers. Fixed in HEAD:
+ * http://mail-index.netbsd.org/source-changes/2021/12/01/msg134169.html
+ * http://mail-index.netbsd.org/source-changes/2021/12/01/msg134169.html
+
+--- src/mp3fs.cc.orig 2021-01-31 04:07:18.000000000 +0000
++++ src/mp3fs.cc
+@@ -26,7 +26,6 @@
+ #define FUSE_USE_VERSION 26
+
+ #include <fuse.h>
+-#include <fuse_common.h>
+ #include <fuse_opt.h>
+ #ifdef __APPLE__
+ #include <fuse_darwin.h>
+@@ -63,6 +62,8 @@ enum { KEY_HELP, KEY_VERSION, KEY_KEEP_O
+ #define FUSE_OPT_KEY(templ, key) \
+ { templ, (unsigned int)(-1), key }
+
++#pragma GCC diagnostic push
++#pragma GCC diagnostic ignored "-Wnarrowing"
+ struct fuse_opt mp3fs_opts[] = {
+ MP3FS_OPT("-b %d", bitrate, 0),
+ MP3FS_OPT("bitrate=%d", bitrate, 0),
+@@ -98,6 +99,7 @@ struct fuse_opt mp3fs_opts[] = {
+ FUSE_OPT_KEY("-d", KEY_KEEP_OPT),
+ FUSE_OPT_KEY("debug", KEY_KEEP_OPT),
+ FUSE_OPT_END};
++#pragma GCC diagnostic pop
+
+ void usage(const std::string& name) {
+ std::cout << "Usage: " << name << " [OPTION]... IN_DIR OUT_DIR"
Home |
Main Index |
Thread Index |
Old Index