app-portage/mgorny-dev-scripts: New package @ v1
authorMichał Górny <mgorny@gentoo.org>
Sat, 14 Sep 2019 10:44:12 +0000 (12:44 +0200)
committerMichał Górny <mgorny@gentoo.org>
Sat, 14 Sep 2019 10:44:51 +0000 (12:44 +0200)
New package containing a bunch of handy development scripts.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
app-portage/mgorny-dev-scripts/Manifest [new file with mode: 0644]
app-portage/mgorny-dev-scripts/metadata.xml [new file with mode: 0644]
app-portage/mgorny-dev-scripts/mgorny-dev-scripts-1.ebuild [new file with mode: 0644]

diff --git a/app-portage/mgorny-dev-scripts/Manifest b/app-portage/mgorny-dev-scripts/Manifest
new file mode 100644 (file)
index 0000000..cd82177
--- /dev/null
@@ -0,0 +1 @@
+DIST mgorny-dev-scripts-1.tar.gz 6090 BLAKE2B 6e51df2a056628c65ad8e2afc36767f8a773f0dd9e3c99ae43baf50eadb21a929eb8eb2a01fff4c4ad1f5a1efd40d2723ab934a2e59ff09efab30b4be04aeb06 SHA512 0dba4e3af58a9a2052340317f64e9c2fb88270ab8eaa6877b8716b9c2caa2b719b7ee6c1367aebfc9a45fef311e64d861311a1d18b7d8f30bf4262f850412e2b
diff --git a/app-portage/mgorny-dev-scripts/metadata.xml b/app-portage/mgorny-dev-scripts/metadata.xml
new file mode 100644 (file)
index 0000000..0319eec
--- /dev/null
@@ -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>mgorny@gentoo.org</email>
+               <name>Michał Górny</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/app-portage/mgorny-dev-scripts/mgorny-dev-scripts-1.ebuild b/app-portage/mgorny-dev-scripts/mgorny-dev-scripts-1.ebuild
new file mode 100644 (file)
index 0000000..f3c8296
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Handy scripts for ebuild development and more"
+HOMEPAGE="https://github.com/mgorny/mgorny-dev-scripts"
+SRC_URI="https://github.com/mgorny/mgorny-dev-scripts/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+       app-portage/gentoolkit
+       dev-vcs/git
+       net-misc/wget
+       sys-apps/portage
+       x11-misc/xdg-utils"
+
+src_install() {
+       dodoc README.rst
+       rm -f COPYING README.rst || die
+       dobin *
+}