[caja-admin] 01/01: upload to unstable as NEW (debian/0.0.1-1)

Mike Gabriel sunweaver at debian.org
Sun Aug 20 09:24:36 UTC 2017


This is an automated email from the git hooks/post-receive script.

sunweaver pushed a commit to branch master
in repository caja-admin.

commit ca6aaf3cc532e98a4b93789b770fbd2023b16560
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Sun Aug 20 05:23:45 2017 -0400

    upload to unstable as NEW (debian/0.0.1-1)
---
 debian/changelog      |  5 ++++
 debian/compat         |  1 +
 debian/control        | 39 +++++++++++++++++++++++++++++++
 debian/copyright      | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/patches/README |  3 +++
 debian/rules          |  8 +++++++
 debian/source/format  |  1 +
 debian/watch          |  2 ++
 8 files changed, 122 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1e042ba
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+caja-admin (0.0.1-1) unstable; urgency=medium
+
+  * Initial release to Debian. (Closes: #872695).
+
+ -- Mike Gabriel <sunweaver at debian.org>  Sun, 20 Aug 2017 05:16:26 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e21ce40
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,39 @@
+Source: caja-admin
+Section: x11
+Priority: optional
+Maintainer: MATE Packaging Team <pkg-mate-team at lists.alioth.debian.org>
+Uploaders:
+ Mike Gabriel <sunweaver at debian.org>,
+Build-Depends:
+ cmake,
+ debhelper (>= 10),
+ python:any | python-all:any | python-dev:any | python-all-dev:any,
+Standards-Version: 4.0.1
+Homepage: https://github.com/infirit/caja-admin/
+Vcs-Browser: https://anonscm.debian.org/git/pkg-mate/caja-admin.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-mate/caja-admin.git
+X-Python-Version: >= 2.7
+
+Package: caja-admin
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ python-gi,
+ gir1.2-gtk-3.0,
+ caja,
+ policykit-1,
+ python-caja,
+Recommends:
+ pluma,
+ mate-terminal,
+Description: Add administrative actions to Caja's right-click menu
+ Caja Admin is a simple Python extension for the Caja file manager that
+ adds some administrative actions to the right-click menu:
+ .
+   - Open as Administrator: opens a folder in a new Caja window running
+     with administrator (root) privileges.
+   - Edit as Administrator: opens a file in a Pluma window running with
+     administrator (root) privileges.
+   - Run as Administrator: runs an executable file with administrator
+     (root) privileges inside a MATE Terminal.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d8b5284
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,63 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: caja-admin
+Upstream-Contact: Sander Sweers <infirit at gmail.com>
+Source: https://github.com/infirit/caja-admin
+
+Files: extension/caja-admin.py.in
+Copyright: 2015-2016, Bruno Nova <brunomb.nova at gmail.com>
+  2016, frmdstryr <frmdstryr at gmail.com>
+License: GPL-3+
+
+Files: .gitignore
+ AUTHORS
+ CMakeLists.txt
+ CONTRIBUTING.md
+ INSTALL.md
+ NEWS
+ README.md
+ cmake/cmake_uninstall.cmake.in
+ generate-pot-file.sh
+ polkit/org.freedesktop.caja-admin.policy.in
+Copyright: 2015-2016, Bruno Nova <brunomb.nova at gmail.com>
+License: GPL-3+
+Comment:
+ Assuming same copyright holdership and license from the majority
+ of the other files in the upstream source tree.
+
+Files:
+ caja-admin.appdata.xml
+ po/ar.po
+ po/caja-admin.pot
+ po/de.po
+ po/es.po
+ po/fr.po
+ po/it.po
+ po/lt.po
+ po/pl.po
+ po/pt.po
+ po/ru.po
+ po/sk.po
+ po/zh_CN.po
+Copyright: 2015-2016, Bruno Nova <brunomb.nova at gmail.com>
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2017, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+License: GPL-3+
+
+License: GPL-3+
+ 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 <http://www.gnu.org/licenses/>.
+ .
+ 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/patches/README b/debian/patches/README
new file mode 100644
index 0000000..80c1584
--- /dev/null
+++ b/debian/patches/README
@@ -0,0 +1,3 @@
+0xxx: Grabbed from upstream development.
+1xxx: Possibly relevant for upstream adoption.
+2xxx: Only relevant for official Debian release.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..0d571f4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+%:
+	dh ${@} --with python2
+
+get-orig-source:
+	uscan --noconf --force-download --rename --download-current-version --destdir=..
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /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 0000000..c0198dd
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/infirit/caja-admin/tags .*/V?(\d\S*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mate/caja-admin.git



More information about the pkg-mate-commits mailing list