Skip to content

Commit 635fc43

Browse files
committed
Merge name change
2 parents 688d323 + 9a7d5c5 commit 635fc43

File tree

100 files changed

+1054
-1008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+1054
-1008
lines changed

.github/workflows/conda-pragzip.yml renamed to .github/workflows/conda-rapidgzip.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Conda Packages (pragzip)
1+
name: Build Conda Packages (rapidgzip)
22

33
on:
44
push:
@@ -37,7 +37,7 @@ jobs:
3737
EOF
3838
3939
- name: Build Conda Packages
40-
# TODO copy and custom fit the conda folder into python/pragzip. Currently, it will upload to indexed_bzip2!
40+
# TODO copy and custom fit the conda folder into python/rapidgzip. Currently, it will upload to indexed_bzip2!
4141
# Windows yields: fatal error C1001: An internal error has occurred in the compiler.
4242
# (compiler file 'msc1.cpp', line 1518)
4343
# This happens on the line: static constexpr FixedHuffmanCoding m_fixedHC = createFixedHC();
@@ -53,8 +53,8 @@ jobs:
5353
# https://github.com/conda/conda-build/issues/4509
5454
conda install conda=4.12.0 conda-build anaconda-client conda-verify packaging
5555
conda config --set anaconda_upload no
56-
cd conda # TODO copy and custom fit the conda folder into python/pragzip
56+
cd conda # TODO copy and custom fit the conda folder into python/rapidgzip
5757
python3 -m pip install --user build
58-
python3 -m build -o . --sdist ../python/pragzip
59-
mv pragzip-*.tar* src.tar
58+
python3 -m build -o . --sdist ../python/rapidgzip
59+
mv rapidgzip-*.tar* src.tar
6060
conda build --token "$ANACONDA_TOKEN" .

.github/workflows/publish-pragzip.yml renamed to .github/workflows/publish-rapidgzip.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: Publish Pragzip to PyPI
1+
name: Publish Rapidgzip to PyPI
22

33
on:
44
push:
55
tags:
6-
- 'pragzip-v*.*.*'
6+
- 'rapidgzip-v*.*.*'
77

88
jobs:
99
Deploy-Wheels:
@@ -53,8 +53,8 @@ jobs:
5353
# OS X 10.9 (Mavericks) | 2013-10-22 | 2016-12-01
5454
MACOSX_DEPLOYMENT_TARGET: "10.14"
5555

56-
# The following parts should be an exact copy of the wheels-pragzip.yml workflow:
57-
# ------ Begin Copy-Paste of wheels-pragzip.yml ------
56+
# The following parts should be an exact copy of the wheels-rapidgzip.yml workflow:
57+
# ------ Begin Copy-Paste of wheels-rapidgzip.yml ------
5858
steps:
5959
- uses: actions/checkout@v3
6060
with:
@@ -71,30 +71,30 @@ jobs:
7171
python3 -m pip install --upgrade-strategy eager --upgrade cython twine cibuildwheel build
7272
7373
- name: Build Tarball
74-
working-directory: python/pragzip
74+
working-directory: python/rapidgzip
7575
run: python3 -m build --sdist
7676

7777
- name: Build Wheels
7878
env:
7979
CIBW_ARCHS: ${{ matrix.archs }}
8080
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux-image }}
81-
run: python -m cibuildwheel --output-dir dist python/pragzip
81+
run: python -m cibuildwheel --output-dir dist python/rapidgzip
8282

