Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/vrms-gentoo/
Date: Sun, 23 Feb 2020 02:52:49
Message-Id: 1582426304.9676f7f3c9b0fa0076fdc49f363852bde22b15ec.Alessandro-Barbieri@gentoo
1 commit: 9676f7f3c9b0fa0076fdc49f363852bde22b15ec
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 23 02:51:44 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Feb 23 02:51:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9676f7f3
7
8 app-misc/vrms-gentoo: new package
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 app-misc/vrms-gentoo/metadata.xml | 17 +++++++++++++++++
14 app-misc/vrms-gentoo/vrms-gentoo-9999.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/app-misc/vrms-gentoo/metadata.xml b/app-misc/vrms-gentoo/metadata.xml
18 new file mode 100644
19 index 0000000..3ccef90
20 --- /dev/null
21 +++ b/app-misc/vrms-gentoo/metadata.xml
22 @@ -0,0 +1,17 @@
23 +<?xml version="1.0" encoding="UTF-8"?>
24 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 +<pkgmetadata>
26 + <maintainer type="person">
27 + <email>lssndrbarbieri@×××××.com</email>
28 + <name>Alessandro Barbieri</name>
29 + </maintainer>
30 + <upstream>
31 + <remote-id type="github">z411/vrms-gentoo</remote-id>
32 + </upstream>
33 + <longdescription lang="en">This is a clone of VRMS (Virtual Richard M. Stallman) for Gentoo Linux. It scans the computer for non-free packages, and shows a list of them, if any.
34 +Instead of using its own list of licenses, it scans the license_group file in the local computer and compares the locally installed packages to the @FREE group. If you want it to use only the @FSF-APPROVED group you can use the --strict flag.
35 +</longdescription>
36 +</pkgmetadata>
37 +
38 +
39 +
40
41 diff --git a/app-misc/vrms-gentoo/vrms-gentoo-9999.ebuild b/app-misc/vrms-gentoo/vrms-gentoo-9999.ebuild
42 new file mode 100644
43 index 0000000..31090f7
44 --- /dev/null
45 +++ b/app-misc/vrms-gentoo/vrms-gentoo-9999.ebuild
46 @@ -0,0 +1,24 @@
47 +# Copyright 1999-2020 Gentoo Authors
48 +# Distributed under the terms of the GNU General Public License v2
49 +
50 +EAPI="7"
51 +
52 +SRC_URI=""
53 +EGIT_REPO_URI="https://github.com/z411/${PN}.git"
54 +inherit git-r3
55 +
56 +DESCRIPTION="vrms clone for Gentoo Linux"
57 +HOMEPAGE="https://github.com/z411/vrms-gentoo"
58 +LICENSE="GPL-2"
59 +SLOT="0"
60 +KEYWORDS=""
61 +
62 +DEPEND=""
63 +RDEPEND="
64 + dev-lang/perl
65 +"
66 +
67 +src_install() {
68 + dobin "${PN}"
69 + dodoc README.md
70 +}