public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/gitchangelog/
@ 2022-04-16 17:48 Steve Arnold
  0 siblings, 0 replies; 4+ messages in thread
From: Steve Arnold @ 2022-04-16 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     02ef8c30447ca546cc6408a772e7e10be245c903
Author:     Steve Arnold <nerdboy <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 16 17:48:01 2022 +0000
Commit:     Steve Arnold <nerdboy <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 17:48:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02ef8c30

dev-util/gitchangelog: new ebuild to generate nice changelog docs

* updated dependencies, consumed by github action, not much churn

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Steve Arnold <nerdboy <AT> gentoo.org>

 dev-util/gitchangelog/Manifest                  |  1 +
 dev-util/gitchangelog/gitchangelog-3.0.9.ebuild | 41 +++++++++++++++++++++++++
 dev-util/gitchangelog/metadata.xml              | 15 +++++++++
 3 files changed, 57 insertions(+)

diff --git a/dev-util/gitchangelog/Manifest b/dev-util/gitchangelog/Manifest
new file mode 100644
index 000000000000..cd663768e53e
--- /dev/null
+++ b/dev-util/gitchangelog/Manifest
@@ -0,0 +1 @@
+DIST gitchangelog-3.0.9.tar.gz 52483 BLAKE2B 8e7fc61dee6cba6e630cb2006d5bec988ea3d7a7c1e09789b430e11d4c3d8f5e7ff7ee1231dbbcb56185c84fa9c2bbf6a353980f5a70c8a0cce51b2dce83fb5d SHA512 4e290d75455ddddb7d12d831dce973771f861d23d6b6548b8a9e24e838b0931255dfc8c9ef25765fb4f269d5cdad6bd207fbaa3626a3b24681efdbb56ad9e1b1

diff --git a/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild b/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild
new file mode 100644
index 000000000000..d2e9d691c1bb
--- /dev/null
+++ b/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7..10} )
+DISTUTULS_USE_SETUPTOOLS="pyproject.toml"
+
+inherit distutils-r1
+
+DESCRIPTION="Creates a changelog from git log history"
+HOMEPAGE="https://github.com/sarnold/gitchangelog"
+
+if [[ ${PV} = 9999* ]]; then
+	EGIT_REPO_URI="https://github.com/sarnold/gitchangelog.git"
+	EGIT_BRANCH="master"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+BDEPEND="${DEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( dev-python/nose[${PYTHON_USEDEP}]
+		dev-python/minimock[${PYTHON_USEDEP}] )
+"
+
+DEPEND="${PYTHON_DEPS}
+	dev-python/pystache[${PYTHON_USEDEP}]
+	dev-python/mako[${PYTHON_USEDEP}]
+"
+
+RESTRICT="!test? ( test )"
+
+python_test() {
+	"${EPYTHON}" -m nose -sx . || die "Testing failed with ${EPYTHON}"
+}

diff --git a/dev-util/gitchangelog/metadata.xml b/dev-util/gitchangelog/metadata.xml
new file mode 100644
index 000000000000..32c48c0aca94
--- /dev/null
+++ b/dev-util/gitchangelog/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+	<email>nerdboy@gentoo.org</email>
+	<name>Steve Arnold</name>
+</maintainer>
+<longdescription lang="en">
+	Create a fancy changelog from git log history (in rst or md) and
+	customize your config with Python callables and regex.
+</longdescription>
+<upstream>
+	<remote-id type="github">sarnold/gitchangelog</remote-id>
+</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/gitchangelog/
@ 2022-11-06 21:39 Steve Arnold
  0 siblings, 0 replies; 4+ messages in thread
