Commit b106a6499b72d8a045a675c9558db2ffb64a9bb7

Authored by Tiago Bortoletto Vaz
1 parent cfc42d5b
Exists in master and in 1 other branch add_vagrant

Adding first debian/* files for packaging purpose.

debian/changelog 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +apprecommender (0.1) unstable; urgency=low
  2 +
  3 + * Initial Release. Closes #
  4 +
  5 + -- Tiago Bortoletto Vaz <tiago@debian.org> Thu, 22 Sep 2011 11:45:13 -0300
... ...
debian/compat 0 → 100644
... ... @@ -0,0 +1 @@
  1 +5
... ...
debian/control 0 → 100644
... ... @@ -0,0 +1,27 @@
  1 +Source: apprecommender
  2 +Section: utils
  3 +Priority: extra
  4 +Maintainer: Tiago Bortoletto Vaz <tiago@debian.org>
  5 +Uploaders: Tássia Camões Araújo <tassia@gmail.com>
  6 +Dm-Upload-Allowed: yes
  7 +Build-Depends: debhelper (>= 7)
  8 +Standards-Version: 3.9.2
  9 +Homepage: http://recommender.debian.net
  10 +Vcs-Browser: https://github.com/tassia/AppRecommender
  11 +Vcs-Git: git://github.com/tassia/AppRecommender.git
  12 +
  13 +Package: apprecommender
  14 +Architecture: all
  15 +Depends: python, python-xapian, python-apt, python-cluster, python-simplejson,
  16 + python-numpy, apt-xapian-index, app-install-data, python-xdg
  17 +Recommends: python-webpy
  18 +Description: Application recommender for GNU/Linux systems
  19 + The user provides a set of applications installed in her/his system and the
  20 + recommender suggests a set of programs that she/he might also be interested in,
  21 + based on the profile deduced from the his previous choices and other similar
  22 + users choices. The recommendations are composed using classification and
  23 + information retrieval techniques using debtags, apt-xapian-index, Popcon and
  24 + UDD as data sources.
  25 + .
  26 + AppRecommender can be called from command line or be delivered as a web
  27 + service.
... ...
debian/copyright 0 → 100644
... ... @@ -0,0 +1,23 @@
  1 +Format: http://dep.debian.net/deps/dep5/
  2 +Upstream-Name: Tássia Camões Araújo
  3 +Source: https://github.com/tassia/AppRecommender
  4 +
  5 +Files: *
  6 +Copyright: Copyright 2011 Tássia Camões Araújo <tassia@gmail.com>
  7 +License: GPL-3+
  8 + This program is free software: you can redistribute it and/or modify
  9 + it under the terms of the GNU General Public License as published by
  10 + the Free Software Foundation, either version 3 of the License, or
  11 + (at your option) any later version.
  12 + .
  13 + This program is distributed in the hope that it will be useful,
  14 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  15 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16 + GNU General Public License for more details.
  17 + .
  18 + You should have received a copy of the GNU General Public License
  19 + along with this program. If not, see <http://www.gnu.org/licenses/>.
  20 + .
  21 + On Debian systems, the full text of the GNU General Public
  22 + License version 3 can be found in the file
  23 + `/usr/share/common-licenses/GPL-3'.
... ...
debian/rules 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/usr/bin/make -f
  2 +%:
  3 + dh $@
... ...
debian/source/format 0 → 100644
... ... @@ -0,0 +1 @@
  1 +3.0 (native)
... ...