8383
- name: Check Wheels
84-
run: twine check dist/* python/pragzip/dist/*
85-
# ------ End Copy-Paste of wheels-pragzip.yml ------
84+
run: twine check dist/* python/rapidgzip/dist/*
85+
# ------ End Copy-Paste of wheels-rapidgzip.yml ------
8686

8787
- name: Publish Tarball to PyPI
8888
env:
89-
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_PRAGZIP }}
90-
working-directory: python/pragzip
89+
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_RAPIDGZIP }}
90+
working-directory: python/rapidgzip
9191
# Only one out of the OS matrix needs to upload the tarball.
9292
if: matrix.manylinux-image == 'manylinux2014' && matrix.os == 'ubuntu-latest'
9393
run: twine upload --skip-existing -u __token__ dist/*
9494

9595
- name: Publish Wheels to PyPI
9696
env:
97-
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_PRAGZIP }}
97+
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_RAPIDGZIP }}
9898
run: twine upload --skip-existing -u __token__ dist/*
9999

100100

@@ -132,7 +132,7 @@ jobs:
132132
EOF
133133
134134
- name: Build Conda Packages
135-
# TODO copy and custom fit the conda folder into python/pragzip. Currently, it will upload to indexed_bzip2!
135+
# TODO copy and custom fit the conda folder into python/rapidgzip. Currently, it will upload to indexed_bzip2!
136136
# Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitely declared as shell:
137137
# bash -l {0} on steps that need to be properly activated
138138
shell: bash -l {0}
@@ -143,8 +143,8 @@ jobs:
143143
# https://github.com/conda/conda-build/issues/4509
144144
conda install conda=4.12.0 conda-build anaconda-client conda-verify packaging
145145
conda config --set anaconda_upload yes
146-
cd conda # TODO copy and custom fit the conda folder into python/pragzip
146+
cd conda # TODO copy and custom fit the conda folder into python/rapidgzip
147147
python3 -m pip install --user build
148-
python3 -m build -o . --sdist ../python/pragzip
149-
mv pragzip-*.tar* src.tar
148+
python3 -m build -o . --sdist ../python/rapidgzip
149+
mv rapidgzip-*.tar* src.tar
150150
conda build --token "$ANACONDA_TOKEN" .

.github/workflows/test-cpp.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151
cppcheck -j $( nproc ) --enable=all --std=c++17 --suppress=unusedFunction --suppress=useStlAlgorithm \
5252
-I src/core \
5353
-I src/indexed_bzip2 \
54-
-I src/pragzip \
55-
-I src/pragzip/huffman \
54+
-I src/rapidgzip \
55+
-I src/rapidgzip/huffman \
5656
src/benchmarks \
5757
src/core \
5858
src/indexed_bzip2 \
59-
src/pragzip \
59+
src/rapidgzip \
6060
src/tests \
6161
src/tools 2>&1 | tee cppcheck.log
6262
if grep -E -i 'error: .* \[[^]]*\]$' cppcheck.log; then

.github/workflows/test-python.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@ jobs:
6464
twine check dist/*
6565
python3 -m pip install dist/*.tar.gz
6666
67-
- name: Test pragzip Installation From Tarball
68-
working-directory: python/pragzip
67+
- name: Test rapidgzip Installation From Tarball
68+
working-directory: python/rapidgzip
6969
shell: bash
7070
run: |
7171
python3 -m build
7272
twine check dist/*
7373
python3 -m pip install dist/*.tar.gz
7474
75-
- name: Test Simple Startup pragzip
75+
- name: Test Simple Startup rapidgzip
7676
run: |
77-
pragzip --help
78-
pragzip --version
77+
rapidgzip --help
78+
rapidgzip --version
7979
8080
- name: Test Simple Startup ibzip2
8181
run: |
@@ -87,8 +87,8 @@ jobs:
8787
# indexed_bzip2 should be installed for this step!
8888
run: python3 src/tests/testBz2.py
8989

90-
- name: Test pragzip Installation From Tarball
91-
working-directory: python/pragzip
90+
- name: Test rapidgzip Installation From Tarball
91+
working-directory: python/rapidgzip
9292
shell: bash
9393
run: |
9494
python3 -m build

.github/workflows/wheels-pragzip.yml renamed to .github/workflows/wheels-rapidgzip.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Wheels for pragzip
1+
name: Build Wheels for rapidgzip
22

33
on:
44
push:
@@ -44,14 +44,14 @@ jobs:
4444
python3 -m pip install --upgrade-strategy eager --upgrade cython twine cibuildwheel build
4545
4646
- name: Build Tarball
47-
working-directory: python/pragzip
47+
working-directory: python/rapidgzip
4848
run: python3 -m build --sdist
4949

5050
- name: Build Wheels
5151
env:
5252
CIBW_ARCHS: ${{ matrix.archs }}
5353
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux-image }}
54-
run: python -m cibuildwheel --output-dir dist python/pragzip
54+
run: python -m cibuildwheel --output-dir dist python/rapidgzip
5555

5656
- name: Check Wheels
57-
run: twine check dist/* python/pragzip/dist/*
57+
run: twine check dist/* python/rapidgzip/dist/*

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ venv.bak/
104104

105105
# Ignore files generated by Cython
106106
python/indexed_bzip2/indexed_bzip2.cpp
107-
python/pragzip/pragzip.cpp
107+
python/rapidgzip/rapidgzip.cpp
108108

109109

110110
## Core latex/pdflatex auxiliary files:

CHANGELOG.md

-1
This file was deleted.

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# cffconvert --validate
44

55
cff-version: 1.2.0
6-
title: Pragzip
6+
title: Rapidgzip
77
message: >-
88
If you use this software, please cite it using the metadata from this file.
99
type: software
@@ -15,7 +15,7 @@ authors:
1515
1616

1717
repository-code: "https://github.com/mxmlnkn/indexed_bzip2"
18-
repository: "https://github.com/mxmlnkn/pragzip"
18+
repository: "https://github.com/mxmlnkn/rapidgzip"
1919
abstract: >-
2020
A replacement for gzip for decompressing gzip files using
2121
multiple threads.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python/pragzip/README.md
1+
python/rapidgzip/README.md

python/pragzip/pragzip

-1
This file was deleted.

python/pragzip/CHANGELOG.md renamed to python/rapidgzip/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
# Version 0.7.0 built on 2023-06-04
3+
4+
- Rename pragzip to rapidgzip. See the About section in the Readme for some background.
5+
6+
27
# Version 0.6.0 built on 2023-05-30
38

49
## Added
File renamed without changes.
File renamed without changes.

python/pragzip/MANIFEST.in renamed to python/rapidgzip/MANIFEST.in

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
include LICENSE-APACHE
22
include LICENSE-MIT
33
include README.md
4-
include pragzip.svg
4+
include rapidgzip.svg
55
include CHANGELOG.md
6-
include pragzip.pyx
6+
include rapidgzip.pyx
77
recursive-include core *.hpp
8-
recursive-include pragzip *.hpp
8+
recursive-include rapidgzip *.hpp
99
include tools/licenses.cpp
10-
include tools/pragzip.cpp
10+
include tools/rapidgzip.cpp
1111
include external/cxxopts/LICENSE
1212
include external/cxxopts/include/cxxopts.hpp
1313
include external/rpmalloc/LICENSE

0 commit comments

Comments
 (0)