]> git.ipfire.org Git - people/stevee/pakfire.git/commitdiff
Add copyright information to all files.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 6 Aug 2011 15:57:30 +0000 (17:57 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 6 Aug 2011 15:57:30 +0000 (17:57 +0200)
64 files changed:
pakfire/__init__.py
pakfire/actions.py
pakfire/api.py
pakfire/base.py
pakfire/builder.py
pakfire/chroot.py
pakfire/cli.py
pakfire/compress.py
pakfire/config.py
pakfire/constants.py
pakfire/distro.py
pakfire/downloader.py
pakfire/errors.py
pakfire/i18n.py
pakfire/logger.py
pakfire/packages/__init__.py
pakfire/packages/base.py
pakfire/packages/binary.py
pakfire/packages/file.py
pakfire/packages/installed.py
pakfire/packages/make.py
pakfire/packages/packager.py
pakfire/packages/solv.py
pakfire/packages/source.py
pakfire/packages/virtual.py
pakfire/repository/__init__.py
pakfire/repository/base.py
pakfire/repository/cache.py
pakfire/repository/database.py
pakfire/repository/index.py
pakfire/repository/installed.py
pakfire/repository/local.py
pakfire/repository/metadata.py
pakfire/repository/remote.py
pakfire/satsolver.py
pakfire/server.py
pakfire/transaction.py
pakfire/util.py
po/POTFILES.in
po/pakfire.pot
src/_pakfiremodule.c
src/config.h
src/pool.c
src/pool.h
src/problem.c
src/problem.h
src/relation.c
src/relation.h
src/repo.c
src/repo.h
src/request.c
src/request.h
src/solution.c
src/solution.h
src/solvable.c
src/solvable.h
src/solver.c
src/solver.h
src/step.c
src/step.h
src/transaction.c
src/transaction.h
src/util.c
src/util.h

index c5b3a6659162d8d0ac85be251ff05e59660c5ea2..bddd5129af7396ed75733a75747a7acf93a281ba 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from base import Pakfire
 
index 9952dcb3c0966bce71d0e95d3421eca7056123c6..9507eb781d98b920bd1806311c81dcfeec03dbf6 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 
index 7274b7f1002b9246d92ca5177ac599fb58554fdf..983c4506d2de4776755795b07e680d2fe37b3efa 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import base
 
index eb8d315b62cec73b7d1dbfa885cc881e535dcc8f..545a382ec8fd23711993390bebc24051e2cc879b 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 401b0bdf949f7f97c7a1b947fae828078171bad7..8d46926912638854f3528fb328d781655d2d895b 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import fcntl
 import grp
index d41a03bb9a134702c0a2f206f21fca42bb5cca1b..89af7cf76715484400362a6e773268d12ef87bdc 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import ctypes
 import fcntl
index 774b2f5698770cd1445aec9b2197b6ccc399383f..1d4de7ced32430bd85d41b8215247ea42d195b6b 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import argparse
 import sys
index 19cfb39d71a8f56476c75386f7d66db580c9cca0..57d0266c68e2f791fc5f4b67609c9227edad106e 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import lzma
 import os
index 74280d8564a6c5a189032d8d740a86070703379b..fa89cfb99c2296228d647e3dd08596689107c391 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 2614448208cfc8b2d280986224613eef5457eba6..37229f8bb611be30647934c43ffa86292788475a 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import os.path
 
index 1372eb438e13dd60f840b01d559732ef0bc29962..04ed243cd4f5d7a9637ae31a34152f20ec79d96e 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 3401c6b86416f26127dcbc27f2e66359bac43d33..5290e558dee94ee8925ce715c553d0c35721e3b1 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import json
 import logging
index 3c5b9fe1652718d4abb397771b2031bf0eccf742..9bc8d68d86ef026fb9aa796a1ecfb50222377a5f 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from i18n import _
 
index dbcb8ca132229d7111439af557b942f4a00b4110..22bb9839c85beb5937e66b66a576bc65eb8eccf8 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 """
        The translation process of all strings is done in here.
index bf29e6cdabced3e16f26f1276c7954bd71d39ef6..ac453c28dd9f6a05a4d98fd6ae13df0b88cc721b 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import time
index 6b7ff18984a5d5efdecc2c1bbb6efa9061ddbe05..f890f26ff11ae6791412eb5980b9528ba049fc87 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import tarfile
 
index 4d1f7fd482c587d85d09199d1dce6d61f2d7b540..542f48870beb73614b7298d431cb30be79672c65 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import datetime
 import logging
index d963f5e38107cadbab452d056e6fc42e37066584..bd751128dc99f75f09b8a2553f8197f60e12654b 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from file import FilePackage
 
index 759d03385862fca30caee000db2cb275a4b20005..7c19c9fb1841fca38447b1ac3702db0a29157a85 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 96f27542512a58dcfea139d2270217041d34d814..1cff99beaf18c0365501d9e9df920c85566f44dd 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import os
 
index fb2dbeb2890aaa452f39dd510e9b6be9dc6439ad..34f6c16a2c0e4dc6de92df776617e226a8a312b6 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import os
 import tarfile
index eecd17c95b75ed8741b11d8a0c3c40af84ae4078..28539b15cb8490270d0197a99359e8cb0c95151d 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import glob
 import logging
index 2cfe57aa4ca2d92e443ff7621f77d80ac087de77..5f2637a5e4a7fa8b43189779982d6a8e0341ed27 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import os
 import re
index fcb402b92802fca89db38255090dd284616aa010..3defa3ea86bac36ad709e0db194db8ad6781808c 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from file import FilePackage
 
index 55fa4ee5f77e49e81de55dd57d4c3cd11dc2c154..e8de482ab59531c52e76f4ee22438dd8645e45da 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from base import Package
 
index 06968e6892c9312e88e855f820e3c1e075113c01..a6dc69c296b75af6213a33fbc0fd066d89226793 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 
index 276150bf1eeac80c4e5b4ce38066094a395fb813..d6d760b3db4de93b617f574aa1a09ec99323abd5 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import fnmatch
 import glob
index 948eb383152c66f9d59926212f814c89e6bf8f1a..3d6665d3feba339f8e4a96b8e0e7bb9207f9972c 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import os
 import stat
index 4f21b74063b9b617f598d2ae13c0990940a64dec..bd9b8e25f89ec4a5ad64e0d08a8a51b5fe54761e 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 0155a18b99c48846da7f1d296ececb798d1b5a45..55e2bb1458329d8de098f5d2d6e0c59f398eb3de 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 89a496db94703c2e4160e99690c91af82dd1207f..95f764f4d62d8e9457171df793d35d807166bcf5 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import index
 
index c7d73befb84218dc850a1e71eee3dbe2e35c3c29..5831c4bb474f1aaa8968c8c3fecaa2ac302ccd69 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index f0e89389d6fd4a4c2a20ff3d558dbb1489f4a5e6..9029460b0d8f70c621f9ab6a514406a0fb2308af 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import json
 import time
index a00293eb116bc26849cb958a158d1e2ff4da4586..617d5616d29e32d1b40b3789f587925273008bfd 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index f358abe39bb902ef195c41595861a4364ac5ced4..75ca831c54cfe53b316840fea58b6b1b6219c6e4 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 
index 4a5c0ec10139dae2dfa0900aa0a5a529408a9276..14e7f158a8e58285482066cbd03a06a6027cd3a9 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import hashlib
 import logging
index c60d50b480f4c53a41eaf2558d1289edc3f6451f..ed1362b1e1a2eb581134a383f7eb34b0c7f0e439 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 import logging
 import os
index 44fd454a714fb8ac2e04fdb82e9e6247dad0a30d..43d3f61a0492b5dff295cfc5110b6701803c81b1 100644 (file)
@@ -1,4 +1,23 @@
 #!/usr/bin/python
+###############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
 
 from __future__ import division
 
index 2bb1fe4f31b78d9ec08abc26c4f6f002fe38e950..5faa6cb49689977e59cb86f8a306b8ceeee00a57 100644 (file)
@@ -47,6 +47,5 @@ src/solution.c
 src/solvable.c
 src/solver.c
 src/step.c
-src/test.py
 src/transaction.c
 src/util.c
index 9925c7dc76a5002dcced39ccb774ed9ea65629e0..865f4bc3f2d5e7cf0b8d72dfa5da65944dc19410 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-08-06 15:48+0200\n"
+"POT-Creation-Date: 2011-08-06 17:57+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,345 +17,345 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../pakfire/actions.py:101 ../pakfire/actions.py:158
+#: ../pakfire/actions.py:120 ../pakfire/actions.py:177
 msgid "Installing"
 msgstr ""
 
-#: ../pakfire/actions.py:111
+#: ../pakfire/actions.py:130
 msgid "Updating"
 msgstr ""
 
-#: ../pakfire/actions.py:125
+#: ../pakfire/actions.py:144
 msgid "Removing"
 msgstr ""
 
 #. Cleaning up leftover files and stuff.
-#: ../pakfire/actions.py:143
+#: ../pakfire/actions.py:162
 msgid "Cleanup"
 msgstr ""
 
-#: ../pakfire/actions.py:168
+#: ../pakfire/actions.py:187
 msgid "Downgrading"
 msgstr ""
 
-#: ../pakfire/base.py:167 ../pakfire/base.py:209 ../pakfire/base.py:240
-#: ../pakfire/base.py:262
+#: ../pakfire/base.py:186 ../pakfire/base.py:228 ../pakfire/base.py:259
+#: ../pakfire/base.py:281
 msgid "Nothing to do"
 msgstr ""
 
-#: ../pakfire/base.py:195
+#: ../pakfire/base.py:214
 msgid "There are no packages to install."
 msgstr ""
 
-#: ../pakfire/base.py:458
+#: ../pakfire/base.py:477
 msgid "Everything is fine."
 msgstr ""
 
-#: ../pakfire/builder.py:259
+#: ../pakfire/builder.py:278
 #, python-format
 msgid "Extracting: %s (source)"
 msgstr ""
 
-#: ../pakfire/cli.py:23
+#: ../pakfire/cli.py:42
 msgid "Pakfire command line interface."
 msgstr ""
 
-#: ../pakfire/cli.py:30
+#: ../pakfire/cli.py:49
 msgid "The path where pakfire should operate in."
 msgstr ""
 
-#: ../pakfire/cli.py:86
+#: ../pakfire/cli.py:105
 msgid "Enable verbose output."
 msgstr ""
 
-#: ../pakfire/cli.py:89
+#: ../pakfire/cli.py:108
 msgid "Path to a configuration file to load."
 msgstr ""
 
-#: ../pakfire/cli.py:92
+#: ../pakfire/cli.py:111
 msgid "Disable a repository temporarily."
 msgstr ""
 
-#: ../pakfire/cli.py:95
+#: ../pakfire/cli.py:114
 msgid "Enable a repository temporarily."
 msgstr ""
 
-#: ../pakfire/cli.py:98
+#: ../pakfire/cli.py:117
 msgid "Run pakfire in offline mode."
 msgstr ""
 
-#: ../pakfire/cli.py:103
+#: ../pakfire/cli.py:122
 msgid "Install one or more packages to the system."
 msgstr ""
 
-#: ../pakfire/cli.py:105
+#: ../pakfire/cli.py:124
 msgid "Give name of at least one package to install."
 msgstr ""
 
-#: ../pakfire/cli.py:111
+#: ../pakfire/cli.py:130
 msgid "Install one or more packages from the filesystem."
 msgstr ""
 
-#: ../pakfire/cli.py:113
+#: ../pakfire/cli.py:132
 msgid "Give filename of at least one package."
 msgstr ""
 
-#: ../pakfire/cli.py:119
+#: ../pakfire/cli.py:138
 msgid "Remove one or more packages from the system."
 msgstr ""
 
-#: ../pakfire/cli.py:121
+#: ../pakfire/cli.py:140
 msgid "Give name of at least one package to remove."
 msgstr ""
 
-#: ../pakfire/cli.py:127
+#: ../pakfire/cli.py:146
 msgid "Update the whole system or one specific package."
 msgstr ""
 
-#: ../pakfire/cli.py:129
+#: ../pakfire/cli.py:148
 msgid "Give a name of a package to update or leave emtpy for all."
 msgstr ""
 
-#: ../pakfire/cli.py:135
+#: ../pakfire/cli.py:154
 msgid "Print some information about the given package(s)."
 msgstr ""
 
-#: ../pakfire/cli.py:137
+#: ../pakfire/cli.py:156
 msgid "Give at least the name of one package."
 msgstr ""
 
-#: ../pakfire/cli.py:143
+#: ../pakfire/cli.py:162
 msgid "Search for a given pattern."
 msgstr ""
 
-#: ../pakfire/cli.py:145
+#: ../pakfire/cli.py:164
 msgid "A pattern to search for."
 msgstr ""
 
-#: ../pakfire/cli.py:151
+#: ../pakfire/cli.py:170
 msgid "Get a list of packages that provide a given file or feature."
 msgstr ""
 
-#: ../pakfire/cli.py:153
+#: ../pakfire/cli.py:172
 msgid "File or feature to search for."
 msgstr ""
 
-#: ../pakfire/cli.py:159
+#: ../pakfire/cli.py:178
 msgid "Get list of packages that belong to the given group."
 msgstr ""
 
-#: ../pakfire/cli.py:161
+#: ../pakfire/cli.py:180
 msgid "Group name to search for."
 msgstr ""
 
-#: ../pakfire/cli.py:167
+#: ../pakfire/cli.py:186
 msgid "Install all packages that belong to the given group."
 msgstr ""
 
-#: ../pakfire/cli.py:169
+#: ../pakfire/cli.py:188
 msgid "Group name."
 msgstr ""
 
-#: ../pakfire/cli.py:175
+#: ../pakfire/cli.py:194
 msgid "List all currently enabled repositories."
 msgstr ""
 
-#: ../pakfire/cli.py:179
+#: ../pakfire/cli.py:198
 msgid "Cleanup commands."
 msgstr ""
 
-#: ../pakfire/cli.py:187
+#: ../pakfire/cli.py:206
 msgid "Cleanup all temporary files."
 msgstr ""
 
-#: ../pakfire/cli.py:193
+#: ../pakfire/cli.py:212
 msgid "Check the system for any errors."
 msgstr ""
 
-#: ../pakfire/cli.py:253 ../pakfire/transaction.py:175
+#: ../pakfire/cli.py:272 ../pakfire/transaction.py:194
 msgid "Repository"
 msgstr ""
 
-#: ../pakfire/cli.py:253
+#: ../pakfire/cli.py:272
 msgid "Enabled"
 msgstr ""
 
-#: ../pakfire/cli.py:253
+#: ../pakfire/cli.py:272
 msgid "Priority"
 msgstr ""
 
-#: ../pakfire/cli.py:253
+#: ../pakfire/cli.py:272
 msgid "Packages"
 msgstr ""
 
-#: ../pakfire/cli.py:265
+#: ../pakfire/cli.py:284
 msgid "Cleaning up everything..."
 msgstr ""
 
-#: ../pakfire/cli.py:276
+#: ../pakfire/cli.py:295
 msgid "Pakfire builder command line interface."
 msgstr ""
 
-#: ../pakfire/cli.py:329
+#: ../pakfire/cli.py:348
 msgid "Update the package indexes."
 msgstr ""
 
-#: ../pakfire/cli.py:335
+#: ../pakfire/cli.py:354
 msgid "Build one or more packages."
 msgstr ""
 
-#: ../pakfire/cli.py:337
+#: ../pakfire/cli.py:356
 msgid "Give name of at least one package to build."
 msgstr ""
 
-#: ../pakfire/cli.py:341
+#: ../pakfire/cli.py:360
 msgid "Build the package for the given architecture."
 msgstr ""
 
-#: ../pakfire/cli.py:343 ../pakfire/cli.py:369
+#: ../pakfire/cli.py:362 ../pakfire/cli.py:388
 msgid "Path were the output files should be copied to."
 msgstr ""
 
-#: ../pakfire/cli.py:345 ../pakfire/cli.py:358
+#: ../pakfire/cli.py:364 ../pakfire/cli.py:377
 msgid "Mode to run in. Is either 'release' or 'development' (default)."
 msgstr ""
 
-#: ../pakfire/cli.py:350
+#: ../pakfire/cli.py:369
 msgid "Go into a shell."
 msgstr ""
 
-#: ../pakfire/cli.py:352
+#: ../pakfire/cli.py:371
 msgid "Give name of a package."
 msgstr ""
 
-#: ../pakfire/cli.py:356
+#: ../pakfire/cli.py:375
 msgid "Emulated architecture in the shell."
 msgstr ""
 
-#: ../pakfire/cli.py:363
+#: ../pakfire/cli.py:382
 msgid "Generate a source package."
 msgstr ""
 
-#: ../pakfire/cli.py:365
+#: ../pakfire/cli.py:384
 msgid "Give name(s) of a package(s)."
 msgstr ""
 
-#: ../pakfire/cli.py:441
+#: ../pakfire/cli.py:460
 msgid "Pakfire server command line interface."
 msgstr ""
 
-#: ../pakfire/cli.py:478
+#: ../pakfire/cli.py:497
 msgid "Request a build job from the server."
 msgstr ""
 
-#: ../pakfire/cli.py:484
+#: ../pakfire/cli.py:503
 msgid "Send a keepalive to the server."
 msgstr ""
 
-#: ../pakfire/cli.py:491
+#: ../pakfire/cli.py:510
 msgid "Update all repositories."
 msgstr ""
 
-#: ../pakfire/cli.py:497
+#: ../pakfire/cli.py:516
 msgid "Repository management commands."
 msgstr ""
 
-#: ../pakfire/cli.py:505
+#: ../pakfire/cli.py:524
 msgid "Create a new repository index."
 msgstr ""
 
-#: ../pakfire/cli.py:506
+#: ../pakfire/cli.py:525
 msgid "Path to the packages."
 msgstr ""
 
-#: ../pakfire/cli.py:507
+#: ../pakfire/cli.py:526
 msgid "Path to input packages."
 msgstr ""
 
-#: ../pakfire/errors.py:8
+#: ../pakfire/errors.py:27
 msgid "An unhandled error occured."
 msgstr ""
 
-#: ../pakfire/errors.py:29
+#: ../pakfire/errors.py:48
 msgid "One or more dependencies could not been resolved."
 msgstr ""
 
-#: ../pakfire/errors.py:44
+#: ../pakfire/errors.py:63
 msgid ""
 "The requested action cannot be done on offline mode.\n"
 "Please connect your system to the network, remove --offline from the command "
 "line and try again."
 msgstr ""
 
-#: ../pakfire/packages/base.py:70
+#: ../pakfire/packages/base.py:89
 msgid "Name"
 msgstr ""
 
-#: ../pakfire/packages/base.py:71 ../pakfire/transaction.py:174
+#: ../pakfire/packages/base.py:90 ../pakfire/transaction.py:193
 msgid "Arch"
 msgstr ""
 
-#: ../pakfire/packages/base.py:72 ../pakfire/transaction.py:174
+#: ../pakfire/packages/base.py:91 ../pakfire/transaction.py:193
 msgid "Version"
 msgstr ""
 
-#: ../pakfire/packages/base.py:73
+#: ../pakfire/packages/base.py:92
 msgid "Release"
 msgstr ""
 
-#: ../pakfire/packages/base.py:74 ../pakfire/transaction.py:175
+#: ../pakfire/packages/base.py:93 ../pakfire/transaction.py:194
 msgid "Size"
 msgstr ""
 
-#: ../pakfire/packages/base.py:75
+#: ../pakfire/packages/base.py:94
 msgid "Repo"
 msgstr ""
 
-#: ../pakfire/packages/base.py:76
+#: ../pakfire/packages/base.py:95
 msgid "Summary"
 msgstr ""
 
-#: ../pakfire/packages/base.py:77
+#: ../pakfire/packages/base.py:96
 msgid "Groups"
 msgstr ""
 
-#: ../pakfire/packages/base.py:78
+#: ../pakfire/packages/base.py:97
 msgid "URL"
 msgstr ""
 
-#: ../pakfire/packages/base.py:79
+#: ../pakfire/packages/base.py:98
 msgid "License"
 msgstr ""
 
-#: ../pakfire/packages/base.py:82
+#: ../pakfire/packages/base.py:101
 msgid "Description"
 msgstr ""
 
-#: ../pakfire/packages/base.py:88
+#: ../pakfire/packages/base.py:107
 msgid "UUID"
 msgstr ""
 
-#: ../pakfire/packages/base.py:89
+#: ../pakfire/packages/base.py:108
 msgid "Build ID"
 msgstr ""
 
-#: ../pakfire/packages/base.py:90
+#: ../pakfire/packages/base.py:109
 msgid "Build date"
 msgstr ""
 
-#: ../pakfire/packages/base.py:91
+#: ../pakfire/packages/base.py:110
 msgid "Build host"
 msgstr ""
 
-#: ../pakfire/packages/base.py:93
+#: ../pakfire/packages/base.py:112
 msgid "Provides"
 msgstr ""
 
-#: ../pakfire/packages/base.py:98
+#: ../pakfire/packages/base.py:117
 msgid "Requires"
 msgstr ""
 
-#: ../pakfire/repository/index.py:201
+#: ../pakfire/repository/index.py:220
 #, python-format
 msgid ""
 "There is no metadata for the repository '%s' and we cannot download any "
@@ -363,130 +363,130 @@ msgid ""
 "repository."
 msgstr ""
 
-#: ../pakfire/repository/index.py:206
+#: ../pakfire/repository/index.py:225
 #, python-format
 msgid ""
 "I cannot be forced to re-download the metadata for the repository '%s' when "
 "running in offline mode."
 msgstr ""
 
-#: ../pakfire/repository/index.py:243
+#: ../pakfire/repository/index.py:262
 msgid ""
 "Your repository metadata is outdated  and a new version needs to be "
 "downloaded."
 msgstr ""
 
-#: ../pakfire/repository/index.py:249
+#: ../pakfire/repository/index.py:268
 #, python-format
 msgid "%s: package database"
 msgstr ""
 
 #. Create progress bar.
-#: ../pakfire/repository/index.py:337
+#: ../pakfire/repository/index.py:356
 #, python-format
 msgid "Loading from %s"
 msgstr ""
 
 #. Add all packages from the database to the index.
-#: ../pakfire/repository/index.py:390
+#: ../pakfire/repository/index.py:409
 msgid "Loading installed packages"
 msgstr ""
 
-#: ../pakfire/repository/remote.py:87
+#: ../pakfire/repository/remote.py:106
 #, python-format
 msgid "Cannot download this file in offline mode: %s"
 msgstr ""
 
-#: ../pakfire/satsolver.py:129
+#: ../pakfire/satsolver.py:148
 msgid "The solver returned one problem:"
 msgstr ""
 
 #. Ask the user if he or she want to modify the request. If not, just exit.
-#: ../pakfire/satsolver.py:145
+#: ../pakfire/satsolver.py:164
 msgid "Do you want to manually alter the request?"
 msgstr ""
 
-#: ../pakfire/satsolver.py:148
+#: ../pakfire/satsolver.py:167
 msgid "You can now try to satisfy the solver by modifying your request."
 msgstr ""
 
-#: ../pakfire/satsolver.py:153
+#: ../pakfire/satsolver.py:172
 msgid "Which problem to you want to resolve?"
 msgstr ""
 
-#: ../pakfire/satsolver.py:155
+#: ../pakfire/satsolver.py:174
 msgid "Press enter to try to re-solve the request."
 msgstr ""
 
-#: ../pakfire/satsolver.py:186
+#: ../pakfire/satsolver.py:205
 #, python-format
 msgid "    Solution: %s"
 msgstr ""
 
-#: ../pakfire/satsolver.py:195
+#: ../pakfire/satsolver.py:214
 msgid "    Solutions:"
 msgstr ""
 
-#: ../pakfire/transaction.py:109
+#: ../pakfire/transaction.py:128
 msgid "Downloading packages:"
 msgstr ""
 
-#: ../pakfire/transaction.py:174
+#: ../pakfire/transaction.py:193
 msgid "Package"
 msgstr ""
 
-#: ../pakfire/transaction.py:179
+#: ../pakfire/transaction.py:198
 msgid "Installing:"
 msgstr ""
 
-#: ../pakfire/transaction.py:180
+#: ../pakfire/transaction.py:199
 msgid "Reinstalling:"
 msgstr ""
 
-#: ../pakfire/transaction.py:181
+#: ../pakfire/transaction.py:200
 msgid "Updating:"
 msgstr ""
 
-#: ../pakfire/transaction.py:182
+#: ../pakfire/transaction.py:201
 msgid "Downgrading:"
 msgstr ""
 
-#: ../pakfire/transaction.py:183
+#: ../pakfire/transaction.py:202
 msgid "Removing:"
 msgstr ""
 
-#: ../pakfire/transaction.py:189
+#: ../pakfire/transaction.py:208
 msgid "Transaction Summary"
 msgstr ""
 
-#: ../pakfire/transaction.py:196
+#: ../pakfire/transaction.py:215
 msgid "package"
 msgstr ""
 
-#: ../pakfire/transaction.py:202
+#: ../pakfire/transaction.py:221
 #, python-format
 msgid "Total download size: %s"
 msgstr ""
 
-#: ../pakfire/transaction.py:206
+#: ../pakfire/transaction.py:225
 #, python-format
 msgid "Installed size: %s"
 msgstr ""
 
-#: ../pakfire/transaction.py:208
+#: ../pakfire/transaction.py:227
 #, python-format
 msgid "Freed size: %s"
 msgstr ""
 
-#: ../pakfire/transaction.py:217
+#: ../pakfire/transaction.py:236
 msgid "Is this okay?"
 msgstr ""
 
-#: ../pakfire/transaction.py:223
+#: ../pakfire/transaction.py:242
 msgid "Running transaction"
 msgstr ""
 
-#: ../pakfire/util.py:46
+#: ../pakfire/util.py:65
 #, python-format
 msgid "%s [y/N]"
 msgstr ""
@@ -517,172 +517,172 @@ msgstr ""
 msgid "Further description:"
 msgstr ""
 
-#: ../src/problem.c:140
+#: ../src/problem.c:159
 #, c-format
 msgid "%s does not belong to a distupgrade repository"
 msgstr ""
 
-#: ../src/problem.c:147
+#: ../src/problem.c:166
 #, c-format
 msgid "%s has inferior architecture"
 msgstr ""
 
-#: ../src/problem.c:154
+#: ../src/problem.c:173
 #, c-format
 msgid "problem with installed package %s"
 msgstr ""
 
-#: ../src/problem.c:160
+#: ../src/problem.c:179
 #, c-format
 msgid "conflicting requests"
 msgstr ""
 
-#: ../src/problem.c:165
+#: ../src/problem.c:184
 #, c-format
 msgid "nothing provides requested %s"
 msgstr ""
 
-#: ../src/problem.c:171
+#: ../src/problem.c:190
 #, c-format
 msgid "some dependency problem"
 msgstr ""
 
-#: ../src/problem.c:176
+#: ../src/problem.c:195
 #, c-format
 msgid "package %s is not installable"
 msgstr ""
 
-#: ../src/problem.c:183
+#: ../src/problem.c:202
 #, c-format
 msgid "nothing provides %s needed by %s"
 msgstr ""
 
-#: ../src/problem.c:190
+#: ../src/problem.c:209
 #, c-format
 msgid "cannot install both %s and %s"
 msgstr ""
 
-#: ../src/problem.c:197
+#: ../src/problem.c:216
 #, c-format
 msgid "package %s conflicts with %s provided by %s"
 msgstr ""
 
-#: ../src/problem.c:205
+#: ../src/problem.c:224
 #, c-format
 msgid "package %s obsoletes %s provided by %s"
 msgstr ""
 
-#: ../src/problem.c:213
+#: ../src/problem.c:232
 #, c-format
 msgid "installed package %s obsoletes %s provided by %s"
 msgstr ""
 
-#: ../src/problem.c:221
+#: ../src/problem.c:240
 #, c-format
 msgid "package %s implicitely obsoletes %s provided by %s"
 msgstr ""
 
-#: ../src/problem.c:229
+#: ../src/problem.c:248
 #, c-format
 msgid "package %s requires %s, but none of the providers can be installed"
 msgstr ""
 
-#: ../src/problem.c:236
+#: ../src/problem.c:255
 #, c-format
 msgid "package %s conflicts with %s provided by itself"
 msgstr ""
 
-#: ../src/problem.c:245
+#: ../src/problem.c:264
 #, c-format
 msgid "bad rule type"
 msgstr ""
 
-#: ../src/solution.c:67
+#: ../src/solution.c:86
 #, c-format
 msgid "do not keep %s installed"
 msgstr ""
 
-#: ../src/solution.c:70
+#: ../src/solution.c:89
 #, c-format
 msgid "do not install a solvable %s"
 msgstr ""
 
-#: ../src/solution.c:73
+#: ../src/solution.c:92
 #, c-format
 msgid "do not install %s"
 msgstr ""
 
-#: ../src/solution.c:79
+#: ../src/solution.c:98
 #, c-format
 msgid "do not forbid installation of %s"
 msgstr ""
 
-#: ../src/solution.c:82
+#: ../src/solution.c:101
 #, c-format
 msgid "do not deinstall all solvables %s"
 msgstr ""
 
-#: ../src/solution.c:85
+#: ../src/solution.c:104
 #, c-format
 msgid "do not deinstall %s"
 msgstr ""
 
-#: ../src/solution.c:90
+#: ../src/solution.c:109
 #, c-format
 msgid "do not install most recent version of %s"
 msgstr ""
 
-#: ../src/solution.c:95
+#: ../src/solution.c:114
 #, c-format
 msgid "do not lock %s"
 msgstr ""
 
-#: ../src/solution.c:100
+#: ../src/solution.c:119
 #, c-format
 msgid "do something different"
 msgstr ""
 
-#: ../src/solution.c:107
+#: ../src/solution.c:126
 #, c-format
 msgid "keep %s despite the inferior architecture"
 msgstr ""
 
-#: ../src/solution.c:110
+#: ../src/solution.c:129
 #, c-format
 msgid "install %s despite the inferior architecture"
 msgstr ""
 
-#: ../src/solution.c:116
+#: ../src/solution.c:135
 #, c-format
 msgid "keep obsolete %s"
 msgstr ""
 
-#: ../src/solution.c:119
+#: ../src/solution.c:138
 #, c-format
 msgid "install %s from excluded repository"
 msgstr ""
 
-#: ../src/solution.c:131
+#: ../src/solution.c:150
 #, c-format
 msgid "allow downgrade of %s to %s"
 msgstr ""
 
-#: ../src/solution.c:135
+#: ../src/solution.c:154
 #, c-format
 msgid "allow architecture change of %s to %s"
 msgstr ""
 
-#: ../src/solution.c:140
+#: ../src/solution.c:159
 #, c-format
 msgid "allow vendor change from '%s' (%s) to '%s' (%s)"
 msgstr ""
 
-#: ../src/solution.c:144
+#: ../src/solution.c:163
 #, c-format
 msgid "allow vendor change from '%s' (%s) to no vendor (%s)"
 msgstr ""
 
-#: ../src/solution.c:150
+#: ../src/solution.c:169
 #, c-format
 msgid "allow replacement of %s with %s"
 msgstr ""
index 151ef77dc3616c31f8dd4c8b06db90298aff3718..92a728bd30ec64fdfde79d976d159ec15ef23a7b 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index da1981e4f0c35d0cdc7183f87185150b4f931efd..7645926b8a37398564a172277afac7599e3c6db6 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 /*
        This is just a small configuration file for the build time configuration
index 4a2fc682998d34c594b6979d5451d4c711f346fa..76296686d10ea014cabedb70f8372920f1fbbf26 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 #include <solv/poolarch.h>
index 70a8a13c6d2285856fb7e56d2c7eb12f0dff4c63..d535a2fda15cf5224dc6438a1287c9abfdd26501 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_POOL_H
 #define PAKFIRE_POOL_H
index 0e17dc35e76deb20d03f2c591d8b59168b0e4dcd..340d0d7f034177007169c4d5a95df19b5ed1cd3b 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index 6cb97715c78735789ae6c8d65fcba0737ad286e1..f6a97c1b1b6a5463921c104f964540c2cfa59225 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_PROBLEM_H
 #define PAKFIRE_PROBLEM_H
index 30a9cc5524fd076e36d1b4bfffdc6440bbd7dbb6..ff77542ad4bc70814fc11d09c7b54e8c702f177b 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include "pool.h"
 #include "relation.h"
index c9557fa931bb84d09d1542b3feb8dc64349391f6..b4de5ca18133b0d5c527db1681c3f81e6cb8b65e 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_RELATION_H
 #define PAKFIRE_RELATION_H
index 4a8ab43c5e69d37fd8c74290897843eae81b8066..c9d490a2ec266687e4589c5b1a5ff743d5cc2f41 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 #include <stdbool.h>
index 46894e6bf4add46ff3892b29743d235ea625e5f4..006c4f0e891f18f42455c384ca757987aa0dd6a0 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_REPO_H
 #define PAKFIRE_REPO_H
index 07e7b613dbe051128548a03c9b67ca6ffed49d33..168b455a00286345e22ae55fee007e81bb326bb0 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include "pool.h"
 #include "relation.h"
index 92869a008ee87dc284f7f4db94197cb705734389..b9368015df39b50ac2979cd7f27feb2a1a888444 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_REQUEST_H
 #define PAKFIRE_REQUEST_H
index 0fae131b0e203278dc941abdb2e96b9d7d14d0c8..b52a1b5958ff40c9241fa109edf29ecc4df9ee8b 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index fdf05c9b89ac6fb7b2bcfeafca17ee1f3a0f65c0..d5b7fc43ce28c3685e2445b3bf4a81ba95ebe4f2 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_SOLUTION_H
 #define PAKFIRE_SOLUTION_H
index e89c485ab139ff38f3cb5a33bff15d5a7686a55e..64407fdad2e17f6de5e7febc9549958a8f4e14c5 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index bd82be12e219c58e5689e8a7694a0108e505c16c..656c36f19be90f15fca77d05d6303bf6afef23f1 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_SOLVABLE_H
 #define PAKFIRE_SOLVABLE_H
index ee2cb137816ecaf3ecccd6586b71d5a655f1590b..50795104cab822e9f7cb16f0f7621cb264a41c3d 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include "pool.h"
 #include "problem.h"
index 245edecec2fa39192eb347f69a821c11dfb97098..604cb83ad53ee6db7b53d6643bda7a197fcd112e 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_SOLVER_H
 #define PAKFIRE_SOLVER_H
index 033af6278796a742b3c1a0e162ebafebc9d88c66..50ceb488b1ffed83f6224df6b5e78fadb9a8fa4c 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include "solvable.h"
 #include "step.h"
index 07ce3317e7a392d5ae73b33aec0bdd2a3e16aa5a..ab105755c4442da7587b48d95ea38d934908b526 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_STEP_H
 #define PAKFIRE_STEP_H
index 1208aa303955fd5b7cd2a12f017433f1a2f21243..d7b30c88c0de7cf917131708e8ca9a9ca0bde302 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index 71e50c3bfd3bb97fe5ce04d3b061cfce4f92cdcc..1dfe28f2db1a59e527443f623c34161d945313cd 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_TRANSACTION_H
 #define PAKFIRE_TRANSACTION_H
index 6e82093369277742e8f27c49d5b35fb41cc912e0..f6e0757ad6908177b0081e496cfe21589ecda528 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #include <Python.h>
 
index efd72e015839881eff60649a0e7454b322d17171..e97b56b03f5c000c45174be58328d6decaed243b 100644 (file)
@@ -1,3 +1,22 @@
+/*#############################################################################
+#                                                                             #
+# Pakfire - The IPFire package management system                              #
+# Copyright (C) 2011 Pakfire development team                                 #
+#                                                                             #
+# 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 program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+#############################################################################*/
 
 #ifndef PAKFIRE_UTIL_H
 #define PAKFIRE_UTIL_H