From: Steve Arnold @ 2022-11-06 21:39 UTC (permalink / raw
  To: gentoo-commits

commit:     6ee71e373489854fc89ae1a19ba709f36ef278cb
Author:     Steve Arnold <nerdboy <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  6 21:38:20 2022 +0000
Commit:     Steve Arnold <nerdboy <AT> gentoo <DOT> org>
CommitDate: Sun Nov  6 21:38:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee71e37

dev-util/gitchangelog: version bump to latest

Signed-off-by: Steve Arnold <nerdboy <AT> gentoo.org>

 dev-util/gitchangelog/Manifest                  |  2 +-
 dev-util/gitchangelog/gitchangelog-3.0.9.ebuild | 41 ------------------
 dev-util/gitchangelog/gitchangelog-3.1.2.ebuild | 57 +++++++++++++++++++++++++
 dev-util/gitchangelog/metadata.xml              |  5 ++-
 4 files changed, 61 insertions(+), 44 deletions(-)

diff --git a/dev-util/gitchangelog/Manifest b/dev-util/gitchangelog/Manifest
index cd663768e53e..a2da9e87f7b9 100644
--- a/dev-util/gitchangelog/Manifest
+++ b/dev-util/gitchangelog/Manifest
@@ -1 +1 @@
-DIST gitchangelog-3.0.9.tar.gz 52483 BLAKE2B 8e7fc61dee6cba6e630cb2006d5bec988ea3d7a7c1e09789b430e11d4c3d8f5e7ff7ee1231dbbcb56185c84fa9c2bbf6a353980f5a70c8a0cce51b2dce83fb5d SHA512 4e290d75455ddddb7d12d831dce973771f861d23d6b6548b8a9e24e838b0931255dfc8c9ef25765fb4f269d5cdad6bd207fbaa3626a3b24681efdbb56ad9e1b1
+DIST gitchangelog-3.1.2.tar.gz 93679 BLAKE2B ffd5a9bd25c8bc647c7414e0864a008bafa09b6d5452fa0241408fa324821d4d4faa3e05ac1157521dec5508240383064fb9baca112218d5555e12cc05807400 SHA512 390d90fe62799350044b0009cc05a9889b1d4cd2a1e10dcdc42c71202afcb2c6bb1cc49125b3f69b03c0bd6a5bc8a7c29da0d9feeb54ac6ce2e396c489e69384

diff --git a/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild b/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild
deleted file mode 100644
index d2e9d691c1bb..000000000000
--- a/dev-util/gitchangelog/gitchangelog-3.0.9.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..10} )
-DISTUTULS_USE_SETUPTOOLS="pyproject.toml"
-
-inherit distutils-r1
-
-DESCRIPTION="Creates a changelog from git log history"
-HOMEPAGE="https://github.com/sarnold/gitchangelog"
-
-if [[ ${PV} = 9999* ]]; then
-	EGIT_REPO_URI="https://github.com/sarnold/gitchangelog.git"
-	EGIT_BRANCH="master"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/sarnold/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-
-BDEPEND="${DEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( dev-python/nose[${PYTHON_USEDEP}]
-		dev-python/minimock[${PYTHON_USEDEP}] )
-"
-
-DEPEND="${PYTHON_DEPS}
-	dev-python/pystache[${PYTHON_USEDEP}]
-	dev-python/mako[${PYTHON_USEDEP}]
-"
-
-RESTRICT="!test? ( test )"
-
-python_test() {
-	"${EPYTHON}" -m nose -sx . || die "Testing failed with ${EPYTHON}"
-}

