commit 7d5346b49ee23da07e9b0664e3af416914134484 (HEAD -> master, tag: 0.0.17)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 12 06:16:07 2015 +0200

    Release libpmount 0.0.17

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ca06462b44ebe3db51eb1bd5f69423a628492fd6
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 12 04:28:53 2015 +0200

    pmount: Handle errors from __mtab_get* functions

 src/pmount.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 5451c2275416a1ca741593bf889a7cb4c8ac9ee1
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 21:01:46 2015 +0200

    src: Use «strcmp() == 0» instead of «!strcmp()»

 src/kfreebsd.c |  8 ++++----
 src/linux.c    | 10 +++++-----
 2 files changed, 9 insertions(+), 9 deletions(-)

commit cb0adfdf445d8b0da6c54898506c6badd461e905
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 20:58:53 2015 +0200

    src: Fix coding-style
    
    Fix indentation and remove spaces between function name and parenthesis.

 src/kfreebsd.c |  14 ++--
 src/linux.c    | 222 ++++++++++++++++++++++++++++-----------------------------
 src/mtab.c     | 166 +++++++++++++++++++++---------------------
 3 files changed, 201 insertions(+), 201 deletions(-)

commit a79de4783e2f2426f98140f246587ab6d4ebad1f
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 20:38:12 2015 +0200

    linux: Do not split keywords across preprocessor directives

 src/linux.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 42c1450e6c811d22240ae067369545979c38fbb7
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 20:44:53 2015 +0200

    linux: Tone done code comment

 src/linux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d3f212eac4006448b25b0069458914e2e6d8f37
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 20:44:19 2015 +0200

    src: Be less personal in debug messages

 src/linux.c  | 13 ++++++-------
 src/pmount.c |  2 +-
 2 files changed, 7 insertions(+), 8 deletions(-)

commit a92a142f664fc239358b52956cc8ce9256a32d96
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 18:55:21 2015 +0200

    linux: Turn the verbose code into an actual macro

 src/linux.c  | 44 ++++++++++++--------------------------------
 src/main.h   |  6 ++++++
 src/pmount.c | 10 ++++------
 3 files changed, 22 insertions(+), 38 deletions(-)

commit 926c098664d631f31a94001b348074ed1ddf6658
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 08:31:27 2015 +0200

    linux: Use new LOOP_CTL_GET_FREE if available
    
    This ioctl is new in kernels 3.1 and above.

 src/linux.c | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

commit 0a56cd91585bc2200d0b5a37d6ebf9d963a3863b
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 08:31:27 2015 +0200

    linux: Do not leak file descriptors

 src/linux.c | 3 +++
 1 file changed, 3 insertions(+)

commit 2223992fc8f2040259d7647fd4464740eb4bd590
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 04:05:32 2015 +0200

    linux: Open the loopback file and device with matching mode
    
    New kernel versions requires the open mode to match the requested one
    for the mount call.

 src/linux.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit e9293e5bbcabe4ded0a324d42e117f183160d2c0
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 04:05:32 2015 +0200

    linux: Switch to use struct loop_info64

 src/linux.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 9c4848fd8be79031c08dd8764af88177d97c43b7
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 04:05:32 2015 +0200

    linux: Pass MS_MGC_VAL to mount syscall
    
    New mount syscalls require this flag so that the new MS_ flag values can
    be properly recognized.

 src/linux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5d16f0bfdad135990510837c36d1a4e8bd6a3f65
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 01:27:10 2015 +0200

    linux: Remove bogus semicolon after if conditional
    
    This turns the if into having an empty body, and then unconditionally
    returning -1.

 src/linux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c330a7c0eb47712997c74969071de91708e80a8
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 20:28:44 2015 +0200

    kerndep: Improve unported error message

 src/kerndep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d9da3c2ab5a6f99514d81570e33e61de05a9800
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 12 04:30:46 2015 +0200

    mtab: Dup the line on return from __mtab_getline()

 src/mtab.c | 3 +++
 1 file changed, 3 insertions(+)

