www-misc/remwharead: New package.
continuous-integration/drone/push Build is passing Details

Package-Manager: Portage-2.3.62, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
This commit is contained in:
tastytea 2019-05-16 13:17:11 +02:00
parent 7390d42b20
commit 3d89c3d6a2
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,12 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
EBUILD remwharead-9999.ebuild 939 BLAKE2B bdddfcec937ae49f52c472b39f6dc77bffe24bc1b8e377dbe09082e702cb65e52601f1d74af3e9e95003e5fdb49b3be26de17577e39d2cabf39b24165b119a22 SHA512 128ad57049e1696b5a07231dcd5d6faae3083814de415ea568493f76511ed348ff9ab83a91dfb9203459a83e0931c86f2d2ae4552b5f3b6cbe9083081afc6064
MISC metadata.xml 606 BLAKE2B 34e704711f8b8c7bf5be247a0c650a3e5b6d39cea60b669a95464159aecd19ab493d4c82574c6a4984e9053c72ad9d4ec8f83b2a365b4caaaf01d3d6ffa59eed SHA512 340bc90f44d0a26c99fffb8a29f5315882c5cae0875c2e3c3f02e0ba1d93d81a3f9025db3a1a98e5a31bc85c39fe40797ce9429832b6d58021eb2d71d85433e1
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXN1GtwAKCRDPw5SX8bJu
B4RaAP9ohKrKx16tG2Yl3XdpwYytNlTfYZ14Arwq7pH3j2CZugD9GeLDgyCrUEzl
fB05uOC75Ki/mhwLNAufy2FKq5ZL6M0=
=86mN
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription>
remwharead saves URIs of things you want to remember in a database
along with an URI to the archived version, the current date and
time, title, description, the full text of the page and optional
tags.
</longdescription>
<maintainer type="person">
<email>gentoo@tastytea.de</email>
<name>tastytea</name>
</maintainer>
<upstream>
<bugs-to>https://schlomp.space/tastytea/remwharead/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,51 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
fi
DESCRIPTION="Saves URIs of things you want to remember in a database."
HOMEPAGE="https://schlomp.space/tastytea/remwharead"
if [[ "${PV}" == "9999" ]]; then
EGIT_REPO_URI="https://schlomp.space/tastytea/remwharead.git"
else
SRC_URI="https://schlomp.space/tastytea/remwharead/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="GPL-3"
SLOT="0"
if [[ "${PV}" == "9999" ]]; then
KEYWORDS=""
else
KEYWORDS="~amd64 ~arm ~x86"
fi
IUSE="test"
RDEPEND="
>=dev-cpp/curlpp-0.8.1
dev-libs/libxdg-basedir
dev-db/vsqlite++
dev-cpp/popl
"
DEPEND="
dev-util/cmake
app-text/asciidoc
${RDEPEND}
"
if [[ "${PV}" != "9999" ]]; then
S="${WORKDIR}/${PN}"
fi
src_configure() {
local mycmakeargs=(
-DWITH_TESTS="$(usex test)"
)
cmake-utils_src_configure
}