From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/glcdprocdriver/
Date: Sun, 10 Mar 2019 22:38:37 +0000 (UTC) [thread overview]
Message-ID: <1552257336.ad4a0ec0f342720647cf1b4f8a1c4aaeff785448.monsieurp@gentoo> (raw)
commit: ad4a0ec0f342720647cf1b4f8a1c4aaeff785448
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sun Oct 7 14:57:17 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Mar 10 22:35:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad4a0ec0
app-misc/glcdprocdriver: bump to version 0.1.2.
Closes: https://bugs.gentoo.org/470658
Closes: https://bugs.gentoo.org/667962
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10097
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-misc/glcdprocdriver/Manifest | 1 +
.../glcdprocdriver/glcdprocdriver-0.1.2.ebuild | 33 ++++++++++++++++++++++
app-misc/glcdprocdriver/metadata.xml | 26 ++++++++++++-----
3 files changed, 53 insertions(+), 7 deletions(-)
diff --git a/app-misc/glcdprocdriver/Manifest b/app-misc/glcdprocdriver/Manifest
index a1009e9b551..ec109e884f1 100644
--- a/app-misc/glcdprocdriver/Manifest
+++ b/app-misc/glcdprocdriver/Manifest
@@ -1 +1,2 @@
+DIST GLCDprocDriver-0.1.2.tar.gz 21438 BLAKE2B a480d241ad1f7b88ef63a0d2934d59325a9d5739497313c8bcc3f720a071d5bf2804986715e4392fc4713fc3641ae23e5f54cb81cdf1d45db9397d985555260a SHA512 b39dc9d68225bde63a053f124260cec9a081da1d2df6d245be109c8017d60e0e495f056fbc7ee077633d3ac68aaf7cdbaf606e1726f383aa583775a75eea5433
DIST glcdprocdriver-0.0.6.tar.bz2 17209 BLAKE2B 631918337227c43eac163d7353182852500c08db0d1d0f3d4145d9b57895a66eb8c47a16715c1c0e4c3ab044a0de5ed80c282fd57850cbb33636cf775b721a4f SHA512 c489b6e6d6a72306867adb94ed6a6cf6354c834a27fd2ab2ac733707954b18bf93dc56a868e167fcb183602c03ac648bb941699760817e414ab8e8592edb8b7e
diff --git a/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild
new file mode 100644
index 00000000000..6b396bfbad4
--- /dev/null
+++ b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="GLCDprocDriver"
+MY_P="${MY_PN}-${PV}"
+
+inherit toolchain-funcs
+
+DESCRIPTION="A glue between the graphlcd-base library from the GraphLCD project"
+HOMEPAGE="https://lucianm.github.io/GLCDprocDriver
+ https://github.com/lucianm/GLCDprocDriver"
+SRC_URI="https://github.com/lucianm/${MY_PN}/archive/0.1.2.tar.gz -> ${MY_P}.tar.gz"
+
+KEYWORDS="~amd64 ~ppc ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND=">=app-misc/graphlcd-base-1.0.0"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+ emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
+}
+
+src_install() {
+ emake DESTDIR="${ED%/}/usr" INCDIR="${ED%/}/usr/share/include" LIBDIR="${ED%/}/usr/$(get_libdir)" install
+
+ einstalldocs
+}
diff --git a/app-misc/glcdprocdriver/metadata.xml b/app-misc/glcdprocdriver/metadata.xml
index 9dde3d16415..85a394977ca 100644
--- a/app-misc/glcdprocdriver/metadata.xml
+++ b/app-misc/glcdprocdriver/metadata.xml
@@ -1,12 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- GLCDprocDriver is the glue between the app-misc/graphlcd-base
- library, which is written in C++, and app-misc/lcdproc's
- meta-driver glcdlib, which extends supported displays in LCDproc
- by those supported through graphlcd-base (just in text mode, of
- course).
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ GLCDprocDriver is the glue between the graphlcd-base library from the GraphLCD project,
+ which is written in C++, and LCDproc's meta-driver "glcdlib", which extends supported
+ displays in LCDproc by those supported through graphlcd-base (but just in text mode, of course).
+ It is implemented in C++, but provides the necessary wrapper C calls for use by glcdlib.
+ It is NOT intended to provide general C wrapping for the whole graphlcd-base, library,
+ as it really only implements the actual meta-driver for LCDproc.
</longdescription>
+ <upstream>
+ <bugs-to>https://github.com/lucianm/GLCDprocDriver/issues</bugs-to>
+ <remote-id type="github">lucianm/GLCDprocDriver</remote-id>
+ </upstream>
</pkgmetadata>
next reply other threads:[~2019-03-10 22:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-10 22:38 Patrice Clement [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-07-23 11:30 [gentoo-commits] repo/gentoo:master commit in: app-misc/glcdprocdriver/ Agostino Sarubbo
2019-07-24 8:19 Agostino Sarubbo
2019-08-08 3:32 Joonas Niilola
2019-08-28 16:12 David Seifert
2019-10-28 14:43 Joonas Niilola
2022-02-10 20:52 Conrad Kostecki
2022-09-27 21:22 Sam James
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1552257336.ad4a0ec0f342720647cf1b4f8a1c4aaeff785448.monsieurp@gentoo \
--to=monsieurp@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox