forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.0.1 (2021-04-02) * Fixes identifying OpenDocument files by magic. 1.0.0 imprecisely identified them as application/zip. (#38) * Fixes identifying .docx, .pptx, and .xlsx files exported from Google Sheets by magic. (#36) * Identifies vCard files as text/vcard rather than text/x-vcard. (27fac74) * Identifies .otf, .woff, and .woff2 files aș font/otf, font/woff, and font/woff2, respectively. (#37)
- Loading branch information
taca
committed
Apr 12, 2021
1 parent
4dfa91f
commit 32dcd6f
Showing
3 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
# $NetBSD: Makefile,v 1.1 2018/12/06 14:25:06 taca Exp $ | ||
# $NetBSD: Makefile,v 1.2 2021/04/12 00:02:52 taca Exp $ | ||
|
||
DISTNAME= marcel-0.3.3 | ||
DISTNAME= marcel-1.0.1 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://github.com/basecamp/marcel | ||
COMMENT= Simple mime type detection using magic numbers and more | ||
LICENSE= mit | ||
|
||
DEPENDS+= ${RUBY_PKGPREFIX}-mimemagic>=0.3.2<0.4:../../misc/ruby-mimemagic | ||
|
||
USE_LANGUAGES= # none | ||
|
||
.include "../../lang/ruby/gem.mk" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
@comment $NetBSD: PLIST,v 1.1 2018/12/06 14:25:06 taca Exp $ | ||
@comment $NetBSD: PLIST,v 1.2 2021/04/12 00:02:52 taca Exp $ | ||
${GEM_HOME}/cache/${GEM_NAME}.gem | ||
${GEM_LIBDIR}/MIT-LICENSE | ||
${GEM_LIBDIR}/README.md | ||
${GEM_LIBDIR}/lib/marcel.rb | ||
${GEM_LIBDIR}/lib/marcel/magic.rb | ||
${GEM_LIBDIR}/lib/marcel/mime_type.rb | ||
${GEM_LIBDIR}/lib/marcel/mime_type/definitions.rb | ||
${GEM_LIBDIR}/lib/marcel/tables.rb | ||
${GEM_LIBDIR}/lib/marcel/version.rb | ||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.1 2018/12/06 14:25:06 taca Exp $ | ||
$NetBSD: distinfo,v 1.2 2021/04/12 00:02:52 taca Exp $ | ||
|
||
SHA1 (marcel-0.3.3.gem) = a4cf7bd4bd3cc8da6275133dbc9745458653fdf4 | ||
RMD160 (marcel-0.3.3.gem) = 1400d37d3884aed17c56991cc9cec345fe0c3501 | ||
SHA512 (marcel-0.3.3.gem) = a68b065835c39cb3e0e18223af220cf13a5fc31021dd9f9bd47ab625ae1013346bdeb755106196cec1796d3ddfa5dd77833a7524391b874882adebb15c2e91ce | ||
Size (marcel-0.3.3.gem) = 7680 bytes | ||
SHA1 (marcel-1.0.1.gem) = 4a312abf30666a0397b1a20fe0a9f574eb7a09aa | ||
RMD160 (marcel-1.0.1.gem) = 3d9e4e74c2785121d1eb5ed61a93bc982a2104be | ||
SHA512 (marcel-1.0.1.gem) = b22e3d1c20b75d8b7e7cefc12aaa6fe40151ddb1ac86a33e73660815297709205be6a02621e8faf473d1d8926ba8db09e53c9e7abd4249c9f8da0f3b48c47fdd | ||
Size (marcel-1.0.1.gem) = 39424 bytes |