commit 0f5358fa7dc80ea7fdc8c9500d17fabeb8023146
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 01:56:32 2015 +0200

    mtab: Use an intermadiate variable to hold the line length

 src/mtab.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 06b5c7046ad7d81094880071bb38640fdbd1ddc9
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 04:05:32 2015 +0200

    mtab: Gracefully handle missing last space

 src/mtab.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 758c707c2a530191603e3bce8f51dafba7b94e3e
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 12 06:10:48 2015 +0200

    test: Rename test.c to test-loop.c

 test/Makefile.am             | 4 ++--
 test/{test.c => test-loop.c} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 98f3e228aa366be3eaa0e163a829967d6aa1c02d
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 12 03:42:08 2015 +0200

    test: Add new mtab test-case

 test/.gitignore  |  1 +
 test/Makefile.am |  4 ++++
 test/test-mtab.c | 22 ++++++++++++++++++++++
 3 files changed, 27 insertions(+)

commit 3f984dd58f0322d9c974824e85ec3e00eeeaedd6
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 03:44:25 2015 +0200

    test: Do a realpath on the mount paths

 test/test.c | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit fb48c1d5b162070cb7473137f712841206b605eb
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 02:49:01 2015 +0200

    test: Rename test to iso9660 from isofs
    
    The former name did not match the filesystem name known to libpmount,
    which means the test was not working at all.

 test/.gitignore  |  2 +-
 test/Makefile.am | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

commit fba672958759a42502a64ab2a16902651d85fc89
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 02:49:01 2015 +0200

    test: Use genisoimage instead of mkisofs

 test/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1014a98dfdf2cd3ebd0cc81d2b09b78fb5498f44
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 19 00:35:42 2015 +0200

    test: Create the mount point directory in the test program

 test/test.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit e1f6750b0690ac1244eb3bb36f2b7b7e34baaa20
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 11 21:13:42 2015 +0200

    test: Skip checks if not running as root

 test/test.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 709a7ce127d81935ab129f7c61d353e7f3a939a9
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Jun 17 17:32:19 2015 +0200

    build: Autoconfiscate

 .gitignore                         | 21 ++++++++++--
 Makefile                           | 59 ----------------------------------
 Makefile.am                        | 16 +++++++++
 autogen                            |  5 +++
 configure.ac                       | 66 ++++++++++++++++++++++++++++++++++++++
 get-version                        | 48 +++++++++++++++++++++++++++
 src/Makefile.am                    | 46 ++++++++++++++++++++++++++
 src/kfreebsd.c                     |  2 ++
 libpmount.map => src/libpmount.map |  0
 src/linux.c                        |  2 +-
 src/mtab.c                         |  2 +-
 src/pmount.c                       |  2 +-
 test/.gitignore                    |  5 +++
 test/Makefile                      | 28 ----------------
 test/Makefile.am                   | 37 +++++++++++++++++++++
 test/test.c                        |  2 ++
 16 files changed, 249 insertions(+), 92 deletions(-)

commit b9f669cedbbdb9e5046da95d2f8f53de8357119b
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Jun 17 16:36:42 2015 +0200

    tests: Rename to test

 {tests => test}/Makefile | 0
 {tests => test}/test.c   | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

commit 24176fce0676d18c1486ccf2031479858fcd27f6
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Jun 17 03:41:24 2015 +0200

    doc: Add project information to the README file

 README | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

commit 916e45015ed727c76af198eb55e5f5888755bda2
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sat May 2 04:46:13 2015 +0200

    debian: Remove packaging
    
    The package is no longer native, and the packaging is maintained in a
    different repository.

 debian/.gitignore            |   7 --
 debian/changelog             | 155 -------------------------------------------
 debian/compat                |   1 -
 debian/control               |  35 ----------
 debian/copyright             |  27 --------
 debian/libpmount-dev.install |   3 -
 debian/libpmount0.0.install  |   1 -
 debian/libpmount0.0.symbols  |   2 -
 debian/rules                 |  64 ------------------
 debian/source/format         |   1 -
 10 files changed, 296 deletions(-)

