Merge pull request #11571 from 4fury-c3440d8/new
add CCZE: a fast log(text output) colorizer.
This commit is contained in:
@@ -23,5 +23,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s %s" % (get.installDIR(), j))
|
||||
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG.md", "HACKING.md", "README.md", "RELEASE_NOTES")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG.md", "RELEASE_NOTES")
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
<PartOf>desktop.misc</PartOf>
|
||||
<Summary>Lightweight and customizable notification daemon.</Summary>
|
||||
<Description>Dunst is a lightweight replacement for the notification daemons provided by most desktop environments. It’s very customizable, isn’t dependent on any toolkits, and therefore fits into those window manager centric setups we all love to customize to perfection.</Description>
|
||||
<Archive sha1sum="4fcc52dc552a8ae132c861ed89eb4baea4661a8a" type="targz">
|
||||
https://github.com/dunst-project/dunst/archive/refs/tags/v1.9.0.tar.gz
|
||||
<Archive sha1sum="b90abc1e52584f29d21bfb326d9faaceb5cdf6c0" type="targz">
|
||||
https://github.com/dunst-project/dunst/archive/refs/tags/v1.9.1.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
@@ -60,6 +60,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2023-03-11</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>1.9.0</Version>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "THANKS")
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ccze-rv</Name>
|
||||
<Homepage>https://github.com/software-revive/ccze-rv</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>x11.terminal</PartOf>
|
||||
<Summary>CCZE is a fast log colorizer written in C.</Summary>
|
||||
<Description>pass</Description>
|
||||
<Archive sha1sum="ea9c3b16f3a1beb50d4c9714348f512e4b7fcd8f" type="targz">
|
||||
https://github.com/software-revive/ccze-rv/releases/download/0.3.0/ccze-0.3.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
<Dependency>libpcre-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level='1'></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ccze-rv</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ncurses</Dependency>
|
||||
<Dependency>libpcre</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/ccze</Path>
|
||||
<Path fileType="header">/usr/include/ccze.h</Path>
|
||||
<Path fileType="data">/usr/share/man/man1</Path>
|
||||
<Path fileType="data">/usr/share/man/man7</Path>
|
||||
<Path fileType="data">/usr/share/doc/ccze-rv</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-03-10</Date>
|
||||
<Version>0.3.0</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user