public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/mako/
@ 2019-04-20  9:27 Zamarin Arthur
  0 siblings, 0 replies; 3+ messages in thread
From: Zamarin Arthur @ 2019-04-20  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     9621ab1e270efc84e53fcf4db5ca4a66fcad7075
Author:     Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Sat Apr 20 09:25:19 2019 +0000
Commit:     Zamarin Arthur <arthurzam+gentoo <AT> gmail <DOT> com>
CommitDate: Sat Apr 20 09:26:25 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9621ab1e

gui-apps/mako: a lightweight Wayland notification daemon

A lightweight notification daemon for Wayland. It is compatible
with any Wayland compositor which implements the wlr-layer-shell
Wayland protocol.

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>

 gui-apps/mako/Manifest         |  1 +
 gui-apps/mako/mako-1.3.ebuild  | 49 ++++++++++++++++++++++++++++++++++++++++++
 gui-apps/mako/mako-9999.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++++
 gui-apps/mako/metadata.xml     | 21 ++++++++++++++++++
 4 files changed, 120 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
new file mode 100644
index 0000000..be62f81
--- /dev/null
+++ b/gui-apps/mako/Manifest
@@ -0,0 +1 @@
+DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
new file mode 100644
index 0000000..5d01459
--- /dev/null
+++ b/gui-apps/mako/mako-1.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit fcaps meson
+
+DESCRIPTION="A lightweight Wayland notification daemon"
+HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="apparmor elogind +gdk-pixbuf +man systemd zsh-completion"
+REQUIRED_USE="?? ( elogind systemd )"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/cairo
+	x11-libs/libxkbcommon
+	x11-libs/pango
+	elogind? ( >=sys-auth/elogind-239 )
+	gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
+	systemd? ( >=sys-apps/systemd-239 )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	man? ( app-text/scdoc )
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex gdk-pixbuf enabled disabled)
+		-Dman-pages=$(usex man enabled disabled)
+		$(meson_use apparmor apparmor)
+		$(meson_use zsh-completion zsh-completions)
+		"-Dwerror=false"
+	)
+
+	meson_src_configure
+}

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
new file mode 100644
index 0000000..5d01459
--- /dev/null
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit fcaps meson
+
+DESCRIPTION="A lightweight Wayland notification daemon"
+HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="apparmor elogind +gdk-pixbuf +man systemd zsh-completion"
+REQUIRED_USE="?? ( elogind systemd )"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/cairo
+	x11-libs/libxkbcommon
+	x11-libs/pango
+	elogind? ( >=sys-auth/elogind-239 )
+	gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
+	systemd? ( >=sys-apps/systemd-239 )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	man? ( app-text/scdoc )
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex gdk-pixbuf enabled disabled)
+		-Dman-pages=$(usex man enabled disabled)
+		$(meson_use apparmor apparmor)
+		$(meson_use zsh-completion zsh-completions)
+		"-Dwerror=false"
+	)
+
+	meson_src_configure
+}

diff --git a/gui-apps/mako/metadata.xml b/gui-apps/mako/metadata.xml
new file mode 100644
index 0000000..29defea
--- /dev/null
+++ b/gui-apps/mako/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>arthurzam+gentoo@gmail.com</email>
+		<name>Arthur Zamarin</name>
+	</maintainer>
+	<longdescription lang="en">
+		A lightweight notification daemon for Wayland. It is compatible
+		with any Wayland compositor which implements the wlr-layer-shell
+		Wayland protocol.
+	</longdescription>
+	<use>
+		<flag name="apparmor">Install apparmor profile</flag>
+		<flag name="gdk-pixbuf">Enable icons support via the <pkg>x11-libs/gdk-pixbuf</pkg> library</flag>
+		<flag name="man">Build and install man pages</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">emersion/mako</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/mako/
@ 2019-04-20  9:30 Zamarin Arthur
  0 siblings, 0 replies; 3+ messages in thread
From: Zamarin Arthur @ 2019-04-20  9:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ebe6533200294a73ffbc3818e71745e462e72ca9
Author:     Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Sat Apr 20 09:29:57 2019 +0000
Commit:     Zamarin Arthur <arthurzam+gentoo <AT> gmail <DOT> com>
CommitDate: Sat Apr 20 09:29:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ebe65332

gui-apps/mako: clean inherit

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>

 gui-apps/mako/mako-1.3.ebuild  | 2 +-
 gui-apps/mako/mako-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
