Skip to content

Commit

Permalink
Bumped version to 0.8.2 and updated change log
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberemissary committed Dec 28, 2018
1 parent e24c481 commit b753ff3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*.out
.deps/
.libs/
.idea/
aclocal.m4
autom4te.cache/
build-aux/
Expand Down Expand Up @@ -35,6 +36,7 @@ src/sql/lexer.c
src/sql/parser.c
src/sql/parser.h
src/util/mdb-array
src/util/mdb-count
src/util/mdb-export
src/util/mdb-header
src/util/mdb-import
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Changelog for 0.8.2
* Improved support for Access 2010, 2013, and 2016: @evanmiller #9
* Build script and readme improvements @cyberemissary

# Changelog for 0.8.1
* Format README as Github Markdown: @joshuapinter #3
* Updated changelog markdown format and will keep it in slightly different style: @cyberemissary #7
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ rpm -i cyber-mdbtools-<version>-1.x86_64.rpm
Feel free to submit PR requests here. I will try to review and merge them regularly.

# mdbtools
_version 0.8.1_
_version 0.8.2_

Welcome to the exciting world of MDB Tools! In short, MDB Tools is a set of
programs to help you use Microsoft Access file in various settings. The major
Expand Down
11 changes: 8 additions & 3 deletions bin/package.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash -ex

# You must run this as sudo

function usage(){
echo ""
echo "This script packages mdbtools into a .deb and .rpm packages"
Expand Down Expand Up @@ -30,14 +32,17 @@ if [ ! -z "$2" ]; then
PKG_RELEASE=$2
fi

sudo checkinstall -y --pkgname=cyber-mdbtools --pkgversion=${PKG_VERSION} --pkgrelease=${PKG_RELEASE} --pkggroup=Tools \
autoreconf -i -f
./configure

checkinstall -y --pkgname=cyber-mdbtools --pkgversion=${PKG_VERSION} --pkgrelease=${PKG_RELEASE} --pkggroup=Tools \
--pkgsource=https://github.com/cyberemissary/mdbtools/archive/master.zip \
[email protected] --provides=mdbtools

# remove directory in case we are rebuilding the same version and we quite prematurely before
rm -Rf cyber-mdbtools-${PKG_VERSION}
sudo alien -r -g -v -k cyber-mdbtools_${PKG_VERSION}-${PKG_RELEASE}_amd64.deb
alien -r -g -v -k cyber-mdbtools_${PKG_VERSION}-${PKG_RELEASE}_amd64.deb

cd cyber-mdbtools-${PKG_VERSION}
sudo rpmbuild --buildroot $(pwd)/ --bb cyber-mdbtools-${PKG_VERSION}-${PKG_RELEASE}.spec
rpmbuild --buildroot $(pwd)/ --bb cyber-mdbtools-${PKG_VERSION}-${PKG_RELEASE}.spec
cd
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mdbtools],[0.8.1],[[email protected]])
AC_INIT([mdbtools],[0.8.2],[[email protected]])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR(src/extras/mdb-dump.c)
Expand Down

0 comments on commit b753ff3

Please sign in to comment.