From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 766FD1381F3 for ; Fri, 19 Jul 2013 16:20:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEA9EE0982; Fri, 19 Jul 2013 16:20:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54602E0982 for ; Fri, 19 Jul 2013 16:20:15 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5961233E917 for ; Fri, 19 Jul 2013 16:20:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9A31AE5465 for ; Fri, 19 Jul 2013 16:20:11 +0000 (UTC) From: "Jauhien Piatlicki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jauhien Piatlicki" Message-ID: <1374250780.4ab605ba171c4bd31556a17b1e65e00f18de4528.jauhien@gentoo> Subject: [gentoo-commits] proj/g-sorcery:master commit in: /, bin/ X-VCS-Repository: proj/g-sorcery X-VCS-Files: bin/gs-ctan setup.py X-VCS-Directories: / bin/ X-VCS-Committer: jauhien X-VCS-Committer-Name: Jauhien Piatlicki X-VCS-Revision: 4ab605ba171c4bd31556a17b1e65e00f18de4528 X-VCS-Branch: master Date: Fri, 19 Jul 2013 16:20:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0b0a5c27-41de-468a-a31f-b4c0a02c8fc4 X-Archives-Hash: 772c2eb4d039642fc70811fa095aac4f commit: 4ab605ba171c4bd31556a17b1e65e00f18de4528 Author: Jauhien Piatlicki (jauhien) gmail com> AuthorDate: Fri Jul 19 16:19:40 2013 +0000 Commit: Jauhien Piatlicki gmail com> CommitDate: Fri Jul 19 16:19:40 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/g-sorcery.git;a=commit;h=4ab605ba install CTAN backend --- bin/gs-ctan | 3 +++ setup.py | 11 +++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bin/gs-ctan b/bin/gs-ctan new file mode 100755 index 0000000..7b1612d --- /dev/null +++ b/bin/gs-ctan @@ -0,0 +1,3 @@ +#!/bin/bash + +g-sorcery gs-ctan $@ diff --git a/setup.py b/setup.py index 1353926..aa8e660 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,14 @@ setup(name = 'g-sorcery', description = 'g-sorcery framework for automated ebuild generators', author = 'Jauhien Piatlicki', author_email = 'piatlicki@gmail.com', - packages = ['g_sorcery', 'g_elpa'], - package_data = {'g_elpa': ['data/*']}, - scripts = ['bin/g-sorcery', 'bin/g-elpa'], + packages = ['g_sorcery', 'g_elpa', 'gs_ctan'], + package_data = {'g_elpa': ['data/*'], + 'gs_ctan': ['data/*']}, + scripts = ['bin/g-sorcery', 'bin/g-elpa', 'bin/gs-ctan'], data_files = [('/etc/g-sorcery/', ['g-elpa.json']), + ('/etc/g-sorcery/', ['gs-ctan.json']), ('/etc/g-sorcery/', ['g-sorcery.cfg']), - ('/etc/layman/overlays/', ['g-elpa-overlays.xml'])], + ('/etc/layman/overlays/', ['g-elpa-overlays.xml']), + ('/etc/layman/overlays/', ['gs-ctan-overlays.xml'])], license = 'GPL', )