-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
144 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
# Now you only need to update the version number in two places - below, | ||
# and in the README | ||
|
||
AC_INIT([wandio],[4.1.2],[[email protected]],[wandio]) | ||
AC_INIT([wandio],[4.2.0],[[email protected]],[wandio]) | ||
|
||
WANDIO_MAJOR=4 | ||
WANDIO_MID=1 | ||
WANDIO_MINOR=2 | ||
WANDIO_MID=2 | ||
WANDIO_MINOR=0 | ||
|
||
# OpenSolaris hides libraries like libncurses in /usr/gnu/lib, which is not | ||
# searched by default - add it to LDFLAGS so we at least have a chance of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
libwandio1 (4.2.0-1) unstable; urgency=medium | ||
|
||
* Include wandio version number in the HTTP user-agent | ||
* Improved error detection and handling when reading HTTP | ||
* Replaced 'off_t' parameters and return values with 'int64_t' in | ||
recently added API functions. | ||
* Fixed potential uninitialised memory error when closing a wandio writer. | ||
* Export symbols for all format-specific 'open' functions. | ||
|
||
-- Shane Alcock <[email protected]> Fri, 10 May 2019 13:31:49 +1200 | ||
|
||
libwandio1 (4.1.2-1) unstable; urgency=medium | ||
|
||
* Fix swift buffer overflow bug | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ export DEBEMAIL='[email protected]' | |
export DEBFULLNAME='WAND Packaging' | ||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
SOURCENAME=`echo ${CI_COMMIT_REF_NAME} | cut -d '-' -f 1` | ||
|
||
apt-get update | ||
apt-get install -y equivs devscripts dpkg-dev quilt curl apt-transport-https \ | ||
apt-utils ssl-cert ca-certificates gnupg lsb-release debhelper git | ||
|
@@ -19,6 +21,6 @@ chmod 644 /etc/apt/trusted.gpg.d/wand.gpg | |
|
||
apt-get update | ||
|
||
dpkg-parsechangelog -S version | grep -q ${CI_COMMIT_REF_NAME} || debchange --newversion ${CI_COMMIT_REF_NAME} -b "New upstream release" | ||
dpkg-parsechangelog -S version | grep -q ${SOURCENAME} || debchange --newversion ${SOURCENAME} -b "New upstream release" | ||
mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | ||
dpkg-buildpackage -b -us -uc -rfakeroot -j4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.