Skip to content
Snippets Groups Projects
Commit 8ee855aa authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Merge branch 'etiona-cleanup' into 'etiona'

Etiona cleanup

See merge request trisquel/package-helpers!230
parents e8892e2e 7c890201
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# Copyright (C) 2008-2010 Rubén Rodríguez <ruben@trisquel.info>
#
# 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
#
VERSION=1
COMPONENT=main
. ./config
sed -i '/LDFLAGS/ s/$/\nCFLAGS += -lm/' debian/rules
sed -i "s/Ubuntu/Trisquel/g" debian/rules
changelog "Compiled for Trisquel"
compile
#!/bin/sh
#
# Copyright (C) 2008-2016 Ruben Rodriguez <ruben@trisquel.info>
#
# 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
#
VERSION=1
. ./config
cp $DATA/trisquel48.svg ./debian/ubuntu-icons/scalable/places/ubuntu-logo.svg
cp $DATA/trisquel32.png ./debian/ubuntu-icons/32x32/places/ubuntu-logo.png
cp $DATA/trisquel24.png ./debian/ubuntu-icons/24x24/places/ubuntu-logo.png
cp $DATA/trisquel22.png ./debian/ubuntu-icons/22x22/places/ubuntu-logo.png
cp $DATA/trisquel16.png ./debian/ubuntu-icons/16x16/places/ubuntu-logo.png
rm -rf debian/ubuntu-icons/*/mimetypes
find | grep ubuntu-logo | xargs rename s/ubuntu-logo/trisquel-logo/
replace ubuntu-logo trisquel-logo debian
replace ubuntu-icons trisquel-icons debian
mv debian/ubuntu-icons debian/trisquel-icons
changelog "Rebranded for Trisquel"
compile
#!/bin/sh
#
# Copyright (C) 2013 Rubén Rodríguez <ruben@trisquel.info>
#
# 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
#
VERSION=1
QUILT=skip
COMPONENT=main
. ./config
rm debian/patches/01_use-ubuntu-help.patch
sed '/use-ubuntu-help/d' -i debian/patches/series
export QUILT_PATCHES=debian/patches
quilt push -a
changelog "Revert from using ubuntu-help to default gnome-help"
compile
......@@ -17,10 +17,10 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=1
VERSION=2
. ./config
for patch in 15_use-ubuntu-help.patch 16_unity_new_documents.patch; do
for patch in 16_unity_new_documents.patch; do
rm debian/patches/$patch
sed "/$patch/d" -i debian/patches/series
done
......
#!/bin/sh
#
# Copyright (C) 2013 Rubén Rodríguez <ruben@trisquel.info>
#
# 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
#
VERSION=1
QUILT=skip
COMPONENT=main
. ./config
rm debian/patches/06_use-ubuntu-help.patch
sed '/use-ubuntu-help/d' -i debian/patches/series
export QUILT_PATCHES=debian/patches
quilt push -a
changelog "Revert from using ubuntu-help to default gnome-help"
compile
#!/bin/sh
#
# Copyright (C) 2012 Santiago Rodríguez <santi@trisquel.info>
#
# 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
#
VERSION=1
. ./config
#% FREEDOM: Remove menu for non-free drivers
#% CurrentBehaviour: There is a menu option to install non-free drivers (called Guest Additions)
#% ExpectedBehaviour: There is no "Install Guest Additions" menu option
#% Closes: http://trisquel.info/es/issues/4456
FILE=src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp
LINENUM=`grep -n 'Simple_InstallGuestTools' $FILE | cut -d\: -f1`
sed -i "$(($LINENUM-1))","$LINENUM"d $FILE
changelog "Removed menu for non-free drivers"
compile
#!/bin/sh
#
# Copyright (C) 2013 Rubén Rodríguez <ruben@trisquel.info>
#
# 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
#
VERSION=1
QUILT=skip
COMPONENT=main
. ./config
rm debian/patches/06_make_ubuntu_docs_default.patch
sed '/make_ubuntu_docs_default/d' -i debian/patches/series
export QUILT_PATCHES=debian/patches
quilt push -a
changelog "Revert from using ubuntu-help to default gnome-help"
compile
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment