public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: app-admin/dotbot/
@ 2023-11-05 17:46 Steven Stallion
  0 siblings, 0 replies; 2+ messages in thread
From: Steven Stallion @ 2023-11-05 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9838a4bb2cc0b1dfb24f8d6be715643609ecff06
Author:     Steven Stallion <sstallion <AT> gmail <DOT> com>
AuthorDate: Sun Nov  5 17:37:26 2023 +0000
Commit:     Steven Stallion <sstallion <AT> gmail <DOT> com>
CommitDate: Sun Nov  5 17:46:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9838a4bb

app-admin/dotbot: new package, add 1.20.1

Signed-off-by: Steven Stallion <sstallion <AT> gmail.com>

 app-admin/dotbot/Manifest             |  1 +
 app-admin/dotbot/dotbot-1.20.1.ebuild | 22 ++++++++++++++++++++++
 app-admin/dotbot/metadata.xml         | 18 ++++++++++++++++++
 3 files changed, 41 insertions(+)

diff --git a/app-admin/dotbot/Manifest b/app-admin/dotbot/Manifest
new file mode 100644
index 0000000000..3a3180c4c0
--- /dev/null
+++ b/app-admin/dotbot/Manifest
@@ -0,0 +1 @@
+DIST dotbot-1.20.1.tar.gz 31741 BLAKE2B f87aed418cc74deeccbeb46843b8da7fe5477dfb76f78e758c8eddc74f9c7315c223fe022c38c298303095fcd7115fc66fafe5011eb8bb730d7b51b9f49094b5 SHA512 d2a9e8d4078cf884a2953dbeb0629d142bdcf8c8af38dfa9e481e5afeee4e0e116e8ed5366c06622287928f29aa8eb2e3dae4d3a77d59591f8ca723f11b8bfdd

diff --git a/app-admin/dotbot/dotbot-1.20.1.ebuild b/app-admin/dotbot/dotbot-1.20.1.ebuild
new file mode 100644
index 0000000000..2c0ce9be8c
--- /dev/null
+++ b/app-admin/dotbot/dotbot-1.20.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="A tool that bootstraps your dotfiles"
+HOMEPAGE="https://github.com/anishathalye/dotbot"
+SRC_URI="https://github.com/anishathalye/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+RDEPEND="
+	dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest

diff --git a/app-admin/dotbot/metadata.xml b/app-admin/dotbot/metadata.xml
new file mode 100644
index 0000000000..8d751065c7
--- /dev/null
+++ b/app-admin/dotbot/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<email>sstallion@gmail.com</email>
+		<name>Steven Stallion</name>
+	</maintainer>
+	<longdescription>
+		Dotbot is designed to be lightweight and self-contained, with no
+		external dependencies and no installation required. Dotbot can also be
+		a drop-in replacement for any other tool you were using to manage your
+		dotfiles, and Dotbot is VCS-agnostic -- it doesn't make any attempt to
+		manage your dotfiles.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">anishathalye/dotbot</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: app-admin/dotbot/
@ 2023-11-12 16:37 Steven Stallion
  0 siblings, 0 replies; 2+ messages in thread
From: Steven Stallion @ 2023-11-12 16:37 UTC (permalink / raw
  To: gentoo-commits

commit:     bc8c602b3332f99c6dfb5ba1972d7d9f7c9033f6
Author:     Steven Stallion <sstallion <AT> gmail <DOT> com>
AuthorDate: Sun Nov 12 16:36:26 2023 +0000
Commit:     Steven Stallion <sstallion <AT> gmail <DOT> com>
CommitDate: Sun Nov 12 16:36:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc8c602b

app-admin/dotbot: fix ebuild

Closes: https://bugs.gentoo.org/916987

Signed-off-by: Steven Stallion <sstallion <AT> gmail.com>

 app-admin/dotbot/dotbot-1.20.1.ebuild | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/app-admin/dotbot/dotbot-1.20.1.ebuild b/app-admin/dotbot/dotbot-1.20.1.ebuild
index 2c0ce9be8c..38f4dcc5fd 100644
--- a/app-admin/dotbot/dotbot-1.20.1.ebuild
+++ b/app-admin/dotbot/dotbot-1.20.1.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
@@ -20,3 +21,8 @@ RDEPEND="
 "
 
 distutils_enable_tests pytest
+
+python_test() {
+	# test_shim fails when executed with superuser privileges:
+	epytest -k "not test_shim"	#916987
+}


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

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

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-05 17:46 [gentoo-commits] repo/proj/guru:dev commit in: app-admin/dotbot/ Steven Stallion
  -- strict thread matches above, loose matches on Subject: below --
2023-11-12 16:37 Steven Stallion

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