index 5d01459..89d214a 100644
--- a/gui-apps/mako/mako-1.3.ebuild
+++ b/gui-apps/mako/mako-1.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit fcaps meson
+inherit meson
 
 DESCRIPTION="A lightweight Wayland notification daemon"
 HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 5d01459..89d214a 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit fcaps meson
+inherit meson
 
 DESCRIPTION="A lightweight Wayland notification daemon"
 HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"


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

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/mako/
@ 2019-04-25  5:02 Zamarin Arthur
  0 siblings, 0 replies; 3+ messages in thread
From: Zamarin Arthur @ 2019-04-25  5:02 UTC (permalink / raw
  To: gentoo-commits

commit:     9b639a5a52e72d51a2418436189e594f2274a680
Author:     Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Thu Apr 25 04:59:22 2019 +0000
Commit:     Zamarin Arthur <arthurzam+gentoo <AT> gmail <DOT> com>
CommitDate: Thu Apr 25 04:59:22 2019 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9b639a5a

gui-apps/mako: remove package

The package is already in main gentoo repo.

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>

 gui-apps/mako/Manifest         |  1 -
 gui-apps/mako/mako-1.3.ebuild  | 49 ------------------------------------------
 gui-apps/mako/mako-9999.ebuild | 49 ------------------------------------------
 gui-apps/mako/metadata.xml     | 21 ------------------
 4 files changed, 120 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
deleted file mode 100644
index be62f81..0000000
--- a/gui-apps/mako/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
deleted file mode 100644
index 89d214a..0000000
--- a/gui-apps/mako/mako-1.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight Wayland notification daemon"
-HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="apparmor elogind +gdk-pixbuf +man systemd zsh-completion"
-REQUIRED_USE="?? ( elogind systemd )"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/cairo
-	x11-libs/libxkbcommon
-	x11-libs/pango
-	elogind? ( >=sys-auth/elogind-239 )
-	gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
-	systemd? ( >=sys-apps/systemd-239 )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	man? ( app-text/scdoc )
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex gdk-pixbuf enabled disabled)
-		-Dman-pages=$(usex man enabled disabled)
-		$(meson_use apparmor apparmor)
-		$(meson_use zsh-completion zsh-completions)
-		"-Dwerror=false"
-	)
-
-	meson_src_configure
-}

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
deleted file mode 100644
index 89d214a..0000000
--- a/gui-apps/mako/mako-9999.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight Wayland notification daemon"
-HOMEPAGE="https://wayland.emersion.fr/mako https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="apparmor elogind +gdk-pixbuf +man systemd zsh-completion"
-REQUIRED_USE="?? ( elogind systemd )"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/cairo
-	x11-libs/libxkbcommon
-	x11-libs/pango
-	elogind? ( >=sys-auth/elogind-239 )
-	gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
-	systemd? ( >=sys-apps/systemd-239 )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	man? ( app-text/scdoc )
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex gdk-pixbuf enabled disabled)
-		-Dman-pages=$(usex man enabled disabled)
-		$(meson_use apparmor apparmor)
-		$(meson_use zsh-completion zsh-completions)
-		"-Dwerror=false"
-	)
-
-	meson_src_configure
-}

diff --git a/gui-apps/mako/metadata.xml b/gui-apps/mako/metadata.xml
deleted file mode 100644
index 29defea..0000000
--- a/gui-apps/mako/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>arthurzam+gentoo@gmail.com</email>
-		<name>Arthur Zamarin</name>
-	</maintainer>
-	<longdescription lang="en">
-		A lightweight notification daemon for Wayland. It is compatible
-		with any Wayland compositor which implements the wlr-layer-shell
-		Wayland protocol.
-	</longdescription>
-	<use>
-		<flag name="apparmor">Install apparmor profile</flag>
-		<flag name="gdk-pixbuf">Enable icons support via the <pkg>x11-libs/gdk-pixbuf</pkg> library</flag>
-		<flag name="man">Build and install man pages</flag>
-	</use>
-	<upstream>
-		<remote-id type="github">emersion/mako</remote-id>
-	</upstream>
-</pkgmetadata>


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

end of thread, other threads:[~2019-04-25  5:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-20  9:30 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/mako/ Zamarin Arthur
  -- strict thread matches above, loose matches on Subject: below --
2019-04-25  5:02 Zamarin Arthur
2019-04-20  9:27 Zamarin Arthur

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