diff --git a/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild b/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild
new file mode 100644
index 000000000000..85d99c6cb0ce
--- /dev/null
+++ b/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Creates a nicely formatted changelog from git log history"
+HOMEPAGE="https://github.com/sarnold/gitchangelog"
+
+if [[ ${PV} = 9999* ]]; then
+	EGIT_REPO_URI="https://github.com/sarnold/gitchangelog.git"
+	EGIT_BRANCH="master"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/sarnold/${PN}/releases/download/${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+	test? ( dev-python/minimock[${PYTHON_USEDEP}] )
+"
+
+RDEPEND="
+	dev-python/pystache[${PYTHON_USEDEP}]
+	dev-python/mako[${PYTHON_USEDEP}]
+"
+
+# needs versioningit if building from git repo source
+if [[ ${PV} = 9999* ]]; then
+	BDEPEND="
+		$(python_gen_any_dep '
+			>=dev-python/versioningit-2.0.0[${PYTHON_USEDEP}]
+		')"
+fi
+
+DOCS=( README.rst )
+
+distutils_enable_sphinx \
+	docs/source \
+	dev-python/sphinx_rtd_theme \
+	dev-python/recommonmark \
+	dev-python/sphinxcontrib-apidoc
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest --doctest-modules .
+}

diff --git a/dev-util/gitchangelog/metadata.xml b/dev-util/gitchangelog/metadata.xml
index 14d417cfceb2..35fc060a9777 100644
--- a/dev-util/gitchangelog/metadata.xml
+++ b/dev-util/gitchangelog/metadata.xml
@@ -6,8 +6,9 @@
 	<name>Steve Arnold</name>
 </maintainer>
 <longdescription lang="en">
-	Create a fancy changelog from git log history (in rst or md) and
-	customize your config with Python callables and regex.
+	Create a fancy changelog from git log history (in rst or md). You can
+	customize your config with Python callables and custom regex, as well
+	as built-in or custom template files.
 </longdescription>
 <upstream>
 	<remote-id type="github">sarnold/gitchangelog</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/gitchangelog/
@ 2024-07-24  7:48 Petr Vaněk
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vaněk @ 2024-07-24  7:48 UTC (permalink / raw
  To: gentoo-commits

commit:     db837fb1a7d023cbdcc21284a97ccef37155da70
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 07:45:05 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 07:47:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db837fb1

dev-util/gitchangelog: add 3.2.0

Closes: https://bugs.gentoo.org/852221
Closes: https://bugs.gentoo.org/912418
Closes: https://bugs.gentoo.org/929540
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 dev-util/gitchangelog/Manifest                  |  1 +
 dev-util/gitchangelog/gitchangelog-3.2.0.ebuild | 57 +++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-util/gitchangelog/Manifest b/dev-util/gitchangelog/Manifest
index a2da9e87f7b9..964438720c72 100644
--- a/dev-util/gitchangelog/Manifest
+++ b/dev-util/gitchangelog/Manifest
@@ -1 +1,2 @@
 DIST gitchangelog-3.1.2.tar.gz 93679 BLAKE2B ffd5a9bd25c8bc647c7414e0864a008bafa09b6d5452fa0241408fa324821d4d4faa3e05ac1157521dec5508240383064fb9baca112218d5555e12cc05807400 SHA512 390d90fe62799350044b0009cc05a9889b1d4cd2a1e10dcdc42c71202afcb2c6bb1cc49125b3f69b03c0bd6a5bc8a7c29da0d9feeb54ac6ce2e396c489e69384
+DIST gitchangelog-3.2.0.gh.tar.gz 98777 BLAKE2B 227b87b4c1da86eb509fcc15211dfd1f22731b20db60a1aea7108c0743a54a151e52f5f44cb5c4c279da53aa2db01f8ae8a466fe1e756322087f6e0ef6c67283 SHA512 1d5cfaec1725ec62b76639856253d1a3e1be3ca377a5ba3a1459bd48ace4c04b477aa88b2deb108b002d4dd13e284028834bfe539bfb59a30f7531d5fa773479

diff --git a/dev-util/gitchangelog/gitchangelog-3.2.0.ebuild b/dev-util/gitchangelog/gitchangelog-3.2.0.ebuild
new file mode 100644
index 000000000000..7761f32baf36
--- /dev/null
+++ b/dev-util/gitchangelog/gitchangelog-3.2.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Creates a nicely formatted changelog from git log history"
+HOMEPAGE="https://github.com/sarnold/gitchangelog"
+
+if [[ ${PV} = 9999* ]]; then
+	EGIT_REPO_URI="https://github.com/sarnold/gitchangelog.git"
+	EGIT_BRANCH="master"
+	inherit git-r3
+else
+	SRC_URI="
+		https://github.com/sarnold/${PN}/releases/download/${PV}/${P}.tar.gz
+			-> ${P}.gh.tar.gz
+	"
+	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="
+	dev-python/pystache[${PYTHON_USEDEP}]
+	dev-python/mako[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? ( dev-python/minimock[${PYTHON_USEDEP}] )
+"
+
+# needs versioningit if building from git repo source
+if [[ ${PV} = 9999* ]]; then
+	BDEPEND="
+		$(python_gen_any_dep '
+			>=dev-python/versioningit-2.0.0[${PYTHON_USEDEP}]
+		')"
+fi
+
+DOCS=( README.rst )
+
+distutils_enable_sphinx \
+	docs/source \
+	dev-python/sphinx-rtd-theme \
+	dev-python/recommonmark \
+	dev-python/sphinxcontrib-apidoc
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest --doctest-modules .
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/gitchangelog/
@ 2024-07-24  7:48 Petr Vaněk
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vaněk @ 2024-07-24  7:48 UTC (permalink / raw
  To: gentoo-commits

commit:     5b29deab8ad47c55d3bc10a2e00d6a2c608e78a2
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 07:45:26 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 07:47:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b29deab

dev-util/gitchangelog: drop 3.1.2

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 dev-util/gitchangelog/Manifest                  |  1 -
 dev-util/gitchangelog/gitchangelog-3.1.2.ebuild | 57 -------------------------
 2 files changed, 58 deletions(-)

diff --git a/dev-util/gitchangelog/Manifest b/dev-util/gitchangelog/Manifest
index 964438720c72..5625b4d68001 100644
--- a/dev-util/gitchangelog/Manifest
+++ b/dev-util/gitchangelog/Manifest
@@ -1,2 +1 @@
-DIST gitchangelog-3.1.2.tar.gz 93679 BLAKE2B ffd5a9bd25c8bc647c7414e0864a008bafa09b6d5452fa0241408fa324821d4d4faa3e05ac1157521dec5508240383064fb9baca112218d5555e12cc05807400 SHA512 390d90fe62799350044b0009cc05a9889b1d4cd2a1e10dcdc42c71202afcb2c6bb1cc49125b3f69b03c0bd6a5bc8a7c29da0d9feeb54ac6ce2e396c489e69384
 DIST gitchangelog-3.2.0.gh.tar.gz 98777 BLAKE2B 227b87b4c1da86eb509fcc15211dfd1f22731b20db60a1aea7108c0743a54a151e52f5f44cb5c4c279da53aa2db01f8ae8a466fe1e756322087f6e0ef6c67283 SHA512 1d5cfaec1725ec62b76639856253d1a3e1be3ca377a5ba3a1459bd48ace4c04b477aa88b2deb108b002d4dd13e284028834bfe539bfb59a30f7531d5fa773479

diff --git a/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild b/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild
deleted file mode 100644
index a2ceecfd5456..000000000000
--- a/dev-util/gitchangelog/gitchangelog-3.1.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Creates a nicely formatted changelog from git log history"
-HOMEPAGE="https://github.com/sarnold/gitchangelog"
-
-if [[ ${PV} = 9999* ]]; then
-	EGIT_REPO_URI="https://github.com/sarnold/gitchangelog.git"
-	EGIT_BRANCH="master"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/sarnold/${PN}/releases/download/${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	test? ( dev-python/minimock[${PYTHON_USEDEP}] )
-"
-
-RDEPEND="
-	dev-python/pystache[${PYTHON_USEDEP}]
-	dev-python/mako[${PYTHON_USEDEP}]
-"
-
-# needs versioningit if building from git repo source
-if [[ ${PV} = 9999* ]]; then
-	BDEPEND="
-		$(python_gen_any_dep '
-			>=dev-python/versioningit-2.0.0[${PYTHON_USEDEP}]
-		')"
-fi
-
-DOCS=( README.rst )
-
-distutils_enable_sphinx \
-	docs/source \
-	dev-python/sphinx-rtd-theme \
-	dev-python/recommonmark \
-	dev-python/sphinxcontrib-apidoc
-
-distutils_enable_tests pytest
-
-python_test() {
-	epytest --doctest-modules .
-}


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

end of thread, other threads:[~2024-07-24  7:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-24  7:48 [gentoo-commits] repo/gentoo:master commit in: dev-util/gitchangelog/ Petr Vaněk
  -- strict thread matches above, loose matches on Subject: below --
2024-07-24  7:48 Petr Vaněk
2022-11-06 21:39 Steve Arnold
2022-04-16 17:48 Steve Arnold

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