* Subversion (1.8.8)
@ 2014-03-10 15:38 Sascha Kilian
2014-03-11 10:01 ` Michael Tremer
0 siblings, 1 reply; 7+ messages in thread
From: Sascha Kilian @ 2014-03-10 15:38 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 151 bytes --]
Hi There,
i want Subversion on my IPFire and i have created a LFS file for this.
If it okay, please add it to the Repository.
Best Regards
Sascha
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: subversion.bin --]
[-- Type: text/x-matlab, Size: 3286 bytes --]
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.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 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 <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 1.8.8
THISAPP = subversion-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = http://artfiles.org/apache.org/subversion/
DIR_APP = $(DIR_SRC)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 2c028bc13a1d68ec3c65b306af082ce9
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && wget http://www.sqlite.org/sqlite-amalgamation-3071501.zip
cd $(DIR_APP) && unzip $(SQL_FILE)
cd $(DIR_APP) && mv sqlite-amalgamation-3071501 sqlite-amalgamation
cd $(DIR_APP) && ./autogen.sh
cd $(DIR_APP) && ./configure
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-10 15:38 Subversion (1.8.8) Sascha Kilian
@ 2014-03-11 10:01 ` Michael Tremer
2014-03-11 10:23 ` Sascha Kilian
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Michael Tremer @ 2014-03-11 10:01 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1219 bytes --]
Hi Sascha,
thanks for your submission. I think we can include subversion, but there
are some issues with this package:
* The rootfile is missing.
* You cannot use wget or something else that loads data from the
internet, because you cannot be sure that it is online, that the file
still exists on the server and it would be downloaded every time you
build subversion. There are plenty of packages that have more than one
source file. Please have a look at one of these and do it likewise.
* You should probably use --prefix=/usr to install it to /usr (according
to FHS).
* I am not sure if subversion needs a lot of libraries to be fully
functional like libneon for accessing repositories over http://. Did you
check this? Those probably need to be included as well, so that
subversion is actually usable.
Best,
-Michael
On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> Hi There,
>
> i want Subversion on my IPFire and i have created a LFS file for this.
>
> If it okay, please add it to the Repository.
>
> Best Regards
>
> Sascha
> _______________________________________________
> Development mailing list
> Development(a)lists.ipfire.org
> http://lists.ipfire.org/mailman/listinfo/development
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-11 10:01 ` Michael Tremer
@ 2014-03-11 10:23 ` Sascha Kilian
2014-03-12 14:40 ` Sascha Kilian
2014-03-14 10:15 ` Sascha Kilian
2 siblings, 0 replies; 7+ messages in thread
From: Sascha Kilian @ 2014-03-11 10:23 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1635 bytes --]
Hi Michael,
i have tryed it on a fresh git checkout (next) and it works fine. I only
have the Dependency on sqlite. I send a better lfs file and the missing
rootfile to this list when i am home and have time to fix the issues.
I think this week.
best regards
sascha
Am Dienstag, den 11.03.2014, 11:01 +0100 schrieb Michael Tremer:
> Hi Sascha,
>
> thanks for your submission. I think we can include subversion, but there
> are some issues with this package:
>
> * The rootfile is missing.
>
> * You cannot use wget or something else that loads data from the
> internet, because you cannot be sure that it is online, that the file
> still exists on the server and it would be downloaded every time you
> build subversion. There are plenty of packages that have more than one
> source file. Please have a look at one of these and do it likewise.
>
> * You should probably use --prefix=/usr to install it to /usr (according
> to FHS).
>
> * I am not sure if subversion needs a lot of libraries to be fully
> functional like libneon for accessing repositories over http://. Did you
> check this? Those probably need to be included as well, so that
> subversion is actually usable.
>
> Best,
> -Michael
>
> On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> > Hi There,
> >
> > i want Subversion on my IPFire and i have created a LFS file for this.
> >
> > If it okay, please add it to the Repository.
> >
> > Best Regards
> >
> > Sascha
> > _______________________________________________
> > Development mailing list
> > Development(a)lists.ipfire.org
> > http://lists.ipfire.org/mailman/listinfo/development
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-11 10:01 ` Michael Tremer
2014-03-11 10:23 ` Sascha Kilian
@ 2014-03-12 14:40 ` Sascha Kilian
2014-03-14 10:15 ` Sascha Kilian
2 siblings, 0 replies; 7+ messages in thread
From: Sascha Kilian @ 2014-03-12 14:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3782 bytes --]
Hi there,
i have rewritten the lfs file to avoid my wget action.
Now i try to build the ipfire system. I dont get some errors. But ...
i have checked the loggings and on make -f subversion ........ install
he told me "nothing to do install".
if i rename the $(TARGET) to "build" or some other key, and i manually
run in the shell the make -f ..... build, then it builds my subversion,
but he told me "saving filelist to /usr/src/lsalr" and after the
building process he crashes.
I have maked --prefix=/tmp/subversion_build to see if the files created.
All files are there ...
No rootfile was generated :(
here some snipplets:
=================================================================
root:/usr/src/lfs# make -f subversion LFS_FILE=subversion
LFS_BASEDIR=/usr/src build
subversion-1.8.8.tar.gz checksum OK
====================================== Installing subversion-1.8.8 ...
Install started; saving file list to /usr/src/lsalr ...
cd /usr/src/subversion-1.8.8 &&
cp /usr/src/cache/sqlite-amalgamation-3071501.zip /usr/src/subversion-1.8.8/sqlite-amalgamation-3071501.zip
cd /usr/src/subversion-1.8.8 && unzip sqlite-amalgamation-3071501.zip
[... do some copying stuff and compiles subversion ...]
The last lines are:
make[1]: Leaving directory `/usr/src/subversion-1.8.8'
Updating linker cache...
ldconfig: /usr/lib/libnetpbm.so.10 is not a symbolic link
Install done; saving file list to ...
/bin/sh: -c: line 0: syntax error near unexpected token `;'
/bin/sh: -c: line 0: `if [ -s "_diff" ]; then LFS_SCRIPT=subversion;
echo ; ROOTFILE=
$(find /usr/src/config/rootfiles/{common,packages}/{i586,} -maxdepth 1
-type f -name $LFS_SCRIPT 2>/dev/null | head -1); if [ "$ROOTFILE" = ""
]; then touch _missing_rootfile; ROOTFILE=_missing_rootfile ; echo
"error $LFS_SCRIPT not found in config/rootfiles"; fi; sed -e
"s/BUILDTARGET/i586-pc-linux-gnu/g" -e "s/KVER/3.10.33/g" -e
"s/MACHINE/i586/g" $ROOTFILE > _rootfile; for line in `cat _diff`; do if
grep -qG "^#$line$" _rootfile; then echo "#$line" >> ; elif grep -qG "^
$line$" _rootfile ; then echo "$line" >> ; else echo "+$line" >> ; fi;
done; for line in `grep -v "^#" _rootfile`; do if ! grep -qG "^$line$"
_diff ; then echo "-$line" >> ; fi; done; rm -f _rootfile; else touch ;
fi'
make: *** [build] Error 2
Am Dienstag, den 11.03.2014, 11:01 +0100 schrieb Michael Tremer:
> Hi Sascha,
>
> thanks for your submission. I think we can include subversion, but there
> are some issues with this package:
>
> * The rootfile is missing.
>
> * You cannot use wget or something else that loads data from the
> internet, because you cannot be sure that it is online, that the file
> still exists on the server and it would be downloaded every time you
> build subversion. There are plenty of packages that have more than one
> source file. Please have a look at one of these and do it likewise.
>
> * You should probably use --prefix=/usr to install it to /usr (according
> to FHS).
>
> * I am not sure if subversion needs a lot of libraries to be fully
> functional like libneon for accessing repositories over http://. Did you
> check this? Those probably need to be included as well, so that
> subversion is actually usable.
>
> Best,
> -Michael
>
> On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> > Hi There,
> >
> > i want Subversion on my IPFire and i have created a LFS file for this.
> >
> > If it okay, please add it to the Repository.
> >
> > Best Regards
> >
> > Sascha
> > _______________________________________________
> > Development mailing list
> > Development(a)lists.ipfire.org
> > http://lists.ipfire.org/mailman/listinfo/development
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-11 10:01 ` Michael Tremer
2014-03-11 10:23 ` Sascha Kilian
2014-03-12 14:40 ` Sascha Kilian
@ 2014-03-14 10:15 ` Sascha Kilian
2014-03-14 13:12 ` Michael Tremer
2 siblings, 1 reply; 7+ messages in thread
From: Sascha Kilian @ 2014-03-14 10:15 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1470 bytes --]
Hi There,
sry my Mailserver has a crash, can u send me the latest replys for
Subversion thread?
Thanks
Am Dienstag, den 11.03.2014, 11:01 +0100 schrieb Michael Tremer:
> Hi Sascha,
>
> thanks for your submission. I think we can include subversion, but there
> are some issues with this package:
>
> * The rootfile is missing.
>
> * You cannot use wget or something else that loads data from the
> internet, because you cannot be sure that it is online, that the file
> still exists on the server and it would be downloaded every time you
> build subversion. There are plenty of packages that have more than one
> source file. Please have a look at one of these and do it likewise.
>
> * You should probably use --prefix=/usr to install it to /usr (according
> to FHS).
>
> * I am not sure if subversion needs a lot of libraries to be fully
> functional like libneon for accessing repositories over http://. Did you
> check this? Those probably need to be included as well, so that
> subversion is actually usable.
>
> Best,
> -Michael
>
> On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> > Hi There,
> >
> > i want Subversion on my IPFire and i have created a LFS file for this.
> >
> > If it okay, please add it to the Repository.
> >
> > Best Regards
> >
> > Sascha
> > _______________________________________________
> > Development mailing list
> > Development(a)lists.ipfire.org
> > http://lists.ipfire.org/mailman/listinfo/development
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-14 10:15 ` Sascha Kilian
@ 2014-03-14 13:12 ` Michael Tremer
2014-03-14 13:57 ` Sascha Kilian
0 siblings, 1 reply; 7+ messages in thread
From: Michael Tremer @ 2014-03-14 13:12 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2048 bytes --]
Hi,
you can view the entire conversation over here:
http://lists.ipfire.org/pipermail/development/2014-March/thread.html
Do you still have trouble with the syntax error?
If you are familiar with git, maybe you can upload your changes in a git
repository on github or somewhere else, because this makes it a bit
easier to keep track of the changes. Alternatively, you can post inline
patches in these emails.
-Michael
On Fri, 2014-03-14 at 11:15 +0100, Sascha Kilian wrote:
> Hi There,
>
> sry my Mailserver has a crash, can u send me the latest replys for
> Subversion thread?
>
> Thanks
>
> Am Dienstag, den 11.03.2014, 11:01 +0100 schrieb Michael Tremer:
> > Hi Sascha,
> >
> > thanks for your submission. I think we can include subversion, but there
> > are some issues with this package:
> >
> > * The rootfile is missing.
> >
> > * You cannot use wget or something else that loads data from the
> > internet, because you cannot be sure that it is online, that the file
> > still exists on the server and it would be downloaded every time you
> > build subversion. There are plenty of packages that have more than one
> > source file. Please have a look at one of these and do it likewise.
> >
> > * You should probably use --prefix=/usr to install it to /usr (according
> > to FHS).
> >
> > * I am not sure if subversion needs a lot of libraries to be fully
> > functional like libneon for accessing repositories over http://. Did you
> > check this? Those probably need to be included as well, so that
> > subversion is actually usable.
> >
> > Best,
> > -Michael
> >
> > On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> > > Hi There,
> > >
> > > i want Subversion on my IPFire and i have created a LFS file for this.
> > >
> > > If it okay, please add it to the Repository.
> > >
> > > Best Regards
> > >
> > > Sascha
> > > _______________________________________________
> > > Development mailing list
> > > Development(a)lists.ipfire.org
> > > http://lists.ipfire.org/mailman/listinfo/development
> >
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Subversion (1.8.8)
2014-03-14 13:12 ` Michael Tremer
@ 2014-03-14 13:57 ` Sascha Kilian
0 siblings, 0 replies; 7+ messages in thread
From: Sascha Kilian @ 2014-03-14 13:57 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2615 bytes --]
Hi,
thanks for the Link.
Yes the syntax error is stay.
My Knowlege with Git is not good. I think i try to send you the Patches.
The base from my files you have :)
best regards from Germany
Sascha
Am Freitag, den 14.03.2014, 14:12 +0100 schrieb Michael Tremer:
> Hi,
>
> you can view the entire conversation over here:
>
> http://lists.ipfire.org/pipermail/development/2014-March/thread.html
>
> Do you still have trouble with the syntax error?
>
> If you are familiar with git, maybe you can upload your changes in a git
> repository on github or somewhere else, because this makes it a bit
> easier to keep track of the changes. Alternatively, you can post inline
> patches in these emails.
>
> -Michael
>
> On Fri, 2014-03-14 at 11:15 +0100, Sascha Kilian wrote:
> > Hi There,
> >
> > sry my Mailserver has a crash, can u send me the latest replys for
> > Subversion thread?
> >
> > Thanks
> >
> > Am Dienstag, den 11.03.2014, 11:01 +0100 schrieb Michael Tremer:
> > > Hi Sascha,
> > >
> > > thanks for your submission. I think we can include subversion, but there
> > > are some issues with this package:
> > >
> > > * The rootfile is missing.
> > >
> > > * You cannot use wget or something else that loads data from the
> > > internet, because you cannot be sure that it is online, that the file
> > > still exists on the server and it would be downloaded every time you
> > > build subversion. There are plenty of packages that have more than one
> > > source file. Please have a look at one of these and do it likewise.
> > >
> > > * You should probably use --prefix=/usr to install it to /usr (according
> > > to FHS).
> > >
> > > * I am not sure if subversion needs a lot of libraries to be fully
> > > functional like libneon for accessing repositories over http://. Did you
> > > check this? Those probably need to be included as well, so that
> > > subversion is actually usable.
> > >
> > > Best,
> > > -Michael
> > >
> > > On Mon, 2014-03-10 at 16:38 +0100, Sascha Kilian wrote:
> > > > Hi There,
> > > >
> > > > i want Subversion on my IPFire and i have created a LFS file for this.
> > > >
> > > > If it okay, please add it to the Repository.
> > > >
> > > > Best Regards
> > > >
> > > > Sascha
> > > > _______________________________________________
> > > > Development mailing list
> > > > Development(a)lists.ipfire.org
> > > > http://lists.ipfire.org/mailman/listinfo/development
> > >
> >
> >
>
> _______________________________________________
> Development mailing list
> Development(a)lists.ipfire.org
> http://lists.ipfire.org/mailman/listinfo/development
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-03-14 13:57 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-10 15:38 Subversion (1.8.8) Sascha Kilian
2014-03-11 10:01 ` Michael Tremer
2014-03-11 10:23 ` Sascha Kilian
2014-03-12 14:40 ` Sascha Kilian
2014-03-14 10:15 ` Sascha Kilian
2014-03-14 13:12 ` Michael Tremer
2014-03-14 13:57 ` Sascha Kilian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox