Alexandros Kosiaris has submitted this change and it was merged. Change subject: giella-core: Initial Debian packaging ......................................................................
giella-core: Initial Debian packaging Bug: T120087 Change-Id: I55ff2ef744eb40f00114150fe4a4af1e42fe2d77 --- A debian/changelog A debian/compat A debian/control A debian/copyright A debian/docs A debian/rules A debian/source/format A debian/watch 8 files changed, 115 insertions(+), 0 deletions(-) Approvals: Alexandros Kosiaris: Verified; Looks good to me, approved diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e0d9e01 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,18 @@ +giella-core (0.1.1~r129227+svn121148-1+wmf1) jessie; urgency=low + + * Rebuilt for Jessie. + + -- Kartik Mistry <[email protected]> Wed, 15 Jun 2016 10:25:23 +0530 + +giella-core (0.1.1~r129227+svn121148-1) unstable; urgency=low + + * Old upstream release - downgrading to the version giella-sme needs + + -- Tino Didriksen <[email protected]> Thu, 03 Mar 2016 08:45:22 +0000 + +giella-core (0.1.1~r129227-1) unstable; urgency=low + + [ Tino Didriksen ] + * Initial release (Closes: #814398) + + -- Kartik Mistry <[email protected]> Thu, 11 Feb 2016 13:57:29 +0530 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..f80f1e6 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: giella-core +Section: science +Priority: optional +Maintainer: Debian Science Team <[email protected]> +Uploaders: Tino Didriksen <[email protected]>, + Kartik Mistry <[email protected]> +Build-Depends: autoconf, + autotools-dev, + debhelper (>= 9.0), + dh-autoreconf, + dh-exec (>= 0.3) +Standards-Version: 3.9.7 +Homepage: http://giellatekno.uit.no/ +Vcs-Git: https://anonscm.debian.org/cgit/debian-science/packages/giella-core.git +Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/giella-core.git + +Package: giella-core +Architecture: all +Depends: python, python3 (>= 3.1), ${misc:Depends}, ${shlibs:Depends} +Description: GTCORE files for building Giellatekno language packages + All Giellatekno language packages build-depends on this package. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b47a418 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,58 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: http://giellatekno.uit.no/ + +Files: * +Copyright: 2005-2016, Giellatekno at The University of Tromsø <[email protected]> +License: GPL-3+ + +Files: keyboards-templates/und/m4/giellatekno.m4 +Copyright: 2011, Divvun/Samediggi/UiT <[email protected]> +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". + +Files: keyboards-templates/und/m4/externals.m4 +Copyright: 2008, Andrew Collier <[email protected]> +License: Other + +License: Other + Copying and distribution of this file, with or without modification, are + permitted in any medium without royalty provided the copyright notice + and this notice are preserved. This file is offered as-is, without any + warranty. + +Files: langs-templates/und/doc/sitemap.xmap langs-templates/und/doc/index.xml + langs-templates/und/doc/skinconf.xml +Copyright: 2005-2016, Giellatekno at The University of Tromsø <[email protected]> +License: Apache-2.0 + +License: Apache-2.0 + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/debian/docs diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..3d5b862 --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +#export DH_VERBOSE=1 +export DH_OPTIONS +export LC_ALL=C.UTF-8 + +%: + dh $@ --fail-missing --with autoreconf + +override_dh_auto_test: + # Skip for now 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..8e1b27c --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=3 +opts=filenamemangle=s/\S*download=//g \ +https://qa.debian.org/cgi-bin/fakeupstream.cgi?upstream=sf/apertium/giella-core \ +.*=giella-core(?:[_\-]v?|)(\d[^\s/]*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) -- To view, visit https://gerrit.wikimedia.org/r/294426 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I55ff2ef744eb40f00114150fe4a4af1e42fe2d77 Gerrit-PatchSet: 1 Gerrit-Project: operations/debs/contenttranslation/giella-core Gerrit-Branch: master Gerrit-Owner: KartikMistry <[email protected]> Gerrit-Reviewer: Alexandros Kosiaris <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
