From 988a0e6cc220f1b78cbabded6fc7e5ab8c40aa61 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Wed, 10 Feb 2010 11:40:04 +0100 Subject: Initial packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 20 ++++++++++++++++++++ debian/copyright | 31 +++++++++++++++++++++++++++++++ debian/rules | 10 ++++++++++ debian/watch | 2 ++ 6 files changed, 69 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4511028 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +indicator-datetime (0.0.1~r1-0ubuntu1) UNRELEASED; urgency=low + + * Initial packaging + + -- Didier Roche Wed, 27 Jan 2010 12:13:00 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..49f0656 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: indicator-datetime +Section: misc +Priority: optional +Maintainer: Ubuntu Desktop Team +Build-Depends: cdbs, + debhelper (>= 5), + pkg-config, + intltool (>= 0.35.0), + libindicate-dev (>= 0.3.0), + libdbusmenu-glib-dev (>= 0.1.1) +Standards-Version: 3.8.3 +Homepage: https://launchpad.net/indicator-applet-developers + +Package: indicator-datetime +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: A very, very simple clock + A simple clock appearing in the indicator bar + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0f2c982 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Didier Roche on +Wed, 10 Feb 2010 11:11:01 +0100. + +It was downloaded from https://launchpad.net/indicator-datetime + +Upstream Author: + + Ted Gould + +Copyright: + + Copyright (C) 2009 Canonical Ltd + +License: + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 3 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +The Debian packaging is (C) 2009, Canonical Ltd. and is licensed under the +GPLv3, see /usr/share/common-licenses/GPL-3. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6202dd3 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/class/autotools.mk + +# List any files which are not installed +include /usr/share/cdbs/1/rules/utils.mk +common-binary-post-install-arch:: list-missing + diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..641f050 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/indicator-datetime/+download .*/indicator-datetime-([0-9.]+)\.tar\.gz -- cgit v1.2.3 From 565a60a383e7a1b7e0b6c94f55544e8258ce1d18 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Wed, 10 Feb 2010 12:06:54 +0100 Subject: remove .la and .a file --- debian/rules | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/rules b/debian/rules index 6202dd3..87f7f7e 100755 --- a/debian/rules +++ b/debian/rules @@ -3,8 +3,10 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/class/autotools.mk - -# List any files which are not installed include /usr/share/cdbs/1/rules/utils.mk -common-binary-post-install-arch:: list-missing +install/indicator-datetime:: + find debian/indicator-datetime/usr/lib -name \*.la -exec rm {} \; + find debian/indicator-datetime/usr/lib -name \*.a -exec rm {} \; + +common-binary-post-install-arch:: list-missing -- cgit v1.2.3 From 404882ad36b3092f115fba92e40d85829c77e3a5 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Wed, 10 Feb 2010 12:08:35 +0100 Subject: update copyright --- debian/copyright | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/debian/copyright b/debian/copyright index 0f2c982..1db6a43 100644 --- a/debian/copyright +++ b/debian/copyright @@ -23,9 +23,5 @@ License: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -The Debian packaging is (C) 2009, Canonical Ltd. and is licensed under the +The Debian packaging is (C) 2010, Canonical Ltd. and is licensed under the GPLv3, see /usr/share/common-licenses/GPL-3. -- cgit v1.2.3 From d127f5f47854308571bf6635d474825e4a1ceb7a Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Wed, 10 Feb 2010 12:10:51 +0100 Subject: releasing version 0.0.1~r2-0ubuntu1 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ba0ecf2..385c5f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -indicator-datetime (0.0.1~r2-0ubuntu1) UNRELEASED; urgency=low +indicator-datetime (0.0.1~r2-0ubuntu1) lucid; urgency=low * new upstream version - -- Didier Roche Wed, 27 Jan 2010 12:13:00 +0100 + -- Didier Roche Wed, 10 Feb 2010 12:10:48 +0100 indicator-datetime (0.0.1~r1-0ubuntu1) lucid; urgency=low -- cgit v1.2.3 From 8fb2b5aa6ce133bf3f83b873af97639aeee60b84 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Thu, 11 Feb 2010 20:27:20 +0100 Subject: * debian/control: - fix build-dep --- debian/changelog | 7 +++++++ debian/control | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 385c5f9..82f5d2b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-datetime (0.0.1~r2-0ubuntu2) UNRELEASED; urgency=low + + * debian/control: + - fix build-dep + + -- Didier Roche Thu, 11 Feb 2010 20:26:58 +0100 + indicator-datetime (0.0.1~r2-0ubuntu1) lucid; urgency=low * new upstream version diff --git a/debian/control b/debian/control index 49f0656..5347b7d 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Build-Depends: cdbs, debhelper (>= 5), pkg-config, intltool (>= 0.35.0), - libindicate-dev (>= 0.3.0), + libindicator-dev (>= 0.3.0), libdbusmenu-glib-dev (>= 0.1.1) Standards-Version: 3.8.3 Homepage: https://launchpad.net/indicator-applet-developers -- cgit v1.2.3 From 86c5b21756930411a0916008a8f5f07606760a65 Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Thu, 11 Feb 2010 20:27:25 +0100 Subject: releasing version 0.0.1~r2-0ubuntu2 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 82f5d2b..8bb1a90 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,9 @@ -indicator-datetime (0.0.1~r2-0ubuntu2) UNRELEASED; urgency=low +indicator-datetime (0.0.1~r2-0ubuntu2) lucid; urgency=low * debian/control: - fix build-dep - -- Didier Roche Thu, 11 Feb 2010 20:26:58 +0100 + -- Didier Roche Thu, 11 Feb 2010 20:27:22 +0100 indicator-datetime (0.0.1~r2-0ubuntu1) lucid; urgency=low -- cgit v1.2.3