commit 7044f22d7cfe79694e5d2065a0f4dff37b5b56fd (tag: 0.0.16, origin/master, origin/HEAD)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Feb 9 21:49:13 2012 +0100

    Release libpmount 0.0.16

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 674d48b4d5263f5b5136e2d7f150a0801a89c718
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Feb 9 21:25:54 2012 +0100

    Remove MNT_NODEV usage which disappeared on kFreeBSD 7.0

 debian/changelog | 6 ++++++
 src/kfreebsd.c   | 2 --
 2 files changed, 6 insertions(+), 2 deletions(-)

commit b7e2eb2cfa660be4c69dabd87289637aa6573213
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Dec 11 07:58:07 2011 +0100

    Rename version script from Versions to libpmount.map

 Makefile                  | 2 +-
 Versions => libpmount.map | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 80771137b41aae631302c5b3c3fd55c6440355e6 (tag: 0.0.15)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Sep 28 19:40:13 2011 +0200

    Release libpmount 0.0.15

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5f9bd63f3a679127399b85debf6613c4266c9efe
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Sep 28 19:38:52 2011 +0200

    Add new debian/.gitignore

 debian/.gitignore | 7 +++++++
 1 file changed, 7 insertions(+)

commit 41bcad4c93a95a8811b8cb331a2d2f0a271f40d4
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Sep 28 19:32:30 2011 +0200

    Always check asprintf() return code

 debian/changelog |  1 +
 src/linux.c      |  9 +++++++--
 src/mtab.c       |  8 +++++++-
 src/pmount.c     | 17 ++++++++++++-----
 4 files changed, 27 insertions(+), 8 deletions(-)

commit 52d5d969e1c187f3d882c984338e32546f6cbcac
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Sep 28 19:31:32 2011 +0200

    Use a format string on fprintf instead of just directly a string variable

 debian/changelog | 7 +++++++
 src/mtab.c       | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 9334ecf6ff3d25c2df1ffa007925741449fe7114
Author: Guillem Jover <guillem@hadrons.org>
Date:   Wed Aug 17 22:15:56 2011 +0200

    Fix spelling errors
    
    Found by codespell.

 src/linux.c | 2 +-
 src/mtab.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 476a26a2df54693eaa8fe5570454e22533752da5 (tag: 0.0.14)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:20:18 2011 +0200

    Release libpmount 0.0.14

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7d5887107e102b5cedc630524bc3d62d5660653f
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:19:04 2011 +0200

    Remove blank lines at EOF

 Makefile         | 1 -
 debian/changelog | 1 -
 debian/control   | 1 -
 debian/copyright | 1 -
 debian/rules     | 1 -
 src/linux.c      | 1 -
 src/main.h       | 1 -
 src/pmount.h     | 1 -
 tests/Makefile   | 1 -
 tests/test.c     | 1 -
 10 files changed, 10 deletions(-)

commit e74f839836d54aa174ff3434440d4d1a504a68c2
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:17:55 2011 +0200

    Rename build target to build-arch, add build-indep and build targets
    
    The latter depending on build-indep and build-arch. Rename install to
    install-arch.

 debian/changelog |  3 +++
 debian/rules     | 14 ++++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit 66224fddd2436bd163b653c0731f6e259cc6ad4e
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:14:33 2011 +0200

    Use dpkg-buildflags to set CPPFLAGS, CFLAGS and LDFLAGS

 debian/changelog |  1 +
 debian/control   |  2 +-
 debian/rules     | 13 +++++--------
 3 files changed, 7 insertions(+), 9 deletions(-)

commit 0d9e7474d07b8f62ea510bdd9996b4e4d308a291
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:11:32 2011 +0200

    Now using Standards-Version 3.9.2 (no changes needed)

 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 0916374152488613708211cf83b7c701f97e8903
