-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename antsibull project to antsibull-build (#632)
* Rename antsibull project to antsibull-build Fixes: #627 * Create antsibull-stub package config for backwards compatibility This project can be published to PyPI to maintain backwards compatibility. * antsibull-build: add link to README * Rename antsibull module to antsibull_build. * Bump stub version to 0.67.0, since 0.66.0 already exists. * Bump antsibull-build dependency. Co-authored-by: Maxwell G <[email protected]> * Remove unintended TMPDIR change. * Avoid ambiguity. * One last change :) Co-authored-by: Maxwell G <[email protected]> --------- Co-authored-by: Maxwell G <[email protected]>
- Loading branch information
1 parent
ea7cee9
commit fcac3a2
Showing
71 changed files
with
190 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- | ||
Copyright (c) Ansible Project | ||
GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
SPDX-License-Identifier: GPL-3.0-or-later | ||
--> | ||
|
||
# antsibull PyPI stub package | ||
|
||
The `antsibull` project has been renamed to `antsibull-build`. | ||
This is an empty stub package for backwards compatibility. | ||
The new PyPI project is located at <https://pypi.org/project/antsibull-build>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Copyright (c) Ansible Project | ||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "antsibull" | ||
version = "0.67.0" | ||
description = "The antsibull project has been renamed to antsibull-build" | ||
license = "GPL-3.0-or-later AND Python-2.0.1" | ||
license-files = {globs=["LICENSES/*.txt"]} | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Ansible", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Typing :: Typed", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"antsibull-build>=0.67.0" | ||
] | ||
|
||
[[project.authors]] | ||
name = "Toshio Kuratomi" | ||
email = "[email protected]" | ||
|
||
[[project.authors]] | ||
name = "Felix Fontein" | ||
email = "[email protected]" | ||
|
||
[[project.maintainers]] | ||
name = "Felix Fontein" | ||
email = "[email protected]" | ||
|
||
[[project.maintainers]] | ||
name = "Maxwell G" | ||
email = "[email protected]" | ||
|
||
[project.urls] | ||
"New package" = "https://pypi.org/project/antsibull-build" | ||
|
||
[project.optional-dependencies] | ||
# User-facing extras | ||
clipboard = [ | ||
"antsibull-build[clipboard]" | ||
] | ||
all = [ | ||
"antsibull-build[all]", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
# This is an empty package | ||
bypass-selection = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
breaking_changes: | ||
- "The name of this project has been changed from ``antsibull`` to | ||
``antsibull-build`` to reflect that it provides the ``antsibull-build`` | ||
command and disambiguate this project from the other antsibull projects. | ||
For backwards compatibility purposes, the ``antsibull`` project on PyPI | ||
has been converted to an empty stub package that requires | ||
``antsibull-build``, but users should immediately switch to the new name. | ||
The Git repository has also been moved to | ||
https://github.com/ansible-community/antsibull-build | ||
(https://github.com/ansible-community/antsibull/issues/627, | ||
https://github.com/ansible-community/antsibull/pull/629)." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,4 @@ github_checks: | |
annotations: false | ||
|
||
fixes: | ||
- "antsibull/::" | ||
- "antsibull_build/::" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.