mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 05:53:12 -04:00
Merge updates from master
This commit is contained in:
@@ -18,6 +18,14 @@
|
|||||||
|
|
||||||
# New entries go on top.
|
# New entries go on top.
|
||||||
|
|
||||||
|
# Haelwenn (lanodan) Monnier <contact@hacktivis.me>
|
||||||
|
# Package hasn't been maintained for almost a year.
|
||||||
|
# As I dropped myself as maintainer on 2024-05-25 21:54:47 with
|
||||||
|
# commit d72436666f91bf44a2478674a19b51fa614b5833
|
||||||
|
# Fails to build and hasn't seen bugfixes since.
|
||||||
|
# Removal on 2025-05-09. Bugs #912996, #916321, #926268, #932124
|
||||||
|
games-emulation/duckstation
|
||||||
|
|
||||||
# Vivian Heisz (demize) <demize@unstable.systems> (2025-04-04)
|
# Vivian Heisz (demize) <demize@unstable.systems> (2025-04-04)
|
||||||
# Unmaintained in GURU. Current versions are very old and have security
|
# Unmaintained in GURU. Current versions are very old and have security
|
||||||
# issues.
|
# issues.
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
move games-util/chiaki games-util/chiaki-ng
|
move games-util/chiaki games-util/chiaki-ng
|
||||||
move media-sound/g4music media-sound/gapless
|
move media-sound/g4music media-sound/gapless
|
||||||
move app-misc/ollama sci-misc/ollama
|
move dev-ml/ollama sci-ml/ollama
|
||||||
|
move app-misc/ollama sci-ml/ollama
|
||||||
|
move sci-misc/ollama sci-ml/ollama
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
move dev-ml/ollama app-misc/ollama
|
|
||||||
move app-misc/ledger-live app-misc/ledger-live-bin
|
move app-misc/ledger-live app-misc/ledger-live-bin
|
||||||
move dev-libs/qrcodegen dev-libs/qr-code-generator
|
move dev-libs/qrcodegen dev-libs/qr-code-generator
|
||||||
|
|||||||
1
sys-apps/openpt/Manifest
Normal file
1
sys-apps/openpt/Manifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
DIST openpt-1.0.1.tar.gz 2840 BLAKE2B 5b1d08f41f2f65a86f0e4fcf141bed4bb4a9d43a83a67c8ebf2231d36d5e5703a648926ff4fa1fffbe3fa1b198d498243f67d4a63ded321875126dfda1e436c8 SHA512 9c92e040447620e2dcd977fce4eeffc08b7d7ef37f5762a692a540f02e77e698a719d64a2095ca54f0afa989a90fcc63e1603c20375d3fb30c47f683994e94c3
|
||||||
8
sys-apps/openpt/metadata.xml
Normal file
8
sys-apps/openpt/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>contact@hacktivis.me</email>
|
||||||
|
<name>Haelwenn (lanodan) Monnier</name>
|
||||||
|
</maintainer>
|
||||||
|
</pkgmetadata>
|
||||||
22
sys-apps/openpt/openpt-1.0.1.ebuild
Normal file
22
sys-apps/openpt/openpt-1.0.1.ebuild
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Copyright 2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
DESCRIPTION="start program in a new pseudo-terminal"
|
||||||
|
HOMEPAGE="https://hacktivis.me/git/openpt"
|
||||||
|
SRC_URI="https://distfiles.hacktivis.me/releases/${PN}/${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
LICENSE="MPL-2.0"
|
||||||
|
SLOT="0"
|
||||||
|
|
||||||
|
IUSE="static"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
use static && export LDFLAGS="${LDFLAGS} -static"
|
||||||
|
default
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
PREFIX='/usr' default
|
||||||
|
}
|
||||||
@@ -32,6 +32,8 @@ src_unpack() {
|
|||||||
|
|
||||||
cd "${S}" || die
|
cd "${S}" || die
|
||||||
yarn install --no-bin-links --frozen-lockfile --non-interactive || die
|
yarn install --no-bin-links --frozen-lockfile --non-interactive || die
|
||||||
|
mkdir -p node_modules/.bin || die
|
||||||
|
ln -s ../vite/bin/vite.js node_modules/.bin/vite || die
|
||||||
}
|
}
|
||||||
|
|
||||||
# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance
|
# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ src_unpack() {
|
|||||||
|
|
||||||
cd "${S}" || die
|
cd "${S}" || die
|
||||||
yarn install --no-bin-links --frozen-lockfile --non-interactive || die
|
yarn install --no-bin-links --frozen-lockfile --non-interactive || die
|
||||||
|
mkdir -p node_modules/.bin || die
|
||||||
|
ln -s ../vite/bin/vite.js node_modules/.bin/vite || die
|
||||||
}
|
}
|
||||||
|
|
||||||
# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance
|
# FIXME src_prepare: Point to the correct source repo, needed for AGPL compliance
|
||||||
|
|||||||
Reference in New Issue
Block a user