Skip to content

Commit fbb3536

Browse files
- add GPL license and headers.
Most of it is GPL v2 or v3 licensed. Some parts only v2 atm, but I will check with authors for v3 permission
1 parent c3e7e1c commit fbb3536

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1512
-28
lines changed

Build.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build;
222

323
use strict;

Build/Arch.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Arch;
222

323
use strict;

Build/Deb.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Deb;
222

323
use strict;

Build/Kiwi.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Kiwi;
222

323
use strict;

Build/Rpm.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Rpm;
222

323
our $unfilteredprereqs = 0;

Build/Susetags.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Susetags;
222

323
use strict;

Build/Zypp.pm

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
################################################################
2+
#
3+
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License version 2 or 3 as
7+
# published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program (see the file COPYING); if not, write to the
16+
# Free Software Foundation, Inc.,
17+
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18+
#
19+
################################################################
20+
121
package Build::Zypp;
222

323
use strict;

0 commit comments

Comments
 (0)