public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xsr/
@ 2017-10-28 10:07 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2017-10-28 10:07 UTC (permalink / raw
  To: gentoo-commits

commit:     8df6dce32e204a482dd88ceb8e04df5adc6939fb
Author:     Domonkos Lezsák <lezsakdomi1 <AT> gmail <DOT> com>
AuthorDate: Sat Oct 21 08:22:14 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct 28 10:06:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8df6dce3

x11-misc/xsr: new ebuild.

X Steps Recorder is a clone of PSR for Windows.

Closes: https://github.com/gentoo/gentoo/pull/6000
Closes: https://bugs.gentoo.org/633660

 x11-misc/xsr/Manifest         |  1 +
 x11-misc/xsr/metadata.xml     | 32 ++++++++++++++++++++++++++++++++
 x11-misc/xsr/xsr-1.0.0.ebuild | 28 ++++++++++++++++++++++++++++
 3 files changed, 61 insertions(+)

diff --git a/x11-misc/xsr/Manifest b/x11-misc/xsr/Manifest
new file mode 100644
index 00000000000..0de8fb09bbd
--- /dev/null
+++ b/x11-misc/xsr/Manifest
@@ -0,0 +1 @@
+DIST xsr-1.0.0.tar.gz 8028 SHA256 46cb94d45c90762fa08edcbe2ff03165424978f855c33969062a742b835b2e59 SHA512 0fd7326452a50d0493d30cd956ded07fc3eed551af31c042c0a8f0a9c3af69319719868cfc43fff8b542191b5b9c959894d3db13b15c4127e8ff6020a04f7f15 WHIRLPOOL 6d98693369ac60023cb6ca941a3bd88ebe38f64aa3b96c41ba15f4ea8b20f88d75c215d485472c4d6e9cd6c85ee76d2e145a70d029678b548f9115e9ed285db6

diff --git a/x11-misc/xsr/metadata.xml b/x11-misc/xsr/metadata.xml
new file mode 100644
index 00000000000..c2e7935c2ea
--- /dev/null
+++ b/x11-misc/xsr/metadata.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>lezsakdomi1@gmail.com</email>
+		<name>Domonkos Lezsák</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	
+	<longdescription lang="en">
+		X Steps Recorder is a clone of PSR for Windows, a program that allows users
+		to make a recording of all of the steps they took. (It's like a screen
+		recorder except it doesn't record a video.)
+
+		The main differences are that this only runs on Linux, that it records
+		your keystrokes too (!), and that it saves the output as standard html
+		(base64-uri-encoded images) rather than mhtml. This allows for easy
+		editing of the resultant file, such as to remove passwords you typed
+		(which is why psr doesn't record keystrokes in the first place).
+	</longdescription>
+	
+	<use>
+		<flag name="cursor">Capture mouse cursor using <pkg>x11-misc/xdotool</pkg>, and place them on the screenshots using <pkg>media-gfx/imagemagick</pkg></flag>
+	</use>
+
+	<upstream>
+		<remote-id type="github">nonnymoose/xsr</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/x11-misc/xsr/xsr-1.0.0.ebuild b/x11-misc/xsr/xsr-1.0.0.ebuild
new file mode 100644
index 00000000000..f933fb6d964
--- /dev/null
+++ b/x11-misc/xsr/xsr-1.0.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="X Steps Recorder"
+HOMEPAGE="https://github.com/nonnymoose/xsr"
+SRC_URI="https://github.com/nonnymoose/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cursor"
+
+RDEPEND="
+	dev-lang/perl
+	media-gfx/scrot
+	cursor? (
+		media-gfx/imagemagick
+		x11-misc/xdotool
+	)"
+
+src_install() {
+	dobin "${PN}"
+	insinto /usr/share/xsr
+	doins Cursor.png
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xsr/
@ 2023-04-16 12:36 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2023-04-16 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     541dcd8265386107f803528dcad874fbbb37d1bf
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 12:35:22 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 12:35:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=541dcd82

x11-misc/xsr: update EAPI 6 -> 8

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 x11-misc/xsr/{xsr-1.0.0.ebuild => xsr-1.0.0-r1.ebuild} | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xsr/xsr-1.0.0.ebuild b/x11-misc/xsr/xsr-1.0.0-r1.ebuild
similarity index 88%
rename from x11-misc/xsr/xsr-1.0.0.ebuild
rename to x11-misc/xsr/xsr-1.0.0-r1.ebuild
index f933fb6d9645..d7271865771b 100644
--- a/x11-misc/xsr/xsr-1.0.0.ebuild
+++ b/x11-misc/xsr/xsr-1.0.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="X Steps Recorder"
 HOMEPAGE="https://github.com/nonnymoose/xsr"
@@ -21,8 +21,10 @@ RDEPEND="
 	)"
 
 src_install() {
-	dobin "${PN}"
+	dobin xsr
+
 	insinto /usr/share/xsr
 	doins Cursor.png
+
 	einstalldocs
 }


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

end of thread, other threads:[~2023-04-16 12:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-28 10:07 [gentoo-commits] repo/gentoo:master commit in: x11-misc/xsr/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2023-04-16 12:36 David Seifert

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