mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
net-p2p/lidarr: Update to 0.8.1.2135
Changelog: https://github.com/Lidarr/Lidarr/releases/tag/v0.8.1.2135 PR: 261476
This commit is contained in:
parent
29fffe41e6
commit
bc0734e632
@ -1,6 +1,5 @@
|
||||
PORTNAME= lidarr
|
||||
PORTVERSION= 0.7.2.1878
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.8.1.2135
|
||||
CATEGORIES= net-p2p
|
||||
MASTER_SITES= https://github.com/lidarr/Lidarr/releases/download/v${PORTVERSION}/
|
||||
DISTNAME= Lidarr.master.${PORTVERSION}.linux
|
||||
@ -13,29 +12,43 @@ LICENSE= GPLv3
|
||||
LIB_DEPENDS= libcurl.so:ftp/curl
|
||||
RUN_DEPENDS= chromaprint>0:audio/chromaprint \
|
||||
mediainfo>0:multimedia/mediainfo \
|
||||
mono6.8>0:lang/mono6.8
|
||||
mono6.8>0:lang/mono6.8 \
|
||||
sqlite3>0:databases/sqlite3
|
||||
|
||||
USES= sqlite
|
||||
USE_RC_SUBR= lidarr
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
WRKSRC= ${WRKDIR}/Lidarr
|
||||
NO_ARCH= YES
|
||||
NO_BUILD= YES
|
||||
|
||||
USERS= lidarr
|
||||
GROUPS= lidarr
|
||||
WRKSRC= ${WRKDIR}/Lidarr
|
||||
|
||||
SUB_FILES= ${PORTNAME} package_info pkg-message
|
||||
SUB_LIST= DATADIR=${DATADIR} \
|
||||
GROUPS=${GROUPS} \
|
||||
MAINTAINER=${MAINTAINER} \
|
||||
PKGVERSION=${PKGVERSION} \
|
||||
PORTNAME=${PORTNAME} \
|
||||
USERS=${USERS}
|
||||
|
||||
USERS= lidarr
|
||||
GROUPS= lidarr
|
||||
|
||||
OPTIONS_DEFINE= X11
|
||||
|
||||
# Permits image resizing
|
||||
X11_LIB_DEPENDS+= libgdiplus.so:x11-toolkits/libgdiplus
|
||||
X11_LIB_DEPENDS+=libgdiplus.so:x11-toolkits/libgdiplus
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
post-extract:
|
||||
${RM} -rf ${WRKSRC}/Lidarr.Update
|
||||
|
||||
do-install:
|
||||
${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR}
|
||||
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR}
|
||||
${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR}/bin/
|
||||
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR}/bin/ "! -name Lidarr.exe"
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/Lidarr.exe ${STAGEDIR}/${DATADIR}/bin/
|
||||
|
||||
post-install:
|
||||
@${FIND} -s ${STAGEDIR}${DATADIR} -not -type d | ${SORT} | \
|
||||
${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
|
||||
${INSTALL_DATA} ${WRKDIR}/package_info ${STAGEDIR}/${DATADIR}/
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1604154537
|
||||
SHA256 (Lidarr.master.0.7.2.1878.linux.tar.gz) = 166f6feca870ec10a840799e7adf510cd55ad2fd05a5324b1c3793bdf7e8604f
|
||||
SIZE (Lidarr.master.0.7.2.1878.linux.tar.gz) = 13220392
|
||||
TIMESTAMP = 1643126158
|
||||
SHA256 (Lidarr.master.0.8.1.2135.linux.tar.gz) = 7895fab75f43dac957ebc7d748c77f562c775d280257294af9677c547f63b2e2
|
||||
SIZE (Lidarr.master.0.8.1.2135.linux.tar.gz) = 21382130
|
||||
|
@ -19,11 +19,12 @@ load_rc_config $name
|
||||
: ${lidarr_enable="NO"}
|
||||
: ${lidarr_user:="lidarr"}
|
||||
: ${lidarr_data_dir:="%%PREFIX%%/lidarr"}
|
||||
: ${lidarr_exec_dir:="%%DATADIR%%/bin"}
|
||||
|
||||
pidfile="${lidarr_data_dir}/lidarr.pid"
|
||||
procname="%%PREFIX%%/bin/mono"
|
||||
command="/usr/sbin/daemon"
|
||||
command_args="-f ${procname} %%DATADIR%%/Lidarr.exe --nobrowser --data=${lidarr_data_dir}"
|
||||
command_args="-f ${procname} --debug ${lidarr_exec_dir}/Lidarr.exe --nobrowser --data=${lidarr_data_dir}"
|
||||
start_precmd=lidarr_precmd
|
||||
|
||||
lidarr_precmd()
|
||||
@ -33,6 +34,10 @@ lidarr_precmd()
|
||||
if [ ! -d ${lidarr_data_dir} ]; then
|
||||
install -d -o ${lidarr_user} ${lidarr_data_dir}
|
||||
fi
|
||||
|
||||
# Unwritable pids allow the service to start, but fails to work
|
||||
# Rare, but if you are debugging as root and accidentally start the service...
|
||||
/bin/rm -f ${pidfile}
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
|
5
net-p2p/lidarr/files/package_info.in
Normal file
5
net-p2p/lidarr/files/package_info.in
Normal file
@ -0,0 +1,5 @@
|
||||
PackageVersion=%%PKGVERSION%%
|
||||
PackageAuthor=%%MAINTAINER%%
|
||||
UpdateMethod=External
|
||||
UpdateMethodMessage=use 'pkg upgrade' or [create a PR](https://bugs.freebsd.org/bugzilla/enter_bug.cgi?component=Individual%20Port%28s%29&product=Ports%20%26%20Packages) requesting an update of the port
|
||||
Branch=master
|
26
net-p2p/lidarr/files/pkg-message.in
Normal file
26
net-p2p/lidarr/files/pkg-message.in
Normal file
@ -0,0 +1,26 @@
|
||||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
|
||||
This package installs a service file.
|
||||
Enable it with "sysrc %%PORTNAME%%_enable=TRUE"
|
||||
Start it with "service %%PORTNAME%% start".
|
||||
|
||||
If you are running this in a jail please set "allow_mlock=1" or similar
|
||||
for this jail otherwise the program will fail to start
|
||||
|
||||
Finally, the built-in updater is disabled.
|
||||
If you like to use the updater, remove the file %%DATADIR%%/package_info,
|
||||
chown the directory %%DATADIR%%/bin to %%USERS%% and restart %%PORTNAME%%
|
||||
The built-in updater can now be configured in the Settings tab of %%PORTNAME%%
|
||||
|
||||
NOTE: While the built-in updater will update %%PORTNAME%% it has side-effects:
|
||||
it breaks the ability of pkg to check for corruption in %%PORTNAME%% files
|
||||
it breaks the ability of pkg to determine if it has removed files correctly
|
||||
during "pkg remove %%PORTNAME%%" and also
|
||||
it breaks the fundamental understanding that updates should be handled only
|
||||
by the system that put the files there in the first place.
|
||||
|
||||
EOM
|
||||
}
|
||||
]
|
312
net-p2p/lidarr/pkg-plist
Normal file
312
net-p2p/lidarr/pkg-plist
Normal file
@ -0,0 +1,312 @@
|
||||
%%DATADIR%%/bin/BouncyCastle.Crypto.dll
|
||||
%%DATADIR%%/bin/Dapper.dll
|
||||
%%DATADIR%%/bin/Equ.dll
|
||||
%%DATADIR%%/bin/FluentMigrator.Abstractions.dll
|
||||
%%DATADIR%%/bin/FluentMigrator.Runner.Core.dll
|
||||
%%DATADIR%%/bin/FluentMigrator.Runner.SQLite.dll
|
||||
%%DATADIR%%/bin/FluentMigrator.Runner.dll
|
||||
%%DATADIR%%/bin/FluentMigrator.dll
|
||||
%%DATADIR%%/bin/FluentValidation.dll
|
||||
%%DATADIR%%/bin/ICSharpCode.SharpZipLib.dll
|
||||
%%DATADIR%%/bin/Ical.Net.dll
|
||||
%%DATADIR%%/bin/Kveer.XmlRPC.dll
|
||||
%%DATADIR%%/bin/LICENSE.md
|
||||
%%DATADIR%%/bin/Lidarr.Api.V1.dll
|
||||
%%DATADIR%%/bin/Lidarr.Api.V1.pdb
|
||||
%%DATADIR%%/bin/Lidarr.Common.dll
|
||||
%%DATADIR%%/bin/Lidarr.Common.pdb
|
||||
%%DATADIR%%/bin/Lidarr.Core.dll
|
||||
%%DATADIR%%/bin/Lidarr.Core.pdb
|
||||
%%DATADIR%%/bin/Lidarr.Host.deps.json
|
||||
%%DATADIR%%/bin/Lidarr.Host.dll
|
||||
%%DATADIR%%/bin/Lidarr.Host.pdb
|
||||
%%DATADIR%%/bin/Lidarr.Http.dll
|
||||
%%DATADIR%%/bin/Lidarr.Http.pdb
|
||||
%%DATADIR%%/bin/Lidarr.Mono.dll
|
||||
%%DATADIR%%/bin/Lidarr.Mono.pdb
|
||||
%%DATADIR%%/bin/Lidarr.SignalR.deps.json
|
||||
%%DATADIR%%/bin/Lidarr.SignalR.dll
|
||||
%%DATADIR%%/bin/Lidarr.SignalR.pdb
|
||||
%%DATADIR%%/bin/Lidarr.exe
|
||||
%%DATADIR%%/bin/Lidarr.exe.config
|
||||
%%DATADIR%%/bin/Lidarr.pdb
|
||||
%%DATADIR%%/bin/MailKit.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Authentication.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Authorization.Policy.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Authorization.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Connections.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Hosting.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Hosting.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.Connections.Common.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.Connections.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.Extensions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.Features.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Http.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Owin.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Routing.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Routing.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Server.Kestrel.Core.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Server.Kestrel.Https.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.Server.Kestrel.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.SignalR.Common.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.SignalR.Core.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.SignalR.Protocols.Json.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.SignalR.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.WebSockets.dll
|
||||
%%DATADIR%%/bin/Microsoft.AspNetCore.WebUtilities.dll
|
||||
%%DATADIR%%/bin/Microsoft.Bcl.AsyncInterfaces.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Configuration.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Configuration.Binder.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Configuration.FileExtensions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Configuration.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.DependencyInjection.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.FileProviders.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.FileProviders.Physical.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.FileSystemGlobbing.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Hosting.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Logging.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.ObjectPool.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Options.dll
|
||||
%%DATADIR%%/bin/Microsoft.Extensions.Primitives.dll
|
||||
%%DATADIR%%/bin/Microsoft.Net.Http.Headers.dll
|
||||
%%DATADIR%%/bin/Microsoft.Win32.Primitives.dll
|
||||
%%DATADIR%%/bin/MimeKit.dll
|
||||
%%DATADIR%%/bin/Mono.Nat.dll
|
||||
%%DATADIR%%/bin/MonoTorrent.dll
|
||||
%%DATADIR%%/bin/NLog.Extensions.Logging.dll
|
||||
%%DATADIR%%/bin/NLog.dll
|
||||
%%DATADIR%%/bin/Nancy.Authentication.Basic.dll
|
||||
%%DATADIR%%/bin/Nancy.Authentication.Forms.dll
|
||||
%%DATADIR%%/bin/Nancy.dll
|
||||
%%DATADIR%%/bin/Newtonsoft.Json.dll
|
||||
%%DATADIR%%/bin/NodaTime.dll
|
||||
%%DATADIR%%/bin/Org.Mentalis.dll
|
||||
%%DATADIR%%/bin/RestSharp.dll
|
||||
%%DATADIR%%/bin/ReusableTasks.dll
|
||||
%%DATADIR%%/bin/Sentry.PlatformAbstractions.dll
|
||||
%%DATADIR%%/bin/Sentry.Protocol.dll
|
||||
%%DATADIR%%/bin/Sentry.dll
|
||||
%%DATADIR%%/bin/SixLabors.Core.dll
|
||||
%%DATADIR%%/bin/SixLabors.ImageSharp.dll
|
||||
%%DATADIR%%/bin/SocksWebProxy.dll
|
||||
%%DATADIR%%/bin/SpotifyAPI.Web.dll
|
||||
%%DATADIR%%/bin/System.AppContext.dll
|
||||
%%DATADIR%%/bin/System.Buffers.dll
|
||||
%%DATADIR%%/bin/System.Collections.Concurrent.dll
|
||||
%%DATADIR%%/bin/System.Collections.Immutable.dll
|
||||
%%DATADIR%%/bin/System.Collections.NonGeneric.dll
|
||||
%%DATADIR%%/bin/System.Collections.Specialized.dll
|
||||
%%DATADIR%%/bin/System.Collections.dll
|
||||
%%DATADIR%%/bin/System.ComponentModel.Annotations.dll
|
||||
%%DATADIR%%/bin/System.ComponentModel.EventBasedAsync.dll
|
||||
%%DATADIR%%/bin/System.ComponentModel.Primitives.dll
|
||||
%%DATADIR%%/bin/System.ComponentModel.TypeConverter.dll
|
||||
%%DATADIR%%/bin/System.ComponentModel.dll
|
||||
%%DATADIR%%/bin/System.Console.dll
|
||||
%%DATADIR%%/bin/System.Data.Common.dll
|
||||
%%DATADIR%%/bin/System.Data.SQLite.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.Contracts.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.Debug.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.DiagnosticSource.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.FileVersionInfo.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.Process.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.StackTrace.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.TextWriterTraceListener.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.Tools.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.TraceSource.dll
|
||||
%%DATADIR%%/bin/System.Diagnostics.Tracing.dll
|
||||
%%DATADIR%%/bin/System.Drawing.Primitives.dll
|
||||
%%DATADIR%%/bin/System.Dynamic.Runtime.dll
|
||||
%%DATADIR%%/bin/System.Globalization.Calendars.dll
|
||||
%%DATADIR%%/bin/System.Globalization.Extensions.dll
|
||||
%%DATADIR%%/bin/System.Globalization.dll
|
||||
%%DATADIR%%/bin/System.IO.Abstractions.dll
|
||||
%%DATADIR%%/bin/System.IO.Compression.ZipFile.dll
|
||||
%%DATADIR%%/bin/System.IO.FileSystem.AccessControl.dll
|
||||
%%DATADIR%%/bin/System.IO.FileSystem.DriveInfo.dll
|
||||
%%DATADIR%%/bin/System.IO.FileSystem.Primitives.dll
|
||||
%%DATADIR%%/bin/System.IO.FileSystem.Watcher.dll
|
||||
%%DATADIR%%/bin/System.IO.FileSystem.dll
|
||||
%%DATADIR%%/bin/System.IO.IsolatedStorage.dll
|
||||
%%DATADIR%%/bin/System.IO.MemoryMappedFiles.dll
|
||||
%%DATADIR%%/bin/System.IO.Pipelines.dll
|
||||
%%DATADIR%%/bin/System.IO.Pipes.dll
|
||||
%%DATADIR%%/bin/System.IO.UnmanagedMemoryStream.dll
|
||||
%%DATADIR%%/bin/System.IO.dll
|
||||
%%DATADIR%%/bin/System.Linq.Expressions.dll
|
||||
%%DATADIR%%/bin/System.Linq.Parallel.dll
|
||||
%%DATADIR%%/bin/System.Linq.Queryable.dll
|
||||
%%DATADIR%%/bin/System.Linq.dll
|
||||
%%DATADIR%%/bin/System.Memory.dll
|
||||
%%DATADIR%%/bin/System.Net.NameResolution.dll
|
||||
%%DATADIR%%/bin/System.Net.NetworkInformation.dll
|
||||
%%DATADIR%%/bin/System.Net.Ping.dll
|
||||
%%DATADIR%%/bin/System.Net.Primitives.dll
|
||||
%%DATADIR%%/bin/System.Net.Requests.dll
|
||||
%%DATADIR%%/bin/System.Net.Security.dll
|
||||
%%DATADIR%%/bin/System.Net.Sockets.dll
|
||||
%%DATADIR%%/bin/System.Net.WebHeaderCollection.dll
|
||||
%%DATADIR%%/bin/System.Net.WebSockets.Client.dll
|
||||
%%DATADIR%%/bin/System.Net.WebSockets.WebSocketProtocol.dll
|
||||
%%DATADIR%%/bin/System.Net.WebSockets.dll
|
||||
%%DATADIR%%/bin/System.Numerics.Vectors.dll
|
||||
%%DATADIR%%/bin/System.ObjectModel.dll
|
||||
%%DATADIR%%/bin/System.Reflection.Extensions.dll
|
||||
%%DATADIR%%/bin/System.Reflection.Metadata.dll
|
||||
%%DATADIR%%/bin/System.Reflection.Primitives.dll
|
||||
%%DATADIR%%/bin/System.Reflection.TypeExtensions.dll
|
||||
%%DATADIR%%/bin/System.Reflection.dll
|
||||
%%DATADIR%%/bin/System.Resources.Reader.dll
|
||||
%%DATADIR%%/bin/System.Resources.ResourceManager.dll
|
||||
%%DATADIR%%/bin/System.Resources.Writer.dll
|
||||
%%DATADIR%%/bin/System.Runtime.CompilerServices.Unsafe.dll
|
||||
%%DATADIR%%/bin/System.Runtime.CompilerServices.VisualC.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Extensions.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Handles.dll
|
||||
%%DATADIR%%/bin/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
%%DATADIR%%/bin/System.Runtime.InteropServices.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Numerics.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Serialization.Formatters.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Serialization.Json.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Serialization.Primitives.dll
|
||||
%%DATADIR%%/bin/System.Runtime.Serialization.Xml.dll
|
||||
%%DATADIR%%/bin/System.Runtime.dll
|
||||
%%DATADIR%%/bin/System.Security.AccessControl.dll
|
||||
%%DATADIR%%/bin/System.Security.Claims.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.Algorithms.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.Cng.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.Csp.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.Encoding.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.Primitives.dll
|
||||
%%DATADIR%%/bin/System.Security.Cryptography.X509Certificates.dll
|
||||
%%DATADIR%%/bin/System.Security.Principal.Windows.dll
|
||||
%%DATADIR%%/bin/System.Security.Principal.dll
|
||||
%%DATADIR%%/bin/System.Security.SecureString.dll
|
||||
%%DATADIR%%/bin/System.Text.Encoding.CodePages.dll
|
||||
%%DATADIR%%/bin/System.Text.Encoding.Extensions.dll
|
||||
%%DATADIR%%/bin/System.Text.Encoding.dll
|
||||
%%DATADIR%%/bin/System.Text.Encodings.Web.dll
|
||||
%%DATADIR%%/bin/System.Text.Json.dll
|
||||
%%DATADIR%%/bin/System.Text.RegularExpressions.dll
|
||||
%%DATADIR%%/bin/System.Threading.Channels.dll
|
||||
%%DATADIR%%/bin/System.Threading.Overlapped.dll
|
||||
%%DATADIR%%/bin/System.Threading.Tasks.Extensions.dll
|
||||
%%DATADIR%%/bin/System.Threading.Tasks.Parallel.dll
|
||||
%%DATADIR%%/bin/System.Threading.Tasks.dll
|
||||
%%DATADIR%%/bin/System.Threading.Thread.dll
|
||||
%%DATADIR%%/bin/System.Threading.ThreadPool.dll
|
||||
%%DATADIR%%/bin/System.Threading.Timer.dll
|
||||
%%DATADIR%%/bin/System.Threading.dll
|
||||
%%DATADIR%%/bin/System.ValueTuple.dll
|
||||
%%DATADIR%%/bin/System.Xml.ReaderWriter.dll
|
||||
%%DATADIR%%/bin/System.Xml.XDocument.dll
|
||||
%%DATADIR%%/bin/System.Xml.XPath.XDocument.dll
|
||||
%%DATADIR%%/bin/System.Xml.XPath.dll
|
||||
%%DATADIR%%/bin/System.Xml.XmlDocument.dll
|
||||
%%DATADIR%%/bin/System.Xml.XmlSerializer.dll
|
||||
%%DATADIR%%/bin/TagLibSharp.dll
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Light.ttf
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Light.woff
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Light.woff2
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Regular.ttf
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Regular.woff
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/Roboto-Regular.woff2
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/UbuntuMono-Regular.eot
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/UbuntuMono-Regular.ttf
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/UbuntuMono-Regular.woff
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/fonts.css
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/text-security-disc.ttf
|
||||
%%DATADIR%%/bin/UI/Content/Fonts/text-security-disc.woff
|
||||
%%DATADIR%%/bin/UI/Content/Images/404.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/android-chrome-192x192.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/android-chrome-512x512.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/apple-touch-icon.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/browserconfig.xml
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon-16x16.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon-32x32.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon-debug-16x16.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon-debug-32x32.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon-debug.ico
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/favicon.ico
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/logo-lidarr.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/logo-radarr.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/logo-readarr.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/logo-sonarr.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/manifest.json
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/mstile-144x144.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/mstile-150x150.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/mstile-310x150.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/mstile-310x310.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/mstile-70x70.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/Icons/safari-pinned-tab.svg
|
||||
%%DATADIR%%/bin/UI/Content/Images/error.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/logo.svg
|
||||
%%DATADIR%%/bin/UI/Content/Images/poster-dark-square.png
|
||||
%%DATADIR%%/bin/UI/Content/Images/poster-dark.png
|
||||
%%DATADIR%%/bin/UI/Content/robots.txt
|
||||
%%DATADIR%%/bin/UI/Content/styles.css
|
||||
%%DATADIR%%/bin/UI/index.html
|
||||
%%DATADIR%%/bin/UI/index.js
|
||||
%%DATADIR%%/bin/UI/index.js.map
|
||||
%%DATADIR%%/bin/UI/login.html
|
||||
%%DATADIR%%/bin/UI/oauth.html
|
||||
%%DATADIR%%/bin/UI/vendors~index.js
|
||||
%%DATADIR%%/bin/UI/vendors~index.js.map
|
||||
%%DATADIR%%/bin/de-DE/FluentMigrator.Abstractions.resources.dll
|
||||
%%DATADIR%%/bin/netstandard.dll
|
||||
%%DATADIR%%/bin/refs/Interop.NetFwTypeLib.dll
|
||||
%%DATADIR%%/bin/refs/Microsoft.Bcl.AsyncInterfaces.dll
|
||||
%%DATADIR%%/bin/refs/Microsoft.CSharp.dll
|
||||
%%DATADIR%%/bin/refs/System.Buffers.dll
|
||||
%%DATADIR%%/bin/refs/System.ComponentModel.Annotations.dll
|
||||
%%DATADIR%%/bin/refs/System.ComponentModel.DataAnnotations.dll
|
||||
%%DATADIR%%/bin/refs/System.Configuration.dll
|
||||
%%DATADIR%%/bin/refs/System.Core.dll
|
||||
%%DATADIR%%/bin/refs/System.Data.DataSetExtensions.dll
|
||||
%%DATADIR%%/bin/refs/System.Data.dll
|
||||
%%DATADIR%%/bin/refs/System.Diagnostics.Tracing.dll
|
||||
%%DATADIR%%/bin/refs/System.Drawing.dll
|
||||
%%DATADIR%%/bin/refs/System.Globalization.Extensions.dll
|
||||
%%DATADIR%%/bin/refs/System.IO.Compression.FileSystem.dll
|
||||
%%DATADIR%%/bin/refs/System.IO.Compression.dll
|
||||
%%DATADIR%%/bin/refs/System.IO.Pipelines.dll
|
||||
%%DATADIR%%/bin/refs/System.Net.Http.dll
|
||||
%%DATADIR%%/bin/refs/System.Net.WebSockets.WebSocketProtocol.dll
|
||||
%%DATADIR%%/bin/refs/System.Numerics.Vectors.dll
|
||||
%%DATADIR%%/bin/refs/System.Numerics.dll
|
||||
%%DATADIR%%/bin/refs/System.Reflection.Emit.ILGeneration.dll
|
||||
%%DATADIR%%/bin/refs/System.Reflection.Emit.Lightweight.dll
|
||||
%%DATADIR%%/bin/refs/System.Reflection.Emit.dll
|
||||
%%DATADIR%%/bin/refs/System.Reflection.TypeExtensions.dll
|
||||
%%DATADIR%%/bin/refs/System.Runtime.CompilerServices.Unsafe.dll
|
||||
%%DATADIR%%/bin/refs/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
%%DATADIR%%/bin/refs/System.Runtime.InteropServices.WindowsRuntime.dll
|
||||
%%DATADIR%%/bin/refs/System.Runtime.Serialization.dll
|
||||
%%DATADIR%%/bin/refs/System.Security.Cryptography.Cng.dll
|
||||
%%DATADIR%%/bin/refs/System.Security.Principal.Windows.dll
|
||||
%%DATADIR%%/bin/refs/System.Security.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.Duplex.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.Http.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.NetTcp.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.Primitives.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.Security.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceModel.dll
|
||||
%%DATADIR%%/bin/refs/System.ServiceProcess.dll
|
||||
%%DATADIR%%/bin/refs/System.Threading.Overlapped.dll
|
||||
%%DATADIR%%/bin/refs/System.Transactions.dll
|
||||
%%DATADIR%%/bin/refs/System.ValueTuple.dll
|
||||
%%DATADIR%%/bin/refs/System.Web.dll
|
||||
%%DATADIR%%/bin/refs/System.Xml.Linq.dll
|
||||
%%DATADIR%%/bin/refs/System.Xml.dll
|
||||
%%DATADIR%%/bin/refs/System.dll
|
||||
%%DATADIR%%/bin/refs/mscorlib.dll
|
||||
%%DATADIR%%/bin/refs/netfx.force.conflicts.dll
|
||||
%%DATADIR%%/bin/web.config
|
||||
%%DATADIR%%/package_info
|
Loading…
Reference in New Issue
Block a user