mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-15 18:13:10 -04:00
Merge updates from master
This commit is contained in:
21
dev-hare/hare-compress/hare-compress-9999.ebuild
Normal file
21
dev-hare/hare-compress/hare-compress-9999.ebuild
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Compression algorithms for Hare"
|
||||
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-compress"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-compress"
|
||||
LICENSE="MPL-2.0"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-lang/hare"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
|
||||
}
|
||||
8
dev-hare/hare-compress/metadata.xml
Normal file
8
dev-hare/hare-compress/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>
|
||||
21
dev-hare/hare-linux/hare-linux-9999.ebuild
Normal file
21
dev-hare/hare-linux/hare-linux-9999.ebuild
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Extra Linux support for Hare programs"
|
||||
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-linux"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-linux"
|
||||
LICENSE="MPL-2.0"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-lang/hare"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
|
||||
}
|
||||
8
dev-hare/hare-linux/metadata.xml
Normal file
8
dev-hare/hare-linux/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>
|
||||
21
dev-hare/hare-png/hare-png-9999.ebuild
Normal file
21
dev-hare/hare-png/hare-png-9999.ebuild
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="PNG implementation for Hare"
|
||||
HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-png"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-png"
|
||||
LICENSE="MPL-2.0"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-lang/hare"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
|
||||
}
|
||||
8
dev-hare/hare-png/metadata.xml
Normal file
8
dev-hare/hare-png/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>
|
||||
32
dev-lang/hare/hare-9999.ebuild
Normal file
32
dev-lang/hare/hare-9999.ebuild
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright 2021-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="The Hare systems programming language"
|
||||
HOMEPAGE="https://harelang.org/"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
sys-devel/qbe
|
||||
dev-lang/harec
|
||||
"
|
||||
BDEPEND="
|
||||
app-text/scdoc
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
git-r3_src_unpack
|
||||
mkdir "${WORKDIR}/${P}/build" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
cp config.example.mk config.mk || die
|
||||
sed -i -e 's;^PREFIX=.*;PREFIX=/usr;' config.mk || die
|
||||
}
|
||||
8
dev-lang/hare/metadata.xml
Normal file
8
dev-lang/hare/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>
|
||||
26
dev-lang/harec/harec-9999.ebuild
Normal file
26
dev-lang/harec/harec-9999.ebuild
Normal file
@@ -0,0 +1,26 @@
|
||||
# Copyright 2021-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="The Hare compiler"
|
||||
HOMEPAGE="https://harelang.org/"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/harec"
|
||||
S="${WORKDIR}/${P}/build"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="sys-devel/qbe"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
git-r3_src_unpack
|
||||
mkdir "${WORKDIR}/${P}/build" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
../configure --prefix="/usr" --libdir="/usr/$(get_libdir)" || die
|
||||
}
|
||||
8
dev-lang/harec/metadata.xml
Normal file
8
dev-lang/harec/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>
|
||||
@@ -85,7 +85,7 @@ LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
BDEPEND="dev-python/setuptools_rust
|
||||
BDEPEND="dev-python/setuptools-rust
|
||||
test? (
|
||||
dev-python/fixtures[${PYTHON_USEDEP}]
|
||||
>=dev-python/testtools-2.5.0[${PYTHON_USEDEP}]
|
||||
|
||||
29
dev-util/deblob/deblob-9999.ebuild
Normal file
29
dev-util/deblob/deblob-9999.ebuild
Normal file
@@ -0,0 +1,29 @@
|
||||
# Copyright 2021-2022 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="remove binary executables from a directory"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~lanodan/deblob"
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND="
|
||||
dev-lang/hare
|
||||
test? ( app-text/mandoc )
|
||||
"
|
||||
RDEPEND=""
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
mv "${P}" "${PN}" || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DESTDIR="${D}" PREFIX="/usr"
|
||||
einstalldocs
|
||||
}
|
||||
8
dev-util/deblob/metadata.xml
Normal file
8
dev-util/deblob/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>
|
||||
@@ -1,2 +1,3 @@
|
||||
dev-hare
|
||||
dev-R
|
||||
net-client
|
||||
|
||||
@@ -66,7 +66,6 @@ ruby_add_rdepend "
|
||||
dev-ruby/webrick
|
||||
dev-ruby/json"
|
||||
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
PATCHES="${FILESDIR}/pcs-0.11-gentoo-support.patch
|
||||
${FILESDIR}/remove_bashism.patch"
|
||||
|
||||
31
sys-devel/cproc/cproc-9999.ebuild
Normal file
31
sys-devel/cproc/cproc-9999.ebuild
Normal file
@@ -0,0 +1,31 @@
|
||||
# Copyright 2021-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="C11 compiler using QBE as backend"
|
||||
HOMEPAGE="https://sr.ht/~mcf/cproc/"
|
||||
EGIT_REPO_URI="https://git.sr.ht/~mcf/cproc"
|
||||
LICENSE="ISC"
|
||||
SLOT="0"
|
||||
IUSE="system-qbe"
|
||||
|
||||
DEPEND="system-qbe? ( sys-devel/qbe:= )"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
|| die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if ! use system-qbe; then
|
||||
emake qbe
|
||||
PATH=$PWD/qbe/obj:$PATH emake
|
||||
else
|
||||
emake
|
||||
fi
|
||||
}
|
||||
11
sys-devel/cproc/metadata.xml
Normal file
11
sys-devel/cproc/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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>
|
||||
<use>
|
||||
<flag name="system-qbe">Use <pkg>sys-devel/qbe</pkg> instead of the vendored one</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
8
sys-devel/qbe/metadata.xml
Normal file
8
sys-devel/qbe/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>
|
||||
12
sys-devel/qbe/qbe-9999.ebuild
Normal file
12
sys-devel/qbe/qbe-9999.ebuild
Normal file
@@ -0,0 +1,12 @@
|
||||
# Copyright 2021-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Pure-C embeddable compiler backend"
|
||||
HOMEPAGE="https://c9x.me/compile/"
|
||||
EGIT_REPO_URI="git://c9x.me/qbe.git"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
Reference in New Issue
Block a user