-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
223 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST gosu-1.4.3.tar.gz 5726418 BLAKE2B 6504b4238149a2184360576b002ec788974f0e62e8d5a19d5051ea7077a87cdcad0f651fab5bb5ae06372e2e16489501c4a998a4af432bd0215988b6807a4daa SHA512 bd68338c38924c2d66b4630f68933946ae1703123270a55105b375a36c39ebf805ca9fe69c5f6ac24dab7e9645e2f6a7acda09382fd67292b76caadad3460963 | ||
DIST gosu-1.4.5.tar.gz 6025688 BLAKE2B 9bff51b5d8e0ff0a0a7c82b13a22e61482a7047c34bbcf3cbfc0f12f9c76899dc5bfade96ce799313768bda31b2209da09b70b5882d9a7eb2a83871bdf0f001b SHA512 3abbbd7b780789066f4304e1bf46bbfd44b51e713fd588a240818bc14f44273672e3cdb28e1221afe5b6f54eb1d2c1b1a8621da4a484a0e9591b53a4565efb43 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST cn-cbor-1.0.0.tar.gz 33136 BLAKE2B 98bf7799513e113c332f201e4f3e5c5f3cf0c366b210f6748eef3360fda4c9be7a1496aa4de6a4f3f6d720395149912b2272d403233957866ac601d3800a4050 SHA512 61d181979ef12f3e6bd368ffd8e98b388ccfe9d1cda919cfb87204c71d42b49b011430bd26c2d6d247ea8b2b19a2377c68721ee35c1524b18db961b964c599e1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit cmake | ||
|
||
DESCRIPTION="A constrained node implementation of CBOR in C" | ||
HOMEPAGE="https://github.com/jimsch/cn-cbor" | ||
SRC_URI="https://github.com/jimsch/cn-cbor/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND="" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND="" | ||
|
||
CMAKE_BUILD_TYPE=Debug | ||
|
||
src_prepare() { | ||
default | ||
sed -e "/DESTINATION/{s#lib#$(get_libdir)#}" \ | ||
-e '/install(FILES LICENSE/d' \ | ||
-e "/set(libdir/{s#/lib#/$(get_libdir)#}" \ | ||
-i CMakeLists.txt | ||
cmake_src_prepare | ||
} | ||
|
||
#src_configure() { | ||
# local mycmakeargs=( | ||
# -DCN_CBOR_COVERALLS=OFF | ||
# -DCN_CBOR_BUILD_TESTS=OFF | ||
# ) | ||
# cmake_src_configure | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST cl-cbor-0_p20170720.tar.gz 10471 BLAKE2B 09e25cc748551d743e9305ae86abe1119bdc90bc25b008dc2ae927b0acb965ec372cda5802ab1e261773499f05e358ff6d3604e5ede7e485a3f1c639fee046fa SHA512 7098303312b032b5fcd1ecc99204846c578fc7f288b2932ade97738dbb13e6181efe63996022881f00eee86a54cab78d404360cbe1118096de18f3115f751d5c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit common-lisp-3 vcs-snapshot | ||
|
||
EGIT_COMMIT="bcedffdf685a8ef60eba846df234d484cf2cc9fa" | ||
|
||
DESCRIPTION="Common lisp cbor encoder/decoder" | ||
HOMEPAGE="https://github.com/jdtw/cl-cbor" | ||
SRC_URI="https://github.com/jdtw/cl-cbor/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND="" | ||
RDEPEND="${DEPEND} | ||
dev-lisp/alexandria | ||
dev-lisp/ieee-floats | ||
dev-lisp/nibbles | ||
dev-lisp/babel | ||
dev-lisp/babel-stream | ||
dev-lisp/bit-smasher | ||
dev-lisp/local-time | ||
" | ||
BDEPEND="" | ||
|
||
src_prepare() { | ||
default | ||
rm -rf ${PN}-test.asd test | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST kong-3.1.1.tar.gz 1723239 BLAKE2B 1ba54456833e9d82a64e3a7b655964c6388ff37478383d9153971b0933b40654b914c5e1e649d84cd87bfc5ebec97ad25ce34c3ba69e08b2c9cf5ecca87cac91 SHA512 47c29317bf5590f4593f8525c4b05590f6c151db3830221b487b5507574570a68c7305058e81bd37d79ff76a26cf4c21abfc86b721df7215c7731bb9ccc95ad4 | ||
DIST kong-3.2.2.tar.gz 1829329 BLAKE2B a6d5f915716c900effebcf8a01ce78dff8806e008a1e6e6aeb887e3bf7912337edf7ec40e0ae8e8be77e6cbf7874861cbc6b3b644c6d1c3dd534733f933f64a3 SHA512 0b720b1c86d41b60ec7db51b07177a685eb5970ac5c584a63c4581c7f6cab711a7fdc132f3531c669a875b09e6f426b617fdd142df8af08f8a5a3770f8146f20 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST lapis-1.12.0.tar.gz 288213 BLAKE2B 3a34121113d041794bff381683f919262b6fc36d1a92b83d2a0e2c1ee4e35125b804cc7be57eea0aebccc12de6944a43d0144f87224b85d691af417857e93d2b SHA512 f33720396dab24dbb3ccf5207e05c6b373ac7d2e7c86eb48b939aac0c01b9f77a3c51d7499a28883d7d8f79a21a2b4a9cd89fd9ff28aa7bc29a72c162ebbd7a3 | ||
DIST lapis-1.14.0.tar.gz 314261 BLAKE2B 7ff66aa0517c5002dfbc4313f6501b623d28744e46e7b74de61ba92f943f18b85a17502eed653e8c712920854abba8a560f7f9a16cb203ad41e6fe3e1c3bb4b7 SHA512 68fa0b0151c923c400e401a15c60bb594fe17fd9c90e39d9a938269bedda85d286e67fdc7386c867680ee3837a92481d63b3820ba164a4659e1ba659e48dba02 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST emscripten-3.1.37.tar.gz 28782490 BLAKE2B e33a955969ee8e121e09762ca484823e96811981af7f313561abb15c2068e5c4e938b8e2567a6c585e5f50cec3131fb843ed512ab5650b51dce21db6c3cc29ff SHA512 41a20a2720e12e8519531ff741f9ce4d95972df423c443f3583fdeb6c05432c1081b11a36960df59965c923cd942f4c653682dfe87bc058b54a2772f3d125a33 | ||
DIST emscripten-3.1.38.tar.gz 28781567 BLAKE2B e64eeefa558e35931221d7373d6f171b056ab44082d88d084b1f14ed1ec09ef2a0dfbd93f36d82ed21bc73d77c90e20a9a9f65ed92ed7fbf55c877ae09b16d56 SHA512 04bc46f3d4bd69ec5a534b292917d33094487e5c103f07fd8af57516349c30717ef193c8c1c6496084e89f08969ff22c1daf413152e0a080a66068fe37095758 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST esbuild-0.17.19.tar.gz 1606855 BLAKE2B 4c26fdd7dd52706f98c6e9d60e6b3993168b2ffefd35b326e03be806d5083adcb50d9cb931f925f551e90aef5392647c99807b73af4075d6d5e2336c565c33ea SHA512 fbd0cecd259120e91af15127d62c0639008cbee666d3baaea3e38105b4ee50f7479e4a3a9b8e6abd6ab62a38713fdd3c422942c7243d77e50723fc6179bb7b9d | ||
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220715151400-c0bba94af5f8.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655 | ||
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220715151400-c0bba94af5f8.zip 1798284 BLAKE2B e2971176195e0968df9a4dab468d882a1e276ad9ca2cd1143027c9c9d583d3ad92d2459fe6d353ab685cf10ad8582d44d74c5036bb6c701ff31eb802fc1e5d8a SHA512 f1e8d9e05286a796ddf5c35dfc2478c6bbd031f868373eea883633c91e8227a2fbf81f0665780e35edd324599b1f9e5c18c24c91f6134a8273ade428ce853a8a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit go-module | ||
|
||
EGO_SUM=( | ||
"golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8" | ||
"golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod" | ||
) | ||
|
||
go-module_set_globals | ||
|
||
DESCRIPTION="An extremely fast JavaScript and CSS bundler and minifier" | ||
HOMEPAGE="https://esbuild.github.io/" | ||
SRC_URI=" | ||
https://github.com/evanw/esbuild/archive/v${PV}.tar.gz -> ${P}.tar.gz | ||
${EGO_SUM_SRC_URI}" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
DEPEND="" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND="" | ||
|
||
src_install() { | ||
dobin esbuild | ||
einstalldocs | ||
} |
Oops, something went wrong.