aramo-udeb-rebuild-list: add helpers for udeb repository
This commit is contained in:
parent
8485c65457
commit
de91dd7c34
42 changed files with 1317 additions and 0 deletions
|
|
@ -68,7 +68,12 @@ find ${@:3} -type f -not -iregex '.*changelog.*' -not -iregex '.*copyright.*' -e
|
|||
changelog(){
|
||||
head -n 1 debian/changelog | grep -q $UPSTREAM-security && REPO=$CODENAME-security || REPO=$CODENAME
|
||||
[ "$BACKPORT" = true ] || [ "$BACKPORTS" = true ] && REPO=${CODENAME}-backports
|
||||
#Name convention issue "+" breaking packages build like console-setup, using "-" instead.
|
||||
if [ "$NAME_CI" = true ];then
|
||||
echo | dch -D $REPO -v `pkgversion`-${REVISION}trisquel${VERSION} "$1"
|
||||
else
|
||||
echo | dch -D $REPO -v `pkgversion`+${REVISION}trisquel${VERSION} "$1"
|
||||
fi
|
||||
|
||||
# Make sure the changelog file is identical between archs
|
||||
/bin/sed "/-- Trisquel/s/.*/ -- Trisquel GNU\/Linux developers <trisquel-devel@listas.trisquel.info> $DATE/" -i debian/changelog
|
||||
|
|
|
|||
32
helpers/make-bogl
Normal file
32
helpers/make-bogl
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-busybox
Normal file
32
helpers/make-busybox
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-console-setup
Normal file
32
helpers/make-console-setup
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-cryptsetup
Normal file
32
helpers/make-cryptsetup
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-debian-ports-archive-keyring
Normal file
32
helpers/make-debian-ports-archive-keyring
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-dmraid
Normal file
32
helpers/make-dmraid
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-fribidi
Normal file
32
helpers/make-fribidi
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-fuse
Normal file
32
helpers/make-fuse
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-haveged
Normal file
32
helpers/make-haveged
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-kbd
Normal file
32
helpers/make-kbd
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-kmod
Normal file
32
helpers/make-kmod
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-libdebian-installer
Normal file
32
helpers/make-libdebian-installer
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-libzstd
Normal file
32
helpers/make-libzstd
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-lowmem
Normal file
32
helpers/make-lowmem
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-lvm2
Normal file
32
helpers/make-lvm2
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-lzo2
Normal file
32
helpers/make-lzo2
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-mdadm
Normal file
32
helpers/make-mdadm
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-micro-evtd
Normal file
32
helpers/make-micro-evtd
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-mountmedia
Normal file
32
helpers/make-mountmedia
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-multipath-tools
Normal file
32
helpers/make-multipath-tools
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-nano
Normal file
32
helpers/make-nano
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-ntfs-3g
Normal file
32
helpers/make-ntfs-3g
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-open-iscsi
Normal file
32
helpers/make-open-iscsi
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-os-prober
Normal file
32
helpers/make-os-prober
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-partconf
Normal file
32
helpers/make-partconf
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-parted
Normal file
32
helpers/make-parted
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-pciutils
Normal file
32
helpers/make-pciutils
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-pcmciautils
Normal file
32
helpers/make-pcmciautils
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-pcre3
Normal file
32
helpers/make-pcre3
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-popt
Normal file
32
helpers/make-popt
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-qcontrol
Normal file
32
helpers/make-qcontrol
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-rdate
Normal file
32
helpers/make-rdate
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-reiserfsprogs
Normal file
32
helpers/make-reiserfsprogs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-s390-netdevice
Normal file
32
helpers/make-s390-netdevice
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-screen
Normal file
32
helpers/make-screen
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-systemd
Normal file
32
helpers/make-systemd
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-user-setup
Normal file
32
helpers/make-user-setup
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-util-linux
Normal file
32
helpers/make-util-linux
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-wget
Normal file
32
helpers/make-wget
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-wireless-regdb
Normal file
32
helpers/make-wireless-regdb
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
32
helpers/make-xfsprogs
Normal file
32
helpers/make-xfsprogs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
|
||||
#
|
||||
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
##
|
||||
# This helper is part of a series of packages that are now droppped on upstream
|
||||
# Ubuntu, therefore in order to build a working debian-installer we now rebuild
|
||||
# or fetch such packages from Debian in order to build the required udeb packages.
|
||||
##
|
||||
|
||||
VERSION=0
|
||||
NETINST=true
|
||||
. ./config
|
||||
|
||||
|
||||
changelog "Rebuild upstream to get udeb dependency for debian-installer."
|
||||
compile
|
||||
Loading…
Add table
Add a link
Reference in a new issue