Merge pull request #18222 from 4fury-c3440d8-2/upwork

bleachbit-v5.1.0, augeas-v1.14.1, btop-v1.4.6
This commit is contained in:
Rmys
2026-02-20 21:34:18 +03:00
committed by GitHub
8 changed files with 131 additions and 113 deletions
+1
View File
@@ -7,6 +7,7 @@
from pisi.actionsapi import autotools, get
j = ''.join([
' BUILD_TYPE=RelWithDebInfo',
' VERBOSE=true',
' QUIET=true',
' STRIP=true',
+8 -3
View File
@@ -14,9 +14,7 @@
<PartOf>util.admin</PartOf>
<Summary>A monitor of resources.</Summary>
<Description>Resource monitor that shows usage and stats for processor, memory, disks, network and processes.</Description>
<Archive sha1sum="39ee4f66df0ef5205bf55c8fd994a1cca4cc66e9" type="targz">
https://github.com/aristocratos/btop/archive/v1.4.4/btop-v1.4.4.tar.gz
</Archive>
<Archive sha1sum="e35945fe2a7bfc7ff4ff214a36146004d2845b26" type="targz">https://github.com/aristocratos/btop/archive/v1.4.6/btop-v1.4.6.tar.gz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
</BuildDependencies>
@@ -37,6 +35,13 @@
</Package>
<History>
<Update release="4">
<Date>2026-02-19</Date>
<Version>1.4.6</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2025-07-05</Date>
<Version>1.4.4</Version>
+14 -3
View File
@@ -2,18 +2,29 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# 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
j = ''.join([
' --prefix=/usr',
' --with-pdfdocs=no',
' --with-threads=posix',
' --without-selinux',
' --disable-static '
])
def setup():
autotools.configure("--disable-static")
shelltools.system("sh autogen.sh")
autotools.configure(j)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*")
pisitools.dodoc("AUTHORS", "COPYING")
+13 -6
View File
@@ -1,19 +1,19 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>augeas</Name>
<Homepage>http://augeas.net</Homepage>
<Homepage>https://github.com/hercules-team/augeas</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2+</License>
<License>LGPLv2.1</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>A library for changing configuration files</Summary>
<Description>augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API.</Description>
<Archive sha1sum="afe7aee292e058141d8c19f6a82b5f8bae2d5163" type="targz">http://download.augeas.net/augeas-1.12.0.tar.gz</Archive>
<Archive sha1sum="71a615547fc93a6d8a653a8d92f2b42252cacb68" type="targz">https://github.com/hercules-team/augeas/archive/refs/tags/release-1.14.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libxml2-devel</Dependency>
<Dependency>readline-devel</Dependency>
@@ -40,17 +40,24 @@
<Name>augeas-devel</Name>
<Summary>Development files for augeas</Summary>
<RuntimeDependencies>
<Dependency release="current">augeas</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency release="current">augeas</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2026-02-19</Date>
<Version>1.14.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="6">
<Date>2020-01-25</Date>
<Version>1.12.0</Version>
+3 -10
View File
@@ -2,17 +2,10 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# 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 get
def setup():
pass
def build():
pass
def install():
shelltools.system("make prefix=/usr DESTDIR=%s install" % get.installDIR())
autotools.rawInstall("DESTDIR=%s prefix=/usr" % get.installDIR())
+80 -79
View File
@@ -1,86 +1,87 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>bleachbit</Name>
<Homepage>https://www.bleachbit.org/</Homepage>
<Packager>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<Summary>Deletes unneeded files to free disk space and maintain privacy.</Summary>
<Description>BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there.</Description>
<License>GPL-3</License>
<IsA>app:gui</IsA>
<Archive sha1sum="11daba60111597c08e750aea3de0f1f1d1600103" type="tarbz2">
mirrors://sourceforge/project/bleachbit/bleachbit/4.4.2/bleachbit-4.4.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<!-- <Dependency>python-pygobject-devel</Dependency> -->
<Dependency>python3-pygobject3-devel</Dependency>
</BuildDependencies>
</Source>
<Source>
<Name>bleachbit</Name>
<Homepage>https://www.bleachbit.org/</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<Summary>Clean your system and free disk space.</Summary>
<Description>BleachBit is a free and open source system cleaner application. It recovers disk space while maintaining your privacy.</Description>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<Archive sha1sum="97b72e87f4d6d8fe0b2bc39f927292e279a6bb31" type="tarbz2">mirrors://sourceforge/project/bleachbit/bleachbit-5.1.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>bleachbit</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<!-- <Dependency>python-pygobject</Dependency> -->
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/bleachbit</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>bleachbit</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2022-11-10</Date>
<Version>4.4.2</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5">
<Date>2021-04-29</Date>
<Version>4.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2018-07-31</Date>
<Version>2.0</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2018-05-09</Date>
<Version>2.0</Version>
<Comment>Version bump</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2017-05-04</Date>
<Version>1.12</Version>
<Comment>Rebuild with new toolchain</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-12-04</Date>
<Version>1.12</Version>
<Comment>First Release.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
<History>
<Update release="7">
<Date>2026-02-19</Date>
<Version>5.1.0</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2022-11-10</Date>
<Version>4.4.2</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5">
<Date>2021-04-29</Date>
<Version>4.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2018-07-31</Date>
<Version>2.0</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2018-05-09</Date>
<Version>2.0</Version>
<Comment>Version bump</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2017-05-04</Date>
<Version>1.12</Version>
<Comment>Rebuild with new toolchain</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-12-04</Date>
<Version>1.12</Version>
<Comment>First Release.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
-12
View File
@@ -1,12 +0,0 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>bleachbit</Name>
<Summary xml:lang="de">BleachBit befreit den PC von überflüssigen Dateien</Summary>
<Description xml:lang="de">BleachBit BleachBit befreit den PC von überflüssigen Dateien, die Speicherplatz belegen aber nicht mehr gebraucht werden. Zudem sorgt BleachBit durch das Entfernen privater Surfspuren für den Schutz Ihrer Privatsphäre. Neben dem Aufspüren von Log- und temporären Dateien kennt BleachBit rund 70 verschiedene Anwendungen und kann etwa deren Verlauf (History), Cookies oder Cache per Mausklick löschen.</Description>
<Summary xml:lang="tr">Bilgisayar Temizleyici</Summary>
<Description xml:lang="tr">BleachBit,bilgisayarınızın gizliliğini korumak için çerezler,geçici dosyalar ve önbelleği temizleyerek internette güvenli gezinme sağlar.</Description>
<Summary xml:lang="en">BleachBit frees the PC from unnecessary files</Summary>
<Description xml:lang="en">BleachBit frees the PC from unnecessary files, but do not occupy more space is needed. BleachBit also provides private surf by removing traces to protect your privacy. In addition to the detection of log and temporary files BleachBit knows about 70 different applications and can be about their history (History), cookies or cache delete mouse.</Description>
</Source>
</PISI>
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>bleachbit</Name>
<Summary xml:lang="de">BleachBit befreit den PC von überflüssigen Dateien</Summary>
<Description xml:lang="de">BleachBit BleachBit befreit den PC von überflüssigen Dateien, die Speicherplatz belegen aber nicht mehr gebraucht werden. Zudem sorgt BleachBit durch das Entfernen privater Surfspuren für den Schutz Ihrer Privatsphäre. Neben dem Aufspüren von Log- und temporären Dateien kennt BleachBit rund 70 verschiedene Anwendungen und kann etwa deren Verlauf (History), Cookies oder Cache per Mausklick löschen.</Description>
<Summary xml:lang="tr">Bilgisayar Temizleyici</Summary>
<Description xml:lang="tr">BleachBit,bilgisayarınızın gizliliğini korumak için çerezler,geçici dosyalar ve önbelleği temizleyerek internette güvenli gezinme sağlar.</Description>
<Summary xml:lang="en">BleachBit frees the PC from unnecessary files</Summary>
<Description xml:lang="en">BleachBit frees the PC from unnecessary files, but do not occupy more space is needed. BleachBit also provides private surf by removing traces to protect your privacy. In addition to the detection of log and temporary files BleachBit knows about 70 different applications and can be about their history (History), cookies or cache delete mouse.</Description>
</Source>
</PISI>