Merge pull request #9791 from 4fury-c3440d8/no

updates.
This commit is contained in:
Rmys
2021-10-17 10:33:31 +03:00
committed by GitHub
10 changed files with 88 additions and 48 deletions
@@ -11,7 +11,7 @@ from pisi.actionsapi import get
def setup():
autotools.configure()
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
pisitools.dosed("libtool", " -shared ", " -Wl,-O2,--as-needed -shared ")
def build():
autotools.make()
@@ -19,5 +19,5 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS")
pisitools.dodoc("AUTHORS", "NEWS", "THANKS")
@@ -8,13 +8,13 @@
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>GPL-2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary>A module allows to take periodical breaks from the computer</Summary>
<Description>This plugin makes it possible to take periodical breaks from the computer every X minutes. During breaks it locks your screen. It optionally allows you to postpone breaks for a certain time.</Description>
<Archive sha1sum="e9289a149280f663955c6ea6b6e3974c9b985dfc" type="tarbz2">
https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.1/xfce4-time-out-plugin-1.1.1.tar.bz2
<Archive sha1sum="93e50f651678fe36b77dd420ed2a958538b56ac6" type="tarbz2">
https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.1/xfce4-time-out-plugin-1.1.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
@@ -43,6 +43,13 @@
</Package>
<History>
<Update release="2">
<Date>2021-10-17</Date>
<Version>1.1.2</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2020-07-07</Date>
<Version>1.1.1</Version>
+1 -1
View File
@@ -19,5 +19,5 @@ def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("/usr/share/gnome-control-center")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*", "THANKS")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*", "THANKS")
+9 -2
View File
@@ -14,7 +14,7 @@
<Description>
xfce4-terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more
</Description>
<Archive sha1sum="55d096791590facbddc2745baa24fdb35d0449dd" type="tarbz2">https://archive.xfce.org/src/apps/xfce4-terminal/0.8/xfce4-terminal-0.8.10.tar.bz2</Archive>
<Archive sha1sum="aff3b795030b3c997b06d93e0326f1c578253666" type="tarbz2">https://archive.xfce.org/src/apps/xfce4-terminal/0.9/xfce4-terminal-0.9.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>vte-devel</Dependency>
@@ -26,7 +26,7 @@
<Dependency versionFrom="4.16.0">libxfce4ui-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">xfce-terminal.patch</Patch>
<!-- <Patch level="1">xfce-terminal.patch</Patch> -->
</Patches>
</Source>
@@ -54,6 +54,13 @@
</Package>
<History>
<Update release="3">
<Date>2021-10-16</Date>
<Version>0.9.0</Version>
<Comment>Version bump.</Comment>
<Email>uglyside@yandex.ru</Email>
<Name>fury</Name>
</Update>
<Update release="2">
<Date>2020-12-24</Date>
<Version>0.8.10</Version>
+15 -13
View File
@@ -10,22 +10,24 @@ from pisi.actionsapi import cmaketools
from pisi.actionsapi import shelltools
j = ''.join([
'-DWITH_DBUS=ON ',
'-DBUILD_TESTING=OFF -L ',
'-DWITH_GSPELL=OFF ',
'-DBUILD_SHARED_LIBS=ON ',
'-DWITH_IMAGE_MAGICK=OFF ',
'-DBUILD_STATIC_LIBS=OFF ',
'-DCMAKE_INSTALL_LIBDIR=lib ',
'-DCYTHON_EXECUTABLE=/usr/bin/cython3 ',
'-DCMAKE_BUILD_TYPE=Release ',
'-DCMAKE_INSTALL_PREFIX=/usr '
' -DWITH_DBUS=ON',
' -DBUILD_TESTING=OFF',
' -DWITH_GSPELL=OFF',
' -DBUILD_SHARED_LIBS=ON',
' -DWITH_IMAGE_MAGICK=OFF',
' -DBUILD_STATIC_LIBS=OFF',
' -DCMAKE_INSTALL_LIBDIR=lib',
' -DCYTHON_EXECUTABLE=/usr/bin/cython3',
' -D2GEOM_BOOST_PYTHON=ON',
' -D2GEOM_CYTHON_BINDINGS=ON',
' -DCMAKE_BUILD_TYPE=Release',
' -DCMAKE_INSTALL_PREFIX=/usr -L '
])
def setup():
# fix shebang
#fix shebang
# shelltools.system("find share/extensions -iname '*.py' -exec sed -i 's|env\ python$|env python3|g' {} \;")
# if with imagemagick build.
#if with imagemagick build.
# shelltools.export("PKG_CONFIG_PATH", "${PKG_CONFIG_PATH}:/usr/lib/imagemagick6/pkgconfig")
shelltools.makedirs("build")
shelltools.cd("build")
@@ -39,4 +41,4 @@ def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("../COPYING", "../README.md")
pisitools.dodoc("../AUTHORS", "../NEWS.md", "../README.md")
+15 -2
View File
@@ -14,8 +14,9 @@
<IsA>app:gui</IsA>
<Summary>SVG vector graphics application.</Summary>
<Description>Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files.</Description>
<Archive sha1sum="e61dc54dd15c79eeabc9cc04cc8ecaf15ead42b2" type="tarxz">
https://media.inkscape.org/dl/resources/file/inkscape-1.1.tar.xz</Archive>
<Archive sha1sum="203960527f27e9fedf3e662847f759a6b4781178" type="tarxz">
https://inkscape.org/gallery/item/29255/inkscape-1.1.1_2021-09-20_3bf5ae0d25.tar.xz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ragel</Dependency>
@@ -30,6 +31,8 @@
<Dependency>libXt-devel</Dependency>
<Dependency>libXv-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libXaw-devel</Dependency>
<Dependency>libXmu-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>libXres-devel</Dependency>
<Dependency>libXtst-devel</Dependency>
@@ -53,6 +56,7 @@
<Dependency>libxslt-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>boost-python3</Dependency>
<Dependency>poppler-devel</Dependency>
<Dependency>poppler-utils</Dependency>
<Dependency>libyaml-devel</Dependency>
@@ -122,9 +126,11 @@
<Dependency>python3-lxml</Dependency>
<Dependency>python3-numpy</Dependency>
<Dependency>python3-scour</Dependency>
<Dependency>boost-python3</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>GraphicsMagick</Dependency>
<!-- <Dependency>double-conversion</Dependency> -->
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="man">/usr/share/man</Path>
@@ -167,6 +173,13 @@
</Package>
<History>
<Update release="12">
<Date>2021-10-16</Date>
<Version>1.1.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="11">
<Date>2021-06-05</Date>
<Version>1.1</Version>
+3 -6
View File
@@ -4,16 +4,13 @@
# 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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.system("sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure")
autotools.configure("--enable-taskstats \
--enable-unicode \
--enable-cgroup")
autotools.autoreconf("-fiv")
autotools.configure()
def build():
autotools.make("-j1")
@@ -21,4 +18,4 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS")
+19 -9
View File
@@ -3,43 +3,53 @@
<PISI>
<Source>
<Name>htop</Name>
<Homepage>https://github.com/htop-dev/htop</Homepage>
<Homepage>https://htop.dev/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>GPL-2</License>
<Icon>htop</Icon>
<IsA>app:console</IsA>
<IsA>app:gui</IsA>
<Summary>An interactive process viewer for Linux</Summary>
<Summary>An interactive process viewer for Linux.</Summary>
<Description>htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'.</Description>
<Archive sha1sum="5bbd6a29b77302b5793c311e72a13b6a424a557e" type="targz">https://dl.bintray.com/htop/source/htop-3.0.1.tar.gz</Archive>
<Archive sha1sum="d7985915443cc4c1d3201e57e589d62cb4a337ee" type="targz">https://github.com/htop-dev/htop/archive/refs/tags/3.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>libcap-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>libunwind-devel</Dependency>
<Dependency>lm_sensors-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch>desktop_tr.patch</Patch>-->
<!-- <Patch>missing.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>htop</Name>
<RuntimeDependencies>
<Dependency>libcap</Dependency>
<Dependency>ncurses</Dependency>
</RuntimeDependencies>
<Dependency>libunwind</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2021-10-17</Date>
<Version>3.1.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5">
<Date>2020-09-11</Date>
<Version>3.0.1</Version>
+4 -4
View File
@@ -9,16 +9,16 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
#autotools.autoreconf("-vif")
autotools.configure()
autotools.configure("--enable-mpers=check")
def build():
autotools.make()
def check():
autotools.make()
pass
#autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "CREDITS", "NEWS", "README", "README-linux-ptrace",)
pisitools.dodoc("CREDITS", "NEWS", "README*",)
+10 -6
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>strace</Name>
@@ -12,15 +12,12 @@
<IsA>app:console</IsA>
<Summary>Tracks and displays system calls associated with a running process</Summary>
<Description>strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value.</Description>
<Archive sha1sum="0e60844b68a6097d46053488facbd3c40484af27" type="tarxz">https://strace.io/files/5.8/strace-5.8.tar.xz</Archive>
<Archive sha1sum="8b5ced312f379806406a0ee6551fbe373c55e738" type="tarxz">https://strace.io/files/5.10/strace-5.10.tar.xz</Archive>
<BuildDependencies>
<Dependency>libaio-devel</Dependency>
<Dependency>libunwind-devel</Dependency>
<Dependency>kernel-headers</Dependency>
<Dependency>kernel-module-headers</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch level="1">strace-fix-ftbfs.patch</Patch>-->
<!-- <Patch level="1">missing.patch</Patch> -->
</Patches>
</Source>
@@ -37,6 +34,13 @@
</Package>
<History>
<Update release="8">
<Date>2021-10-17</Date>
<Version>5.10</Version>
<Comment>Kernel bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2020-09-11</Date>
<Version>5.8</Version>