Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
portend: Autospec creation for update from version 2.4 to version 2.5
Browse files Browse the repository at this point in the history
Jason R. Coombs (12):
      Add black config, pre-commit including black, check code with black.
      Enable tox-pip-extensions ext_venv_update if available. Fixes jaraco/skeleton#6
      Rely on tox 3.2 and pip 10 or later for all builds
      It adds no value to add a pip requirement for the tox install
      Pin to pip 19.0 for now for pypa/pip#6434.
      Revert "Pin to pip 19.0 for now for pypa/pip#6434."
      Only install and invoke pytest-black on Python 3
      Use pytest-black-multipy to enable simple support for pytest-black where available. Ref pytest-dev/pytest#5272.
      Update skeleton documentation to reflect black adoption.
      Rely on twine 1.13 or later
      Prefer monkeypatch; saves a dependency.
      Update changelog

Taymon A. Beal (1):
      Fix race condition in `free` and `occupied`
  • Loading branch information
phmccarty committed Jun 12, 2019
1 parent 25dc74e commit 82427aa
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ build.log.round*
commitmsg
results/
rpms/
for-review.txt
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME := portend
URL = https://files.pythonhosted.org/packages/17/80/57ab4b39a6538734d975a823818657c61ad20a728377a430f54b7d3e40aa/portend-2.4.tar.gz
URL = https://files.pythonhosted.org/packages/2c/59/948666fc2455ae471efd40cb2a9a990f5f6f2354a9a6b228e29b9fb4a307/portend-2.5.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = portend
url = https://files.pythonhosted.org/packages/17/80/57ab4b39a6538734d975a823818657c61ad20a728377a430f54b7d3e40aa/portend-2.4.tar.gz
url = https://files.pythonhosted.org/packages/2c/59/948666fc2455ae471efd40cb2a9a990f5f6f2354a9a6b228e29b9fb4a307/portend-2.5.tar.gz
archives =
giturl = https://github.com/jaraco/portend.git

Expand Down
19 changes: 12 additions & 7 deletions portend.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : portend
Version : 2.4
Release : 13
URL : https://files.pythonhosted.org/packages/17/80/57ab4b39a6538734d975a823818657c61ad20a728377a430f54b7d3e40aa/portend-2.4.tar.gz
Source0 : https://files.pythonhosted.org/packages/17/80/57ab4b39a6538734d975a823818657c61ad20a728377a430f54b7d3e40aa/portend-2.4.tar.gz
Version : 2.5
Release : 14
URL : https://files.pythonhosted.org/packages/2c/59/948666fc2455ae471efd40cb2a9a990f5f6f2354a9a6b228e29b9fb4a307/portend-2.5.tar.gz
Source0 : https://files.pythonhosted.org/packages/2c/59/948666fc2455ae471efd40cb2a9a990f5f6f2354a9a6b228e29b9fb4a307/portend-2.5.tar.gz
Summary : TCP port monitoring and discovery
Group : Development/Tools
License : MIT
Expand All @@ -19,6 +19,7 @@ BuildRequires : pluggy
BuildRequires : py-python
BuildRequires : pytest
BuildRequires : setuptools_scm
BuildRequires : tempora
BuildRequires : tox
BuildRequires : virtualenv

Expand Down Expand Up @@ -53,15 +54,19 @@ python3 components for the portend package.


%prep
%setup -q -n portend-2.4
%setup -q -n portend-2.5

%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
export SOURCE_DATE_EPOCH=1554484579
export LDFLAGS="${LDFLAGS} -fno-lto"
export SOURCE_DATE_EPOCH=1560316413
export GCC_IGNORE_WERROR=1
export CFLAGS="$CFLAGS -fno-lto "
export FCFLAGS="$CFLAGS -fno-lto "
export FFLAGS="$CFLAGS -fno-lto "
export CXXFLAGS="$CXXFLAGS -fno-lto "
export MAKEFLAGS=%{?_smp_mflags}
python3 setup.py build

Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13
14
2 changes: 1 addition & 1 deletion upstream
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0b3af77d673df08ebee67325ef520bd29ddb2743/portend-2.4.tar.gz
83b322750cfe68947e5d072048d0f8c2cc009cae/portend-2.5.tar.gz
1 change: 1 addition & 0 deletions whatrequires
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# This file contains recursive sources that require this package
CherryPy
conda

0 comments on commit 82427aa

Please sign in to comment.