new packages and index
radiotray-ng libxdg-basedir
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 cmaketools, pisitools, get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF -L")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
cmaketools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
|
||||||
|
pisitools.dodoc("AUTHORS", "README.md")
|
||||||
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
From 84648e8d06fd2676f28dc671d5748d4032094ddf Mon Sep 17 00:00:00 2001
|
||||||
|
From: Anton Bolshakov <blshkv@users.noreply.github.com>
|
||||||
|
Date: Sat, 20 Jun 2020 11:47:04 +0800
|
||||||
|
Subject: [PATCH] respect global cmake FLAGS (#141)
|
||||||
|
|
||||||
|
https://github.com/ebruck/radiotray-ng/issues/140
|
||||||
|
---
|
||||||
|
CMakeLists.txt | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 1acdc7a..f9b3338 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -57,8 +57,8 @@ set(CMAKE_CXX_STANDARD 14)
|
||||||
|
add_definitions("-DBOOST_LOG_DYN_LINK")
|
||||||
|
add_compile_options("-fdiagnostics-color=auto")
|
||||||
|
set(warnings "-Wall -Wextra -Werror -Wpedantic")
|
||||||
|
-set(CMAKE_CXX_FLAGS ${warnings})
|
||||||
|
-set(CMAKE_C_FLAGS ${warnings})
|
||||||
|
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${warnings}")
|
||||||
|
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${warnings}")
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s")
|
||||||
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -s")
|
||||||
|
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>radiotray-ng</Name>
|
||||||
|
<Homepage>https://github.com/ebruck/radiotray-ng</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPL-3</License>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<PartOf>multimedia.stream</PartOf>
|
||||||
|
<Summary>Radiotray-NG: An Internet radio player for Linux.</Summary>
|
||||||
|
<Description>It became clear as one of the early contributors to the RadioTray project that it was not getting the attention it required and was probably dead. A lot of the technologies it used had moved on to newer versions and the bugs started piling up. I did my best to help users, but a new start was required.</Description>
|
||||||
|
<Archive sha1sum="59ee40916407c639a7dedb0e2ee592f57a499da4" type="targz">
|
||||||
|
https://github.com/ebruck/radiotray-ng/archive/refs/tags/v0.2.8.tar.gz
|
||||||
|
</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>ccache</Dependency>
|
||||||
|
<Dependency>wxGTK3</Dependency>
|
||||||
|
<Dependency>curl-devel</Dependency>
|
||||||
|
<Dependency>gtk3-devel</Dependency>
|
||||||
|
<Dependency>boost-devel</Dependency>
|
||||||
|
<Dependency>wxGTK-devel</Dependency>
|
||||||
|
<Dependency>lsb-release</Dependency>
|
||||||
|
<Dependency>wxGTK-common</Dependency>
|
||||||
|
<Dependency>glibmm-devel</Dependency>
|
||||||
|
<Dependency>libbsd-devel</Dependency>
|
||||||
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>ncurses-devel</Dependency>
|
||||||
|
<Dependency>jsoncpp-devel</Dependency>
|
||||||
|
<Dependency>libnotify-devel</Dependency>
|
||||||
|
<Dependency>gstreamer-devel</Dependency>
|
||||||
|
<Dependency>libxdg-basedir-devel</Dependency>
|
||||||
|
<Dependency>libappindicator-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Patches>
|
||||||
|
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||||
|
</Patches>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>radiotray-ng</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>curl</Dependency>
|
||||||
|
<Dependency>gtk3</Dependency>
|
||||||
|
<Dependency>boost</Dependency>
|
||||||
|
<Dependency>glib2</Dependency>
|
||||||
|
<Dependency>glibmm</Dependency>
|
||||||
|
<Dependency>libbsd</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>wxGTK3</Dependency>
|
||||||
|
<Dependency>jsoncpp</Dependency>
|
||||||
|
<Dependency>gstreamer</Dependency>
|
||||||
|
<Dependency>libnotify</Dependency>
|
||||||
|
<Dependency>libsigc++</Dependency>
|
||||||
|
<Dependency>python3-lxml</Dependency>
|
||||||
|
<Dependency>wxGTK-common</Dependency>
|
||||||
|
<Dependency>libxdg-basedir</Dependency>
|
||||||
|
<Dependency>libappindicator</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg/autostart</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="2">
|
||||||
|
<Date>2021-09-12</Date>
|
||||||
|
<Version>0.2.8</Version>
|
||||||
|
<Comment>Version bump.</Comment>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Update>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2021-01-28</Date>
|
||||||
|
<Version>0.2.7</Version>
|
||||||
|
<Comment>First Beta build.</Comment>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
|
|
||||||
+6691
-6554
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
|||||||
aca07326f1ebde2499a9754e0ce4abdf55d4107a
|
f0b2c021d8d5ab7290b5fdfa1ac5a450780885d5
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
6056531669ddfe752015990014a5ea3cd964ab6f
|
0a5e36a2269d7c0d155bd2e9c470141552194612
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/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.autoreconf("-fiv")
|
||||||
|
autotools.configure("--disable-static")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
autotools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING", "README.md")
|
||||||
|
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>libxdg-basedir</Name>
|
||||||
|
<Homepage>https://github.com/devnev/libxdg-basedir</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>MIT</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<PartOf>programming.library</PartOf>
|
||||||
|
<Summary>libxdg-basedir is an implementation of the XDG Base Directory specifications.</Summary>
|
||||||
|
<Description>libxdg-basedir is an implementation of the XDG Base Directory specifications.</Description>
|
||||||
|
<Archive sha1sum="41d495868197dc0db4b5b7337d4cb2d215497614" type="targz">
|
||||||
|
https://github.com/devnev/libxdg-basedir/archive/refs/tags/libxdg-basedir-1.2.3.tar.gz
|
||||||
|
</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<!-- <Dependency></Dependency> -->
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>libxdg-basedir</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency></Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>libxdg-basedir-devel</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">libxdg-basedir</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="2">
|
||||||
|
<Date>2021-06-19</Date>
|
||||||
|
<Version>1.2.3</Version>
|
||||||
|
<Comment>Version bump.</Comment>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Update>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2021-01-23</Date>
|
||||||
|
<Version>1.2.2</Version>
|
||||||
|
<Comment>First Beta build.</Comment>
|
||||||
|
<Name>fury</Name>
|
||||||
|
<Email>uglyside@yandex.ru</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
|
|
||||||
Reference in New Issue
Block a user