forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug: https://bugs.gentoo.org/810886 Signed-off-by: Florian Schmaus <[email protected]>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 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,2 +1,3 @@ | ||
DIST sqlite3-1.1.12.tar.gz 1881515 BLAKE2B 9bbb614664eb220c7c27315a8237c481577a4638dcbc054b13e8768fd4e0d5809fca5cbd208f371379db1ec5ab5fb8dd3e154452c3674da3c7b914a147c185c7 SHA512 17a56c031f84da2dc324652a520d4b791d063dd2e6a34a95db5aed347ce198a95ff15f9bbbdb85e2f07603156d78f3fc5b00326f8eb395c1a70cd16ebc2b6aa9 | ||
DIST sqlite3-1.1.13.tar.gz 1920452 BLAKE2B a00bdc876a6175340256a327c62952b8b96b8a81c913d6145f95a0f8bafeab726296cd9e051c833761ca573b414e2fdd0e5307a6654135b108377f3029634451 SHA512 9e9e254511c0da74367e74c5b42cbe1bcc42a8232c1d60549b5a71f4db072391d7870b069ce247a972bef05f16d70b22b4c37176a59e44e75dc975946c86581f | ||
DIST sqlite3-1.1.7.tar.gz 1834822 BLAKE2B 9a3f30a3a5f4e7ebe38aa1a808057767dd6d43ab93b352b44fc3aef4c2ed8c19b5f4ee258a4ff7a2c052fb4f480f1fb3629624a171b07eb5e661acbc97b165b2 SHA512 8e4bd7dff93f7629d648934c4ce29c318d62313aa10de35144e4f6a3d8c87d8a423ccbe1c810476f8e8048358be4cb8ef242daa6138957e0b0d9c65fadbf144c |
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,26 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit rebar | ||
|
||
MY_PN="erlang-sqlite3" | ||
MY_P="${MY_PN}-${PV}" | ||
|
||
DESCRIPTION="SQLite gen_server port for Erlang" | ||
HOMEPAGE="https://github.com/processone/erlang-sqlite3" | ||
SRC_URI="https://github.com/processone/${MY_PN}/archive/${PV}.tar.gz | ||
-> ${P}.tar.gz" | ||
|
||
LICENSE="ErlPL-1.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" | ||
|
||
DEPEND=">=dev-lang/erlang-17.1 | ||
dev-db/sqlite:3" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( AUTHORS README.md ) | ||
|
||
S="${WORKDIR}/${MY_P}" |