Author: Guillem Jover <guillem@hadrons.org>
Date:   Fri Jun 3 21:10:16 2011 +0200

    Honour CPPFLAGS and LDFLAGS

 Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 4974bbb9bd88ac6807f701a50b762be580fbd19b
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 31 09:24:58 2011 +0200

    Switch the symbols file to use symver tags instead of symbol patterns

 debian/changelog            | 6 ++++++
 debian/libpmount0.0.symbols | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f8805c8d336dd208ebfb3302bf247b9c75ba8c09 (tag: 0.0.13)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 17:06:30 2010 +0200

    Release libpmount 0.0.13

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f327eb0827d941524d81ee45a1cfee8a6e74fcce
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 17:11:43 2010 +0200

    Add Vcs-Browser and Vcs-Git fields

 debian/changelog | 1 +
 debian/control   | 2 ++
 2 files changed, 3 insertions(+)

commit 72aa38efd66b302969bf3d4a799e903c253a51a1
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 17:04:20 2010 +0200

    Remove duplicate from source Section field in libpmount0.0 binary stanza

 debian/changelog | 1 +
 debian/control   | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 34785365b4628c7c1b5431a1882a74777104c360
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 17:02:46 2010 +0200

    Add ${misc:Depends} to all Depends fields

 debian/changelog | 1 +
 debian/control   | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 186d5ae7de3afcc6b41047b3a66c7d86584fd766
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 16:59:32 2010 +0200

    Now using Standards-Version 3.8.4 (no changes needed)

 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 0f6bd6bdbc16e42b9bf6e66bd2dc916da52d1ebb
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue May 4 16:56:04 2010 +0200

    Switch to source format “3.0 (native)”

 debian/changelog     | 6 ++++++
 debian/source/format | 1 +
 2 files changed, 7 insertions(+)

commit 426fd239ce19d3f6029ed444ae9e11da856edc78 (tag: 0.0.12)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 14:03:52 2009 +0200

    Release libpmount 0.0.12

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 89c2b4dfba13166bd72eda7749d2aaccaf43180a
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 14:02:42 2009 +0200

    Remove redundant build dependency from binary-arch target

 debian/changelog | 1 +
 debian/rules     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 23dcde8541c1fa4636fdf176c956a4049ebacaa1
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 13:59:44 2009 +0200

    Remove dependencies from binary-indep target

 debian/changelog | 1 +
 debian/rules     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 269dfbd6e4db60c04262739e566e93d822836678
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 13:58:38 2009 +0200

    Use $(filter ...) instead of $(findstring ...)
    
    To extract space separated options from DEB_BUILD_OPTIONS.

 debian/rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 887fbd5f023fe9005a35a4f6eb5eae90e414cf3e
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 13:56:41 2009 +0200

    Now using Standards-Version 3.8.2 (no changes needed)

 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 2d008bad71607a895290310c5ea44f03e1482779
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 13:52:21 2009 +0200

    Pass -s to arch dependent debhelper commands

 debian/changelog |  1 +
 debian/rules     | 30 +++++++++++++++---------------
 2 files changed, 16 insertions(+), 15 deletions(-)

