From b792d8878ac28accafe70ad7b310f95e3a2683d0 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 6 Aug 2011 17:57:30 +0200 Subject: [PATCH] Add copyright information to all files. --- pakfire/__init__.py | 19 ++ pakfire/actions.py | 19 ++ pakfire/api.py | 19 ++ pakfire/base.py | 19 ++ pakfire/builder.py | 19 ++ pakfire/chroot.py | 19 ++ pakfire/cli.py | 19 ++ pakfire/compress.py | 19 ++ pakfire/config.py | 19 ++ pakfire/constants.py | 19 ++ pakfire/distro.py | 19 ++ pakfire/downloader.py | 19 ++ pakfire/errors.py | 19 ++ pakfire/i18n.py | 19 ++ pakfire/logger.py | 19 ++ pakfire/packages/__init__.py | 19 ++ pakfire/packages/base.py | 19 ++ pakfire/packages/binary.py | 19 ++ pakfire/packages/file.py | 19 ++ pakfire/packages/installed.py | 19 ++ pakfire/packages/make.py | 19 ++ pakfire/packages/packager.py | 19 ++ pakfire/packages/solv.py | 19 ++ pakfire/packages/source.py | 19 ++ pakfire/packages/virtual.py | 19 ++ pakfire/repository/__init__.py | 19 ++ pakfire/repository/base.py | 19 ++ pakfire/repository/cache.py | 19 ++ pakfire/repository/database.py | 19 ++ pakfire/repository/index.py | 19 ++ pakfire/repository/installed.py | 19 ++ pakfire/repository/local.py | 19 ++ pakfire/repository/metadata.py | 19 ++ pakfire/repository/remote.py | 19 ++ pakfire/satsolver.py | 19 ++ pakfire/server.py | 19 ++ pakfire/transaction.py | 19 ++ pakfire/util.py | 19 ++ po/POTFILES.in | 1 - po/pakfire.pot | 296 ++++++++++++++++---------------- src/_pakfiremodule.c | 19 ++ src/config.h | 19 ++ src/pool.c | 19 ++ src/pool.h | 19 ++ src/problem.c | 19 ++ src/problem.h | 19 ++ src/relation.c | 19 ++ src/relation.h | 19 ++ src/repo.c | 19 ++ src/repo.h | 19 ++ src/request.c | 19 ++ src/request.h | 19 ++ src/solution.c | 19 ++ src/solution.h | 19 ++ src/solvable.c | 19 ++ src/solvable.h | 19 ++ src/solver.c | 19 ++ src/solver.h | 19 ++ src/step.c | 19 ++ src/step.h | 19 ++ src/transaction.c | 19 ++ src/transaction.h | 19 ++ src/util.c | 19 ++ src/util.h | 19 ++ 64 files changed, 1326 insertions(+), 149 deletions(-) diff --git a/pakfire/__init__.py b/pakfire/__init__.py index c5b3a6659..bddd5129a 100644 --- a/pakfire/__init__.py +++ b/pakfire/__init__.py @@ -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 . # +# # +############################################################################### from base import Pakfire diff --git a/pakfire/actions.py b/pakfire/actions.py index 9952dcb3c..9507eb781 100644 --- a/pakfire/actions.py +++ b/pakfire/actions.py @@ -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 . # +# # +############################################################################### import logging diff --git a/pakfire/api.py b/pakfire/api.py index 7274b7f10..983c4506d 100644 --- a/pakfire/api.py +++ b/pakfire/api.py @@ -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 . # +# # +############################################################################### import base diff --git a/pakfire/base.py b/pakfire/base.py index eb8d315b6..545a382ec 100644 --- a/pakfire/base.py +++ b/pakfire/base.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/builder.py b/pakfire/builder.py index 401b0bdf9..8d4692691 100644 --- a/pakfire/builder.py +++ b/pakfire/builder.py @@ -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 . # +# # +############################################################################### import fcntl import grp diff --git a/pakfire/chroot.py b/pakfire/chroot.py index d41a03bb9..89af7cf76 100644 --- a/pakfire/chroot.py +++ b/pakfire/chroot.py @@ -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 . # +# # +############################################################################### import ctypes import fcntl diff --git a/pakfire/cli.py b/pakfire/cli.py index 774b2f569..1d4de7ced 100644 --- a/pakfire/cli.py +++ b/pakfire/cli.py @@ -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 . # +# # +############################################################################### import argparse import sys diff --git a/pakfire/compress.py b/pakfire/compress.py index 19cfb39d7..57d0266c6 100644 --- a/pakfire/compress.py +++ b/pakfire/compress.py @@ -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 . # +# # +############################################################################### import lzma import os diff --git a/pakfire/config.py b/pakfire/config.py index 74280d856..fa89cfb99 100644 --- a/pakfire/config.py +++ b/pakfire/config.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/constants.py b/pakfire/constants.py index 261444820..37229f8bb 100644 --- a/pakfire/constants.py +++ b/pakfire/constants.py @@ -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 . # +# # +############################################################################### import os.path diff --git a/pakfire/distro.py b/pakfire/distro.py index 1372eb438..04ed243cd 100644 --- a/pakfire/distro.py +++ b/pakfire/distro.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/downloader.py b/pakfire/downloader.py index 3401c6b86..5290e558d 100644 --- a/pakfire/downloader.py +++ b/pakfire/downloader.py @@ -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 . # +# # +############################################################################### import json import logging diff --git a/pakfire/errors.py b/pakfire/errors.py index 3c5b9fe16..9bc8d68d8 100644 --- a/pakfire/errors.py +++ b/pakfire/errors.py @@ -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 . # +# # +############################################################################### from i18n import _ diff --git a/pakfire/i18n.py b/pakfire/i18n.py index dbcb8ca13..22bb9839c 100644 --- a/pakfire/i18n.py +++ b/pakfire/i18n.py @@ -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 . # +# # +############################################################################### """ The translation process of all strings is done in here. diff --git a/pakfire/logger.py b/pakfire/logger.py index bf29e6cda..ac453c28d 100644 --- a/pakfire/logger.py +++ b/pakfire/logger.py @@ -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 . # +# # +############################################################################### import logging import time diff --git a/pakfire/packages/__init__.py b/pakfire/packages/__init__.py index 6b7ff1898..f890f26ff 100644 --- a/pakfire/packages/__init__.py +++ b/pakfire/packages/__init__.py @@ -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 . # +# # +############################################################################### import tarfile diff --git a/pakfire/packages/base.py b/pakfire/packages/base.py index 4d1f7fd48..542f48870 100644 --- a/pakfire/packages/base.py +++ b/pakfire/packages/base.py @@ -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 . # +# # +############################################################################### import datetime import logging diff --git a/pakfire/packages/binary.py b/pakfire/packages/binary.py index d963f5e38..bd751128d 100644 --- a/pakfire/packages/binary.py +++ b/pakfire/packages/binary.py @@ -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 . # +# # +############################################################################### from file import FilePackage diff --git a/pakfire/packages/file.py b/pakfire/packages/file.py index 759d03385..7c19c9fb1 100644 --- a/pakfire/packages/file.py +++ b/pakfire/packages/file.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/packages/installed.py b/pakfire/packages/installed.py index 96f275425..1cff99bea 100644 --- a/pakfire/packages/installed.py +++ b/pakfire/packages/installed.py @@ -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 . # +# # +############################################################################### import os diff --git a/pakfire/packages/make.py b/pakfire/packages/make.py index fb2dbeb28..34f6c16a2 100644 --- a/pakfire/packages/make.py +++ b/pakfire/packages/make.py @@ -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 . # +# # +############################################################################### import os import tarfile diff --git a/pakfire/packages/packager.py b/pakfire/packages/packager.py index eecd17c95..28539b15c 100644 --- a/pakfire/packages/packager.py +++ b/pakfire/packages/packager.py @@ -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 . # +# # +############################################################################### import glob import logging diff --git a/pakfire/packages/solv.py b/pakfire/packages/solv.py index 2cfe57aa4..5f2637a5e 100644 --- a/pakfire/packages/solv.py +++ b/pakfire/packages/solv.py @@ -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 . # +# # +############################################################################### import os import re diff --git a/pakfire/packages/source.py b/pakfire/packages/source.py index fcb402b92..3defa3ea8 100644 --- a/pakfire/packages/source.py +++ b/pakfire/packages/source.py @@ -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 . # +# # +############################################################################### from file import FilePackage diff --git a/pakfire/packages/virtual.py b/pakfire/packages/virtual.py index 55fa4ee5f..e8de482ab 100644 --- a/pakfire/packages/virtual.py +++ b/pakfire/packages/virtual.py @@ -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 . # +# # +############################################################################### from base import Package diff --git a/pakfire/repository/__init__.py b/pakfire/repository/__init__.py index 06968e689..a6dc69c29 100644 --- a/pakfire/repository/__init__.py +++ b/pakfire/repository/__init__.py @@ -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 . # +# # +############################################################################### import logging diff --git a/pakfire/repository/base.py b/pakfire/repository/base.py index 276150bf1..d6d760b3d 100644 --- a/pakfire/repository/base.py +++ b/pakfire/repository/base.py @@ -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 . # +# # +############################################################################### import fnmatch import glob diff --git a/pakfire/repository/cache.py b/pakfire/repository/cache.py index 948eb3831..3d6665d3f 100644 --- a/pakfire/repository/cache.py +++ b/pakfire/repository/cache.py @@ -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 . # +# # +############################################################################### import os import stat diff --git a/pakfire/repository/database.py b/pakfire/repository/database.py index 4f21b7406..bd9b8e25f 100644 --- a/pakfire/repository/database.py +++ b/pakfire/repository/database.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/repository/index.py b/pakfire/repository/index.py index 0155a18b9..55e2bb145 100644 --- a/pakfire/repository/index.py +++ b/pakfire/repository/index.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/repository/installed.py b/pakfire/repository/installed.py index 89a496db9..95f764f4d 100644 --- a/pakfire/repository/installed.py +++ b/pakfire/repository/installed.py @@ -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 . # +# # +############################################################################### import index diff --git a/pakfire/repository/local.py b/pakfire/repository/local.py index c7d73befb..5831c4bb4 100644 --- a/pakfire/repository/local.py +++ b/pakfire/repository/local.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/repository/metadata.py b/pakfire/repository/metadata.py index f0e89389d..9029460b0 100644 --- a/pakfire/repository/metadata.py +++ b/pakfire/repository/metadata.py @@ -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 . # +# # +############################################################################### import json import time diff --git a/pakfire/repository/remote.py b/pakfire/repository/remote.py index a00293eb1..617d5616d 100644 --- a/pakfire/repository/remote.py +++ b/pakfire/repository/remote.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/satsolver.py b/pakfire/satsolver.py index f358abe39..75ca831c5 100644 --- a/pakfire/satsolver.py +++ b/pakfire/satsolver.py @@ -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 . # +# # +############################################################################### import logging diff --git a/pakfire/server.py b/pakfire/server.py index 4a5c0ec10..14e7f158a 100644 --- a/pakfire/server.py +++ b/pakfire/server.py @@ -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 . # +# # +############################################################################### import hashlib import logging diff --git a/pakfire/transaction.py b/pakfire/transaction.py index c60d50b48..ed1362b1e 100644 --- a/pakfire/transaction.py +++ b/pakfire/transaction.py @@ -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 . # +# # +############################################################################### import logging import os diff --git a/pakfire/util.py b/pakfire/util.py index 44fd454a7..43d3f61a0 100644 --- a/pakfire/util.py +++ b/pakfire/util.py @@ -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 . # +# # +############################################################################### from __future__ import division diff --git a/po/POTFILES.in b/po/POTFILES.in index 2bb1fe4f3..5faa6cb49 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -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 diff --git a/po/pakfire.pot b/po/pakfire.pot index 9925c7dc7..865f4bc3f 100644 --- a/po/pakfire.pot +++ b/po/pakfire.pot @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/src/_pakfiremodule.c b/src/_pakfiremodule.c index 151ef77dc..92a728bd3 100644 --- a/src/_pakfiremodule.c +++ b/src/_pakfiremodule.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/config.h b/src/config.h index da1981e4f..7645926b8 100644 --- a/src/config.h +++ b/src/config.h @@ -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 . # +# # +#############################################################################*/ /* This is just a small configuration file for the build time configuration diff --git a/src/pool.c b/src/pool.c index 4a2fc6829..76296686d 100644 --- a/src/pool.c +++ b/src/pool.c @@ -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 . # +# # +#############################################################################*/ #include #include diff --git a/src/pool.h b/src/pool.h index 70a8a13c6..d535a2fda 100644 --- a/src/pool.h +++ b/src/pool.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_POOL_H #define PAKFIRE_POOL_H diff --git a/src/problem.c b/src/problem.c index 0e17dc35e..340d0d7f0 100644 --- a/src/problem.c +++ b/src/problem.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/problem.h b/src/problem.h index 6cb97715c..f6a97c1b1 100644 --- a/src/problem.h +++ b/src/problem.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_PROBLEM_H #define PAKFIRE_PROBLEM_H diff --git a/src/relation.c b/src/relation.c index 30a9cc552..ff77542ad 100644 --- a/src/relation.c +++ b/src/relation.c @@ -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 . # +# # +#############################################################################*/ #include "pool.h" #include "relation.h" diff --git a/src/relation.h b/src/relation.h index c9557fa93..b4de5ca18 100644 --- a/src/relation.h +++ b/src/relation.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_RELATION_H #define PAKFIRE_RELATION_H diff --git a/src/repo.c b/src/repo.c index 4a8ab43c5..c9d490a2e 100644 --- a/src/repo.c +++ b/src/repo.c @@ -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 . # +# # +#############################################################################*/ #include #include diff --git a/src/repo.h b/src/repo.h index 46894e6bf..006c4f0e8 100644 --- a/src/repo.h +++ b/src/repo.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_REPO_H #define PAKFIRE_REPO_H diff --git a/src/request.c b/src/request.c index 07e7b613d..168b455a0 100644 --- a/src/request.c +++ b/src/request.c @@ -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 . # +# # +#############################################################################*/ #include "pool.h" #include "relation.h" diff --git a/src/request.h b/src/request.h index 92869a008..b9368015d 100644 --- a/src/request.h +++ b/src/request.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_REQUEST_H #define PAKFIRE_REQUEST_H diff --git a/src/solution.c b/src/solution.c index 0fae131b0..b52a1b595 100644 --- a/src/solution.c +++ b/src/solution.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/solution.h b/src/solution.h index fdf05c9b8..d5b7fc43c 100644 --- a/src/solution.h +++ b/src/solution.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_SOLUTION_H #define PAKFIRE_SOLUTION_H diff --git a/src/solvable.c b/src/solvable.c index e89c485ab..64407fdad 100644 --- a/src/solvable.c +++ b/src/solvable.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/solvable.h b/src/solvable.h index bd82be12e..656c36f19 100644 --- a/src/solvable.h +++ b/src/solvable.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_SOLVABLE_H #define PAKFIRE_SOLVABLE_H diff --git a/src/solver.c b/src/solver.c index ee2cb1378..50795104c 100644 --- a/src/solver.c +++ b/src/solver.c @@ -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 . # +# # +#############################################################################*/ #include "pool.h" #include "problem.h" diff --git a/src/solver.h b/src/solver.h index 245edecec..604cb83ad 100644 --- a/src/solver.h +++ b/src/solver.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_SOLVER_H #define PAKFIRE_SOLVER_H diff --git a/src/step.c b/src/step.c index 033af6278..50ceb488b 100644 --- a/src/step.c +++ b/src/step.c @@ -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 . # +# # +#############################################################################*/ #include "solvable.h" #include "step.h" diff --git a/src/step.h b/src/step.h index 07ce3317e..ab105755c 100644 --- a/src/step.h +++ b/src/step.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_STEP_H #define PAKFIRE_STEP_H diff --git a/src/transaction.c b/src/transaction.c index 1208aa303..d7b30c88c 100644 --- a/src/transaction.c +++ b/src/transaction.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/transaction.h b/src/transaction.h index 71e50c3bf..1dfe28f2d 100644 --- a/src/transaction.h +++ b/src/transaction.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_TRANSACTION_H #define PAKFIRE_TRANSACTION_H diff --git a/src/util.c b/src/util.c index 6e8209336..f6e0757ad 100644 --- a/src/util.c +++ b/src/util.c @@ -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 . # +# # +#############################################################################*/ #include diff --git a/src/util.h b/src/util.h index efd72e015..e97b56b03 100644 --- a/src/util.h +++ b/src/util.h @@ -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 . # +# # +#############################################################################*/ #ifndef PAKFIRE_UTIL_H #define PAKFIRE_UTIL_H -- 2.39.5