Skip to content

Commit

Permalink
pypi-inflect: Autospec creation for update from version 7.2.0 to vers…
Browse files Browse the repository at this point in the history
…ion 7.2.1

Bartosz Sławecki (2):
      Add link to blog entry from jaraco/skeleton#115 above CI build matrix.
      Move project metadata to `pyproject.toml` (jaraco/skeleton#122)

Jason R. Coombs (25):
      Configure pytest to support namespace packages. Ref pytest-dev/pytest#12112.
      Pin against pytest 8.1.x due to pytest-dev/pytest#12194.
      Migrated config to pyproject.toml using jaraco.develop.migrate-config and ini2toml.
      Extract _handle_chunk function, one small step toward simplification.
      Simplify a bit by using booleans instead of ints.
      Extract _sub_ord function.
      Re-use _sub_ord where the same pattern appears.
      Remove unnecessary variable and type assignment
      Implemented _sub_ord as one regex operation.
      Prefer expression algebra
      Remove comment that's redundant to the docstring.
      Extract _chunk_num and _remove_last_blank functions.
      Avoid repetition in call and assignment and vary on the parameter.
      Extract function for _get_sign
      Prefer None for tri-state variable
      Remove remnant comment
      Refactor signout handling to consolidate some behavior and limit interacting branches.
      Re-write first as a single assignment of a boolean expression.
      Extract _render method for rendering the chunks.
      Simplify logic by yielding the comma separately.
      Consolidate returns across group and non-group.
      Reformat
      Add news fragment.
      Finalize
      Restore Python 3.8 compatibility in annotations.
  • Loading branch information
fenrus75 committed Apr 24, 2024
1 parent 2cfd159 commit 9676fd9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := pypi-inflect
URL = https://files.pythonhosted.org/packages/5e/82/6f2dac9cc13c9521edbc54ff4154b298c493c7e3b3fa3c7da6b8f57132fb/inflect-7.2.0.tar.gz
URL = https://files.pythonhosted.org/packages/cb/4e/fcce5b3f67a5196be7bc224613bbfd487959f828c233c1849b0388324479/inflect-7.2.1.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = pypi-inflect
url = https://files.pythonhosted.org/packages/5e/82/6f2dac9cc13c9521edbc54ff4154b298c493c7e3b3fa3c7da6b8f57132fb/inflect-7.2.0.tar.gz
url = https://files.pythonhosted.org/packages/cb/4e/fcce5b3f67a5196be7bc224613bbfd487959f828c233c1849b0388324479/inflect-7.2.1.tar.gz
archives =
giturl = https://github.com/jaraco/inflect/
domain =
Expand Down
22 changes: 11 additions & 11 deletions pypi-inflect.spec
Expand Up @@ -2,15 +2,15 @@
# This file is auto-generated. DO NOT EDIT
# Generated by: autospec.py
# Using build pattern: pyproject
# autospec version: v7
# autospec commit: f56f1fa
# autospec version: v10
# autospec commit: 5905be9
#
Name : pypi-inflect
Version : 7.2.0
Release : 27
URL : https://files.pythonhosted.org/packages/5e/82/6f2dac9cc13c9521edbc54ff4154b298c493c7e3b3fa3c7da6b8f57132fb/inflect-7.2.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/5e/82/6f2dac9cc13c9521edbc54ff4154b298c493c7e3b3fa3c7da6b8f57132fb/inflect-7.2.0.tar.gz
Summary : Correctly generate plurals, singular nouns, ordinals, indefinite articles; convert numbers to words
Version : 7.2.1
Release : 28
URL : https://files.pythonhosted.org/packages/cb/4e/fcce5b3f67a5196be7bc224613bbfd487959f828c233c1849b0388324479/inflect-7.2.1.tar.gz
Source0 : https://files.pythonhosted.org/packages/cb/4e/fcce5b3f67a5196be7bc224613bbfd487959f828c233c1849b0388324479/inflect-7.2.1.tar.gz
Summary : Correctly generate plurals, singular nouns, ordinals, indefinite articles
Group : Development/Tools
License : MIT
Requires: pypi-inflect-license = %{version}-%{release}
Expand Down Expand Up @@ -63,18 +63,18 @@ python3 components for the pypi-inflect package.


%prep
%setup -q -n inflect-7.2.0
cd %{_builddir}/inflect-7.2.0
%setup -q -n inflect-7.2.1
cd %{_builddir}/inflect-7.2.1
pushd ..
cp -a inflect-7.2.0 buildavx2
cp -a inflect-7.2.1 buildavx2
popd

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C.UTF-8
export SOURCE_DATE_EPOCH=1712001075
export SOURCE_DATE_EPOCH=1713970426
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
27
28
2 changes: 1 addition & 1 deletion upstream
@@ -1 +1 @@
b75c711d9bd2380cc083c52367a997efa04353b4/inflect-7.2.0.tar.gz
2ee8f2be95bfabe261f490f55f2c5d01beb810b4/inflect-7.2.1.tar.gz

0 comments on commit 9676fd9

Please sign in to comment.