summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-05-06 05:16:36 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-05-06 05:16:36 +0200
commit4721d86b07dd8fe4fa509e427ed155c0bf9bb702 (patch)
treebfd8d6b43e92e7050d6f397b88f42fd8f8a8d032
parentc055c43193b3364215afeda4b0275c13644e93c0 (diff)
upload to unstabledebian/0.22.1-1
-rw-r--r--debian/changelog12
-rw-r--r--debian/control14
-rwxr-xr-xdebian/rules6
3 files changed, 16 insertions, 16 deletions
diff --git a/debian/changelog b/debian/changelog
index b094b49..1c1cc22 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,17 +4,17 @@ shotwell (0.22.1-1) unstable; urgency=medium
- Update translations.
* debian/control:
- Bump Standards-Version to 3.9.8 (no changes required).
- - Correct Vcs-Git uri.
- - Rewrite the packages description (Closes: #818671).
- - Remove the following tags because oldstable release
- are 0.12.3-2~:
+ - Correct Vcs-Git URI.
+ - Improve package description (Closes: #818671).
+ - Drop the following fields because even oldstable has 0.12.3-2~:
+ Breaks: shotwell (<< 0.12.3-1)
+ Replaces: shotwell (<< 0.12.3-1)
* Set compat level to 10 (no changes required).
* Correct typo at shotwell-dbg.README.Debian.
* debian/rules:
- - To make the build reproducibly use the solution from
- https://wiki.debian.org/ReproducibleBuilds/TimestampsInTarball.
+ - Touch generated C files with mtime of debian/changelog to ensure
+ the mtime of these C files never changes before installing them
+ into the shotwell-dbg package. Makes build reproducible.
-- Jörg Frings-Fürst <debian@jff-webhosting.net> Sun, 17 Apr 2016 22:15:57 +0200
diff --git a/debian/control b/debian/control
index 60d6cc0..0e6a5e3 100644
--- a/debian/control
+++ b/debian/control
@@ -44,10 +44,10 @@ Description: digital photo organizer
environment. It allows you to import photos, pictures, images and videos
from disk or camera. Shotwell can organize them in collections and in other
various ways. The viewer shows them in full-window or fullscreen mode and
- presents them as gallery or slideshow. The integrated editor can rotate,
+ presents them as galleries or slideshows. The integrated editor can rotate,
flip, crop and tag the photos, adjust the colors und remove red eyes. Export
is possible to facebook, Flickr or Youtube to share with others. It is able
- to manage a lot of image formats (as jpeg, png, bmp, tiff, raw CR2, ...).
+ to manage a lot of image formats such as JPEG, PNG, BMP, TIFF and Raw CR2.
Package: shotwell-common
Architecture: all
@@ -58,12 +58,12 @@ Description: digital photo organizer - common files
environment. It allows you to import photos, pictures, images and videos
from disk or camera. Shotwell can organize them in collections and in other
various ways. The viewer shows them in full-window or fullscreen mode and
- presents them as gallery or slideshow. The integrated editor can rotate,
+ presents them as galleries or slideshows. The integrated editor can rotate,
flip, crop and tag the photos, adjust the colors und remove red eyes. Export
is possible to facebook, Flickr or Youtube to share with others. It is able
- to manage a lot of image formats (as jpeg, png, bmp, tiff, raw CR2, ...).
+ to manage a lot of image formats such as JPEG, PNG, BMP, TIFF and Raw CR2.
.
- This package provides images and documentation for Shotwell
+ This package provides image files and documentation for Shotwell.
Package: shotwell-dbg
Priority: extra
@@ -76,9 +76,9 @@ Description: digital photo organizer - debugging symbols
environment. It allows you to import photos, pictures, images and videos
from disk or camera. Shotwell can organize them in collections and in other
various ways. The viewer shows them in full-window or fullscreen mode and
- presents them as gallery or slideshow. The integrated editor can rotate,
+ presents them as galleries or slideshows. The integrated editor can rotate,
flip, crop and tag the photos, adjust the colors und remove red eyes. Export
is possible to facebook, Flickr or Youtube to share with others. It is able
- to manage a lot of image formats (as jpeg, png, bmp, tiff, raw CR2, ...).
+ to manage a lot of image formats such as JPEG, PNG, BMP, TIFF and Raw CR2.
.
This package contains the debugging symbols for Shotwell.
diff --git a/debian/rules b/debian/rules
index a64e2c5..3bdd2ba 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,9 +14,9 @@ override_dh_auto_configure:
override_dh_install:
dh_install
- # touch temporary c files with date of d/changelog
- # find -type f -name '*.c' -exec touch -r $(CURDIR)/debian/changelog {} \;
- # install temporary c files for debuging
+ # Touch the generated C files with mtime of debian/changelog,
+ # find -type f -name '*.c' -exec touch -r $(CURDIR)/debian/changelog {} \;
+ # then install these C files required for debugging into the shotwell-dbg package.
mkdir -p debian/shotwell-dbg/usr/share/doc/shotwell-dbg/temp-source
find -type f -name '*.c' -exec cp --parent '{}' debian/shotwell-dbg/usr/share/doc/shotwell-dbg/temp-source/ ';'
cd debian/shotwell-dbg/usr/share/doc/shotwell-dbg && \