Browse Source

Clifford Wolf <clifford@clifford.at>:

- Added package pptp-linux to base repository
- Fixed python shared files problem (don't force rebuild all python mods)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1752 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Clifford Wolf 21 years ago
parent
commit
047b0384ed
3 changed files with 76 additions and 0 deletions
  1. +5
    -0
      Documentation/Developers/CHANGELOG-CLIFFORD
  2. +45
    -0
      package/base/pptp-linux/pptp-linux.desc
  3. +26
    -0
      package/base/python/dont-force-rebuild-all.patch

+ 5
- 0
Documentation/Developers/CHANGELOG-CLIFFORD

@ -1,4 +1,9 @@
*) 2003-11-12 (2.0.0-rc2 - 2.0.0-rc3)
- Added package pptp-linux to base repository
- Fixed python shared files problem (don't force rebuild all python mods)
*) 2003-11-10 (2.0.0-rc2 - 2.0.0-rc3)
- Fixed ncurses in stage 9 (some more one-step-install.patch stuff)

+ 45
- 0
package/base/pptp-linux/pptp-linux.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/base/ppp/ppp.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Linux PPTP Client
[T] PPTP Client is a Linux, FreeBSD, NetBSD and OpenBSD client for the
[T] proprietary Microsoft Point-to-Point Tunneling Protocol, PPTP. Allows
[T] connection to a PPTP based Virtual Private Network (VPN) as used
[T] by employers and some cable and ADSL internet service providers.
[A] C. Scott Ananian <cscott@cscott.net>
[M] Clifford Wolf <clifford@clifford.at>
[M] Rene Rebe <rene@rocklinux.org>
[C] extra/network
[U] http://pptpclient.sourceforge.net/
[L] OpenSource
[S] Stable
[V] 1.3.1
[P] X -----5---9 664.500
[D] 0 pptp-linux-1.3.1.tar.gz http://dl.sourceforge.net/sourceforge/pptpclient/

+ 26
- 0
package/base/python/dont-force-rebuild-all.patch

@ -0,0 +1,26 @@
--- ./Makefile.pre.in.orig 2003-11-12 11:31:18.721639608 +0100
+++ ./Makefile.pre.in 2003-11-12 11:31:55.176097688 +0100
@@ -703,19 +703,19 @@
$(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST) -f \
+ -d $(LIBDEST) \
-x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST) -f \
+ -d $(LIBDEST) \
-x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST)/site-packages -f \
+ -d $(LIBDEST)/site-packages \
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
- -d $(LIBDEST)/site-packages -f \
+ -d $(LIBDEST)/site-packages \
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
# Create the PLATDIR source directory, if one wasn't distributed..

Loading…
Cancel
Save