Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9313396
rpm-specfile.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
rpm-specfile.js
View Options
/**
* highlight.js RPM spec file syntax highlighting definition
*
* @see https://github.com/highlightjs/highlight.js
*
* @package highlightjs-rpm-specfile
* @author Ryan Lerch <rlerch@redhat.com>, Neal Gompa <ngompa13@gmail.com>
* @since 2019-07-08
* @license magnet:?xt=urn:btih:c80d50af7d3db9be66a4d0a86db0286e4fd33292&dn=bsd-3-clause.txt BSD-3-Clause
*
* Language: rpm-specfile
* Description: RPM Specfile
* Author: Ryan Lerch <rlerch@redhat.com>
* Contributors: Neal Gompa <ngompa13@gmail.com>
* Category: config
* Requires: bash.js
* Website: https://rpm.org/
**/
var
module
=
module
?
module
:
{};
// shim for browser use
function
hljsDefineRpmSpecfile
(
hljs
)
{
return
{
aliases
:
[
'rpm'
,
'spec'
,
'rpm-spec'
,
'specfile'
],
contains
:
[
hljs
.
COMMENT
(
'%dnl'
),
hljs
.
HASH_COMMENT_MODE
,
hljs
.
APOS_STRING_MODE
,
hljs
.
QUOTE_STRING_MODE
,
{
className
:
"type"
,
begin
:
/^(Name|BuildRequires|Version|Release|Epoch|Summary|Group|License|Packager|Vendor|Icon|URL|Distribution|Prefix|Patch[0-9]*|Source[0-9]*|Requires\(?[a-z]*\)?|[a-z]+Req|Obsoletes|Recommends|Suggests|Supplements|Enhances|Provides|Conflicts|RemovePathPostfixes|Build[a-z]+|[a-z]+Arch|Auto[a-z]+)(:)/
,
},
{
className
:
"keyword"
,
begin
:
/(%)(?:package|prep|generate_buildrequires|sourcelist|patchlist|build|description|install|verifyscript|clean|changelog|check|pre[a-z]*|post[a-z]*|trigger[a-z]*|files)/
,
},
{
className
:
"link"
,
begin
:
/(%)(if|ifarch|ifnarch|ifos|ifnos|elif|elifarch|elifos|else|endif)/
,
},
{
className
:
"link"
,
begin
:
/%\{_/
,
end
:
/}/
,
},
{
className
:
"symbol"
,
begin
:
/%\{\?/
,
end
:
/}/
,
},
{
className
:
"link font-weight-bold"
,
begin
:
/%\{/
,
end
:
/}/
,
},
{
className
:
"link font-weight-bold"
,
begin
:
/%/
,
end
:
/[ \t\n]/
},
{
className
:
"symbol font-weight-bold"
,
begin
:
/^\* (Mon|Tue|Wed|Thu|Fri|Sat|Sun)/
,
end
:
/$/
,
},
]
};
}
module
.
exports
=
function
(
hljs
)
{
hljs
.
registerLanguage
(
'rpm-specfile'
,
hljsDefineRpmSpecfile
);
};
module
.
exports
.
definer
=
hljsDefineRpmSpecfile
;
/* @license-end */
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 3, 11:37 AM (4 d, 20 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3354322
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment