Skip to content

Commit

Permalink
Prepare for release v2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Oct 20, 2018
1 parent dcdccf3 commit 6ce2cc8
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
imgp v2.6
2018-10-20

What's in?
- Support for progressive JPEG
- Some bug fixes and documentation update
- Package generation for some more distros

-------------------------------------------------------------------------------

imgp v2.5
2018-02-19

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pillow can be replaced by [pillow-simd](https://github.com/uploadcare/pillow-sim
- [Source Mage](http://codex.sourcemage.org/test/graphics/imgp/) (`cast imgp`)
- [Ubuntu](http://packages.ubuntu.com/search?keywords=imgp&searchon=names&exact=1) (`apt-get install imgp`)
- [Ubuntu PPA](https://launchpad.net/~twodopeshaggy/+archive/ubuntu/jarun/) (`apt-get install imgp`)
- [Void Linux](https://github.com/voidlinux/void-packages/tree/master/srcpkgs/imgp) (`xbps-install -S imgp`)
- [Void Linux](https://github.com/void-linux/void-packages/tree/master/srcpkgs/imgp) (`xbps-install -S imgp`)

#### Release packages

Expand Down
2 changes: 1 addition & 1 deletion imgp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pad = '_IMGP' # output file suffix when --overwrite is unused
png_ip = PIL.Image.ANTIALIAS # default interpolation for PNG
fill_color = '#ffffff' # BG color to strip alpha channel
init_time = time.time() # profile the total time taken
_VERSION_ = '2.5' # current program version
_VERSION_ = '2.6' # current program version

# Globals for multiprocessing
pool = None
Expand Down
2 changes: 1 addition & 1 deletion imgp.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "IMGP" "1" "19 Feb 2018" "Version 2.5" "User Commands"
.TH "IMGP" "1" "20 Oct 2018" "Version 2.6" "User Commands"
.SH NAME
imgp \- Resize, rotate JPEG and PNG images.
.SH SYNOPSIS
Expand Down
53 changes: 52 additions & 1 deletion packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,24 @@ packages:
deps:
- python-pillow
- python
centos7.1:
builddeps:
- make
deps:
- python-pillow
- python
commands:
pre:
- yum install epel-release
centos7.2:
builddeps:
- make
deps:
- python-pillow
- python
commands:
pre:
- yum install epel-release
centos7.3:
builddeps:
- make
Expand All @@ -22,12 +40,27 @@ packages:
commands:
pre:
- yum install epel-release
centos7.4:
builddeps:
- make
deps:
- python-pillow
- python
commands:
pre:
- yum install epel-release
debian9:
builddeps:
- make
deps:
- python3-pillow
- python3
fedora25:
builddeps:
- make
deps:
- python3-pillow
- python3
fedora26:
builddeps:
- make
Expand All @@ -40,6 +73,24 @@ packages:
deps:
- python3-pillow
- python3
fedora28:
builddeps:
- make
deps:
- python3-pillow
- python3
opensuse42.1:
builddeps:
- make
deps:
- python3-Pillow
- python3
opensuse42.2:
builddeps:
- make
deps:
- python3-Pillow
- python3
opensuse42.3:
builddeps:
- make
Expand All @@ -52,7 +103,7 @@ packages:
deps:
- python3-pillow
- python3
ubuntu17.10:
ubuntu18.04:
builddeps:
- make
deps:
Expand Down

4 comments on commit 6ce2cc8

@jarun
Copy link
Owner Author

@jarun jarun commented on 6ce2cc8 Oct 20, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@szlin, @pabloariasal, @maxice8, @dilawar, @eclipseo imgp v2.6 is released!

@maxice8
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done for Void Linux

@eclipseo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done for Fedora!

@jarun
Copy link
Owner Author

@jarun jarun commented on 6ce2cc8 Oct 20, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks guys!

Please sign in to comment.