diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..ef369151 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,32 @@ +gnome-shell-extensions (3.2.0-1) UNRELEASED; urgency=low + + * New upstream version. + * No more gnome-shell-extension-* packages. + + -- Victor Seva Sun, 06 Nov 2011 13:18:47 +0100 + +gnome-shell-extensions (3.0.2-2) unstable; urgency=low + + * Moved schema files to binary packages. + * links to the common package docs for all extensions binaries. + * debian/rules: + - Removed unused variables. + * Renamed all packages to gnome-shell-extension-* + + -- Victor Seva Sun, 06 Nov 2011 11:15:21 +0100 + +gnome-shell-extensions (3.0.2-1) unstable; urgency=low + + * Initial release (Closes: #627515) + Package based in the work by Bilal Akhtar + * debian/copyright + Added myself + Fixed syntax-error-in-dep5-copyright syntax error + * debian/control.in + Added myself as maintainer. + Fix gnome-shell dependency + * debian/rules + Added uploaders.mk gnome-version.mk includes + * debian/watch added. + + -- Victor Seva Sun, 30 Oct 2011 19:47:57 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..45a4fb75 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..510b5315 --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +# This file is autogenerated. DO NOT EDIT! +# +# Modifications should be made to debian/control.in instead. +# This file is regenerated automatically in the clean target. + +Source: gnome-shell-extensions +Section: gnome +Priority: optional +Maintainer: Victor Seva +Uploaders: Debian GNOME Maintainers +Build-Depends: debhelper (>= 8.0.0), cdbs, gnome-pkg-tools, intltool, libgnome-desktop-3-dev (>= 3.2.0), libgtop2-dev (>= 2.28.3) +Standards-Version: 3.9.2 +Homepage: http://live.gnome.org/GnomeShell/Extensions + +Package: gnome-shell-extensions +Architecture: all +Depends: ${misc:Depends}, gnome-shell (>= 3.2.0) +Description: Extensions to extend functionality of GNOME Shell (common files) + The GNOME Shell redefines user interactions with the GNOME desktop. In + particular, it offers new paradigms for launching applications, + accessing documents, and organizing open windows in GNOME. Later, it + will introduce a new applets eco-system and offer new solutions for + other desktop features, such as notifications and contacts management. + The GNOME Shell is intended to replace functions handled by the GNOME + Panel and by the window manager in previous versions of GNOME. The GNOME + Shell has rich visual effects enabled by new graphical technologies. + Shell has rich visual effects enabled by new graphical technologies. + . + GNOME Shell is extensible using extensions. This package contains + official GNOME Shell extensions. diff --git a/debian/control.in b/debian/control.in new file mode 100644 index 00000000..82513cd7 --- /dev/null +++ b/debian/control.in @@ -0,0 +1,25 @@ +Source: gnome-shell-extensions +Section: gnome +Priority: optional +Maintainer: Victor Seva +Uploaders: @GNOME_TEAM@ +Build-Depends: debhelper (>= 8.0.0), cdbs, gnome-pkg-tools, intltool, libgnome-desktop-3-dev (>= 3.2.0), libgtop2-dev (>= 2.28.3) +Standards-Version: 3.9.2 +Homepage: http://live.gnome.org/GnomeShell/Extensions + +Package: gnome-shell-extensions +Architecture: all +Depends: ${misc:Depends}, gnome-shell (>= 3.2.0) +Description: Extensions to extend functionality of GNOME Shell (common files) + The GNOME Shell redefines user interactions with the GNOME desktop. In + particular, it offers new paradigms for launching applications, + accessing documents, and organizing open windows in GNOME. Later, it + will introduce a new applets eco-system and offer new solutions for + other desktop features, such as notifications and contacts management. + The GNOME Shell is intended to replace functions handled by the GNOME + Panel and by the window manager in previous versions of GNOME. The GNOME + Shell has rich visual effects enabled by new graphical technologies. + Shell has rich visual effects enabled by new graphical technologies. + . + GNOME Shell is extensible using extensions. This package contains + official GNOME Shell extensions. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..01ba6958 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,48 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: gnome-shell-extensions +Upstream-Contact: 2011 Giovanni Campagna +Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-shell-extensions/ + +Files: * +Copyright: 2011 Giovanni Campagna +License: GPL-2.0+ + +Files: debian/* +Copyright: + 2011 VĂ­ctor Seva + 2011 Bilal Akhtar +License: GPL-3.0+ + +License: GPL-2.0+ + This package 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 2 of the License, or + (at your option) any later version. + . + This package 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, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + +License: GPL-3.0+ + 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 package 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, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..3bbe4370 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk + +DEB_CONFIGURE_EXTRA_FLAGS := --enable-extensions=all diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..163aaf8d --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 00000000..019f2aa7 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://ftp.gnome.org/pub/GNOME/sources/gnome-shell-extensions/([\d\.]+)/gnome-shell-extensions-([\d\.]+)\.tar\.bz2