public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/xob/
@ 2020-04-25  1:42 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2020-04-25  1:42 UTC (permalink / raw
  To: gentoo-commits

commit:     3bfd19bd9da246edd95033a315789b84491b8217
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Sat Apr 25 01:00:58 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sat Apr 25 01:42:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3bfd19bd

x11-misc/xob: New package.

A lightweight overlay volume (or anything) bar for the X Window System.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 x11-misc/xob/Manifest       |  1 +
 x11-misc/xob/metadata.xml   |  8 ++++++++
 x11-misc/xob/xob-0.2.ebuild | 25 +++++++++++++++++++++++++
 3 files changed, 34 insertions(+)

diff --git a/x11-misc/xob/Manifest b/x11-misc/xob/Manifest
new file mode 100644
index 0000000..af59ad6
--- /dev/null
+++ b/x11-misc/xob/Manifest
@@ -0,0 +1 @@
+DIST xob-0.2.tar.gz 510814 BLAKE2B fa2590511a8cb48d009a8e07d5d8a57aebb09a70caa80e648304a1af6ea48378db062151cacfd87efa589486c2699985c3904718bb75055968c17c57009fca8e SHA512 f1981bb04172c5453428ecbdab33cc22453d1336aaac54ff613b29924179533c040cc82e640f12f3c5d1753c227af010aee3ac725ff4fb22d64ba1b07692a97e

diff --git a/x11-misc/xob/metadata.xml b/x11-misc/xob/metadata.xml
new file mode 100644
index 0000000..5533c93
--- /dev/null
+++ b/x11-misc/xob/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@tastytea.de</email>
+		<name>Ronny (tastytea) Gutbrod</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/x11-misc/xob/xob-0.2.ebuild b/x11-misc/xob/xob-0.2.ebuild
new file mode 100644
index 0000000..2a73d3f
--- /dev/null
+++ b/x11-misc/xob/xob-0.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A lightweight overlay volume (or anything) bar for the X Window System"
+HOMEPAGE="https://github.com/florentc/xob"
+SRC_URI="https://github.com/florentc/xob/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	x11-libs/libX11
+	dev-libs/libconfig
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+	emake prefix="${EPREFIX}"/usr \
+		  sysconfdir="${EPREFIX}"/etc \
+		  DESTDIR="${D}" install
+	dodoc CHANGELOG.md README.md
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/xob/
@ 2021-04-23 19:21 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2021-04-23 19:21 UTC (permalink / raw
  To: gentoo-commits

commit:     a3801d8749295e6efcaa6aefd3d5d185e287f2f7
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Apr 23 19:17:23 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Apr 23 19:17:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3801d87

x11-misc/xob: Set CC.

Makefile calls `$(CC)`, which seems to default to `cc`.

Closes: https://bugs.gentoo.org/785211
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 x11-misc/xob/xob-0.2.ebuild | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/x11-misc/xob/xob-0.2.ebuild b/x11-misc/xob/xob-0.2.ebuild
index 2a73d3f57..0b54a8433 100644
--- a/x11-misc/xob/xob-0.2.ebuild
+++ b/x11-misc/xob/xob-0.2.ebuild
@@ -1,8 +1,10 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
+inherit toolchain-funcs
+
 DESCRIPTION="A lightweight overlay volume (or anything) bar for the X Window System"
 HOMEPAGE="https://github.com/florentc/xob"
 SRC_URI="https://github.com/florentc/xob/archive/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -17,6 +19,11 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+src_compile() {
+	tc-export CC
+	default
+}
+
 src_install() {
 	emake prefix="${EPREFIX}"/usr \
 		  sysconfdir="${EPREFIX}"/etc \


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/xob/
@ 2021-07-19 20:01 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2021-07-19 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     afdb8d60afccdb7e383982701a4a5b40a91c3ed8
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Jul 19 19:51:32 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Jul 19 20:00:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=afdb8d60

x11-misc/xob: Version bump 0.3.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 x11-misc/xob/Manifest       |  1 +
 x11-misc/xob/xob-0.3.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/x11-misc/xob/Manifest b/x11-misc/xob/Manifest
index af59ad6b8..dc130f213 100644
--- a/x11-misc/xob/Manifest
+++ b/x11-misc/xob/Manifest
@@ -1 +1,2 @@
 DIST xob-0.2.tar.gz 510814 BLAKE2B fa2590511a8cb48d009a8e07d5d8a57aebb09a70caa80e648304a1af6ea48378db062151cacfd87efa589486c2699985c3904718bb75055968c17c57009fca8e SHA512 f1981bb04172c5453428ecbdab33cc22453d1336aaac54ff613b29924179533c040cc82e640f12f3c5d1753c227af010aee3ac725ff4fb22d64ba1b07692a97e
+DIST xob-0.3.tar.gz 516433 BLAKE2B 66dbd3e6228eec35bd3f6a71312976ae914ec67daecc12e5279a879f37742d9c3167053c43560a38c081c106e03385231c45a7ebaecb0e63e3087ff4daeabd0b SHA512 b599ab37fb9eda15ecb4b6963eb4ca993905e8e34af8496a8a92de50b20724c799f222d5e37a430a9499df2b2c0ceb322f607e2d0e82db01cffba646ab9e3309

diff --git a/x11-misc/xob/xob-0.3.ebuild b/x11-misc/xob/xob-0.3.ebuild
new file mode 100644
index 000000000..889e13d6e
--- /dev/null
+++ b/x11-misc/xob/xob-0.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="A lightweight overlay volume (or anything) bar for the X Window System"
+HOMEPAGE="https://github.com/florentc/xob"
+SRC_URI="https://github.com/florentc/xob/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	x11-libs/libX11
+	dev-libs/libconfig
+	x11-libs/libXrender
+"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+	tc-export CC
+	default
+}
+
+src_install() {
+	emake prefix="${EPREFIX}"/usr \
+		  sysconfdir="${EPREFIX}"/etc \
+		  DESTDIR="${D}" install
+	dodoc CHANGELOG.md README.md
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/xob/
@ 2023-05-27  2:28 Rahul Sandhu
  0 siblings, 0 replies; 4+ messages in thread
From: Rahul Sandhu @ 2023-05-27  2:28 UTC (permalink / raw
  To: gentoo-commits

commit:     4fcf140390b27d1d23b8f2f7cecb39004ae8189d
Author:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 02:28:26 2023 +0000
Commit:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
CommitDate: Sat May 27 02:28:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4fcf1403

x11-misc/xob: add github upstream metadata

Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>

 x11-misc/xob/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x11-misc/xob/metadata.xml b/x11-misc/xob/metadata.xml
index da58abed9..9ff3ca9fa 100644
--- a/x11-misc/xob/metadata.xml
+++ b/x11-misc/xob/metadata.xml
@@ -5,4 +5,7 @@
 		<email>gentoo@tastytea.de</email>
 		<name>tastytea</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="github">florentc/xob</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-27  2:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-25  1:42 [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/xob/ Ronny Gutbrod
  -- strict thread matches above, loose matches on Subject: below --
2021-04-23 19:21 Ronny Gutbrod
2021-07-19 20:01 Ronny Gutbrod
2023-05-27  2:28 Rahul Sandhu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox