diff --git a/dev-hare/hare-compress/hare-compress-9999.ebuild b/dev-hare/hare-compress/hare-compress-9999.ebuild new file mode 100644 index 0000000000..4fe766478d --- /dev/null +++ b/dev-hare/hare-compress/hare-compress-9999.ebuild @@ -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 +} diff --git a/dev-hare/hare-compress/metadata.xml b/dev-hare/hare-compress/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-hare/hare-compress/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-hare/hare-linux/hare-linux-9999.ebuild b/dev-hare/hare-linux/hare-linux-9999.ebuild new file mode 100644 index 0000000000..5f2625a0ff --- /dev/null +++ b/dev-hare/hare-linux/hare-linux-9999.ebuild @@ -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 +} diff --git a/dev-hare/hare-linux/metadata.xml b/dev-hare/hare-linux/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-hare/hare-linux/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-hare/hare-png/hare-png-9999.ebuild b/dev-hare/hare-png/hare-png-9999.ebuild new file mode 100644 index 0000000000..294a049a5c --- /dev/null +++ b/dev-hare/hare-png/hare-png-9999.ebuild @@ -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 +} diff --git a/dev-hare/hare-png/metadata.xml b/dev-hare/hare-png/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-hare/hare-png/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-lang/hare/hare-9999.ebuild b/dev-lang/hare/hare-9999.ebuild new file mode 100644 index 0000000000..93f88ea172 --- /dev/null +++ b/dev-lang/hare/hare-9999.ebuild @@ -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 +} diff --git a/dev-lang/hare/metadata.xml b/dev-lang/hare/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-lang/hare/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-lang/harec/harec-9999.ebuild b/dev-lang/harec/harec-9999.ebuild new file mode 100644 index 0000000000..6227b5845f --- /dev/null +++ b/dev-lang/harec/harec-9999.ebuild @@ -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 +} diff --git a/dev-lang/harec/metadata.xml b/dev-lang/harec/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-lang/harec/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-python/retworkx/retworkx-0.11.0.ebuild b/dev-python/retworkx/retworkx-0.11.0.ebuild index 107fcce5fc..bcb18dbb4d 100644 --- a/dev-python/retworkx/retworkx-0.11.0.ebuild +++ b/dev-python/retworkx/retworkx-0.11.0.ebuild @@ -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}] diff --git a/dev-util/deblob/deblob-9999.ebuild b/dev-util/deblob/deblob-9999.ebuild new file mode 100644 index 0000000000..c47088993a --- /dev/null +++ b/dev-util/deblob/deblob-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021-2022 Haelwenn (lanodan) Monnier +# 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 +} diff --git a/dev-util/deblob/metadata.xml b/dev-util/deblob/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/dev-util/deblob/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/profiles/categories b/profiles/categories index a25e58ef63..d2a23950e6 100644 --- a/profiles/categories +++ b/profiles/categories @@ -1,2 +1,3 @@ +dev-hare dev-R net-client diff --git a/sys-cluster/pcs/pcs-0.11.2.ebuild b/sys-cluster/pcs/pcs-0.11.2.ebuild index e6e6fa20ac..aeeddbed66 100644 --- a/sys-cluster/pcs/pcs-0.11.2.ebuild +++ b/sys-cluster/pcs/pcs-0.11.2.ebuild @@ -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" diff --git a/sys-devel/cproc/cproc-9999.ebuild b/sys-devel/cproc/cproc-9999.ebuild new file mode 100644 index 0000000000..b252f88f8b --- /dev/null +++ b/sys-devel/cproc/cproc-9999.ebuild @@ -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 +} diff --git a/sys-devel/cproc/metadata.xml b/sys-devel/cproc/metadata.xml new file mode 100644 index 0000000000..25735d2cfc --- /dev/null +++ b/sys-devel/cproc/metadata.xml @@ -0,0 +1,11 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + + Use sys-devel/qbe instead of the vendored one + + diff --git a/sys-devel/qbe/metadata.xml b/sys-devel/qbe/metadata.xml new file mode 100644 index 0000000000..c698af2344 --- /dev/null +++ b/sys-devel/qbe/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/sys-devel/qbe/qbe-9999.ebuild b/sys-devel/qbe/qbe-9999.ebuild new file mode 100644 index 0000000000..09e3521a50 --- /dev/null +++ b/sys-devel/qbe/qbe-9999.ebuild @@ -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"