mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-05-04 04:03:49 +00:00
Compare commits
2 Commits
4fec42eac8
...
812c03d1eb
Author | SHA1 | Date | |
---|---|---|---|
812c03d1eb | |||
01597c531b |
2
.github/workflows/setup.sh
vendored
2
.github/workflows/setup.sh
vendored
@ -32,7 +32,7 @@ mv dist/ahriman-*.tar.gz package/archlinux
|
|||||||
chmod +777 package/archlinux # because fuck you that's why
|
chmod +777 package/archlinux # because fuck you that's why
|
||||||
cd package/archlinux
|
cd package/archlinux
|
||||||
sudo -u nobody -- makepkg -cf --skipchecksums --noconfirm
|
sudo -u nobody -- makepkg -cf --skipchecksums --noconfirm
|
||||||
sudo -u nobody -- makepkg --packagelist | pacman -U --noconfirm -
|
sudo -u nobody -- makepkg --packagelist | grep -v -- -debug- | pacman -U --noconfirm -
|
||||||
# create machine-id which is required by build tools
|
# create machine-id which is required by build tools
|
||||||
systemd-machine-id-setup
|
systemd-machine-id-setup
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.1 MiB |
@ -1,21 +0,0 @@
|
|||||||
ahriman.web.views.v2.packages package
|
|
||||||
=====================================
|
|
||||||
|
|
||||||
Submodules
|
|
||||||
----------
|
|
||||||
|
|
||||||
ahriman.web.views.v2.packages.logs module
|
|
||||||
-----------------------------------------
|
|
||||||
|
|
||||||
.. automodule:: ahriman.web.views.v2.packages.logs
|
|
||||||
:members:
|
|
||||||
:no-undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
Module contents
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: ahriman.web.views.v2.packages
|
|
||||||
:members:
|
|
||||||
:no-undoc-members:
|
|
||||||
:show-inheritance:
|
|
@ -1,18 +0,0 @@
|
|||||||
ahriman.web.views.v2 package
|
|
||||||
============================
|
|
||||||
|
|
||||||
Subpackages
|
|
||||||
-----------
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 4
|
|
||||||
|
|
||||||
ahriman.web.views.v2.packages
|
|
||||||
|
|
||||||
Module contents
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: ahriman.web.views.v2
|
|
||||||
:members:
|
|
||||||
:no-undoc-members:
|
|
||||||
:show-inheritance:
|
|
@ -1,7 +1,7 @@
|
|||||||
# Maintainer: Evgeniy Alekseev
|
# Maintainer: Evgeniy Alekseev
|
||||||
|
|
||||||
pkgname='ahriman'
|
pkgname='ahriman'
|
||||||
pkgver=2.13.3
|
pkgver=2.13.4
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="ArcH linux ReposItory MANager"
|
pkgdesc="ArcH linux ReposItory MANager"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH AHRIMAN "1" "2024\-01\-12" "ahriman" "Generated Python Manual"
|
.TH AHRIMAN "1" "2024\-02\-09" "ahriman" "Generated Python Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
ahriman
|
ahriman
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -17,4 +17,4 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
__version__ = "2.13.3"
|
__version__ = "2.13.4"
|
||||||
|
@ -107,7 +107,10 @@ class Task(LazyLogging):
|
|||||||
logger=self.logger,
|
logger=self.logger,
|
||||||
environment=environment,
|
environment=environment,
|
||||||
).splitlines()
|
).splitlines()
|
||||||
return [Path(package) for package in packages]
|
# some dirty magic here
|
||||||
|
# the filter is applied in order to make sure that result will only contain packages which were actually built
|
||||||
|
# e.g. in some cases packagelist command produces debug packages which were not actually built
|
||||||
|
return list(filter(lambda path: path.is_file(), map(Path, packages)))
|
||||||
|
|
||||||
def init(self, sources_dir: Path, database: SQLite, local_version: str | None) -> str | None:
|
def init(self, sources_dir: Path, database: SQLite, local_version: str | None) -> str | None:
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user