Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Chakra
Packages
core
Commits
faf7f0b4
Commit
faf7f0b4
authored
May 07, 2013
by
Manuel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Not needed anymore
parent
819271da
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
133 deletions
+0
-133
libfetch/Makefile
libfetch/Makefile
+0
-68
libfetch/PKGBUILD
libfetch/PKGBUILD
+0
-50
libfetch/fetch-handle-temp-redirect.patch
libfetch/fetch-handle-temp-redirect.patch
+0
-15
No files found.
libfetch/Makefile
deleted
100644 → 0
View file @
819271da
prefix
=
/usr
DESTDIR
=
DEBUG
=
false
FETCH_WITH_INET6
=
true
FETCH_WITH_OPENSSL
=
true
WARNINGS
=
-Wall
-Wstrict-prototypes
-Wsign-compare
-Wchar-subscripts
\
-Wpointer-arith
-Wcast-align
CFLAGS
?=
-O2
-pipe
CFLAGS
+=
-fPIC
$(WARNINGS)
CFLAGS
+=
-D_FILE_OFFSET_BITS
=
64
-D_LARGEFILE_SOURCE
-D_LARGE_FILES
CFLAGS
+=
-DFTP_COMBINE_CWDS
-DNETBSD
ifeq
($(strip $(FETCH_WITH_INET6)), true)
CFLAGS
+=
-DINET6
endif
ifeq
($(strip $(FETCH_WITH_OPENSSL)), true)
CFLAGS
+=
-DWITH_SSL
LDADD
+=
-Wl
,-lssl
-Wl
,-lcrypto
endif
INSTALL
=
install
-c
-D
OBJS
=
fetch.o common.o ftp.o http.o file.o
INCS
=
fetch.h common.h
GEN
=
ftperr.h httperr.h
MAN
=
libdownload.3
all
:
libfetch.so libfetch.a
.PHONY
:
all
%.o
:
%.c $(INCS) $(GEN)
$(CC)
$(CFLAGS)
-c
$<
ftperr.h
:
ftp.errors Makefile errlist.sh
./errlist.sh ftp_errlist FTP ftp.errors
>
$@
httperr.h
:
http.errors Makefile errlist.sh
./errlist.sh http_errlist HTTP http.errors
>
$@
libfetch.so
:
$(GEN) $(INCS) $(OBJS)
rm
-f
$@
$(CC)
$(LDFLAGS)
$(OBJS)
$(LDADD)
-shared
-fPIC
-o
$@
libfetch.a
:
$(GEN) $(INCS) $(OBJS)
rm
-f
$@
$(AR)
rcs
$@
$(OBJS)
clean
:
rm
-f
libfetch.so libfetch.a
*
.o
$(GEN)
.PHONY
:
clean
install
:
all
$(INSTALL)
-m
755 libfetch.so
$(DESTDIR)$(prefix)
/lib/libfetch.so
$(INSTALL)
-m
644 libfetch.a
$(DESTDIR)$(prefix)
/lib/libfetch.a
$(INSTALL)
-m
644 fetch.h
$(DESTDIR)$(prefix)
/include/fetch.h
$(INSTALL)
-m
644 fetch.3
$(DESTDIR)$(prefix)
/share/man/man3/fetch.3
.PHONY
:
install
uninstall
:
rm
-f
$(DESTDIR)$(prefix)
/lib/libfetch.so
rm
-f
$(DESTDIR)$(prefix)
/lib/libfetch.a
rm
-f
$(DESTDIR)$(prefix)
/include/fetch.h
rm
-f
$(DESTDIR)$(prefix)
/share/man/man3/fetch.3
.PHONY
:
uninstall
libfetch/PKGBUILD
deleted
100644 → 0
View file @
819271da
#
# Core Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname
=
libfetch
pkgver
=
2.33
pkgrel
=
2
pkgdesc
=
"URL based download library"
arch
=(
'i686'
'x86_64'
)
license
=(
'BSD'
)
depends
=(
'openssl>=1.0.0'
)
url
=
"http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/"
source
=(
Makefile
http://chakra-project.org/sources/libfetch/
$pkgname
-
$pkgver
.tar.gz
fetch-handle-temp-redirect.patch
)
md5sums
=(
'7dffdd5a81bb32084a2f45e61f70dcf9'
'ddfed67895c3d33c05f15930381fe9ee'
'2ee40d7e7d76c39ae5500d89075ef8a6'
)
# keep an upgrade path for older installations
#PKGEXT='.pkg.tar.gz'
# source PKGBUILD && mksource
mksource
()
{
export
CVSROOT
=
:pserver:anoncvs@anoncvs.NetBSD.org:/cvsroot
D
=
pkgsrc/net/libfetch
[
-d
"
$D
"
]
&&
cvs up
"
$D
"
||
cvs co
"
$D
"
pushd
"
$D
"
dirname
=
$(
sed
-n
's/DISTNAME=.*\(libfetch-.*$\)/\1/p'
Makefile
)
cp
-r
files
$dirname
tar
-czv
--exclude
=
CVS
-f
../../../
$dirname
.tar.gz
$dirname
rm
-r
$dirname
popd
}
build
()
{
cd
$srcdir
/
${
pkgname
}
-
${
pkgver
}
cp
../Makefile
.
make
||
return
1
}
package
()
{
cd
$srcdir
/
$pkgname
-
$pkgver
make
DESTDIR
=
$pkgdir
install
licdir
=
$pkgdir
/usr/share/licenses/libfetch/
mkdir
-p
$licdir
sed
-n
-e
'/Copyright (c)/,/SUCH DAMAGE\./p'
common.c |
cut
-c
'4-'
>
$licdir
/LICENSE
}
\ No newline at end of file
libfetch/fetch-handle-temp-redirect.patch
deleted
100644 → 0
View file @
819271da
Index: http.c
===================================================================
RCS file: /cvsroot/pkgsrc/net/libfetch/files/http.c,v
retrieving revision 1.29
diff -u -r1.29 http.c
--- http.c 24 Jan 2010 19:10:35 -0000 1.29
+++ http.c 19 Apr 2011 13:29:04 -0000
@@ -974,6 +974,7 @@
case HTTP_MOVED_PERM:
case HTTP_MOVED_TEMP:
case HTTP_SEE_OTHER:
+ case HTTP_TEMP_REDIRECT:
/*
* Not so fine, but we still have to read the
* headers to get the new location.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment