Skip to content

Commit

Permalink
pypi-configparser: Autospec creation for update from version 7.0.0 to…
Browse files Browse the repository at this point in the history
… version 7.1.0

Bartosz Sławecki (1):
      Move project metadata to `pyproject.toml` (jaraco/skeleton#122)

Dimitri Papadopoulos Orfanos (2):
      "preserve" does not require preview any more (jaraco/skeleton#133)
      Enforce ruff/Perflint rule PERF401 (jaraco/skeleton#132)

Jason R. Coombs (19):
      Pin against pytest 8.1.x due to pytest-dev/pytest#12194.
      Migrated config to pyproject.toml using jaraco.develop.migrate-config and ini2toml.
      Allow macos on Python 3.8 to fail as GitHub CI has dropped support.
      Move project.urls to appear in the order that ini2toml generates it. Remove project.scripts.
      Revert "Allow macos on Python 3.8 to fail as GitHub CI has dropped support."
      Rename extras to align with core metadata spec.
      Prefer "Source" to "Homepage" for the repository label.
      Exclude pytest-ruff (and thus ruff), which cannot build on cygwin.
      Re-enable preview, this time not for one specific feature, but for all features in preview.
      Use /usr/bin/env to launch py from the path.
      cpython-v3.13.0rc1 rev=e4a3e786a5eb
      👹 Feed the hobgoblins (delint).
      Reformatted using ruff
      Converted sync script to use typer instead of autocommand.
      Add news fragment.
      Finalize
      Allow to specify any ref to sync.
      cpython-main rev=be257c58152e
      Finalize
  • Loading branch information
fenrus75 committed Aug 19, 2024
1 parent d8cfa2e commit 839c5ea
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME := pypi-configparser
URL = https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz
URL = https://files.pythonhosted.org/packages/a5/2e/a8d83652990ecb5df54680baa0c53d182051d9e164a25baa0582363841d1/configparser-7.1.0.tar.gz
ARCHIVES =

include ../common/Makefile.common
6 changes: 5 additions & 1 deletion options.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = pypi-configparser
url = https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz
url = https://files.pythonhosted.org/packages/a5/2e/a8d83652990ecb5df54680baa0c53d182051d9e164a25baa0582363841d1/configparser-7.1.0.tar.gz
archives =
giturl = https://github.com/jaraco/configparser/
domain =
Expand All @@ -17,6 +17,8 @@ allow_test_failures = false
asneeded = false
# this package is trusted enough to automatically update (used by other tools)
autoupdate = true
# try to use mock short circuit to avoid full rebuilds
avoid_rebuild = false
# extend flags with '-std=gnu++98
broken_c++ = false
# disable parallelization during build
Expand Down Expand Up @@ -71,6 +73,8 @@ use_avx512 = false
use_clang = false
# configure build for lto
use_lto = true
# use ninja build files
use_ninja = false
# require package verification for build
verify_required = false

20 changes: 10 additions & 10 deletions pypi-configparser.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is auto-generated. DO NOT EDIT
# Generated by: autospec.py
# Using build pattern: pyproject
# autospec version: v10
# autospec commit: 5905be9
# autospec version: v18
# autospec commit: f35655a
#
Name : pypi-configparser
Version : 7.0.0
Release : 20
URL : https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz
Version : 7.1.0
Release : 21
URL : https://files.pythonhosted.org/packages/a5/2e/a8d83652990ecb5df54680baa0c53d182051d9e164a25baa0582363841d1/configparser-7.1.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/a5/2e/a8d83652990ecb5df54680baa0c53d182051d9e164a25baa0582363841d1/configparser-7.1.0.tar.gz
Summary : Updated configparser from stdlib for earlier Pythons.
Group : Development/Tools
License : MIT
Expand Down Expand Up @@ -60,18 +60,18 @@ python3 components for the pypi-configparser package.


%prep
%setup -q -n configparser-7.0.0
cd %{_builddir}/configparser-7.0.0
%setup -q -n configparser-7.1.0
cd %{_builddir}/configparser-7.1.0
pushd ..
cp -a configparser-7.0.0 buildavx2
cp -a configparser-7.1.0 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=1713131128
export SOURCE_DATE_EPOCH=1724078927
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
21
2 changes: 1 addition & 1 deletion upstream
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b727cfa3aca7da46062c6430f45647497f0ced78/configparser-7.0.0.tar.gz
d2c47237122fc75b5bd7bfb8d9807ddc63acb99b/configparser-7.1.0.tar.gz

0 comments on commit 839c5ea

Please sign in to comment.