Skip to content

Commit e4aff9e

Browse files
committed
Changes for building dpkg and rpms
1 parent f205a87 commit e4aff9e

File tree

9 files changed

+9
-5
lines changed

9 files changed

+9
-5
lines changed

config/docker/plaso-dev.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ RUN apt-get -y install --no-install-recommends \
2525
libyaml-dev \
2626
locales \
2727
mercurial \
28+
python3-build \
2829
python3-dev \
2930
python3-distutils \
3031
python3-setuptools \

data/projects.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2162,6 +2162,7 @@ dpkg_name: python-xlsxwriter
21622162
dpkg_template_install_python3: python3-xlsxwriter.install
21632163
dpkg_source_name: xlsxwriter
21642164
rpm_template_spec: XlsxWriter.spec
2165+
setup_name: xlsxwriter
21652166
maintainer: John McNamara <[email protected]>
21662167
homepage_url: https://xlsxwriter.readthedocs.org/
21672168
download_url: https://pypi.org/project/XlsxWriter

data/rpm_templates/XlsxWriter.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ rm -rf %{{buildroot}}
5050
%files -n python3-%{{name}}
5151
%license LICENSE.txt
5252
%{{python3_sitelib}}/xlsxwriter/
53-
%{{python3_sitelib}}/XlsxWriter*.egg-info
53+
%{{python3_sitelib}}/xlsxwriter*.egg-info
5454

5555
%exclude %{{_bindir}}/*
5656

data/rpm_templates/pyzmq.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Summary: Python bindings for 0MQ
1111
Url: https://pyzmq.readthedocs.org
1212
Vendor: Brian E. Granger, Min Ragan-Kelley <[email protected]>
1313
Source0: %{{name}}-%{{version}}.tar.gz
14-
BuildRequires: gcc, gcc-c++, python3-devel, python3-packaging, python3-scikit-build-core, python3-setuptools
14+
BuildRequires: gcc, gcc-c++, python3-devel, python3-packaging, python3-pip, python3-scikit-build-core, python3-setuptools
1515

1616
%{{?python_disable_dependency_generator}}
1717

data/templates/.pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ disable=assignment-from-none,
470470
too-many-lines,
471471
too-many-locals,
472472
too-many-nested-blocks,
473+
too-many-positional-arguments,
473474
too-many-public-methods,
474475
too-many-return-statements,
475476
too-many-statements,

data/templates/appveyor_scripts/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
set -e
44

5+
brew untap homebrew/homebrew-cask-versions
56
brew update -q
67
brew install -q ${brew_packages} || true
78

data/templates/github_actions/test_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
version: ['39', '40']
10+
version: ['41']
1111
container:
1212
image: registry.fedoraproject.org/fedora:$${{ matrix.version }}
1313
steps:

data/templates/tox.ini/testenv_lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deps =
1212
-rrequirements.txt
1313
-rtest_requirements.txt
1414
docformatter
15-
pylint >= 3.2.0, < 3.3.0
15+
pylint >= 3.3.0, < 3.4.0
1616
setuptools
1717
commands =
1818
docformatter --version

data/templates/tox.ini/testenv_lint-with_yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deps =
1212
-rrequirements.txt
1313
-rtest_requirements.txt
1414
docformatter
15-
pylint >= 3.2.0, < 3.3.0
15+
pylint >= 3.3.0, < 3.4.0
1616
setuptools
1717
yamllint >= 1.26.0
1818
commands =

0 commit comments

Comments
 (0)