[numix-gtk-theme] 01/01: Initial release (Closes: #) (LP: #1593038)

Jeremy Bicha jbicha-guest at moszumanska.debian.org
Mon Jun 20 21:07:22 UTC 2016


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

jbicha-guest pushed a commit to branch master
in repository numix-gtk-theme.

commit dec3cfe82631c0ce9b11771481e742ad422efca6
Author: Jeremy Bicha <jbicha at linux.com>
Date:   Mon Jun 20 17:05:37 2016 -0400

    Initial release (Closes: #) (LP: #1593038)
---
 debian/changelog                                   |  5 ++++
 debian/compat                                      |  1 +
 debian/control                                     | 26 +++++++++++++++++
 debian/copyright                                   | 26 +++++++++++++++++
 debian/docs                                        |  1 +
 ...-fix-Makefile-to-only-install-theme-files.patch | 33 ++++++++++++++++++++++
 .../0002-Set-Numix-as-default-icon-theme.patch     | 28 ++++++++++++++++++
 debian/patches/series                              |  2 ++
 debian/rules                                       |  4 +++
 debian/source/format                               |  1 +
 debian/upstream/metadata                           |  7 +++++
 debian/watch                                       |  3 ++
 12 files changed, 137 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9e8bf9c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+numix-gtk-theme (2.6.0-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #) (LP: #1593038)
+
+ -- Jeremy Bicha <jbicha at ubuntu.com>  Mon, 20 Jun 2016 16:56:07 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a3ec778
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: numix-gtk-theme
+Section: x11
+Priority: optional
+Maintainer: MATE Packaging Team <pkg-mate-team at lists.alioth.debian.org>
+Uploaders: Jeremy Bicha <jbicha at ubuntu.com>
+Build-Depends:
+ debhelper (>= 9),
+ libgdk-pixbuf2.0-dev,
+ libglib2.0-bin,
+ libxml2-utils,
+ ruby-sass,
+Standards-Version: 3.9.8
+Homepage: https://satya164.github.io/numix/
+Vcs-Browser: https://anonscm.debian.org/git/pkg-mate/numix-gtk-theme.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-mate/numix-gtk-theme.git
+
+Package: numix-gtk-theme
+Architecture: all
+Depends:
+ gtk2-engines-murrine (>= 0.98),
+ numix-icon-theme,
+ ${misc:Depends},
+Description: modern flat theme from the Numix project
+ Numix is a modern flat theme with a combination of light and dark
+ elements for any GTK-based desktop environment, including GNOME Shell,
+ Unity, MATE, Cinnamon and more.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..19a2910
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,26 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: numix-gtk-theme
+Source: https://github.com/numixproject/numix-gtk-theme
+
+Files: *
+Copyright: Copyright 2013 Satyajit Sahoo <satyajit.happy at gmail.com>
+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 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 package. If not, see
+ <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 3 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..168e5d2
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+CREDITS
diff --git a/debian/patches/0001-fix-Makefile-to-only-install-theme-files.patch b/debian/patches/0001-fix-Makefile-to-only-install-theme-files.patch
new file mode 100644
index 0000000..ff1c4a2
--- /dev/null
+++ b/debian/patches/0001-fix-Makefile-to-only-install-theme-files.patch
@@ -0,0 +1,33 @@
+From 96b45574d931646d64bb926650fdee06ca057e00 Mon Sep 17 00:00:00 2001
+From: Jeremy Bicha <jbicha at linux.com>
+Date: Thu, 16 Jun 2016 18:36:07 -0400
+Subject: [PATCH] fix Makefile to only install theme files
+
+---
+ Makefile | 10 +++++++++-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index ff44382..a1b59bd 100755
+--- a/Makefile
++++ b/Makefile
+@@ -34,7 +34,15 @@ clean:
+ install: all
+ 	install -d -m755 $(INSTALL_DIR)
+ 
+-	for f in *; do cp -pr $$f $(INSTALL_DIR)/; done
++	cp -pr gtk-2.0		$(INSTALL_DIR)
++	cp -pr gtk-3.0		$(INSTALL_DIR)
++	cp -pr gtk-3.20		$(INSTALL_DIR)
++	cp -pr metacity-1	$(INSTALL_DIR)
++	cp -pr openbox-3	$(INSTALL_DIR)
++	cp -pr xfce-notify-4.0	$(INSTALL_DIR)
++	cp -pr xfwm4		$(INSTALL_DIR)
++	cp -pr unity		$(INSTALL_DIR)
++	cp -p  index.theme	$(INSTALL_DIR)
+ 
+ uninstall:
+ 	rm -rf $(INSTALL_DIR)
+-- 
+2.8.1
+
diff --git a/debian/patches/0002-Set-Numix-as-default-icon-theme.patch b/debian/patches/0002-Set-Numix-as-default-icon-theme.patch
new file mode 100644
index 0000000..9e95917
--- /dev/null
+++ b/debian/patches/0002-Set-Numix-as-default-icon-theme.patch
@@ -0,0 +1,28 @@
+From 693123ad0a27631a4907a8e54c90cb0716377ff9 Mon Sep 17 00:00:00 2001
+From: Jeremy Bicha <jbicha at linux.com>
+Date: Thu, 16 Jun 2016 19:46:25 -0400
+Subject: [PATCH] Set Numix as default icon theme for MATE's theme picker
+ (#488)
+
+Choosing a default icon theme is required for Numix to show up in
+MATE's theme picker (mate-appearance-properties)
+
+Please install numix-icon-theme!
+---
+ index.theme | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/index.theme b/index.theme
+index c757888..04e3c00 100755
+--- a/index.theme
++++ b/index.theme
+@@ -6,5 +6,6 @@ Encoding=UTF-8
+ 
+ [X-GNOME-Metatheme]
+ GtkTheme=Numix
++IconTheme=Numix
+ MetacityTheme=Numix
+ ButtonLayout=:minimize,maximize,close
+-- 
+2.8.1
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..5a13dd4
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+0001-fix-Makefile-to-only-install-theme-files.patch
+0002-Set-Numix-as-default-icon-theme.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
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/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..572257d
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,7 @@
+Name: numix-gtk-theme
+Bug-Database: https://github.com/numixproject/numix-gtk-theme/issues
+Bug-Submit: https://github.com/numixproject/numix-gtk-theme/issues/new
+Changelog: https://github.com/numixproject/numix-gtk-theme/commits/master
+Donation: https://numixproject.org/
+Repository: https://github.com/numixproject/numix-gtk-theme.git
+Repository-Browse: https://github.com/numixproject/numix-gtk-theme
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3422a82
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+https://github.com/numixproject/numix-gtk-theme/tags \
+ .*/archive/v?([0-9][0-9\.]*)@ARCHIVE_EXT@

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mate/numix-gtk-theme.git



More information about the pkg-mate-commits mailing list