commit 78347a44ac204795f09ff0c03be7a13640d5089d
Author: Guillem Jover <guillem@hadrons.org>
Date:   Thu Jun 25 13:44:34 2009 +0200

    Do not pass unneeded --sourcedir to dh_install
    
    This works around debhelper compat v7 bug (#534565) in dh_install which
    makes files end up under /debian/tmp/ in the binary package.

 debian/changelog | 8 ++++++++
 debian/rules     | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 86876ad37a2f81ef3492fdc613978a4d7bb135b5
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:47:55 2009 +0200

    Fix typo “Standars” → “Standards”

 debian/changelog | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d90f14103c9cbe630f264fad3483b020e7acc928 (tag: 0.0.11)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:38:01 2009 +0200

    Release 0.0.11

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c29d486c4e2bfd4f70eaeb0e9ae402748de84e27
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:34:59 2009 +0200

    Remove cruft file

 src/lomount.c | 38 --------------------------------------
 1 file changed, 38 deletions(-)

commit 5926952fa6bca5bbd5e50be557d244f408bdafd2
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:33:09 2009 +0200

    Mention “library” instead of “package” in license snippet

 debian/changelog | 1 +
 debian/copyright | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit c15d0074e3d641e129eeef3883b50212a65f258f
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:32:15 2009 +0200

    Refer to LGPL-2.1 from common-licenses instead of just LGPL

 debian/changelog | 1 +
 debian/copyright | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 51b1d12756e3d2e12944aa5f63377fea43696d82
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:30:44 2009 +0200

    Refer to LGPL 2.1 instead of LGPL 2

 debian/changelog | 1 +
 debian/copyright | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 966805039527937ab4ff64051342035cd7dbcf1c
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:28:12 2009 +0200

    Lower case «Maintained by»

 debian/changelog | 4 +++-
 debian/copyright | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 9afa3162fbe77a676d66c8b22419e8fd855e6c37
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:26:42 2009 +0200

    Update FSF postal address

 src/kfreebsd.c | 2 +-
 src/linux.c    | 2 +-
 src/main.h     | 2 +-
 src/mtab.c     | 2 +-
 src/pmount.c   | 2 +-
 src/pmount.h   | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

commit c708798c1280809c9ec41991589d66436a84433c
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:11:16 2009 +0200

    Add a symbols file for libpmount0.0

 debian/changelog            | 1 +
 debian/libpmount0.0.symbols | 2 ++
 2 files changed, 3 insertions(+)

commit 49fa406334d7df5032a7529f8f51bfbbe6f58eeb
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 04:09:23 2009 +0200

    Do not give any argument to dh_makeshlibs -V option
    
    Get the default shlibs file dependency by not giving any argument to
    dh_makeshlibs -V option.

 debian/changelog | 2 ++
 debian/rules     | 5 +----
 2 files changed, 3 insertions(+), 4 deletions(-)

commit 8bf9bad9a936a57b95cae34e705929948cdbdd38
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 03:43:25 2009 +0200

    Use UTF-8 copyright symbol

 debian/changelog | 1 +
 debian/copyright | 2 +-
 src/kfreebsd.c   | 4 ++--
 src/linux.c      | 2 +-
 src/main.h       | 2 +-
 src/mtab.c       | 2 +-
 src/pmount.c     | 2 +-
 src/pmount.h     | 2 +-
 8 files changed, 9 insertions(+), 8 deletions(-)

commit 123e5f4287794588c7938ee0385dd5d08fa092a2
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 03:40:33 2009 +0200

    Use dh_prep instead of “dh_clean -k”

 debian/changelog | 1 +
 debian/rules     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit afd5fd9cda65271dd73f16a1b1cee272bdc58b32
Author: Guillem Jover <guillem@hadrons.org>
Date:   Sun Feb 22 03:38:26 2009 +0200

    Now using Standards-Version 3.8.0 (no changes needed)

 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 90897f9bec5a626944f4764a8dd00c46819a87c8
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon Feb 9 22:17:49 2009 +0200

    Switch to debhelper compatibility level 7

 debian/changelog | 6 ++++++
 debian/compat    | 2 +-
 debian/control   | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit d422e4480000019e58d4fe9d7f9b5929bb372de8 (tag: 0.0.10)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 06:12:04 2008 +0300

    Release 0.0.10

 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1caaa3148fae8794c363dada13078c97a25f87be
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 06:08:41 2008 +0300

    Now using Standars-Version 3.7.3 (no changes needed)

 debian/changelog | 1 +
 debian/control   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit b6247bfb4e4f66c9842b251ae64c6974dad17c19
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 06:07:14 2008 +0300

    Add a .gitignore file

 .gitignore | 4 ++++
 1 file changed, 4 insertions(+)

commit 58942a00889edb3c7e7e493d0d19513006ccf6dd
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 06:05:20 2008 +0300

    Makefile: Do not use hardcoded library names

 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 041d5c6bb18b6132f4de5734aad5fc6e7b6de5e9
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 05:56:51 2008 +0300

    Makefile: Rename PACKAGE to LIBNAME

 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 44205c3e5d835b67e832f7081fd8de3cea8a7904
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 05:56:17 2008 +0300

    Makefile: Rename LIBNAME to STNAME

 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit d2c5c3504e88217825b2b3b314224ed1ed9e6053
Author: Guillem Jover <guillem@hadrons.org>
Date:   Mon May 19 05:41:02 2008 +0300

    Do not strip the shared library in Makefile
    
    (Closes: #437397)

 Makefile         | 1 -
 debian/changelog | 6 ++++++
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 0aea1b3efeb1b50f9125aad38b2726e196fcbadf (tag: 0.0.9)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 7 02:30:21 2007 +0300

    Fix typo.

 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ea0a6aa0b2929405781e38190d9b79cda44bac6
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 7 02:26:09 2007 +0300

    Release libpmount 0.0.9.

 debian/changelog                                      | 15 +++++++++++++++
 debian/control                                        |  2 +-
 debian/copyright                                      |  2 +-
 debian/{libpmount-dev.files => libpmount-dev.install} |  0
 debian/{libpmount0.0.files => libpmount0.0.install}   |  0
 debian/libpmount0.0.shlibs                            |  1 -
 debian/rules                                          | 15 +++++----------
 7 files changed, 22 insertions(+), 13 deletions(-)

commit 945f25804b78dee38986e5a1c0178d0eccac8e4a (tag: 0.0.8)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 7 02:15:57 2007 +0300

    Import version 0.0.8.

 debian/changelog |   8 ++++
 debian/compat    |   2 +-
 debian/control   |   4 +-
 debian/copyright |   4 +-
 src/kfreebsd.c   | 139 ++++++++++++++++++++++++++++---------------------------
 src/main.h       |  13 +++---
 src/mtab.c       |  12 ++---
 src/pmount.c     |  60 ++++++++++++------------
 src/pmount.h     |   5 +-
 9 files changed, 132 insertions(+), 115 deletions(-)

commit f2b2bce102b3e0b43adfa80db2d12e8f1eeba423 (tag: 0.0.7)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 7 02:14:40 2007 +0300

    Import version 0.0.7.

 Makefile         |  15 ++--
 Versions         |   7 ++
 debian/changelog |  14 +++-
 debian/control   |   2 +-
 debian/copyright |   2 +-
 src/kfreebsd.c   |  90 ++++++++++++-----------
 src/linux.c      | 215 +++++++++++++++++++++++++++----------------------------
 tests/Makefile   |  29 ++++++++
 tests/ext2fs.sh  |  29 --------
 tests/test.c     |  28 ++++++++
 10 files changed, 239 insertions(+), 192 deletions(-)

commit eda50958b15630b6f4cde9b59d43f2d13f8c0252 (tag: 0.0.6)
Author: Guillem Jover <guillem@hadrons.org>
Date:   Tue Aug 7 02:11:33 2007 +0300

    Import version 0.0.6.

 Makefile         | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 bashfile         | 55 -----------------------------------------------------
 debian/changelog | 12 ++++++++++++
 debian/control   | 19 ++++++++++---------
 debian/copyright | 29 ++++++++++++++++++++++------
 debian/rules     | 58 ++++++++++++++++----------------------------------------
 6 files changed, 116 insertions(+), 112 deletions(-)

commit c6a1ae187b223fab9746f15344b56a3beb01c28b (tag: 0.0.5)
Author: Robert Millan <rmh@debian.org>
Date:   Tue Aug 7 02:08:25 2007 +0300

    Initial import.

 README                     |   6 +
 bashfile                   |  55 +++++++++
 debian/changelog           |  38 +++++++
 debian/compat              |   1 +
 debian/control             |  34 ++++++
 debian/copyright           |  11 ++
 debian/libpmount-dev.files |   3 +
 debian/libpmount0.0.files  |   1 +
 debian/libpmount0.0.shlibs |   1 +
 debian/rules               |  96 ++++++++++++++++
 src/kerndep.c              |   7 ++
 src/kfreebsd.c             | 195 ++++++++++++++++++++++++++++++++
 src/linux.c                | 274 +++++++++++++++++++++++++++++++++++++++++++++
 src/lomount.c              |  38 +++++++
 src/main.h                 |  30 +++++
 src/mtab.c                 | 190 +++++++++++++++++++++++++++++++
 src/pmount.c               | 122 ++++++++++++++++++++
 src/pmount.h               |  41 +++++++
 tests/ext2fs.sh            |  29 +++++
 19 files changed, 1172 insertions(+)
