Skip to content

Commit

Permalink
Released insaned v0.0.3
Browse files Browse the repository at this point in the history
Start systemd service after installation of ubuntu package.
Fixes issue #9.
  • Loading branch information
abusenius committed Oct 28, 2017
1 parent ed94b4d commit 98f9b9e
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ If you happen to have a system where SANE headers (sane/sane.h) and libraries (l
*Gentoo Linux*

1. Add
[media-gfx/insaned/insaned-0.0.2.ebuild](https://raw.githubusercontent.com/abusenius/insaned/master/gentoo/media-gfx/insaned/insaned-0.0.2.ebuild) to media-gfx/insaned in your local overlay.
[media-gfx/insaned/insaned-0.0.3.ebuild](https://raw.githubusercontent.com/abusenius/insaned/master/gentoo/media-gfx/insaned/insaned-0.0.3.ebuild) to media-gfx/insaned in your local overlay.
2. cd $YOUR_OVERLAY/media-gfx/insaned
3. ebuild insaned-0.0.2.ebuild manifest
3. ebuild insaned-0.0.3.ebuild manifest
4. emerge insaned

*Ubuntu Linux (64 bit)*

1. Download [insaned_0.0.2-0ubuntu1_amd64.deb](https://github.com/abusenius/insaned/releases/download/v0.0.2/insaned_0.0.2-0ubuntu1_amd64.deb)
2. sudo dpkg -i insaned_0.0.2-0ubuntu1_amd64.deb
1. Download [insaned_0.0.3-0ubuntu1_amd64.deb](https://github.com/abusenius/insaned/releases/download/v0.0.3/insaned_0.0.3-0ubuntu1_amd64.deb)
2. sudo dpkg -i insaned_0.0.3-0ubuntu2_amd64.deb

*FreeBSD*

Expand Down
9 changes: 8 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
insaned (0.0.3-0ubuntu1) xenial; urgency=low

* Autostart systemd service after installation
* Updated event scripts, added multipage scanning example

-- Alex Busenius <[email protected]> Sat, 28 Oct 2017 23:18:50 +0200

insaned (0.0.2-0ubuntu1) xenial; urgency=medium

* Initial release

-- Alex Busenius <[email protected]> Thu, 18 Aug 2016 21:08:42 +0200
-- Alex Busenius <[email protected]> Thu, 18 Aug 2016 21:08:42 +0200
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Source: insaned
Section: graphics
Priority: optional
Maintainer: Alex Busenius <[email protected]>
Build-Depends: debhelper (>=9)
Build-Depends: debhelper (>=9), dh-systemd
Standards-Version: 3.9.7
Homepage: https://github.com/abusenius/insaned

Expand Down
1 change: 0 additions & 1 deletion debian/insaned.install
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
insaned usr/bin
systemd/insaned.service lib/systemd/system
events/* etc/insaned/events
1 change: 1 addition & 0 deletions debian/insaned.service
8 changes: 6 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
export DH_VERBOSE = 1


# see FEATURE AREAS in dpkg-buildflags(1)
Expand All @@ -15,7 +15,11 @@


%:
dh $@
dh $@ --with systemd


override_dh_installinit:
dh_installinit --noscripts


# dh_make generated override targets
Expand Down
12 changes: 9 additions & 3 deletions gentoo/media-gfx/insaned/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@
# Copyright 2013-2016 Alex Busenius; Distributed under the GPL v2
# $Header: $

*insaned-0.0.3 (28 Oct 2017)

28 Oct 2017; Alex Busenius <[email protected]> +insaned-0.0.3.ebuild,
-insaned-0.0.2.ebuild:
Updated event scripts, added multipage scanning example.

*insaned-0.0.2 (18 Aug 2016)

18 Aug 2016; Alex Busenius <[email protected]> +insaned-0.0.2.ebuild,
18 Aug 2016; Alex Busenius <[email protected]> +insaned-0.0.2.ebuild,
-insaned-0.0.1.ebuild::
Log file and PID directory are created by the daemon if needed.

*insaned-0.0.1 (15 Dec 2013)

15 Dec 2013; Alex Busenius <[email protected]> insaned-0.0.1.ebuild:
Initial ebuild by Alex Busenius <[email protected]>.
15 Dec 2013; Alex Busenius <[email protected]> insaned-0.0.1.ebuild:
Initial release.

2 changes: 1 addition & 1 deletion src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
#define PACKAGE "insaned"

/* Define to the version of the distribution. */
#define VERSION "0.0.2"
#define VERSION "0.0.3"

0 comments on commit 98f9b9e

Please sign in to comment.