Skip to content

Commit

Permalink
Prepare release and bump version numbers to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Jan 19, 2015
1 parent 1c6f92b commit 04ffbd2
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ branches:
- master

before_install:
- sudo apt-get install p7zip-full
- sudo apt-get install zlib1g-dev
- sudo apt-get install p7zip-full zlib1g-dev
- sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/
- bash .travis/setup_lua.sh
- sudo luarocks install luacov-coveralls
Expand All @@ -32,6 +31,7 @@ before_install:
- if [ $LUA != "lua5.3" ]; then
sudo luarocks install luacrypto;
fi

install:
- sudo luarocks make rockspecs/zipwriter-scm-0.rockspec --deps-mode=none

Expand Down
2 changes: 1 addition & 1 deletion LICENCE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2013 Alexey Melnichuk.
Copyright (C) 2013-2015 Alexey Melnichuk.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion dist.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "ZipWriter"
version = "0.1.2"
version = "0.1.4"

desc = "Library for creating ZIP archive"
author = "Alexey Melnichuk"
Expand Down
52 changes: 52 additions & 0 deletions rockspecs/zipwriter-0.1.4-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
package = "ZipWriter"
version = "0.1.4-1"
source = {
url = "https://github.com/moteus/ZipWriter/archive/v0.1.4.zip",
dir = "ZipWriter-0.1.4",
}

description = {
summary = "Library for creating ZIP archive for Lua 5.1/5.2",
homepage = "https://github.com/moteus/ZipWriter",
detailed = [[This package provides a library to create zip archives.
This library support non seekable streams (e.g. socket), ZIP64 format and AES encrypting.
]],
license = "MIT/X11",
}

dependencies = {
"lua >= 5.1",
"lzlib",
"struct >= 1.2", -- For Lua < 5.3
-- "bit32", -- Lua 5.1 only
-- "aesfileencrypt", -- optional fast aes encryption
-- "luacrypto >= 0.3.0", -- optional to support aes
-- "lua-iconv >= 7.0", -- optional
-- "alien >= 0.7.0", -- optional on windows
}

build = {
type = "builtin",
copy_directories = {"test"},

platforms = {
windows = {
modules = {
["ZipWriter.win.cp"] = "lua/ZipWriter/win/cp.lua",
}
}
},

modules = {
["ZipWriter" ] = "lua/ZipWriter.lua",
["ZipWriter.binary_converter"] = "lua/ZipWriter/binary_converter.lua",
["ZipWriter.charset"] = "lua/ZipWriter/charset.lua",
["ZipWriter.bit"] = "lua/ZipWriter/bit.lua",
["ZipWriter.utils"] = "lua/ZipWriter/utils.lua",
["ZipWriter.encrypt.aes"] = "lua/ZipWriter/encrypt/aes.lua",
["ZipWriter.encrypt.aes.AesFileEncrypt"] = "lua/ZipWriter/encrypt/aes/AesFileEncrypt.lua",
}
}



0 comments on commit 04ffbd2

Please sign in to comment.