Skip to content

Commit

Permalink
Add legal stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
seblu committed Apr 9, 2013
1 parent 1c7fb1e commit 1a0716e
Show file tree
Hide file tree
Showing 16 changed files with 534 additions and 9 deletions.
1 change: 1 addition & 0 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright © Sébastien Luttringer
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions addpkg
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


(( $# != 1 )) && echo "usage: ${0##*/} name" && exit 1

mkdir -p "$1"/{repos,trunk}
Expand Down
16 changes: 16 additions & 0 deletions archbuild-dl
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

pkg_host='[email protected]'
pkg_base='/root/packages'
pkg_regex=''
Expand Down
3 changes: 1 addition & 2 deletions atc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash

# atc - Archlinux Tree Cleaner
# Copyright © 2012 Sébastien Luttringer
# Copyright © Sébastien Luttringer
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
17 changes: 16 additions & 1 deletion aurdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#!/bin/bash
# Copyright 2012 Seblu

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

(( $# < 1 )) && echo "usage: ${0##*/} <pkgsource> [pkgsource]..." >&2

Expand Down
16 changes: 16 additions & 0 deletions go2chroot
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

base='/var/lib/archbuild'

# list chroots
Expand Down
3 changes: 1 addition & 2 deletions pkgbuild2json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/python
# coding: utf-8

# pkgbuild2json - Transform PKGBUILD into JSON
# Copyright © 2012 Sébastien Luttringer
# Copyright © Sébastien Luttringer
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down
17 changes: 16 additions & 1 deletion seblu-build
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#!/bin/bash
# this script build

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

#chroot='/var/tmp/chroots'
#chroot_32="$chroot/seblu-i686"
Expand Down
17 changes: 16 additions & 1 deletion seblu-build-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#!/bin/bash
# this script build and push a package to my svn repository

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

seblu-build && seblu-commit

Expand Down
16 changes: 15 additions & 1 deletion seblu-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
#!/bin/bash
# this script push a package to my svn repository

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

dbname='seblu'
repo="/srv/http/archlinux/$dbname"
Expand Down
16 changes: 16 additions & 0 deletions seblu-remove
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

REPO='/srv/http/archlinux/seblu'
shopt -s nullglob

Expand Down
16 changes: 16 additions & 0 deletions seblu-repo-add
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
#!/bin/bash
# vim:set ts=2 sw=2 ft=sh et:

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

. /etc/makepkg.conf

repo_path='/home/seblu/scm/archrepo/x86_64'
Expand Down
16 changes: 16 additions & 0 deletions seblu-update
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

ssh -p 2222 [email protected] /home/www-archlinux/bin/sync_repo.sh
17 changes: 16 additions & 1 deletion sign
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#!/bin/bash
# this script build

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

[[ -r /etc/makepkg.conf ]] && source /etc/makepkg.conf
[[ -r ~/.makepkg.conf ]] && source ~/.makepkg.conf
Expand Down
16 changes: 16 additions & 0 deletions tmpmakepkg
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/bin/bash

# Copyright © Sébastien Luttringer
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

mountpoint -q "/dev/shm" && export TMPDIR=/dev/shm
export BUILDDIR=$(mktemp --directory -t makepkg.XXXXX)
echo -e "\e[1;32m==>\e[;1m BUILDDIR=$BUILDDIR\e[m"
Expand Down

0 comments on commit 1a0716e

Please sign in to comment.